{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/toast-tab/refs/heads/main/json-schema/restaurants-delivery-payment-options-schema.json", "title": "DeliveryPaymentOptions", "description": "Information about the forms of payment that the restaurant will\naccept for delivery orders.\n", "type": "object", "properties": { "cash": { "type": "boolean", "description": "Indicates whether the restaurant accepts cash payment for\ndelivery orders that are placed online.\n", "example": true }, "ccSameDay": { "type": "boolean", "description": "Indicates whether the restaurant accepts online credit card\npayment for delivery orders that are delivered on the same\nday.\n", "example": true }, "ccFuture": { "type": "boolean", "description": "Indicates whether the restaurant accepts online credit card\npayment for delivery orders that are to be delivered on a day\nafter the guest places the order.\n", "example": true } } }