Anomaly detection WAF package (OWASP)

APIs.ioEngineeringPlatform
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-firewall-anomaly-package-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/firewall_anomaly_package",
  "title": "Anomaly detection WAF package (OWASP)",
  "allOf": [
    {
      "$ref": "#/components/schemas/firewall_package_definition"
    },
    {
      "properties": {
        "action_mode": {
          "$ref": "#/components/schemas/firewall_action_mode"
        },
        "description": {
          "$ref": "#/components/schemas/firewall_anomaly_description"
        },
        "detection_mode": {
          "$ref": "#/components/schemas/firewall_anomaly_detection_mode"
        },
        "name": {
          "$ref": "#/components/schemas/firewall_anomaly_name"
        },
        "sensitivity": {
          "$ref": "#/components/schemas/firewall_sensitivity"
        }
      }
    }
  ],
  "required": [
    "id",
    "name",
    "description",
    "zone_id",
    "detection_mode",
    "sensitivity",
    "action_mode"
  ]
}