Docupilot · Schema

NewTemplate

Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation

Properties

Name Type Description
file string
folder integer
title string
output_type string
description string
template_gallery_id integer
View JSON Schema on GitHub

JSON Schema

app-NewTemplate.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "NewTemplate",
  "description": "",
  "type": "object",
  "properties": {
    "file": {
      "type": "string",
      "format": "binary"
    },
    "folder": {
      "type": "integer",
      "nullable": true
    },
    "title": {
      "type": "string",
      "maxLength": 255
    },
    "output_type": {
      "enum": [
        "html",
        "pdf",
        "jpeg",
        "png",
        "docx",
        "pptx",
        "xlsx"
      ],
      "type": "string"
    },
    "description": {
      "type": "string",
      "nullable": true,
      "maxLength": 255
    },
    "template_gallery_id": {
      "type": "integer"
    }
  },
  "required": [
    "output_type",
    "title"
  ]
}