Docupilot · Schema

FillablePdfSettings

Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation

Properties

Name Type Description
width number
height number
no_of_pages integer
dynamic_images object
View JSON Schema on GitHub

JSON Schema

app-FillablePdfSettings.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "FillablePdfSettings",
  "description": "",
  "type": "object",
  "properties": {
    "width": {
      "type": "number",
      "format": "double"
    },
    "height": {
      "type": "number",
      "format": "double"
    },
    "no_of_pages": {
      "type": "integer",
      "maximum": 2147483647,
      "minimum": 0
    },
    "dynamic_images": {
      "type": "object",
      "additionalProperties": {},
      "writeOnly": true,
      "nullable": true
    }
  },
  "required": [
    "height",
    "no_of_pages",
    "width"
  ]
}