doordash · JSON Structure

Doordash Catalog Items Request Structure

CatalogItemsRequest structure from DoorDash API

Type: object Properties: 1 Required: 1

CatalogItemsRequest 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-catalog-items-request-structure.json",
  "name": "CatalogItemsRequest",
  "description": "CatalogItemsRequest structure from DoorDash API",
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "description": "The items to add or update in the catalog.",
      "items": {
        "$ref": "#/components/schemas/CatalogItem"
      }
    }
  },
  "required": [
    "items"
  ]
}