{ "$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 Dates and timestamps section of the Toast Developer Guide.\n", "type": "string", "example": "string" } } }