Flipdish · Schema
BusinessHoursPeriod
Business hours period
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks
Properties
| Name | Type | Description |
|---|---|---|
| Early | object | |
| Late | object | |
| Ranges | array | Ranges |
| DayOfWeek | string | Day of week |
| StartTime | string | Start time |
| Period | string | Period |
| StartTimeEarly | string | Start time early |
| PeriodEarly | string | Period early |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/menus-business-hours-period-schema.json",
"title": "BusinessHoursPeriod",
"description": "Business hours period",
"type": "object",
"properties": {
"Early": {
"$ref": "#/components/schemas/Range"
},
"Late": {
"$ref": "#/components/schemas/Range"
},
"Ranges": {
"description": "Ranges",
"type": "array",
"items": {
"$ref": "#/components/schemas/Range"
},
"example": []
},
"DayOfWeek": {
"description": "Day of week",
"enum": [
"Sunday",
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday"
],
"type": "string",
"example": "Sunday"
},
"StartTime": {
"description": "Start time",
"type": "string",
"example": "2026-06-02T12:00:00Z"
},
"Period": {
"description": "Period",
"type": "string",
"example": "string"
},
"StartTimeEarly": {
"description": "Start time early",
"type": "string",
"example": "string"
},
"PeriodEarly": {
"description": "Period early",
"type": "string",
"example": "string"
}
}
}