Toast · Schema

MarketplaceFacilitatorTaxInfo

Information about the taxes that a marketplace facilitator organization remits on behalf of a Toast platform restaurant. `POST` only. The orders API does not include the `MarketplaceFacilitatorTaxInfo` object in response data. **Note**: you can only include this information if your Toast API client is associated with a designated marketplace facilitator organization. Most Toast API clients do not create marketplace facilitator orders.

RestaurantsPoint Of SalePaymentsOnline OrderingDeliveryLoyaltyGift CardsMenusOrdersKitchenLaborSchedulingInventoryHospitalityPartner Integrations

Properties

Name Type Description
facilitatorCollectAndRemitTaxOrder boolean Indicates whether a marketplace facilitator organization has paid the tax amounts for an order on behalf of the restaurant that fulfills the order. If you include this value, you indicate that the mar
taxes array An array of `AppliedTaxRate` objects that describe the tax amounts that apply to a marketplace facilitator order. If you include this value, you must include an `externalPriceAmount` for each menu ite
View JSON Schema on GitHub

JSON Schema

orders-marketplace-facilitator-tax-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/toast-tab/refs/heads/main/json-schema/orders-marketplace-facilitator-tax-info-schema.json",
  "title": "MarketplaceFacilitatorTaxInfo",
  "description": "Information about the taxes that a marketplace facilitator\norganization remits on behalf of a Toast platform restaurant.\n`POST` only. The orders API does not include the\n`MarketplaceFacilitatorTaxInfo` object in response data.\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": "object",
  "properties": {
    "facilitatorCollectAndRemitTaxOrder": {
      "description": "Indicates whether a marketplace facilitator organization has\npaid the tax amounts for an order on behalf of the restaurant\nthat fulfills the order.\n\nIf you include this value, you indicate that the marketplace\nfacilitator order uses the prices and tax amounts calculated\nby the Toast platform.\n\nIf you include this value, you *must not* include the `taxes`\nvalue and you *must not* include the `externalPriceAmount`\nfor menu item selections in the order.\n",
      "type": "boolean",
      "example": true
    },
    "taxes": {
      "description": "An array of `AppliedTaxRate` objects that describe the tax\namounts that apply to a marketplace facilitator order.\n\nIf you include this value, you must include an `externalPriceAmount`\nfor each menu item selection in the order.\n",
      "type": "array",
      "items": {
        "$ref": "#/$defs/AppliedTaxRate"
      }
    }
  },
  "$defs": {
    "AppliedTaxRate": {
      "type": "object",
      "description": "A tax rate that is applied to an item or service charge.",
      "required": [
        "taxRate"
      ],
      "allOf": [
        {
          "$ref": "#/$defs/ToastReference"
        },
        {
          "type": "object",
          "properties": {
            "entityType": {
              "description": "The type of object this is.",
              "type": "string"
            },
            "taxRate": {
              "type": "object",
              "$ref": "#/$defs/ToastReference"
            },
            "name": {
              "type": "string",
              "description": "The name of the tax rate."
            },
            "rate": {
              "type": "number",
              "format": "double",
              "description": "The tax rate, which can be a fixed amount, a percentage, or null."
            },
            "taxAmount": {
              "type": "number",
              "format": "double",
              "description": "The tax amount that was actually applied."
            },
            "type": {
              "type": "string",
              "description": "The type of the tax rate. Default is `PERCENT`.\n\nThe value `EXTERNAL` indicates that the tax is for a marketplace\nfacilitator order, and that the marketplace facilitator\norganization calculated the tax amount.\n",
              "enum": [
                "PERCENT",
                "FIXED",
                "NONE",
                "TABLE",
                "EXTERNAL"
              ]
            },
            "facilitatorCollectAndRemitTax": {
              "type": "boolean",
              "description": "Indicates whether the marketplace facilitator that\nreceived a guest order remitted the tax amount on behalf\nof the Toast platform restaurant.\n\nYou can use this information to identify tax amounts that\nhave already been paid by an ordering service provider\nand do not need to be paid again.\n\n* `true` - The marketplace facilitator paid the tax\namount on behalf of the Toast platform restaurant\nlocation.\n\n* `false` - The marketplace facilitator has not paid the\ntax amount. The Toast platform restaurant location may be\nrequired to pay the tax amount.\n\n**Note**: Toast API response data is not guidance or\nadvice for tax compliance.\n"
            },
            "displayName": {
              "type": "string",
              "description": "The name of the tax rate as it appears on guest receipts."
            },
            "jurisdiction": {
              "type": "string",
              "description": "The state or province of the tax rate for reporting purposes."
            },
            "jurisdictionType": {
              "type": "string",
              "description": "The jurisdiction type (ex. STATE, COUNTY, etc.) of the tax rate for reporting purposes."
            }
          }
        }
      ]
    }
  }
}