Akamai · Schema

post-tag

Specifies a list of cache tags to invalidate or delete.

CDNCloudEdge ComputingNetworksPlatformSecurity

Properties

Name Type Description
objects array An array of cache tag strings you want to purge.
View JSON Schema on GitHub

JSON Schema

fast-purge-post-tag-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/akamai/main/json-schema/fast-purge-post-tag-schema.json",
  "title": "post-tag",
  "additionalProperties": false,
  "description": "Specifies a list of cache tags to invalidate or delete.",
  "properties": {
    "objects": {
      "description": "An array of cache tag strings you want to purge.",
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "required": [
    "objects"
  ],
  "type": "object",
  "x-akamai": {
    "file-path": "schemas/post-tag.yaml"
  }
}