{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/doordash/refs/heads/main/json-schema/doordash-classic-delivery-update-request-schema.json", "title": "ClassicDeliveryUpdateRequest", "description": "ClassicDeliveryUpdateRequest schema from DoorDash API", "type": "object", "properties": { "tip": { "type": "integer", "description": "Updated tip amount in cents.", "example": 42 }, "dropoff_instructions": { "type": "string", "description": "Updated dropoff instructions.", "example": "Leave at the front desk." }, "dropoff_phone_number": { "type": "string", "description": "Updated dropoff phone number.", "example": "+15555551234" } } }