{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/doordash/refs/heads/main/json-structure/doordash-promotions-response-structure.json", "name": "PromotionsResponse", "description": "PromotionsResponse structure from DoorDash API", "type": "object", "properties": { "status": { "type": "string", "description": "The processing status of the request.", "example": "active" }, "promotions_processed": { "type": "int32", "description": "The number of promotions processed.", "example": 42 }, "errors": { "type": "array", "description": "Any errors encountered during processing.", "items": { "$ref": "#/components/schemas/ItemError" } } } }