- Description:
This key represents an individual object in the
options.valuesarray for Select Inputs.- Appears in:
└── values └── Object Array Values- Type:
Array<values(object-array)[*]>- Items:
This key represents an individual object in the
options.valuesarray for Select Inputs.Show examplesHide examples
In this example, we have configured an array of object values for a select input.
Copied to clipboard_inputs: status: type: select options: values: - icon: edit_note value: draft - icon: check_circle value: published{ "_inputs": { "status": { "type": "select", "options": { "values": [ { "icon": "edit_note", "value": "draft" }, { "icon": "check_circle", "value": "published" } ] } } } }- Examples:
In this example, we have configured an array of object values for a select input.
Copied to clipboard_inputs: status: type: select options: values: - icon: edit_note value: draft - icon: check_circle value: published{ "_inputs": { "status": { "type": "select", "options": { "values": [ { "icon": "edit_note", "value": "draft" }, { "icon": "check_circle", "value": "published" } ] } } } }