Flag events whose primary category is one of several values

Flag events whose primary category is one of several values

In this article, you will find the rules document for flagging events whose primary category is one of several values.

Before you begin

To learn how to access the rules page, refer to this article.

Flag events whose primary category is one of several values

Notes
Note: This is a complete rules document. In the rules page, copy this JSON into the editor.

Info
[
  {
    "name": "json1",
    "operator": "any",
    "rules": [
      {
        "conditions": {
          "all": [
            {
              "fact": "primaryCategory",
              "operator": "in",
              "value": [
                "B-Roll",
                "Montage",
                "Establishing Shot"
              ]
            }
          ]
        },
        "event": {
          "type": "flagged",
          "params": {
            "reason": "Event belongs to B-Roll, Montage, or Establishing Shot"
          }
        }
      }
    ]
  }
]