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