Properties
| Name | Type | Description |
|---|---|---|
| store_id | string | The merchant-supplied store identifier. |
| categories | array | The menu categories containing items. |
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-request-schema.json",
"title": "MenuRequest",
"description": "MenuRequest schema from DoorDash API",
"type": "object",
"properties": {
"store_id": {
"type": "string",
"description": "The merchant-supplied store identifier.",
"example": "D-12345"
},
"categories": {
"type": "array",
"description": "The menu categories containing items.",
"items": {
"$ref": "#/components/schemas/MenuCategory"
}
}
},
"required": [
"store_id",
"categories"
]
}