{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "DeliveryResp", "description": "DeliveryResp schema from Uber Direct (DaaS) API", "$id": "https://raw.githubusercontent.com/api-evangelist/uber-eats/refs/heads/main/json-schema/uber-direct-delivery-resp-schema.json", "type": "object", "properties": { "id": { "type": "string", "example": "del_aBc123XyZ" }, "quote_id": { "type": "string", "example": "del_aBc123XyZ" }, "status": { "type": "string", "enum": [ "pending", "pickup", "pickup_complete", "dropoff", "delivered", "canceled", "returned" ], "example": "pending" }, "complete": { "type": "boolean", "example": false }, "kind": { "type": "string", "example": "example" }, "fee": { "type": "integer", "example": 600 }, "currency": { "type": "string", "example": "USD" }, "tracking_url": { "type": "string", "example": "https://www.ubereats.com/orders/del_aBc123XyZ" }, "tip": { "type": "integer", "example": 600 }, "live_mode": { "type": "boolean", "example": false }, "pickup_eta": { "type": "string", "format": "date-time", "example": "2026-06-01T19:00:00.000Z" }, "pickup_deadline": { "type": "string", "format": "date-time", "example": "2026-06-01T19:00:00.000Z" }, "dropoff_eta": { "type": "string", "format": "date-time", "example": "2026-06-01T19:00:00.000Z" }, "dropoff_deadline": { "type": "string", "format": "date-time", "example": "2026-06-01T19:00:00.000Z" }, "external_id": { "type": "string", "example": "del_aBc123XyZ" }, "created": { "type": "string", "format": "date-time", "example": "2026-06-01T19:00:00.000Z" }, "updated": { "type": "string", "format": "date-time", "example": "2026-06-01T19:00:00.000Z" }, "undeliverable_action": { "type": "string", "enum": [ "", "returned", "left_at_door" ], "example": "returned" }, "undeliverable_reason": { "type": "string", "example": "STORE_CLOSED" } } }