doordash · JSON Structure

Doordash Report Request Response Structure

ReportRequestResponse structure from DoorDash API

Type: object Properties: 2

ReportRequestResponse is a JSON Structure definition published by doordash, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

report_id status

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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"
    }
  }
}