doordash · JSON Structure

Doordash Menu Request Structure

MenuRequest structure from DoorDash API

Type: object Properties: 2 Required: 2

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

Properties

store_id categories

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-menu-request-structure.json",
  "name": "MenuRequest",
  "description": "MenuRequest structure 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"
  ]
}