Docupilot · Schema

ContentBlockDetailByKeyResponse

Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation

Properties

Name Type Description
name string
type string
schema array
View JSON Schema on GitHub

JSON Schema

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