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
nav-menu.schema.json
23 lines
| 1 | { |
| 2 | "title": "SCF Nav Menu Field Fragment", |
| 3 | "description": "Type-specific properties for navigation menu fields", |
| 4 | "type": "object", |
| 5 | "properties": { |
| 6 | "type": { |
| 7 | "enum": [ "nav_menu" ] |
| 8 | }, |
| 9 | "allow_null": { "$ref": "#/definitions/allow_null" }, |
| 10 | "save_format": { |
| 11 | "type": "string", |
| 12 | "enum": [ "id", "object", "menu" ], |
| 13 | "default": "id", |
| 14 | "description": "Return format (ID, Nav Menu object, or rendered HTML)" |
| 15 | }, |
| 16 | "container": { |
| 17 | "type": "string", |
| 18 | "default": "div", |
| 19 | "description": "HTML container element for menu when returning HTML" |
| 20 | } |
| 21 | } |
| 22 | } |
| 23 |