PluginProbe ʕ •ᴥ•ʔ
Advanced Custom Fields (ACF®) / 6.8.8
Advanced Custom Fields (ACF®) v6.8.8
6.8.9 6.8.8 6.8.7 6.8.6 6.8.5 6.8.4 6.8.3 6.8.2 6.8.1 5.8.5 5.8.6 5.8.7 5.8.8 5.8.9 5.9.0 5.9.1 5.9.2 5.9.3 5.9.4 5.9.5 5.9.6 5.9.7 5.9.8 5.9.9 6.0.0 6.0.1 6.0.2 6.0.3 6.0.4 6.0.5 6.0.6 6.0.7 6.1.0 6.1.1 6.1.2 6.1.3 6.1.4 6.1.5 6.1.6 6.1.7 6.1.8 6.2.0 6.2.1 6.2.2 6.2.3 6.2.4 6.2.5 6.2.6 6.2.6.1 6.2.7 6.2.8 6.2.9 6.3.0 6.3.1 6.3.10.2 6.3.11 6.3.12 6.3.2 6.3.3 6.3.4 6.3.5 6.3.6 6.3.6.1 6.4.0 6.4.0.1 6.4.1 6.4.2 6.4.3 6.5.0 6.5.1 6.6.0 6.6.1 6.6.2 6.7.0 6.7.1 6.7.2 6.8.0 trunk 1.0.0 1.0.2 1.0.3 1.0.5 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.1.1 2.1.3 2.1.4 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.6 3.0.7 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7 3.1.8 3.1.9 3.2.0 3.2.2 3.2.3 3.2.4 3.2.5 3.2.6 3.2.7 3.2.8 3.2.9 3.3.0 3.3.1 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6 3.3.7 3.3.8 3.3.9 3.4.0 3.4.1 3.4.2 3.4.3 3.5.0 3.5.1 3.5.2 3.5.3 3.5.4 3.5.5 3.5.6 3.5.7 3.5.8 4.0.0 4.0.1 4.0.2 4.0.3 4.1.0 4.1.1 4.1.2 4.1.3 4.1.4 4.1.5 4.1.6 4.1.8 4.2.0 4.2.1 4.2.2 4.3.0 4.3.1 4.3.2 4.3.3 4.3.4 4.3.5 4.3.6 4.3.7 4.3.8 4.3.9 4.4.0 4.4.1 4.4.10 4.4.11 4.4.12 4.4.2 4.4.3 4.4.4 4.4.5 4.4.6 4.4.7 4.4.8 4.4.9 5.10 5.10.1 5.10.2 5.11 5.11.1 5.11.2 5.11.3 5.11.4 5.12 5.12.1 5.12.2 5.12.3 5.12.4 5.12.5 5.12.6 5.6.10 5.6.2 5.6.3 5.6.4 5.6.5 5.6.6 5.6.7 5.6.8 5.6.9 5.7.0 5.7.1 5.7.10 5.7.12 5.7.13 5.7.2 5.7.3 5.7.4 5.7.5 5.7.6 5.7.7 5.7.8 5.7.9 5.8.0 5.8.1 5.8.10 5.8.11 5.8.12 5.8.13 5.8.14 5.8.2 5.8.3 5.8.4
advanced-custom-fields / schemas / fields / v1 / select.json
advanced-custom-fields / schemas / fields / v1 Last commit date
accordion.json 5 months ago button_group.json 5 months ago checkbox.json 5 months ago clone.json 5 months ago color_picker.json 5 months ago date_picker.json 5 months ago date_time_picker.json 5 months ago email.json 5 months ago file.json 5 months ago flexible_content.json 5 months ago gallery.json 5 months ago google_map.json 5 months ago group.json 5 months ago icon_picker.json 5 months ago image.json 5 months ago link.json 5 months ago message.json 5 months ago number.json 5 months ago oembed.json 5 months ago page_link.json 5 months ago password.json 5 months ago post_object.json 5 months ago radio.json 5 months ago range.json 5 months ago relationship.json 5 months ago repeater.json 5 months ago select.json 5 months ago tab.json 5 months ago taxonomy.json 5 months ago text.json 5 months ago textarea.json 5 months ago time_picker.json 5 months ago true_false.json 5 months ago url.json 5 months ago user.json 5 months ago wysiwyg.json 5 months ago
select.json
144 lines
1 {
2 "$schema": "http://json-schema.org/draft-07/schema#",
3 "type": "object",
4 "additionalProperties": false,
5 "properties": {
6 "label": {
7 "type": "string",
8 "description": "The field label displayed in the edit screen",
9 "minLength": 1
10 },
11 "type": {
12 "type": "string",
13 "enum": [
14 "select"
15 ],
16 "description": "Field type identifier. Must be \"select\" for this field type."
17 },
18 "name": {
19 "type": "string",
20 "description": "The field name used to save/load data. Auto-generated from label if not provided.",
21 "pattern": "^[a-z_][a-z0-9_]*$"
22 },
23 "key": {
24 "type": "string",
25 "description": "Unique field key. Auto-generated if not provided.",
26 "pattern": "^field_[a-z0-9]+$"
27 },
28 "instructions": {
29 "type": "string",
30 "description": "Instructions displayed to editors below the field label"
31 },
32 "required": {
33 "type": "boolean",
34 "description": "Whether this field is required",
35 "default": false
36 },
37 "conditional_logic": {
38 "type": [
39 "boolean",
40 "array"
41 ],
42 "description": "Conditional logic rules. Set to false to disable, or provide rules array.",
43 "default": false
44 },
45 "wrapper": {
46 "type": "object",
47 "description": "HTML wrapper attributes",
48 "properties": {
49 "width": {
50 "type": "string",
51 "description": "Width percentage (e.g., \"50\")"
52 },
53 "class": {
54 "type": "string",
55 "description": "Custom CSS classes"
56 },
57 "id": {
58 "type": "string",
59 "description": "Custom HTML ID"
60 }
61 }
62 },
63 "default_value": {
64 "type": [
65 "string",
66 "number",
67 "boolean",
68 "null"
69 ],
70 "description": "Default value when creating new content"
71 },
72 "placeholder": {
73 "type": "string",
74 "description": "Placeholder text shown in empty fields"
75 },
76 "prepend": {
77 "type": "string",
78 "description": "Text to prepend before the input"
79 },
80 "append": {
81 "type": "string",
82 "description": "Text to append after the input"
83 },
84 "maxlength": {
85 "type": "integer",
86 "description": "Maximum character length (if applicable)",
87 "minimum": 1
88 },
89 "allow_in_bindings": {
90 "type": "boolean",
91 "description": "Whether this field can be used in block bindings",
92 "default": false
93 },
94 "choices": {
95 "type": "object",
96 "description": "Available choices for the select field. Object with key-value pairs where keys are saved values and values are display labels (e.g., {\"red\": \"Red\", \"blue\": \"Blue\"})"
97 },
98 "multiple": {
99 "type": "boolean",
100 "description": "Allow multiple selections",
101 "default": false
102 },
103 "allow_null": {
104 "type": "boolean",
105 "description": "Allow a null (empty) value to be selected",
106 "default": false
107 },
108 "ui": {
109 "type": "boolean",
110 "description": "Use enhanced Select2 UI for better usability",
111 "default": false
112 },
113 "ajax": {
114 "type": "boolean",
115 "description": "Load choices dynamically via AJAX (useful for large choice sets)",
116 "default": false
117 },
118 "return_format": {
119 "type": "string",
120 "description": "Format of returned value",
121 "enum": [
122 "value",
123 "label",
124 "array"
125 ],
126 "default": "value"
127 },
128 "create_options": {
129 "type": "boolean",
130 "description": "Allow users to create new choices from the field",
131 "default": false
132 },
133 "save_options": {
134 "type": "boolean",
135 "description": "Save new choices created by users back to the field",
136 "default": false
137 }
138 },
139 "required": [
140 "label",
141 "type",
142 "choices"
143 ]
144 }