{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/doordash/refs/heads/main/json-structure/doordash-menu-option-structure.json", "name": "MenuOption", "description": "MenuOption structure from DoorDash API", "type": "object", "properties": { "id": { "type": "string", "description": "The unique identifier for this option.", "example": "D-12345" }, "name": { "type": "string", "description": "The display name of the option.", "example": "Acme Pickup Store" }, "price": { "type": "int32", "description": "The additional price for this option in cents.", "example": 42 }, "is_active": { "type": "boolean", "description": "Whether the option is currently available.", "example": true } }, "required": [ "id", "name", "price" ] }