Information about the services and hours that are scheduled for a
restaurant during a type of day. For example, a restaurant might
have different services available on a type of day named
weekday
than it does on a type of day named weekend
.
closeTime | string The time of day that the last service for the type of day
ends. For example, the last service might end at
|
openTime | string The time of day that the first service for the type of day
begins. For example, the first service might begin at
|
scheduleName | string The name of the type of day. For example, |
Array of objects (Service) An array of |
{- "scheduleName": "string",
- "services": [
- {
- "name": "string",
- "hours": {
- "startTime": "string",
- "endTime": "string"
}, - "overnight": true
}
], - "openTime": "string",
- "closeTime": "string"
}