DocSpring · Schema
json_schema
PDFDocument GenerationPDF TemplatesE-SignaturesFormsHTML to PDFDocument Automation
Properties
| Name | Type | Description |
|---|---|---|
| $schema | string | |
| id | string | |
| title | string | |
| description | string | |
| definitions | object | |
| type | string | |
| properties | object | |
| additionalProperties | boolean | |
| required | array |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/docspring/main/json-schema/json_schema.json",
"title": "json_schema",
"type": "object",
"properties": {
"$schema": {
"type": "string",
"format": "uri"
},
"id": {
"type": "string",
"format": "uri-reference"
},
"title": {
"type": "string"
},
"description": {
"type": "string"
},
"definitions": {
"type": "object",
"default": {}
},
"type": {
"type": "string"
},
"properties": {
"type": "object"
},
"additionalProperties": {
"type": "boolean"
},
"required": {
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false
}