{
"type": "object",
"properties": {
"type": {
"const": "TableCaption",
"default": "TableCaption",
"type": "string"
},
"id": {
"type": [
"string",
"null"
],
"default": null,
"description": "HTML id attribute for CSS targeting. Applied to the outermost element."
},
"cssClass": {
"type": [
"string",
"null"
],
"default": null,
"description": "CSS/Tailwind classes for styling. Accepts a Responsive() for breakpoint-aware classes."
},
"content": {
"description": "Caption text",
"type": "string"
}
},
"required": [
"type",
"content"
]
}