Deliveroo · JSON Structure

Catalogue Api Site Price Overrides Structure

Site-level price overrides for catalogue items.

Type: object Properties: 1
Food DeliveryGroceryMarketplaceLogisticsRestaurants

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

Properties

prices

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-site-price-overrides-structure.json",
  "name": "SitePriceOverrides",
  "description": "Site-level price overrides for catalogue items.",
  "type": "object",
  "properties": {
    "prices": {
      "type": "array",
      "description": "The per-item price overrides for the site.",
      "items": {
        "type": "object",
        "properties": {
          "item_id": {
            "type": "string",
            "description": "The catalogue item identifier."
          },
          "price": {
            "type": "int32",
            "description": "The overridden price in minor currency units.",
            "example": 499
          }
        }
      }
    }
  }
}