url-protection-client-list-category

Defines a `CLIENT_LIST` load shedding category for a URL protection policy.

API DiscoveryAPI SecurityCloud SecurityPosture ManagementRuntime ProtectionThreat Protection

Properties

Name Type Description
listIds array A list of client list identifiers to match on.
positiveMatch boolean Whether the selected client lists match.
type string Specify `CLIENT_LIST` to match on a client list.
View JSON Schema on GitHub

JSON Schema

api-security-url-protection-client-list-category-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/akamai-api-security/refs/heads/main/json-schema/api-security-url-protection-client-list-category-schema.json",
  "title": "url-protection-client-list-category",
  "description": "Defines a `CLIENT_LIST` load shedding category for a URL protection policy.",
  "type": "object",
  "properties": {
    "listIds": {
      "description": "A list of client list identifiers to match on.",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "positiveMatch": {
      "description": "Whether the selected client lists match.",
      "type": "boolean"
    },
    "type": {
      "description": "Specify `CLIENT_LIST` to match on a client list.",
      "enum": [
        "CLIENT_LIST"
      ],
      "type": "string"
    }
  },
  "required": [
    "type"
  ],
  "additionalProperties": false
}