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
tab.schema.json
23 lines
| 1 | { |
| 2 | "title": "SCF Tab Field Fragment", |
| 3 | "description": "Type-specific properties for tab fields", |
| 4 | "type": "object", |
| 5 | "properties": { |
| 6 | "type": { |
| 7 | "enum": [ "tab" ] |
| 8 | }, |
| 9 | "placement": { |
| 10 | "type": "string", |
| 11 | "enum": [ "top", "left" ], |
| 12 | "default": "top", |
| 13 | "description": "Tab placement position" |
| 14 | }, |
| 15 | "endpoint": { "$ref": "#/definitions/endpoint" }, |
| 16 | "selected": { |
| 17 | "type": "integer", |
| 18 | "default": 0, |
| 19 | "description": "Whether this tab is selected by default" |
| 20 | } |
| 21 | } |
| 22 | } |
| 23 |