field-fragments
6 months ago
fields
2 months ago
common.schema.json
6 months ago
field-group.schema.json
2 months ago
field.schema.json
6 months ago
internal-properties.schema.json
6 months ago
post-type.schema.json
2 months ago
scf-identifier.schema.json
6 months ago
taxonomy.schema.json
2 months ago
ui-options-page.schema.json
6 months ago
scf-identifier.schema.json
15 lines
| 1 | { |
| 2 | "$schema": "http://json-schema.org/draft-07/schema#", |
| 3 | "$id": "https://raw.githubusercontent.com/WordPress/secure-custom-fields/trunk/schemas/scf-identifier.schema.json", |
| 4 | "title": "SCF Identifier", |
| 5 | "description": "Schema for SCF entity identifiers (post types, field groups, fields, taxonomies, etc.)", |
| 6 | "type": ["string", "integer"], |
| 7 | "examples": [ |
| 8 | 123, |
| 9 | "group_abc123", |
| 10 | "post_type_products", |
| 11 | "taxonomy_product_categories", |
| 12 | "ui_options_page_theme_settings" |
| 13 | ] |
| 14 | } |
| 15 |