Akamai · Schema

post-url

Specifies a list of URLs or ARLs to invalidate or delete. You can submit URLs and ARLs in the same purge request.

CDNCloudEdge ComputingNetworksPlatformSecurity

Properties

Name Type Description
objects array Lists URLs or ARLs to purge. Purges content for both `http` and `https` schemes.
View JSON Schema on GitHub

JSON Schema

akamai-post-url-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/post-url",
  "title": "post-url",
  "additionalProperties": false,
  "description": "Specifies a list of URLs or ARLs to invalidate or delete. You can submit URLs and ARLs in the same purge request.",
  "properties": {
    "objects": {
      "description": "Lists URLs or ARLs to purge. Purges content for both `http` and `https` schemes.",
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "required": [
    "objects"
  ],
  "type": "object",
  "x-akamai": {
    "file-path": "schemas/post-url.yaml"
  }
}