Deliveroo · JSON Structure

Menu Api Menu Upload Structure

Request body for creating or updating a menu.

Type: object Properties: 3 Required: 3
Food DeliveryGroceryMarketplaceLogisticsRestaurants

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

Properties

name menu site_ids

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/deliveroo/refs/heads/main/json-structure/menu-api-menu-upload-structure.json",
  "name": "MenuUpload",
  "description": "Request body for creating or updating a menu.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "A human-readable name for the menu.",
      "example": "Lunch Menu"
    },
    "menu": {
      "type": "object",
      "description": "The menu document containing categories, items, modifiers, prices, POS identifiers, stock, and allergen data."
    },
    "site_ids": {
      "type": "array",
      "description": "The site identifiers this menu applies to.",
      "items": {
        "type": "string"
      },
      "example": [
        "gb-site-001"
      ]
    }
  },
  "required": [
    "name",
    "menu",
    "site_ids"
  ]
}