Docupilot · Schema

AITemplateCreate

Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation

Properties

Name Type Description
ai_prompt string
template_title string
template_description string
ai_response string
View JSON Schema on GitHub

JSON Schema

app-AITemplateCreate.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AITemplateCreate",
  "description": "",
  "type": "object",
  "properties": {
    "ai_prompt": {
      "type": "string",
      "writeOnly": true
    },
    "template_title": {
      "type": "string",
      "writeOnly": true,
      "maxLength": 120
    },
    "template_description": {
      "type": "string",
      "writeOnly": true,
      "nullable": true,
      "maxLength": 255
    },
    "ai_response": {
      "type": "string",
      "readOnly": true
    }
  },
  "required": [
    "ai_prompt",
    "ai_response",
    "template_title"
  ]
}