{ "$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" } } } }