Properties
| Name | Type | Description |
|---|---|---|
| menu_id | string | The unique identifier for the menu request. |
| status | string | The processing status of the menu request. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/doordash/refs/heads/main/json-schema/doordash-menu-response-schema.json",
"title": "MenuResponse",
"description": "MenuResponse schema from DoorDash API",
"type": "object",
"properties": {
"menu_id": {
"type": "string",
"description": "The unique identifier for the menu request.",
"example": "D-12345"
},
"status": {
"type": "string",
"description": "The processing status of the menu request.",
"enum": [
"received",
"processing",
"completed",
"failed"
],
"example": "received"
}
}
}