Toast · Schema

DimensionUnitOfMeasure

The unit of measure assigned to the `length`, `height`, and `width` values. Possible values include: * IN: Inches * CM: Centimeters * FT: Feet * M: Meters * MM: Millimeters * YD: Yards `dimensionUnitOfMeasure` is `null` if no unit of measurement has been specified.

RestaurantsPoint Of SalePaymentsOnline OrderingDeliveryLoyaltyGift CardsMenusOrdersKitchenLaborSchedulingInventoryHospitalityPartner Integrations
View JSON Schema on GitHub

JSON Schema

menus-dimension-unit-of-measure-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-dimension-unit-of-measure-schema.json",
  "title": "DimensionUnitOfMeasure",
  "description": "The unit of measure assigned to the `length`, `height`, and `width` values.\n    \nPossible values include:\n    \n* IN: Inches\n* CM: Centimeters\n* FT: Feet\n* M: Meters\n* MM: Millimeters\n* YD: Yards\n    \n`dimensionUnitOfMeasure` is `null` if no unit of measurement has been specified.\n",
  "type": "string",
  "enum": [
    "IN",
    "CM",
    "FT",
    "M",
    "MM",
    "YD"
  ]
}