Deliveroo · Schema

MenuEventPayload

MenuEventPayload schema from Deliveroo webhooks

Food DeliveryGroceryMarketplaceLogisticsRestaurants

Properties

Name Type Description
event string The menu event type.
body object The menu upload result, indicating whether asynchronous menu processing succeeded or failed.
View JSON Schema on GitHub

JSON Schema

webhooks-menu-event-payload-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "MenuEventPayload",
  "description": "MenuEventPayload schema from Deliveroo webhooks",
  "$id": "https://raw.githubusercontent.com/api-evangelist/deliveroo/refs/heads/main/json-schema/webhooks-menu-event-payload-schema.json",
  "type": "object",
  "properties": {
    "event": {
      "type": "string",
      "description": "The menu event type.",
      "example": "example"
    },
    "body": {
      "type": "object",
      "description": "The menu upload result, indicating whether asynchronous menu processing succeeded or failed."
    }
  }
}