Traditional (allow) WAF rule

When triggered, traditional WAF rules cause the firewall to immediately act on the request based on the rule configuration. An 'allow' rule will immediately allow the request and no other rules will be processed.

APIs.ioEngineeringPlatform
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-waf-managed-rules-traditional-allow-rule-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/waf-managed-rules_traditional_allow_rule",
  "title": "Traditional (allow) WAF rule",
  "allOf": [
    {
      "$ref": "#/components/schemas/waf-managed-rules_base"
    },
    {
      "properties": {
        "allowed_modes": {
          "$ref": "#/components/schemas/waf-managed-rules_allowed_modes_allow_traditional"
        },
        "mode": {
          "$ref": "#/components/schemas/waf-managed-rules_mode_allow_traditional"
        }
      }
    }
  ],
  "description": "When triggered, traditional WAF rules cause the firewall to immediately act on the request based on the rule configuration. An 'allow' rule will immediately allow the request and no other rules will be processed.",
  "required": [
    "id",
    "description",
    "priority",
    "allowed_modes",
    "default_mode",
    "mode",
    "group",
    "package_id"
  ]
}