Deliveroo · Schema

MenuUpload

Request body for creating or updating a menu.

Food DeliveryGroceryMarketplaceLogisticsRestaurants

Properties

Name Type Description
name string A human-readable name for the menu.
menu object The menu document containing categories, items, modifiers, prices, POS identifiers, stock, and allergen data.
site_ids array The site identifiers this menu applies to.
View JSON Schema on GitHub

JSON Schema

menu-api-menu-upload-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "MenuUpload",
  "description": "Request body for creating or updating a menu.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/deliveroo/refs/heads/main/json-schema/menu-api-menu-upload-schema.json",
  "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"
  ]
}