{
"type": "object",
"properties": {
"type": {
"const": "Separator",
"default": "Separator",
"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."
},
"orientation": {
"default": "horizontal",
"description": "Separator orientation",
"enum": [
"horizontal",
"vertical"
],
"type": "string"
},
"spacing": {
"type": [
"integer",
"null"
],
"default": null,
"description": "Space around the separator (Tailwind spacing scale)"
}
},
"required": [
"type"
]
}