link.schema.json
7 months ago
page-link.schema.json
7 months ago
post-object.schema.json
7 months ago
relationship.schema.json
7 months ago
taxonomy.schema.json
7 months ago
user.schema.json
7 months ago
page-link.schema.json
20 lines
| 1 | { |
| 2 | "title": "SCF Page Link Field Fragment", |
| 3 | "description": "Type-specific properties for page link fields", |
| 4 | "type": "object", |
| 5 | "properties": { |
| 6 | "type": { |
| 7 | "enum": [ "page_link" ] |
| 8 | }, |
| 9 | "post_type": { "$ref": "#/definitions/post_type" }, |
| 10 | "taxonomy": { "$ref": "#/definitions/taxonomy_filter" }, |
| 11 | "allow_null": { "$ref": "#/definitions/allow_null" }, |
| 12 | "multiple": { "$ref": "#/definitions/multiple" }, |
| 13 | "allow_archives": { |
| 14 | "type": "integer", |
| 15 | "default": 1, |
| 16 | "description": "Allow archive URLs to be selected (1 for yes, 0 for no)" |
| 17 | } |
| 18 | } |
| 19 | } |
| 20 |