doordash · JSON Structure

Doordash Cancelled Item Structure

CancelledItem structure from DoorDash API

Type: object Properties: 2

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

Properties

item_id reason

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-cancelled-item-structure.json",
  "name": "CancelledItem",
  "description": "CancelledItem structure from DoorDash API",
  "type": "object",
  "properties": {
    "item_id": {
      "type": "string",
      "description": "The ID of the item to cancel.",
      "example": "D-12345"
    },
    "reason": {
      "type": "string",
      "description": "The reason for cancellation.",
      "example": "example"
    }
  }
}