Deliveroo · JSON Structure

Catalogue Api Catalogue Structure

A master catalogue of retail items for a brand.

Type: object Properties: 3
Food DeliveryGroceryMarketplaceLogisticsRestaurants

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

Properties

catalogue_id name items

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/catalogue-api-catalogue-structure.json",
  "name": "Catalogue",
  "description": "A master catalogue of retail items for a brand.",
  "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": "int32",
            "description": "The price in minor currency units."
          }
        }
      }
    }
  }
}