Docupilot · Schema

TemplateGallery

Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation

Properties

Name Type Description
id integer
image_path string
file_type string
category object
title string
description string
images_count integer
View JSON Schema on GitHub

JSON Schema

app-TemplateGallery.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TemplateGallery",
  "description": "",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "readOnly": true
    },
    "image_path": {
      "type": "string",
      "readOnly": true
    },
    "file_type": {
      "type": "string",
      "readOnly": true
    },
    "category": {
      "$ref": "#/components/schemas/GalleryCategory"
    },
    "title": {
      "type": "string",
      "maxLength": 50
    },
    "description": {
      "type": "string",
      "nullable": true,
      "maxLength": 255
    },
    "images_count": {
      "type": "integer",
      "maximum": 32767,
      "minimum": 0,
      "nullable": true
    }
  },
  "required": [
    "category",
    "file_type",
    "id",
    "image_path",
    "title"
  ]
}