doordash · JSON Structure

Doordash Store Items Request Structure

StoreItemsRequest structure from DoorDash API

Type: object Properties: 1 Required: 1

StoreItemsRequest is a JSON Structure definition published by doordash, describing 1 property, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

items

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-store-items-request-structure.json",
  "name": "StoreItemsRequest",
  "description": "StoreItemsRequest structure from DoorDash API",
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "description": "The store-level item inventory and pricing data.",
      "items": {
        "$ref": "#/components/schemas/StoreItem"
      }
    }
  },
  "required": [
    "items"
  ]
}