doordash · Schema

Promotion

Promotion schema from DoorDash API

Properties

Name Type Description
merchant_supplied_id string The merchant-supplied item identifier for the promoted item.
promotional_price integer The promotional price in cents.
start_date string The start date of the promotion in UTC ISO-8601 format.
end_date string The end date of the promotion in UTC ISO-8601 format.
description string A description of the promotion.
View JSON Schema on GitHub

JSON Schema

doordash-promotion-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/doordash/refs/heads/main/json-schema/doordash-promotion-schema.json",
  "title": "Promotion",
  "description": "Promotion schema from DoorDash API",
  "type": "object",
  "properties": {
    "merchant_supplied_id": {
      "type": "string",
      "description": "The merchant-supplied item identifier for the promoted item.",
      "example": "D-12345"
    },
    "promotional_price": {
      "type": "integer",
      "description": "The promotional price in cents.",
      "example": 42
    },
    "start_date": {
      "type": "string",
      "format": "date-time",
      "description": "The start date of the promotion in UTC ISO-8601 format.",
      "example": "2026-06-02T14:30:00Z"
    },
    "end_date": {
      "type": "string",
      "format": "date-time",
      "description": "The end date of the promotion in UTC ISO-8601 format.",
      "example": "2026-06-02T14:30:00Z"
    },
    "description": {
      "type": "string",
      "description": "A description of the promotion.",
      "example": "Leave at the front desk."
    }
  },
  "required": [
    "merchant_supplied_id",
    "promotional_price"
  ]
}