{ "==": [ { "var": "customer.country" }, "France" ] }
{ "or": [ { "==": [ { "var": "customer.country" }, "France" ] }, { "==": [ { "var": "customer.country" }, "FR" ] } ] }
{ "and": [ { "!=": [ { "var": "customer.country" }, "France" ] }, { "!=": [ { "var": "customer.country" }, "FR" ] } ] }
Expressions are converted to JsonLogic, allowing flexible logic-based evaluation. Below is an example:
{ "or": [ { "==": [ { "var": "customer.country" }, "USA" ] }, { "==": [ { "var": "customer.country" }, "US" ] } ] }