Toast · Schema

WeekSchedule

The day schedule used for each day of the week. A day schedule is the set of services (for example, "lunch") that a restaurant offers and the hours that it offers each one. If a day of the week value in this object is `null`, the restaurant is closed on that day. Values for each day of the week are identifiers for day schedules in the map of `DaySchedule` objects in the `daySchedules` value of the `Schedules` object.

RestaurantsPoint Of SalePaymentsOnline OrderingDeliveryLoyaltyGift CardsMenusOrdersKitchenLaborSchedulingInventoryHospitalityPartner Integrations

Properties

Name Type Description
monday string A key identifier for the `DaySchedule` object that represents the services and hours for the restaurant on this day of the week.
tuesday string A key identifier for the `DaySchedule` object that represents the services and hours for the restaurant on this day of the week.
wednesday string A key identifier for the `DaySchedule` object that represents the services and hours for the restaurant on this day of the week.
thursday string A key identifier for the `DaySchedule` object that represents the services and hours for the restaurant on this day of the week.
friday string A key identifier for the `DaySchedule` object that represents the services and hours for the restaurant on this day of the week.
saturday string A key identifier for the `DaySchedule` object that represents the services and hours for the restaurant on this day of the week.
sunday string A key identifier for the `DaySchedule` object that represents the services and hours for the restaurant on this day of the week.
View JSON Schema on GitHub

JSON Schema

restaurants-week-schedule-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/restaurants-week-schedule-schema.json",
  "title": "WeekSchedule",
  "description": "The day schedule used for each day of the week. A day schedule is \nthe set of services (for example, \"lunch\") that a restaurant \noffers and the hours that it offers each one. If a day of the \nweek value in this object is `null`, the restaurant is closed on \nthat day. Values for each day of the week are identifiers for day \nschedules in the map of `DaySchedule` objects in the \n`daySchedules` value of the `Schedules` object.\n",
  "type": "object",
  "properties": {
    "monday": {
      "type": "string",
      "description": "A key identifier for the `DaySchedule` object\nthat represents the services and hours for the restaurant on\nthis day of the week.\n",
      "example": "string"
    },
    "tuesday": {
      "type": "string",
      "description": "A key identifier for the `DaySchedule` object\nthat represents the services and hours for the restaurant on\nthis day of the week.\n",
      "example": "string"
    },
    "wednesday": {
      "type": "string",
      "description": "A key identifier for the `DaySchedule` object\nthat represents the services and hours for the restaurant on\nthis day of the week.\n",
      "example": "string"
    },
    "thursday": {
      "type": "string",
      "description": "A key identifier for the `DaySchedule` object\nthat represents the services and hours for the restaurant on\nthis day of the week.\n",
      "example": "string"
    },
    "friday": {
      "type": "string",
      "description": "A key identifier for the `DaySchedule` object\nthat represents the services and hours for the restaurant on\nthis day of the week.\n",
      "example": "90a86f12"
    },
    "saturday": {
      "type": "string",
      "description": "A key identifier for the `DaySchedule` object\nthat represents the services and hours for the restaurant on\nthis day of the week.\n",
      "example": "string"
    },
    "sunday": {
      "type": "string",
      "description": "A key identifier for the `DaySchedule` object\nthat represents the services and hours for the restaurant on\nthis day of the week.\n",
      "example": "string"
    }
  }
}