No description available.
Properties
facets
array
of refis.logue.richtext.facet
Optional
Facets for text formatting and features
level
integer
Optional
Heading level (1–6), corresponding to HTML tags <h1> through <h6> (1 = most important, 6 = least important)
minimum: 1maximum: 6plaintext
string
Required
The content of the heading
View raw schema
{
"type": "object",
"required": [
"plaintext"
],
"properties": {
"level": {
"type": "integer",
"maximum": 6,
"minimum": 1,
"description": "Heading level (1–6), corresponding to HTML tags <h1> through <h6> (1 = most important, 6 = least important)"
},
"facets": {
"type": "array",
"items": {
"ref": "is.logue.richtext.facet",
"type": "ref"
},
"description": "Facets for text formatting and features"
},
"plaintext": {
"type": "string",
"description": "The content of the heading"
}
}
}