doordash · JSON Structure

Doordash Promotions Response Structure

PromotionsResponse structure from DoorDash API

Type: object Properties: 3

PromotionsResponse 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 promotions_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-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"
      }
    }
  }
}