Docupilot · Schema

WordAddInPromptSuggestions

Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation

Properties

Name Type Description
title string
first_page_content string
main_headings string
prompts array
View JSON Schema on GitHub

JSON Schema

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