{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AsyncDeletionStatus", "title": "AsyncDeletionStatus", "type": "object", "properties": { "person_uuid": { "type": "string", "description": "The UUID of the person whose events are queued for deletion." }, "created_at": { "type": "string", "format": "date-time", "description": "When the deletion was requested." }, "status": { "type": "string", "readOnly": true, "description": "Current status: 'pending' or 'completed'." }, "delete_verified_at": { "type": "string", "format": "date-time", "nullable": true, "description": "When the deletion was verified complete. Null if still pending." } }, "required": [ "created_at", "delete_verified_at", "person_uuid", "status" ] }