Akamai · Schema

urlProtectionCategory

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

CDNCloudEdge ComputingNetworksPlatformSecurity

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

akamai-url-protection-client-list-category-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/url-protection-client-list-category",
  "title": "urlProtectionCategory",
  "additionalProperties": false,
  "description": "Defines a `CLIENT_LIST` load shedding category for a URL protection policy.",
  "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"
  ],
  "type": "object",
  "x-akamai": {
    "file-path": "schemas/url-protection-client-list-category.yaml"
  }
}