This key represents an individual object in the options.values array for Select Inputs.
Appears in
└── values
└── Object Array Values
└── [*]Type
Object<unknown>
Values
unknown — unknown#
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"
}
]
}
}
}
}