Anomaly detection WAF rule

When triggered, anomaly detection WAF rules contribute to an overall threat score that will determine if a request is considered malicious. You can configure the total scoring threshold through the 'sensitivity' property of the WAF package.

APIs.ioEngineeringPlatform
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-waf-managed-rules-anomaly-rule-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/waf-managed-rules_anomaly_rule",
  "title": "Anomaly detection WAF rule",
  "allOf": [
    {
      "$ref": "#/components/schemas/waf-managed-rules_schemas-base"
    },
    {
      "properties": {
        "allowed_modes": {
          "$ref": "#/components/schemas/waf-managed-rules_allowed_modes_anomaly"
        },
        "mode": {
          "$ref": "#/components/schemas/waf-managed-rules_mode_anomaly"
        }
      }
    }
  ],
  "description": "When triggered, anomaly detection WAF rules contribute to an overall threat score that will determine if a request is considered malicious. You can configure the total scoring threshold through the 'sensitivity' property of the WAF package.",
  "required": [
    "id",
    "description",
    "priority",
    "allowed_modes",
    "mode",
    "group",
    "package_id"
  ]
}