Uber Eats · Schema

DeliveryReq

DeliveryReq schema from Uber Direct (DaaS) API

Uber EatsUber DirectFood DeliveryLast-Mile LogisticsRestaurantsMenusOrdersFulfillmentCourierOAuth2

Properties

Name Type Description
quote_id string The ID of a previously generated delivery quote.
pickup_name string
pickup_address string
pickup_phone_number string
dropoff_name string
dropoff_address string
dropoff_phone_number string
manifest_items array
pickup_business_name string
pickup_latitude number
pickup_longitude number
pickup_notes string
dropoff_business_name string
dropoff_latitude number
dropoff_longitude number
dropoff_notes string
tip integer Amount in cents to tip the courier.
external_id string An ID for an account to facilitate billing.
View JSON Schema on GitHub

JSON Schema

uber-direct-delivery-req-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "DeliveryReq",
  "description": "DeliveryReq schema from Uber Direct (DaaS) API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/uber-eats/refs/heads/main/json-schema/uber-direct-delivery-req-schema.json",
  "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": "number",
      "example": 40.7066581
    },
    "pickup_longitude": {
      "type": "number",
      "example": -74.0071868
    },
    "pickup_notes": {
      "type": "string",
      "example": "Leave at the front desk."
    },
    "dropoff_business_name": {
      "type": "string",
      "example": "Example Store"
    },
    "dropoff_latitude": {
      "type": "number",
      "example": 40.7066581
    },
    "dropoff_longitude": {
      "type": "number",
      "example": -74.0071868
    },
    "dropoff_notes": {
      "type": "string",
      "example": "Leave at the front desk."
    },
    "tip": {
      "type": "integer",
      "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"
  ]
}