accordion.schema.json
7 months ago
clone.schema.json
7 months ago
flexible-content.schema.json
7 months ago
group.schema.json
7 months ago
message.schema.json
7 months ago
output.schema.json
7 months ago
repeater.schema.json
7 months ago
separator.schema.json
7 months ago
tab.schema.json
7 months ago
flexible-content.schema.json
31 lines
| 1 | { |
| 2 | "title": "SCF Flexible Content Field Fragment", |
| 3 | "description": "Type-specific properties for flexible content fields", |
| 4 | "type": "object", |
| 5 | "properties": { |
| 6 | "type": { |
| 7 | "enum": [ "flexible_content" ] |
| 8 | }, |
| 9 | "layouts": { |
| 10 | "type": "array", |
| 11 | "default": [], |
| 12 | "description": "Available layout configurations" |
| 13 | }, |
| 14 | "min": { |
| 15 | "type": [ "integer", "string" ], |
| 16 | "default": "", |
| 17 | "description": "Minimum number of layouts (empty for no limit)" |
| 18 | }, |
| 19 | "max": { |
| 20 | "type": [ "integer", "string" ], |
| 21 | "default": "", |
| 22 | "description": "Maximum number of layouts (empty for no limit)" |
| 23 | }, |
| 24 | "button_label": { |
| 25 | "type": "string", |
| 26 | "default": "Add Row", |
| 27 | "description": "Text label for the add row button" |
| 28 | } |
| 29 | } |
| 30 | } |
| 31 |