Reaction Filters

The below is an example demonstrating how to filter data retrieved from a trigger.
The below will filter data, where the product.brand exists in the specified array.
If the data passes the filter, the result can be evaluated by the next filter in the sequence.
The sequence is determined by the sort_order

[
   {
      "name":"condition",
      "value":{
         "in":[
            {
               "var":"product.brand"
            },
            [
               "brand",
               "BRAND",
               "example",
               "EXAMPLE"
            ]
         ]
      },
      "is_dynamic":null
   }
]