{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/akamai/main/json-schema/appsec-behavioral-ddos-sensitivity-override-schema.json", "title": "behavioral-ddos-sensitivity-override", "additionalProperties": false, "description": "Hostnames and path, overriding the global sensitivity setting.", "properties": { "host": { "description": "Hostname in host and path pair to override. Wildcards are allowed (`*` and `?`).", "type": "string" }, "path": { "description": "Path in host and path pair to override. Wildcards are allowed (`*` and `?`).", "type": "string" }, "sensitivity": { "description": "Sensitivity level, specify `CONSERVATIVE` to provide tolerance for more substantial traffic deviations, `MODERATE` to provide tolerance for traffic fluctuations, or `STRICT` or high-security environments, where minor deviations in traffic might signal a potential DDoS attack.", "enum": [ "CONSERVATIVE", "MODERATE", "STRICT" ], "type": "string" } }, "required": [ "host", "path", "sensitivity" ], "type": "object", "x-akamai": { "file-path": "schemas/behavioral-ddos-sensitivity-override.yaml" } }