{ "$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" ] }