Toast · Schema

SalesCategory

A descriptive category, for example, "Food" or "Liquor" that, when applied to the menu items and modifier options in your menu, allow you to view sales data by category. Null if no sales category has been defined.

RestaurantsPoint Of SalePaymentsOnline OrderingDeliveryLoyaltyGift CardsMenusOrdersKitchenLaborSchedulingInventoryHospitalityPartner Integrations

Properties

Name Type Description
name string A descriptive name for this sales category, for example, "Food" or "Liquor".
guid string A unique identifier for this sales category, assigned by the Toast POS system.
View JSON Schema on GitHub

JSON Schema

menus-sales-category-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/menus-sales-category-schema.json",
  "title": "SalesCategory",
  "description": "A descriptive category, for example, \"Food\" or \"Liquor\" that, when applied to the menu items and modifier options in your menu, allow you to view sales data by category. Null if no sales category has been defined.\n",
  "type": "object",
  "properties": {
    "name": {
      "description": "A descriptive name for this sales category, for example, \"Food\" or \"Liquor\".\n",
      "type": "string",
      "example": "Example Name"
    },
    "guid": {
      "description": "A unique identifier for this sales category, assigned by the Toast POS system.\n",
      "type": "string",
      "example": "5a401af8-d2e2-4090-8c45-9f87b8b6c4d1"
    }
  }
}