Copy
Ask AI
{
"type": "object",
"properties": {
"type": {
"const": "RadioGroup",
"default": "RadioGroup",
"type": "string"
},
"cssClass": {
"type": [
"string",
"null"
],
"default": null,
"description": "CSS/Tailwind classes for styling"
},
"children": {
"type": "array",
"items": {
"$ref": "Component"
}
},
"name": {
"type": [
"string",
"null"
],
"default": null,
"description": "Form field name for all radios"
},
"onChange": {
"$ref": "Action",
"description": "Action(s) to execute when selection changes",
"default": null
}
},
"required": [
"type"
]
}