Docupilot · Schema

TemplateSchema

Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation

Properties

Name Type Description
name string
type string
rType string
generics string
fields array
View JSON Schema on GitHub

JSON Schema

app-TemplateSchema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TemplateSchema",
  "description": "",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "type": {
      "enum": [
        "string",
        "array",
        "object",
        "generic"
      ],
      "type": "string"
    },
    "rType": {
      "enum": [
        "content_block"
      ],
      "type": "string"
    },
    "generics": {
      "enum": [
        "string",
        "array",
        "object",
        "generic"
      ],
      "type": "string"
    },
    "fields": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TemplateSchema"
      }
    }
  },
  "required": [
    "fields",
    "generics",
    "name",
    "type"
  ]
}