Akamai · Schema

url-protection-policy-hostpath

The hostname and path combinations to match on.

CDNCloudEdge ComputingNetworksPlatformSecurity

Properties

Name Type Description
hostname string The hostnames you choose to match on.
paths array The list of paths to match on.
View JSON Schema on GitHub

JSON Schema

akamai-url-protection-policy-hostpath-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/url-protection-policy-hostpath",
  "title": "url-protection-policy-hostpath",
  "additionalProperties": false,
  "description": "The hostname and path combinations to match on.",
  "properties": {
    "hostname": {
      "description": "The hostnames you choose to match on.",
      "type": "string"
    },
    "paths": {
      "description": "The list of paths to match on.",
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "required": [
    "hostname",
    "paths"
  ],
  "type": "object",
  "x-akamai": {
    "file-path": "schemas/url-protection-policy-hostpath.yaml"
  }
}