Traditional (deny) WAF rule

When triggered, traditional WAF rules cause the firewall to immediately act upon the request based on the configuration of the rule. A 'deny' rule will immediately respond to the request based on the configured rule action/mode (for example, 'block') and no other rules will be processed.

APIs.ioEngineeringPlatform
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-waf-managed-rules-traditional-deny-rule-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/waf-managed-rules_traditional_deny_rule",
  "title": "Traditional (deny) WAF rule",
  "allOf": [
    {
      "$ref": "#/components/schemas/waf-managed-rules_base"
    },
    {
      "properties": {
        "allowed_modes": {
          "$ref": "#/components/schemas/waf-managed-rules_allowed_modes_deny_traditional"
        },
        "default_mode": {
          "$ref": "#/components/schemas/waf-managed-rules_default_mode"
        },
        "mode": {
          "$ref": "#/components/schemas/waf-managed-rules_mode_deny_traditional"
        }
      }
    }
  ],
  "description": "When triggered, traditional WAF rules cause the firewall to immediately act upon the request based on the configuration of the rule. A 'deny' rule will immediately respond to the request based on the configured rule action/mode (for example, 'block') and no other rules will be processed.",
  "required": [
    "id",
    "description",
    "priority",
    "allowed_modes",
    "default_mode",
    "mode",
    "group",
    "package_id"
  ]
}