Copy
Ask AI
{
"type": "object",
"properties": {
"type": {
"const": "Text",
"default": "Text",
"type": "string"
},
"cssClass": {
"type": [
"string",
"null"
],
"default": null,
"description": "CSS/Tailwind classes for styling"
},
"content": {
"description": "Text content",
"type": "string"
},
"bold": {
"type": [
"boolean",
"null"
],
"default": null,
"description": "Render text in bold"
},
"italic": {
"type": [
"boolean",
"null"
],
"default": null,
"description": "Render text in italic"
}
},
"required": [
"type",
"content"
]
}