doordash · JSON Structure

Doordash Store Status Update Structure

StoreStatusUpdate structure from DoorDash API

Type: object Properties: 2 Required: 1

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

Properties

status 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-store-status-update-structure.json",
  "name": "StoreStatusUpdate",
  "description": "StoreStatusUpdate structure from DoorDash API",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "description": "The new store status.",
      "enum": [
        "open",
        "closed",
        "temporarily_closed"
      ],
      "example": "open"
    },
    "reason": {
      "type": "string",
      "description": "The reason for the status change.",
      "example": "example"
    }
  },
  "required": [
    "status"
  ]
}