{ "$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" ] }