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)
}
...Learn more about the deprecation stages.
Copyright 2026 Samsung All rights reserved