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