Fastly · Schema

PurgeResponse

The response from a purge operation confirming the purge was accepted.

CDNEdge CloudEdge ComputeWebAssemblySecurityAIObservabilityAsyncAPIStreamingWebhooksLogging

Properties

Name Type Description
status string The status of the purge operation.
id string A unique identifier for the purge operation.
View JSON Schema on GitHub

JSON Schema

fastly-purgeresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PurgeResponse",
  "title": "PurgeResponse",
  "type": "object",
  "description": "The response from a purge operation confirming the purge was accepted.",
  "properties": {
    "status": {
      "type": "string",
      "description": "The status of the purge operation.",
      "enum": [
        "ok"
      ]
    },
    "id": {
      "type": "string",
      "description": "A unique identifier for the purge operation."
    }
  }
}