138 lines
4.3 KiB
JSON
138 lines
4.3 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"label": {
|
|
"type": "string",
|
|
"description": "The field label displayed in the edit screen",
|
|
"minLength": 1
|
|
},
|
|
"type": {
|
|
"type": "string",
|
|
"enum": [
|
|
"radio"
|
|
],
|
|
"description": "Field type identifier. Must be \"radio\" for this field type."
|
|
},
|
|
"name": {
|
|
"type": "string",
|
|
"description": "The field name used to save/load data. Auto-generated from label if not provided.",
|
|
"pattern": "^[a-z_][a-z0-9_]*$"
|
|
},
|
|
"key": {
|
|
"type": "string",
|
|
"description": "Unique field key. Auto-generated if not provided.",
|
|
"pattern": "^field_[a-z0-9]+$"
|
|
},
|
|
"instructions": {
|
|
"type": "string",
|
|
"description": "Instructions displayed to editors below the field label"
|
|
},
|
|
"required": {
|
|
"type": "boolean",
|
|
"description": "Whether this field is required",
|
|
"default": false
|
|
},
|
|
"conditional_logic": {
|
|
"type": [
|
|
"boolean",
|
|
"array"
|
|
],
|
|
"description": "Conditional logic rules. Set to false to disable, or provide rules array.",
|
|
"default": false
|
|
},
|
|
"wrapper": {
|
|
"type": "object",
|
|
"description": "HTML wrapper attributes",
|
|
"properties": {
|
|
"width": {
|
|
"type": "string",
|
|
"description": "Width percentage (e.g., \"50\")"
|
|
},
|
|
"class": {
|
|
"type": "string",
|
|
"description": "Custom CSS classes"
|
|
},
|
|
"id": {
|
|
"type": "string",
|
|
"description": "Custom HTML ID"
|
|
}
|
|
}
|
|
},
|
|
"default_value": {
|
|
"type": [
|
|
"string",
|
|
"number",
|
|
"boolean",
|
|
"null"
|
|
],
|
|
"description": "Default value when creating new content"
|
|
},
|
|
"placeholder": {
|
|
"type": "string",
|
|
"description": "Placeholder text shown in empty fields"
|
|
},
|
|
"prepend": {
|
|
"type": "string",
|
|
"description": "Text to prepend before the input"
|
|
},
|
|
"append": {
|
|
"type": "string",
|
|
"description": "Text to append after the input"
|
|
},
|
|
"maxlength": {
|
|
"type": "integer",
|
|
"description": "Maximum character length (if applicable)",
|
|
"minimum": 1
|
|
},
|
|
"allow_in_bindings": {
|
|
"type": "boolean",
|
|
"description": "Whether this field can be used in block bindings",
|
|
"default": false
|
|
},
|
|
"choices": {
|
|
"type": "object",
|
|
"description": "Available choices for the radio field. Object with key-value pairs where keys are saved values and values are display labels (e.g., {\"yes\": \"Yes\", \"no\": \"No\"})"
|
|
},
|
|
"layout": {
|
|
"type": "string",
|
|
"description": "Layout orientation of radio buttons",
|
|
"enum": [
|
|
"vertical",
|
|
"horizontal"
|
|
],
|
|
"default": "vertical"
|
|
},
|
|
"allow_null": {
|
|
"type": "boolean",
|
|
"description": "Allow a null (empty) value to be selected",
|
|
"default": false
|
|
},
|
|
"other_choice": {
|
|
"type": "boolean",
|
|
"description": "Add an \"Other\" choice to allow custom input",
|
|
"default": false
|
|
},
|
|
"save_other_choice": {
|
|
"type": "boolean",
|
|
"description": "Save custom \"Other\" values as new choices",
|
|
"default": false
|
|
},
|
|
"return_format": {
|
|
"type": "string",
|
|
"description": "Format of returned value",
|
|
"enum": [
|
|
"value",
|
|
"label",
|
|
"array"
|
|
],
|
|
"default": "value"
|
|
}
|
|
},
|
|
"required": [
|
|
"label",
|
|
"type",
|
|
"choices"
|
|
]
|
|
} |