doordash · JSON Structure

Doordash Store Items Response Structure

StoreItemsResponse structure from DoorDash API

Type: object Properties: 3

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

Properties

status items_processed errors

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-response-structure.json",
  "name": "StoreItemsResponse",
  "description": "StoreItemsResponse structure from DoorDash API",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "description": "The processing status of the request.",
      "example": "active"
    },
    "items_processed": {
      "type": "int32",
      "description": "The number of items processed.",
      "example": 42
    },
    "errors": {
      "type": "array",
      "description": "Any errors encountered during processing.",
      "items": {
        "$ref": "#/components/schemas/ItemError"
      }
    }
  }
}