HTML Schema
Introduction
Schema Overview
Structure Definition
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "simple_html.schema.json",
"title": "Simple Html",
"type": "object",
"additionalProperties": false,
"properties": {
"type": {
"const": "html"
},
"html": {
"type": "string"
},
"customFields": {
"type": "object"
},
"locked": {
"type": "boolean"
}
}
}Field Descriptions
Property
Type
Mandatory
Description
Usage Examples
Example HTML
Additional Considerations
Last updated
Was this helpful?

