button-group.schema.json
7 months ago
checkbox.schema.json
7 months ago
nav-menu.schema.json
7 months ago
radio.schema.json
7 months ago
select.schema.json
7 months ago
true-false.schema.json
7 months ago
button-group.schema.json
21 lines
| 1 | { |
| 2 | "title": "SCF Button Group Field Fragment", |
| 3 | "description": "Type-specific properties for button group fields", |
| 4 | "type": "object", |
| 5 | "properties": { |
| 6 | "type": { |
| 7 | "enum": [ "button_group" ] |
| 8 | }, |
| 9 | "choices": { "$ref": "#/definitions/choices" }, |
| 10 | "default_value": { "$ref": "#/definitions/default_value" }, |
| 11 | "return_format": { "$ref": "#/definitions/return_format_choice" }, |
| 12 | "layout": { |
| 13 | "type": "string", |
| 14 | "enum": [ "vertical", "horizontal" ], |
| 15 | "default": "horizontal", |
| 16 | "description": "Layout direction for button choices" |
| 17 | }, |
| 18 | "allow_null": { "$ref": "#/definitions/allow_null" } |
| 19 | } |
| 20 | } |
| 21 |