Docupilot · Schema

NewContentBlock

Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation

Properties

Name Type Description
name string
key string
file string
description string
View JSON Schema on GitHub

JSON Schema

app-NewContentBlock.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "NewContentBlock",
  "description": "",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "maxLength": 255
    },
    "key": {
      "type": "string",
      "maxLength": 255
    },
    "file": {
      "type": "string",
      "format": "binary"
    },
    "description": {
      "type": "string",
      "nullable": true,
      "maxLength": 255
    }
  },
  "required": [
    "file",
    "key",
    "name"
  ]
}