doordash · JSON Structure

Doordash Classic Delivery Structure

ClassicDelivery structure from DoorDash API

Type: object Properties: 16

ClassicDelivery is a JSON Structure definition published by doordash, describing 16 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

external_delivery_id delivery_status fee currency tip pickup_address dropoff_address pickup_time_estimated pickup_time_actual dropoff_time_estimated dropoff_time_actual dasher_id dasher_name tracking_url created_at updated_at

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-classic-delivery-structure.json",
  "name": "ClassicDelivery",
  "description": "ClassicDelivery structure from DoorDash API",
  "type": "object",
  "properties": {
    "external_delivery_id": {
      "type": "string",
      "description": "The unique external delivery ID.",
      "example": "D-12345"
    },
    "delivery_status": {
      "type": "string",
      "description": "The current status of the delivery.",
      "enum": [
        "created",
        "confirmed",
        "enroute_to_pickup",
        "arrived_at_pickup",
        "picked_up",
        "enroute_to_dropoff",
        "arrived_at_dropoff",
        "delivered",
        "cancelled",
        "returned"
      ],
      "example": "created"
    },
    "fee": {
      "type": "int32",
      "description": "The delivery fee in cents.",
      "example": 42
    },
    "currency": {
      "type": "string",
      "description": "The currency code.",
      "example": "USD"
    },
    "tip": {
      "type": "int32",
      "description": "The tip amount in cents.",
      "example": 42
    },
    "pickup_address": {
      "type": "string",
      "description": "The pickup address.",
      "example": "901 Market St, San Francisco, CA 94105"
    },
    "dropoff_address": {
      "type": "string",
      "description": "The dropoff address.",
      "example": "901 Market St, San Francisco, CA 94105"
    },
    "pickup_time_estimated": {
      "type": "datetime",
      "description": "The estimated pickup time.",
      "example": "2026-06-02T14:30:00Z"
    },
    "pickup_time_actual": {
      "type": "datetime",
      "description": "The actual pickup time.",
      "example": "2026-06-02T14:30:00Z"
    },
    "dropoff_time_estimated": {
      "type": "datetime",
      "description": "The estimated dropoff time.",
      "example": "2026-06-02T14:30:00Z"
    },
    "dropoff_time_actual": {
      "type": "datetime",
      "description": "The actual dropoff time.",
      "example": "2026-06-02T14:30:00Z"
    },
    "dasher_id": {
      "type": "int32",
      "description": "The assigned Dasher's ID.",
      "example": 42
    },
    "dasher_name": {
      "type": "string",
      "description": "The assigned Dasher's first name.",
      "example": "Acme Pickup Store"
    },
    "tracking_url": {
      "type": "uri",
      "description": "A URL for tracking the delivery.",
      "example": "https://example.com/path/abc123"
    },
    "created_at": {
      "type": "datetime",
      "description": "When the delivery was created.",
      "example": "2026-06-02T14:30:00Z"
    },
    "updated_at": {
      "type": "datetime",
      "description": "When the delivery was last updated.",
      "example": "2026-06-02T14:30:00Z"
    }
  }
}