Deliveroo · Schema

SitePriceOverrides

Site-level price overrides for catalogue items.

Food DeliveryGroceryMarketplaceLogisticsRestaurants

Properties

Name Type Description
prices array The per-item price overrides for the site.
View JSON Schema on GitHub

JSON Schema

catalogue-api-site-price-overrides-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "SitePriceOverrides",
  "description": "Site-level price overrides for catalogue items.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/deliveroo/refs/heads/main/json-schema/catalogue-api-site-price-overrides-schema.json",
  "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": "integer",
            "description": "The overridden price in minor currency units.",
            "example": 499
          }
        }
      }
    }
  }
}