doordash · Schema

MenuDetails

MenuDetails schema from DoorDash API

Properties

Name Type Description
store_id string The merchant-supplied store identifier.
categories array The menu categories.
last_updated string When the menu was last updated.
View JSON Schema on GitHub

JSON Schema

doordash-menu-details-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-menu-details-schema.json",
  "title": "MenuDetails",
  "description": "MenuDetails 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.",
      "items": {
        "$ref": "#/components/schemas/MenuCategory"
      }
    },
    "last_updated": {
      "type": "string",
      "format": "date-time",
      "description": "When the menu was last updated.",
      "example": "2026-06-02T14:30:00Z"
    }
  }
}