Deliveroo · Schema
Catalogue
A master catalogue of retail items for a brand.
Food DeliveryGroceryMarketplaceLogisticsRestaurants
Properties
| Name | Type | Description |
|---|---|---|
| catalogue_id | string | The catalogue identifier. |
| name | string | The catalogue name. |
| items | array | The products in the catalogue (up to 30,000 per brand). |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Catalogue",
"description": "A master catalogue of retail items for a brand.",
"$id": "https://raw.githubusercontent.com/api-evangelist/deliveroo/refs/heads/main/json-schema/catalogue-api-catalogue-schema.json",
"type": "object",
"properties": {
"catalogue_id": {
"type": "string",
"description": "The catalogue identifier.",
"example": "gb-12345"
},
"name": {
"type": "string",
"description": "The catalogue name.",
"example": "Example"
},
"items": {
"type": "array",
"description": "The products in the catalogue (up to 30,000 per brand).",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The item identifier."
},
"name": {
"type": "string",
"description": "The product name."
},
"price": {
"type": "integer",
"description": "The price in minor currency units."
}
}
}
}
}
}