doordash · JSON Structure

Doordash Quote Request Structure

QuoteRequest structure from DoorDash API

Type: object Properties: 10 Required: 3

QuoteRequest is a JSON Structure definition published by doordash, describing 10 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

external_delivery_id pickup_address pickup_business_name pickup_phone_number dropoff_address dropoff_business_name dropoff_phone_number order_value pickup_time dropoff_time

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/doordash/refs/heads/main/json-structure/doordash-quote-request-structure.json",
  "name": "QuoteRequest",
  "description": "QuoteRequest structure from DoorDash API",
  "type": "object",
  "properties": {
    "external_delivery_id": {
      "type": "string",
      "description": "A unique identifier for this delivery, provided by the caller.",
      "example": "D-12345"
    },
    "pickup_address": {
      "type": "string",
      "description": "The full street address for the pickup location.",
      "example": "901 Market St, San Francisco, CA 94105"
    },
    "pickup_business_name": {
      "type": "string",
      "description": "The business name at the pickup location.",
      "example": "Acme Pickup Store"
    },
    "pickup_phone_number": {
      "type": "string",
      "description": "The phone number at the pickup location.",
      "example": "+15555551234"
    },
    "dropoff_address": {
      "type": "string",
      "description": "The full street address for the dropoff location.",
      "example": "901 Market St, San Francisco, CA 94105"
    },
    "dropoff_business_name": {
      "type": "string",
      "description": "The business name at the dropoff location.",
      "example": "Acme Pickup Store"
    },
    "dropoff_phone_number": {
      "type": "string",
      "description": "The phone number at the dropoff location.",
      "example": "+15555551234"
    },
    "order_value": {
      "type": "int32",
      "description": "The total value of the order in cents.",
      "example": 42
    },
    "pickup_time": {
      "type": "datetime",
      "description": "The requested pickup time in UTC ISO-8601 format.",
      "example": "2026-06-02T14:30:00Z"
    },
    "dropoff_time": {
      "type": "datetime",
      "description": "The requested dropoff time in UTC ISO-8601 format.",
      "example": "2026-06-02T14:30:00Z"
    }
  },
  "required": [
    "external_delivery_id",
    "pickup_address",
    "dropoff_address"
  ]
}