doordash · JSON Structure

Doordash Item Status Update Structure

ItemStatusUpdate structure from DoorDash API

Type: object Properties: 1 Required: 1

ItemStatusUpdate is a JSON Structure definition published by doordash, describing 1 property, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

items

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-item-status-update-structure.json",
  "name": "ItemStatusUpdate",
  "description": "ItemStatusUpdate structure from DoorDash API",
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "description": "The items to update availability for.",
      "items": {
        "type": "object",
        "required": [
          "id",
          "is_available"
        ],
        "properties": {
          "id": {
            "type": "string",
            "description": "The merchant-supplied item identifier."
          },
          "is_available": {
            "type": "boolean",
            "description": "Whether the item is available for ordering."
          }
        }
      }
    }
  },
  "required": [
    "items"
  ]
}