Bixby Developer Center

References

no-filtering-with-validation

optionalvalue optional

Changes how Bixby applies validation conditions to reduce the number of ambiguous values.

When a cardinality constraint violation occurs because an input has too many available candidates, Bixby attempts to pre-filter the available candidates using the existing input validations. However, this can lead to a situation where all candidates are filtered out, and no effects in the validate block are acted upon.

When enabled, Bixby will not perform this pre-filtering step.

This runtime flag is enabled by default in all runtime versions.

Example

capsule {
...
runtime-version (1) {
overrides {
no-filtering-with-validation (false) // explicitly turns this behavior off
}
}
}