Uber Eats · JSON Structure

Uber Direct Delivery Req Structure

DeliveryReq schema from Uber Direct (DaaS) API

Type: object Properties: 18 Required: 7
Uber EatsUber DirectFood DeliveryLast-Mile LogisticsRestaurantsMenusOrdersFulfillmentCourierOAuth2

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

Properties

quote_id pickup_name pickup_address pickup_phone_number dropoff_name dropoff_address dropoff_phone_number manifest_items pickup_business_name pickup_latitude pickup_longitude pickup_notes dropoff_business_name dropoff_latitude dropoff_longitude dropoff_notes tip external_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-req-structure.json",
  "name": "DeliveryReq",
  "description": "DeliveryReq schema from Uber Direct (DaaS) API",
  "type": "object",
  "properties": {
    "quote_id": {
      "type": "string",
      "description": "The ID of a previously generated delivery quote.",
      "example": "del_aBc123XyZ"
    },
    "pickup_name": {
      "type": "string",
      "example": "Example Store"
    },
    "pickup_address": {
      "type": "string",
      "example": "{\"street_address\":[\"100 Maiden Ln\"],\"city\":\"New York\",\"state\":\"NY\",\"zip_code\":\"10023\",\"country\":\"US\"}"
    },
    "pickup_phone_number": {
      "type": "string",
      "example": "+15555555555"
    },
    "dropoff_name": {
      "type": "string",
      "example": "Example Store"
    },
    "dropoff_address": {
      "type": "string",
      "example": "{\"street_address\":[\"100 Maiden Ln\"],\"city\":\"New York\",\"state\":\"NY\",\"zip_code\":\"10023\",\"country\":\"US\"}"
    },
    "dropoff_phone_number": {
      "type": "string",
      "example": "+15555555555"
    },
    "manifest_items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ManifestItem"
      }
    },
    "pickup_business_name": {
      "type": "string",
      "example": "Example Store"
    },
    "pickup_latitude": {
      "type": "double",
      "example": 40.7066581
    },
    "pickup_longitude": {
      "type": "double",
      "example": -74.0071868
    },
    "pickup_notes": {
      "type": "string",
      "example": "Leave at the front desk."
    },
    "dropoff_business_name": {
      "type": "string",
      "example": "Example Store"
    },
    "dropoff_latitude": {
      "type": "double",
      "example": 40.7066581
    },
    "dropoff_longitude": {
      "type": "double",
      "example": -74.0071868
    },
    "dropoff_notes": {
      "type": "string",
      "example": "Leave at the front desk."
    },
    "tip": {
      "type": "int32",
      "description": "Amount in cents to tip the courier.",
      "example": 600
    },
    "external_id": {
      "type": "string",
      "description": "An ID for an account to facilitate billing.",
      "example": "del_aBc123XyZ"
    }
  },
  "required": [
    "pickup_name",
    "pickup_address",
    "pickup_phone_number",
    "dropoff_name",
    "dropoff_address",
    "dropoff_phone_number",
    "manifest_items"
  ]
}