Bixby Developer Center

References

max-preferred

optionalvalue optional

Indicate a max preference for one item. If one item is passed in, no selection prompt is generated. However, if more than one candidate value is available, Bixby prompts the user to select one or more items. If the user selects multiple items, then all selected items are passed through with no further prompting.

Example

action (PickAction) {
type (Search)
collect {
input (items) {
type (Item)
min (Required) max (Many)
max-preferred (One)
default-init {
intent {
goal: FindItems
}
}
}
}
output (Base)
}