{ "$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" } }