Deliveroo · JSON Structure

Picking Api Item Amendments Structure

Request body for amending order item availability.

Type: object Properties: 1 Required: 1
Food DeliveryGroceryMarketplaceLogisticsRestaurants

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

Properties

item_amendments

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/picking-api-item-amendments-structure.json",
  "name": "ItemAmendments",
  "description": "Request body for amending order item availability.",
  "type": "object",
  "properties": {
    "item_amendments": {
      "type": "array",
      "description": "The list of item-level amendments to apply.",
      "items": {
        "type": "object",
        "properties": {
          "item_id": {
            "type": "string",
            "description": "The order item identifier."
          },
          "quantity": {
            "type": "int32",
            "description": "The amended available quantity.",
            "example": 0
          }
        }
      }
    }
  },
  "required": [
    "item_amendments"
  ]
}