doordash · JSON Structure

Doordash Estimate Request Structure

EstimateRequest structure from DoorDash API

Type: object Properties: 4 Required: 2

EstimateRequest is a JSON Structure definition published by doordash, describing 4 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_time order_value

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-estimate-request-structure.json",
  "name": "EstimateRequest",
  "description": "EstimateRequest structure from DoorDash API",
  "type": "object",
  "properties": {
    "pickup_address": {
      "type": "string",
      "description": "The full street address for the pickup location.",
      "example": "901 Market St, San Francisco, CA 94105"
    },
    "dropoff_address": {
      "type": "string",
      "description": "The full street address for the dropoff location.",
      "example": "901 Market St, San Francisco, CA 94105"
    },
    "pickup_time": {
      "type": "datetime",
      "description": "The requested pickup time in UTC ISO-8601 format.",
      "example": "2026-06-02T14:30:00Z"
    },
    "order_value": {
      "type": "int32",
      "description": "The total value of the order in cents.",
      "example": 42
    }
  },
  "required": [
    "pickup_address",
    "dropoff_address"
  ]
}