No description available.
Properties
facets
array
of refapp.offprint.richtext.facet
Optional
Facets for text formatting
plaintext
string
Required
The plain text content
textAlign
string
Optional
Text alignment
View raw schema
{
"type": "object",
"required": [
"plaintext"
],
"properties": {
"facets": {
"type": "array",
"items": {
"ref": "app.offprint.richtext.facet",
"type": "ref"
},
"description": "Facets for text formatting"
},
"plaintext": {
"type": "string",
"required": true,
"description": "The plain text content"
},
"textAlign": {
"enum": [
"left",
"center",
"right",
"justify"
],
"type": "string",
"description": "Text alignment"
}
}
}