Docupilot · Schema

Folder

Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation

Properties

Name Type Description
id integer
name string
created_time string
updated_time string
created_by integer
updated_by integer
View JSON Schema on GitHub

JSON Schema

app-Folder.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Folder",
  "description": "",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "readOnly": true
    },
    "name": {
      "type": "string",
      "maxLength": 50
    },
    "created_time": {
      "type": "string",
      "format": "date-time",
      "readOnly": true,
      "nullable": true
    },
    "updated_time": {
      "type": "string",
      "format": "date-time",
      "readOnly": true,
      "nullable": true
    },
    "created_by": {
      "type": "integer",
      "readOnly": true
    },
    "updated_by": {
      "type": "integer",
      "readOnly": true,
      "nullable": true
    }
  },
  "required": [
    "created_by",
    "created_time",
    "id",
    "name",
    "updated_by",
    "updated_time"
  ]
}