Copy
Ask AI
{
"type": "object",
"properties": {
"type": {
"const": "Card",
"default": "Card",
"type": "string"
},
"cssClass": {
"type": [
"string",
"null"
],
"default": null,
"description": "CSS/Tailwind classes for styling"
},
"children": {
"type": "array",
"items": {
"$ref": "Component"
}
}
},
"required": [
"type"
]
}