Bixby Developer Center

Guides

6788

We've deprecated the min and max key within prompt. To restrict the cardinality of the related input, you can use a boolean expression using the new required-value and single-value keys.

...
prompt (items) {
required-value (size(basket) == 0)
candidates (matches)
}
...
  prompt (items) {
single-value (size(basket) == 1)
candidates (matches)
}
...

Deprecation Stages (learn more)

  • Stage 1: R20L
  • Stage 2: R20O
  • End of Life: None