{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "ExportJob", "type": "object", "description": "Information about a data export job.", "properties": { "id": { "type": "string", "description": "The unique export job ID." }, "created_at": { "type": "string", "description": "When the export was created." }, "type": { "type": "string", "description": "The type of data being exported." }, "finished_at": { "type": "string", "description": "When the export completed." }, "state": { "type": "string", "description": "The current state of the export." }, "result_url": { "type": "string", "description": "The URL to download the export file (when complete)." } } }