Docupilot · Schema
PatchedExtension
Document GenerationPDF GenerationDocument AutomationTemplate EngineeSignatureWorkflow Automation
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| name | string | |
| type | string | |
| unique_id | string | |
| is_public | boolean | |
| config | object | |
| created_at | string | |
| updated_at | string | |
| archived_at | string | |
| created_by | integer | |
| updated_by | integer |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "PatchedExtension",
"description": "",
"type": "object",
"properties": {
"id": {
"type": "integer",
"readOnly": true
},
"name": {
"type": "string",
"maxLength": 255
},
"type": {
"enum": [
"form_v1"
],
"type": "string"
},
"unique_id": {
"type": "string",
"readOnly": true
},
"is_public": {
"type": "boolean"
},
"config": {
"type": "object",
"additionalProperties": {}
},
"created_at": {
"type": "string",
"format": "date-time",
"readOnly": true
},
"updated_at": {
"type": "string",
"format": "date-time",
"readOnly": true
},
"archived_at": {
"type": "string",
"format": "date-time",
"readOnly": true,
"nullable": true
},
"created_by": {
"type": "integer",
"readOnly": true
},
"updated_by": {
"type": "integer",
"readOnly": true
}
}
}