A delivery estimate and fee.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Quote", "description": "A delivery estimate and fee.", "$id": "https://raw.githubusercontent.com/api-evangelist/deliveroo/refs/heads/main/json-schema/signature-api-quote-schema.json", "type": "object", "properties": { "quote_id": { "type": "string", "description": "The identifier of the quote, valid for 5 minutes.", "example": "gb-12345" }, "fee": { "type": "integer", "description": "The delivery fee in minor currency units.", "example": 299 } } }