Toast · Schema

Metadata

Information about the last date and time that this restaurant's menu data was updated.

RestaurantsPoint Of SalePaymentsOnline OrderingDeliveryLoyaltyGift CardsMenusOrdersKitchenLaborSchedulingInventoryHospitalityPartner Integrations

Properties

Name Type Description
restaurantGuid string A unique identifier for this restaurant, assigned by the Toast POS system.
lastUpdated string The most recent date and time that this menu's data was published. Use this value to determine if you need to refresh your menu data. The `lastUpdated` value uses the absolute timestamp format describ
View JSON Schema on GitHub

JSON Schema

menus-metadata-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-metadata-schema.json",
  "title": "Metadata",
  "description": "Information about the last date and time that this restaurant's menu data was updated.\n",
  "type": "object",
  "properties": {
    "restaurantGuid": {
      "description": "A unique identifier for this restaurant, assigned by the Toast POS system.\n",
      "type": "string",
      "format": "uuid",
      "example": "5a401af8-d2e2-4090-8c45-9f87b8b6c4d1"
    },
    "lastUpdated": {
      "description": "The most recent date and time that this menu's data was published. Use this value to determine if you need to refresh your menu data. The `lastUpdated` value uses the absolute timestamp format describe in the <a href=\"https://doc.toasttab.com/doc/devguide/api_dates_and_timestamps.html\">Dates and timestamps</a> section of the Toast Developer Guide.\n",
      "type": "string",
      "example": "string"
    }
  }
}