Docupilot · Schema

CreateEnvelope

Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation

Properties

Name Type Description
name string
attachments array
folder integer
View JSON Schema on GitHub

JSON Schema

app-CreateEnvelope.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CreateEnvelope",
  "description": "",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "maxLength": 255
    },
    "attachments": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "binary"
      },
      "writeOnly": true,
      "maxItems": 3
    },
    "folder": {
      "type": "integer",
      "nullable": true
    }
  },
  "required": [
    "attachments",
    "name"
  ]
}