{
  "version": 1,
  "rule_groups": [
    {
      "name": "サンプルルール1",
      "rules": [
        {
          "priority": 100,
          "name": "パスワード付ファイルは10分保留のみ",
          "action": {
            "type": "suspend",
            "attribute": {
              "auto_release": true,
              "duration": "10m"
            }
          },
          "predicate": "and",
          "predicates": [
            {
              "target": "attachment",
              "predicate": "all-password-protected-data"
            }
          ]
        },
        {
          "priority": 110,
          "name": "10分保留と添付ファイル暗号化",
          "action": {
            "type": "suspend",
            "attribute": {
              "auto_release": true,
              "duration": "10m"
            },
            "encrypt": true
          },
          "predicate": "all"
        }
      ]
    }
  ]
}
