doordash · Schema

StoreStatusUpdate

StoreStatusUpdate schema from DoorDash API

Properties

Name Type Description
status string The new store status.
reason string The reason for the status change.
View JSON Schema on GitHub

JSON Schema

doordash-store-status-update-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-store-status-update-schema.json",
  "title": "StoreStatusUpdate",
  "description": "StoreStatusUpdate schema 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"
  ]
}