PDFShift · Schema

CookieForm

PDFHTML to PDFDocument ConversionScreenshotChromiumREST API

Properties

Name Type Description
name string
value string
secure boolean
http_only boolean
View JSON Schema on GitHub

JSON Schema

cookieform.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/pdfshift/refs/heads/main/json-schema/cookieform.json",
  "title": "CookieForm",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "value": {
      "type": "string"
    },
    "secure": {
      "type": "boolean",
      "default": false
    },
    "http_only": {
      "type": "boolean",
      "default": false
    }
  },
  "required": [
    "name",
    "value"
  ]
}