doordash · Schema

CancelledItem

CancelledItem schema from DoorDash API

Properties

Name Type Description
item_id string The ID of the item to cancel.
reason string The reason for cancellation.
View JSON Schema on GitHub

JSON Schema

doordash-cancelled-item-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-cancelled-item-schema.json",
  "title": "CancelledItem",
  "description": "CancelledItem schema 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"
    }
  }
}