Docupilot · Schema

PromptSuggestions

Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation

Properties

Name Type Description
template_title string
template_description string
prompts array
View JSON Schema on GitHub

JSON Schema

app-PromptSuggestions.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "PromptSuggestions",
  "description": "",
  "type": "object",
  "properties": {
    "template_title": {
      "type": "string",
      "writeOnly": true
    },
    "template_description": {
      "type": "string",
      "writeOnly": true,
      "nullable": true
    },
    "prompts": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "readOnly": true
    }
  },
  "required": [
    "prompts",
    "template_title"
  ]
}