doordash · Schema

Quote

Quote schema from DoorDash API

Properties

Name Type Description
external_delivery_id string The unique external delivery ID for this quote.
fee integer The delivery fee in cents.
currency string The currency code for the fee amount.
delivery_time string The estimated delivery time in UTC ISO-8601 format.
pickup_time string The estimated pickup time in UTC ISO-8601 format.
expires_at string The time at which this quote expires, typically 5 minutes after creation.
View JSON Schema on GitHub

JSON Schema

doordash-quote-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/doordash/refs/heads/main/json-schema/doordash-quote-schema.json",
  "title": "Quote",
  "description": "Quote schema from DoorDash API",
  "type": "object",
  "properties": {
    "external_delivery_id": {
      "type": "string",
      "description": "The unique external delivery ID for this quote.",
      "example": "D-12345"
    },
    "fee": {
      "type": "integer",
      "description": "The delivery fee in cents.",
      "example": 42
    },
    "currency": {
      "type": "string",
      "description": "The currency code for the fee amount.",
      "example": "USD"
    },
    "delivery_time": {
      "type": "string",
      "format": "date-time",
      "description": "The estimated delivery time in UTC ISO-8601 format.",
      "example": "2026-06-02T14:30:00Z"
    },
    "pickup_time": {
      "type": "string",
      "format": "date-time",
      "description": "The estimated pickup time in UTC ISO-8601 format.",
      "example": "2026-06-02T14:30:00Z"
    },
    "expires_at": {
      "type": "string",
      "format": "date-time",
      "description": "The time at which this quote expires, typically 5 minutes after creation.",
      "example": "2026-06-02T14:30:00Z"
    }
  }
}