Skip to content

in Condition

orbenharosh edited this page Jan 22, 2024 · 4 revisions

in

In condition is used to find a value in a field that is an array (like tags)

  • path
  • value

Example

{
  "steps": [
    {
      "if": {
        "condition": {
          "in": {
            "path": "field_name",
            "value": "value"
          }
        }
      },
      "then": [
        {
          <processor or statement>
        }
      ]
    }
  ]
}
Clone this wiki locally