doordash · JSON Structure

Doordash Delivery Item Structure

DeliveryItem structure from DoorDash API

Type: object Properties: 5

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

Properties

name description quantity external_id price

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-delivery-item-structure.json",
  "name": "DeliveryItem",
  "description": "DeliveryItem structure from DoorDash API",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the item.",
      "example": "Acme Pickup Store"
    },
    "description": {
      "type": "string",
      "description": "A description of the item.",
      "example": "Leave at the front desk."
    },
    "quantity": {
      "type": "int32",
      "description": "The quantity of this item.",
      "minimum": 1,
      "example": 1
    },
    "external_id": {
      "type": "string",
      "description": "An external identifier for the item.",
      "example": "D-12345"
    },
    "price": {
      "type": "int32",
      "description": "The price of the item in cents.",
      "example": 42
    }
  }
}