Definitions Schema
Introduction
Schema Overview
Structure Definition
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "definitions.schema.json",
"title": "Definitions",
"definitions": {
"padding": {
"type": "integer",
"minimum": 0,
"maximum": 60
},
"borderRadius": {
"type": "integer",
"minimum": 0,
"maximum": 60
},
"borderWidth": {
"type": "integer",
"minimum": 0,
"maximum": 30
},
"typeOfModules": {
"enum": [
"button",
"divider",
"heading",
"html",
"icons",
"image",
"list",
"menu",
"paragraph",
"title"
]
}
}
}Field Descriptions
Definition Name
Type
Description
Additional Considerations
Last updated
Was this helpful?

