Skip to main content
Page stub. Full content lives in the README — Constraints.
OperatorExampleNotes
== !=args.currency == "USD"Strings use JSON double quotes
< <= > >=args.amount <= 500Type-mismatched comparisons fail-closed
inargs.template in ["a", "b"]RHS must be a JSON list
not inargs.priority not in ["urgent"]Two-word operator, treated as one
Constraints are Rego-compatible by design: the WASM engine compiles them to OPA Rego unchanged, and the pydantic engine evaluates the same strings in-process — both produce identical decisions.