Toast · Schema

TimeRange

Represents a time range for when a menu or a time-specific price is available.

RestaurantsPoint Of SalePaymentsOnline OrderingDeliveryLoyaltyGift CardsMenusOrdersKitchenLaborSchedulingInventoryHospitalityPartner Integrations

Properties

Name Type Description
start string The start time of the time range. Expressed in the restaurant’s local time.
end string The end time of the time range. Expressed in the restaurant’s local time.
View JSON Schema on GitHub

JSON Schema

menus-time-range-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-time-range-schema.json",
  "title": "TimeRange",
  "description": "Represents a time range for when a menu or a time-specific price is available.\n",
  "type": "object",
  "properties": {
    "start": {
      "type": "string",
      "description": "The start time of the time range. Expressed in the restaurant\u2019s local time.\n",
      "example": "string"
    },
    "end": {
      "type": "string",
      "description": "The end time of the time range. Expressed in the restaurant\u2019s local time.\n",
      "example": "string"
    }
  }
}