{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/doordash/refs/heads/main/json-structure/doordash-report-request-response-structure.json", "name": "ReportRequestResponse", "description": "ReportRequestResponse structure from DoorDash API", "type": "object", "properties": { "report_id": { "type": "string", "description": "The unique identifier for the report request. Use this to check status and retrieve the download link.", "example": "D-12345" }, "status": { "type": "string", "description": "The current processing status of the report.", "enum": [ "PENDING", "PROCESSING", "SUCCEEDED", "FAILED" ], "example": "PENDING" } } }