Uber Eats · JSON Structure

Uber Direct Delivery Quote Req Structure

DeliveryQuoteReq schema from Uber Direct (DaaS) API

Type: object Properties: 14 Required: 2
Uber EatsUber DirectFood DeliveryLast-Mile LogisticsRestaurantsMenusOrdersFulfillmentCourierOAuth2

DeliveryQuoteReq is a JSON Structure definition published by Uber Eats, describing 14 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

pickup_address dropoff_address pickup_latitude pickup_longitude dropoff_latitude dropoff_longitude pickup_ready_dt pickup_deadline_dt dropoff_ready_dt dropoff_deadline_dt pickup_phone_number dropoff_phone_number manifest_total_value external_store_id

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/uber-eats/refs/heads/main/json-structure/uber-direct-delivery-quote-req-structure.json",
  "name": "DeliveryQuoteReq",
  "description": "DeliveryQuoteReq schema from Uber Direct (DaaS) API",
  "type": "object",
  "properties": {
    "pickup_address": {
      "type": "string",
      "description": "JSON string containing pickup address details.",
      "example": "{\"street_address\":[\"100 Maiden Ln\"],\"city\":\"New York\",\"state\":\"NY\",\"zip_code\":\"10023\",\"country\":\"US\"}"
    },
    "dropoff_address": {
      "type": "string",
      "description": "JSON string containing dropoff address details.",
      "example": "{\"street_address\":[\"30 Lincoln Center Plaza\"],\"city\":\"New York\",\"state\":\"NY\",\"zip_code\":\"10023\",\"country\":\"US\"}"
    },
    "pickup_latitude": {
      "type": "double",
      "description": "Pickup latitude coordinate.",
      "example": 40.7066581
    },
    "pickup_longitude": {
      "type": "double",
      "description": "Pickup longitude coordinate.",
      "example": -74.0071868
    },
    "dropoff_latitude": {
      "type": "double",
      "description": "Dropoff latitude coordinate.",
      "example": 40.7066581
    },
    "dropoff_longitude": {
      "type": "double",
      "description": "Dropoff longitude coordinate.",
      "example": -74.0071868
    },
    "pickup_ready_dt": {
      "type": "datetime",
      "description": "(RFC 3339) Beginning of the window when an order must be picked up.",
      "example": "2026-06-01T19:00:00.000Z"
    },
    "pickup_deadline_dt": {
      "type": "datetime",
      "description": "(RFC 3339) End of the window when an order may be picked up.",
      "example": "2026-06-01T19:00:00.000Z"
    },
    "dropoff_ready_dt": {
      "type": "datetime",
      "description": "(RFC 3339) Beginning of the window when an order must be dropped off.",
      "example": "2026-06-01T19:00:00.000Z"
    },
    "dropoff_deadline_dt": {
      "type": "datetime",
      "description": "(RFC 3339) End of the window when an order must be dropped off.",
      "example": "2026-06-01T19:00:00.000Z"
    },
    "pickup_phone_number": {
      "type": "string",
      "description": "Phone number for the pickup location.",
      "example": "+15555555555"
    },
    "dropoff_phone_number": {
      "type": "string",
      "description": "Phone number for the dropoff location.",
      "example": "+15555555555"
    },
    "manifest_total_value": {
      "type": "int32",
      "description": "Value in cents of the items in the delivery.",
      "example": 600
    },
    "external_store_id": {
      "type": "string",
      "description": "Partner reference to a store or location.",
      "example": "del_aBc123XyZ"
    }
  },
  "required": [
    "pickup_address",
    "dropoff_address"
  ]
}