doordash · Schema

ReportRequestResponse

ReportRequestResponse schema from DoorDash API

Properties

Name Type Description
report_id string The unique identifier for the report request. Use this to check status and retrieve the download link.
status string The current processing status of the report.
View JSON Schema on GitHub

JSON Schema

doordash-report-request-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/doordash/refs/heads/main/json-schema/doordash-report-request-response-schema.json",
  "title": "ReportRequestResponse",
  "description": "ReportRequestResponse schema 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"
    }
  }
}