Toast · Schema
Check
Represents a single check within an order. The `externalId` value for a check must be unique. If you submit a check with an `externalId` that already exists for another check, the request will fail. You can use this behavior to implement idempotent check submission by always providing a consistent `externalId` for each unique check attempt.
RestaurantsPoint Of SalePaymentsOnline OrderingDeliveryLoyaltyGift CardsMenusOrdersKitchenLaborSchedulingInventoryHospitalityPartner Integrations
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/toast-tab/refs/heads/main/json-schema/orders-check-schema.json",
"title": "Check",
"description": "Represents a single check within an order.\n\nThe `externalId` value for a check must be unique. If you submit a check\nwith an `externalId` that already exists for another check, the request\nwill fail. You can use this behavior to implement idempotent check\nsubmission by always providing a consistent `externalId` for each unique\ncheck attempt.\n",
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ExternalReference"
},
{
"type": "object",
"required": [
"selections"
],
"properties": {
"createdDate": {
"description": "The date and time that the Toast platform received the check.",
"type": "string",
"format": "date-time"
},
"openedDate": {
"description": "The date on which this check was opened. If not specified, it is set to the current system time.",
"type": "string",
"format": "date-time"
},
"closedDate": {
"type": "string",
"format": "date-time",
"description": "The most recent date on which this check's payment status was set to `CLOSED`."
},
"modifiedDate": {
"type": "string",
"format": "date-time",
"description": "The most recent date on which this check was modified."
},
"deletedDate": {
"type": "string",
"format": "date-time",
"description": "The date on which this check was deleted.\n\n`deletedDate` is only applicable when `deleted` is true.\n\nIf `deleted` is false, then `deletedDate` is set to the UNIX epoch, `1970-01-01T00:00:00.000+0000`.\n"
},
"deleted": {
"type": "boolean",
"description": "Set to `true` if this check was deleted."
},
"selections": {
"type": "array",
"items": {
"$ref": "#/$defs/Selection"
}
},
"customer": {
"description": "A `Customer` object\nthat holds information about a restaurant guest\nthat is associated with the check.\n\nRequired for `POST` requests for orders that use the\ntakeout or delivery dining options.\n\nFor checks that apply or accrue Toast loyalty points, a\n`GET` request returns a `Customer` object\neven when restaurant employees do not enter guest\ninformation for a check. In this case, the `Customer` object\ncontains only the Toast platform GUID of the guest.\nAll other values are `null`.\n",
"$ref": "#/$defs/Customer"
},
"appliedLoyaltyInfo": {
"description": "Information about the customer loyalty program account associated with the check. Used to accrue loyalty program benefits and to redeem loyalty program discounts.",
"$ref": "#/$defs/AppliedLoyaltyInfo"
},
"taxExempt": {
"type": "boolean",
"default": false,
"description": "Set to `true` if this check is tax exempt."
},
"displayNumber": {
"type": "string",
"description": "Generally starts at one each day and counts up. The Toast platform fills this in if it is not specified when the order is POSTed. Not guaranteed to be unique."
},
"appliedServiceCharges": {
"type": "array",
"description": "Any restaurant-configured service charges that applied to this check.",
"items": {
"$ref": "#/$defs/AppliedServiceCharge"
}
},
"amount": {
"x-toast-read-only": true,
"type": "number",
"format": "double",
"description": "The total calculated price of the check including discounts and service charges. The `amount` does not include gratuity or taxes. Response only."
},
"taxAmount": {
"x-toast-read-only": true,
"type": "number",
"format": "double",
"description": "The calculated tax amount. Includes service charge and item level taxes. Response only."
},
"totalAmount": {
"type": "number",
"format": "double",
"description": "The total calculated price of this check including discounts and taxes. Not affected by refunds."
},
"payments": {
"type": "array",
"description": "Payments made on this check.",
"minItems": 0,
"items": {
"$ref": "#/$defs/Payment"
}
},
"tabName": {
"type": "string",
"description": "The name of the tab on this check. This displays on the KDS (Kitchen Display System) for pending orders.\n\nThe `tabName` value can contain up to 255 characters.\n"
},
"paymentStatus": {
"x-toast-read-only": true,
"type": "string",
"description": "The payment status of this check.\n\nValid values:\n\n* `OPEN` - There is an outstanding balance.\n\n* `PAID` - A credit card payment was applied, but the tip has not been adjusted.\n\n* `CLOSED` - There is no remaining amount due on this check. For credit card payments, the payment has been adjusted to reflect the tip. Toast does not prevent a `CLOSED` check from transitioning back to `OPEN` or `PAID`.\n\nResponse only.\n",
"enum": [
"OPEN",
"PAID",
"CLOSED"
]
},
"appliedDiscounts": {
"type": "array",
"description": "The discounts applied to this check. In a `POST` request, only one `appliedDiscount` is allowed per check.",
"minItems": 0,
"items": {
"$ref": "#/$defs/AppliedDiscount"
}
},
"voided": {
"x-toast-read-only": true,
"type": "boolean",
"description": "True if this check is voided. Response only."
},
"voidDate": {
"x-toast-read-only": true,
"type": "string",
"format": "date-time",
"description": "The date when this check was voided. Response only."
},
"voidBusinessDate": {
"x-toast-read-only": true,
"type": "integer",
"description": "The business date (yyyyMMdd) on which this check was voided. Response only."
},
"paidDate": {
"type": "string",
"format": "date-time",
"description": "The most recent date when this check received payment. If not specified when `POST`ing, it is set to the current system time."
},
"createdDevice": {
"description": "The Toast POS device that created the check. This value is `null` if the check was not created using a Toast POS device.",
"$ref": "#/$defs/Device"
},
"lastModifiedDevice": {
"description": "The Toast POS device that modified the check most recently. This value is `null` if the check was never modified using a Toast POS device.\n\nIf the check is modified but the modification was not made using a Toast POS device, then this value does not change.\n",
"type": "object",
"$ref": "#/$defs/Device"
},
"duration": {
"x-toast-read-only": true,
"type": "integer",
"description": "The number of seconds between creation and payment. Response only."
},
"openedBy": {
"description": "The restaurant employee, or server, who opened the check.",
"$ref": "#/$defs/ExternalReference"
}
}
}
],
"$defs": {
"ExternalReference": {
"type": "object",
"description": "A wrapper object with fields that allow reference to a Toast platform entity by Toast GUID or a partner's identifier.",
"allOf": [
{
"$ref": "#/$defs/ToastReference"
},
{
"type": "object",
"properties": {
"externalId": {
"description": "External identifier string that is prefixed by the naming authority. You can use the orders API to set an `externalId` for an order and then GET the order with that `externalId`.",
"type": "string"
}
}
}
]
},
"Selection": {
"type": "object",
"description": "A `Selection` object can represent either a primary item (for example,\n`Check.selections`) or a modifier (`Selection.modifiers`) selection.\nQuantity defaults to `1`.\n\nFor a `POST` operation, all selections must have valid `item` and\n`itemGroup` fields. The `item` and `itemGroup` values can be `null` for\n`GET` requests. For example, they are `null` for gift cards and on special\nrequests.\n\nTo specify a modifier selection, add it to the `modifiers` list of\nanother selection. Each modifier selection must have its `optionGroup` field\nset correctly, because a `MenuItem` can be included in multiple\n`MenuOptionGroups`, potentially with different prices or sizing.\n\nThe `externalId` value for a selection must be unique. If you submit a\nselection with an `externalId` that already exists for another selection,\nthe request will fail. You can use this behavior to implement idempotent\nselection submission by always providing a consistent `externalId` for\neach unique selection attempt.\n",
"allOf": [
{
"$ref": "#/$defs/ExternalReference"
},
{
"type": "object",
"required": [
"item",
"quantity"
],
"properties": {
"item": {
"type": "object",
"description": "A reference to the selected menu item.",
"$ref": "#/$defs/ConfigReference"
},
"itemGroup": {
"type": "object",
"description": "A reference to the menu group from which the item was selected.",
"$ref": "#/$defs/ConfigReference"
},
"optionGroup": {
"type": "object",
"description": "A reference to the modifier group from which the menu item was selected. Only applies if this is a modifier selection.",
"$ref": "#/$defs/ConfigReference"
},
"preModifier": {
"type": "object",
"description": "A reference to the selected pre-modifier.",
"$ref": "#/$defs/ConfigReference"
},
"quantity": {
"type": "number",
"format": "double",
"description": "Quantity ordered. For items sold by weight, a decimal number. For discrete items, a counting number."
},
"seatNumber": {
"x-toast-read-only": true,
"type": "integer",
"description": "Indicates which guest seat at a restaurant table ordered\na menu item selection. Restaurant employees can choose the\nseat number when they add a menu item to a guest check.\n\n* A positive integer value indicates the seat number for\n the menu item.\n\n* `0` - Indicates that the menu item is shared by\n multiple guests.\n\n* `-1` - Indicates that the restaurant employee did not\n select a seat for the menu item.\n\nResponse only.\n"
},
"unitOfMeasure": {
"type": "string",
"description": "The unit of measure used to weigh, determine size, or otherwise\nquantify the item.\n\nThe default is `NONE`, which means that the item is not meant to\nbe measured during a sale.\n\nValues are:\n* `NONE` - The item is not meant to be measured.\n* `LB` - Weighed in pounds.\n* `OZ` - Weighed in ounces.\n* `KG` - Weighed in kilograms.\n* `G` - Weighed in grams.\n* `GAL` - Measured in gallons.\n* `L` - Measured in liters.\n* `ML` - Measured in milliliters.\n* `FL_OZ` - Measured in fluid ounces.\n* `M` - Measured in meters.\n* `CM` - Measured in centimeters.\n* `FT` - Measured in feet.\n* `IN` - Measured in inches.\n* `YD` - Measured in yards.\n",
"enum": [
"NONE",
"LB",
"OZ",
"KG",
"G",
"GAL",
"L",
"ML",
"FL_OZ",
"M",
"CM",
"FT",
"IN",
"YD"
]
},
"selectionType": {
"type": "string",
"description": "Specifies whether this selection is a special request or other off-menu sale.\n\nIf `null` or `NONE`, describes a normal modifier or item selection.\n\n`TOAST_CARD_SELL` and `TOAST_CARD_RELOAD` are currently response-only.\n",
"enum": [
"NONE",
"OPEN_ITEM",
"SPECIAL_REQUEST",
"PORTION",
"HOUSE_ACCOUNT_PAY_BALANCE",
"TOAST_CARD_SELL",
"TOAST_CARD_RELOAD"
]
},
"salesCategory": {
"x-toast-read-only": true,
"type": "object",
"description": "A reference to the sales category of the item. Response only.",
"$ref": "#/$defs/ConfigReference"
},
"appliedDiscounts": {
"x-toast-read-only": true,
"type": "array",
"description": "The itemized discounts that are applied to this item. Response only.",
"minItems": 0,
"items": {
"$ref": "#/$defs/AppliedDiscount"
}
},
"deferred": {
"type": "boolean",
"description": "Whether this selection is a deferred revenue transaction, such as a gift card sale."
},
"preDiscountPrice": {
"x-toast-read-only": true,
"type": "number",
"description": "Gross sale price for this selection. Excludes tax. Response only.",
"format": "double"
},
"price": {
"x-toast-read-only": true,
"type": "number",
"format": "double",
"description": "Net price for this selection. The final price of the item after considering discounts (including discounts at the check level), quantity adjustments, and modifier prices at the time the item was selected for purchase. Response only."
},
"tax": {
"x-toast-read-only": true,
"type": "number",
"format": "double",
"description": "The total tax amount for this selection. Response only."
},
"voided": {
"x-toast-read-only": true,
"type": "boolean",
"description": "Set to `true` if this selection is voided. Response only."
},
"voidDate": {
"x-toast-read-only": true,
"type": "string",
"format": "date-time",
"description": "The date on which this selection was voided. Response only."
},
"voidBusinessDate": {
"x-toast-read-only": true,
"type": "integer",
"description": "The business date (yyyyMMdd) on which this selection was voided. Response only."
},
"voidReason": {
"x-toast-read-only": true,
"type": "object",
"description": "If `voided` is `true`, a reference to the void reason. Response only.",
"$ref": "#/$defs/ExternalReference"
},
"refundDetails": {
"description": "A `RefundDetails` object that\ncontains information about refunded payment amounts for the item.\n",
"type": "object",
"$ref": "#/$defs/RefundDetails"
},
"displayName": {
"type": "string",
"description": "The display name of the selection.\n\nCan be used to set a special request value.\n\nOtherwise, it is generated from this selection's item property.\n"
},
"plu": {
"x-toast-read-only": true,
"type": "string",
"description": "The price look-up (PLU) code for the menu item selection used for pricing and inventory management."
},
"premodifierPlu": {
"x-toast-read-only": true,
"type": "string",
"description": "The Price Look-Up (PLU) code for the premodifier associated with this menu item selection. This is a unique identifier used for pricing and inventory management purposes. Currently this field is read only."
},
"createdDate": {
"type": "string",
"format": "date-time",
"description": "The date on which this selection was created. If not specified, defaults to the current time."
},
"modifiedDate": {
"type": "string",
"format": "date-time",
"description": "The date on which this selection was last modified. If not specified, defaults to the current time."
},
"modifiers": {
"type": "array",
"description": "A list of modifiers that apply to this selection.",
"items": {
"$ref": "#/$defs/Selection"
}
},
"fulfillmentStatus": {
"x-toast-read-only": true,
"type": "string",
"default": "NEW",
"description": "Indicates the stage of the preparation workflow that the\nmenu item selection is in.\n\nThe `fulfillmentStatus` of a\nmenu item selection changes as restaurant employees move\nthe item through the functions of the Toast POS, for\nexample order entry and the kitchen display system (KDS).\nResponse only.\n\nValid values:\n\n* `NEW` - The menu item selection was added to a\n check but is not yet sent to the KDS for\n preparation.\n\n* `HOLD` - A restaurant employee paused the menu\n item selection so that it does not appear in the\n KDS for preparation.\n\n* `SENT` - The menu item selection was fired and\n appears in the KDS for preparation.\n\n* `READY` - Preparation is complete. The menu item\n selection is fulfilled and no longer appears in\n the KDS. If your restaurant does not use the Toast platform\n KDS, then order items do not reach the `READY`\n status.\n",
"enum": [
"NEW",
"HOLD",
"SENT",
"READY"
]
},
"fulfillment": {
"x-toast-read-only": true,
"type": "object",
"description": "Information about the fulfillment requirements for this menu item selection. Response only.\n",
"$ref": "#/$defs/Fulfillment"
},
"taxInclusion": {
"type": "string",
"description": "Indicates whether the menu item price includes one or more tax\namounts. If the menu item is a modifier for another menu item\nselection, it always inherits the tax inclusion behavior of the menu\nitem that it applies to.\n\nValid values:\n* `INCLUDED` - The menu item price includes one or more tax amounts.\n* `NOT_INCLUDED` - The menu item price does not include any tax\n amounts.\n* `INHERITED` - The menu item is a modifier for another menu item\n selection in the check. The `taxInclusion` value of the parent menu\n item selection applies to the modifier. If a menu item selection\n *that is not a modifier* inherits tax inclusion behavior from a\n menu or menu group, the `taxInclusion` value is either\n `INCLUDED` or `NOT_INCLUDED`.\n",
"enum": [
"INCLUDED",
"NOT_INCLUDED",
"INHERITED"
]
},
"appliedTaxes": {
"x-toast-read-only": true,
"type": "array",
"description": "An array of `AppliedTaxRate` objects that contain information about tax payments made for the selection. Response only.",
"items": {
"$ref": "#/$defs/AppliedTaxRate"
}
},
"diningOption": {
"x-toast-read-only": true,
"description": "A reference to the setting or method that a restaurant uses to fulfill orders. For example, dine-in, takeout, or delivery might be dining options.\n\nRestaurants configure the dining options that they fulfill orders in.\n\nResponse only.\n",
"type": "object",
"$ref": "#/$defs/ExternalReference"
},
"openPriceAmount": {
"description": "A non-negative currency amount that sets the price of a\nmenu item that is configured to use the *Open Price*\npricing strategy. If you do not supply an\n`openPriceAmount` value for an open price menu item, the\norders API sets the price to 0.00.\n\nIf a menu item is configured to use tax-inclusive\npricing, the orders API calculates the base price and tax\namount based on the open price that you specify. _The\nopen-price amount includes both the base-price and\ninclusive tax amount._\n\n`POST` only. The `openPriceAmount` value is not\npresent in orders API return data. It is used to\npopulate `receiptLinePrice`.\n",
"type": "number",
"format": "double"
},
"receiptLinePrice": {
"type": "number",
"format": "double",
"description": "The price of the menu item selection without any quantity, taxes, \ndiscounts, and modifier adjustments. If the menu item has taxes included, the `receiptLinePrice` value shows the original price, including taxes.\n\nFor example, if the menu item selection is for two orders of fries, \n`receiptLinePrice` is the price of one order of fries. If a menu item selection \nis for three large drinks, receiptLinePrice is the price of one large drink.\n\nPopulated based on the menu configuration, or using the value provided in \n`externalPriceAmount` or `openPriceAmount`.\n"
},
"optionGroupPricingMode": {
"type": "string",
"description": "Information about how the modifier group affects the pricing of its parent item.",
"enum": [
"INCLUDED",
"FIXED_PRICE",
"ADJUSTS_PRICE",
"REPLACES_PRICE",
"LOCATION_SPECIFIC_PRICE"
]
},
"externalPriceAmount": {
"description": "The menu item price that was calculated by the\nmarketplace facilitator organization that created the\norder.\n\n`POST` only. The orders API does not include the\n`externalPriceAmount` value in return data. It is\nused to populate `receiptLinePrice`.\n\n**Note**: you can only include this information if your\nToast API client is associated with a designated\nmarketplace facilitator organization. Most Toast API\nclients do not create marketplace facilitator orders.\n",
"type": "number",
"format": "double"
},
"splitOrigin": {
"description": "Reserved for future use.\n",
"type": "object",
"$ref": "#/$defs/ExternalReference"
}
}
}
]
},
"Customer": {
"type": "object",
"allOf": [
{
"$ref": "#/$defs/ToastReference"
},
{
"type": "object",
"required": [
"firstName",
"lastName",
"email",
"phone"
],
"properties": {
"firstName": {
"type": "string",
"description": "The first name, or given name, of the guest.\n"
},
"lastName": {
"type": "string",
"description": "The last name, or surname, of the guest.\n"
},
"phone": {
"type": "string",
"description": "The telephone number of the guest.\n"
},
"phoneCountryCode": {
"type": "string",
"description": "The international phone country code for the number of the guest.\n"
},
"email": {
"type": "string",
"description": "The email address corresponding to the guest who placed the order.\n\nThe email address is the key that identifies a unique restaurant guest. All distinct guests should have distinct email addresses.\n"
}
}
}
]
},
"AppliedLoyaltyInfo": {
"type": "object",
"description": "Information about the customer loyalty program account associated with a check.",
"required": [
"loyaltyIdentifier",
"vendor"
],
"allOf": [
{
"$ref": "#/$defs/ToastReference"
},
{
"type": "object",
"properties": {
"loyaltyIdentifier": {
"type": "string",
"description": "An identifier for the loyalty program account. For `POST` orders, this identifier is transmitted to the loyalty program service provider to associate the check with the loyalty account."
},
"maskedLoyaltyIdentifier": {
"type": "string",
"description": "A representation of the identifier of the loyalty program\naccount that can be displayed securely. For example:\n`************1234`. The Toast POS displays this string to\nrestaurant employees and guests.\n\nYou can optionally include this\nvalue when you `POST` an order. It is\navailable in response data when you `GET` the order.\n\nIf you do not provide a `maskedLoyaltyIdentifier` when you\n`POST` an order, this value is `null` in response data.\n\nThe Toast POS app displays a masked representation of the\n`loyaltyIdentifier`. All characters except the last four\nare hidden.\n"
},
"vendor": {
"type": "string",
"description": "The specific loyalty program service provider that supports the loyalty account.",
"enum": [
"TOAST",
"PUNCHH",
"PUNCHH2",
"PAYTRONIX",
"APPFRONT",
"INTEGRATION"
]
},
"accrualFamilyGuid": {
"x-toast-read-only": true,
"type": "string",
"description": "Response only. An internal Toast platform identifier for loyalty\nprogram transactions.\n\nThis is not returned from the initial\n`POST` order request and is available at a later time.\n"
},
"accrualText": {
"x-toast-read-only": true,
"type": "string",
"description": "Response only. A description of the loyalty program transaction\nto print on the customer's receipt. For example,\n\"Earned 27 points.\"\n\nThe maximum length of the description string\nis 255 characters.\n\nThis is not returned from the initial\n`POST` order request and is available at a later time.\n"
}
}
}
]
},
"AppliedServiceCharge": {
"type": "object",
"description": "A service charge that is added to a check. A service charge can represent an upcharge such as a gratuity or a delivery fee.\n\nWhether the upcharge is taxable is defined in the restaurant-configured `serviceCharge`.\n\nThe fields on the `AppliedServiceCharge` are calculated based on the referenced `ServiceCharge` configuration.\n",
"allOf": [
{
"$ref": "#/$defs/ExternalReference"
},
{
"type": "object",
"required": [
"serviceCharge"
],
"properties": {
"chargeAmount": {
"type": "number",
"format": "double",
"description": "The final applied amount excluding tax. Required if `chargeType` is `OPEN`."
},
"serviceCharge": {
"description": "A reference to the restaurant-configured service charge. If a service charge is taxable, the tax amount is applied to the check.",
"$ref": "#/$defs/ExternalReference"
},
"chargeType": {
"x-toast-read-only": true,
"description": "The type of service charge. Response only.\n\nValid values:\n\n* `FIXED` - The service charge is for a specific currency amount.\n\n* `PERCENT` - The service charge is for a percentage of the check amount.\n\n* `OPEN` - The service charge is not configured with an amount. The amount is specified by the restaurant employee.\n",
"type": "string",
"enum": [
"FIXED",
"PERCENT",
"OPEN"
]
},
"name": {
"x-toast-read-only": true,
"description": "The configured human readable label for the service charge. Response only.",
"type": "string"
},
"delivery": {
"x-toast-read-only": true,
"description": "Whether this service charge is a delivery charge. Response only.",
"type": "boolean"
},
"takeout": {
"x-toast-read-only": true,
"description": "Whether this service charge is a takeout charge. Response only.",
"type": "boolean"
},
"dineIn": {
"x-toast-read-only": true,
"description": "Whether this service charge is a dine-in charge. Response only.",
"type": "boolean"
},
"gratuity": {
"x-toast-read-only": true,
"description": "Whether this service charge is a gratuity. Can be used to derive required tip amount on the check. Response only.",
"type": "boolean"
},
"taxable": {
"x-toast-read-only": true,
"description": "Whether this service charge is taxable. Response only.",
"type": "boolean"
},
"appliedTaxes": {
"type": "array",
"description": "Taxes applied to the service charge.",
"items": {
"$ref": "#/$defs/AppliedTaxRate"
}
},
"serviceChargeCalculation": {
"type": "string",
"description": "Defines whether a `PERCENT` service charge is applied before (`PRE_DISCOUNT`) or after (`POST_DISCOUNT`) discounts.\n\nThis field is `null` for `FIXED` and `OPEN` service charges.\n",
"enum": [
"PRE_DISCOUNT",
"POST_DISCOUNT"
]
},
"refundDetails": {
"description": "A `RefundDetails` object that\ncontains information about refunded payment amounts for the item.\n",
"type": "object",
"$ref": "#/$defs/RefundDetails"
},
"serviceChargeCategory": {
"x-toast-read-only": true,
"description": "The type of service charge. Default is `SERVICE_CHARGE`. Response only.\n\nValid values:\n\n* `SERVICE_CHARGE` - The default type for a service charge.\n\n* `CREDIT_CARD_SURCHARGE` - A fee assessed _only_ on payment transactions that use a credit card.\n\n* `FUNDRAISING_CAMPAIGN` - Service charge associated with fundraising.\n\n* `CASH_ROUNDING` - Adjustment to the check total to account for cash payments with minimum denominations greater than 0.01.\n",
"type": "string",
"enum": [
"SERVICE_CHARGE",
"CREDIT_CARD_SURCHARGE",
"FUNDRAISING_CAMPAIGN",
"CASH_ROUNDING"
]
},
"paymentGuid": {
"x-toast-read-only": true,
"description": "The Toast platform unique identifier for the payment the fee is linked to. The `paymentGuid` value is always `null` unless the `serviceChargeCategory` object value is `CREDIT_CARD_SURCHARGE` or `CASH_ROUNDING`. Response only.",
"type": "string"
}
}
}
]
},
"Payment": {
"type": "object",
"description": "Defines a payment.",
"allOf": [
{
"$ref": "#/$defs/ExternalReference"
},
{
"type": "object",
"
# --- truncated at 32 KB (52 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/toast-tab/refs/heads/main/json-schema/orders-check-schema.json