No description available.
Properties
facets
array
of refblog.pckt.richtext.facet
Optional
Facets for text formatting and features
level
integer
Optional
Heading level from 1 (most important) to 6 (least important)
minimum: 1maximum: 6plaintext
string
Required
The plain text content of the heading
textAlign
string
Optional
Horizontal alignment of the block's text. Defaults to left when omitted.
Known values:
left, center, rightView raw schema
{
"type": "object",
"required": [
"plaintext"
],
"properties": {
"level": {
"type": "integer",
"maximum": 6,
"minimum": 1,
"description": "Heading level from 1 (most important) to 6 (least important)"
},
"facets": {
"type": "array",
"items": {
"ref": "blog.pckt.richtext.facet",
"type": "ref"
},
"description": "Facets for text formatting and features"
},
"plaintext": {
"type": "string",
"description": "The plain text content of the heading"
},
"textAlign": {
"type": "string",
"description": "Horizontal alignment of the block's text. Defaults to left when omitted.",
"knownValues": [
"left",
"center",
"right"
]
}
}
}