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