{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amplitude/refs/heads/main/json-schema/dsar-api-dsar-status-response-schema.json", "title": "DsarStatusResponse", "description": "DsarStatusResponse schema from Amplitude Data Subject Access Request API", "type": "object", "properties": { "request_id": { "type": "string", "description": "The unique identifier for the DSAR request." }, "status": { "type": "string", "description": "The processing status of the request.", "enum": [ "pending", "processing", "complete", "failed" ] }, "download_url": { "type": "string", "format": "uri", "description": "The URL to download the requested data. Only present when status is complete." } } }