Restaurant Times
Description: Displays operating hours, peak times, and scheduling information for restaurants and dining establishments.
API Response Structure:
{
"restaurant": {
"name": "Restaurant Name",
"category": "Italian Restaurant",
"address": "123 Main St"
},
"times": [
{
"day": "Monday",
"opening": "11:00 AM",
"closing": "10:00 PM",
"peakHours": [
{
"time": "12:00 PM - 2:00 PM",
"busyness": "High"
},
{
"time": "6:00 PM - 8:00 PM",
"busyness": "Very High"
}
]
}
],
"specialHours": [
{
"date": "2023-12-25",
"status": "Closed",
"note": "Christmas Day"
}
],
"description": "Hours may vary on holidays",
"type": "instantAnswers",
"configType": "restaurantTimes"
}
Fields:
-
restaurant
(object): Restaurant information -
times
(array): Regular operating hours-
day
(string): Day of week -
opening
(string): Opening time -
closing
(string): Closing time -
peakHours
(array): Busy periods
-
-
specialHours
(array): Holiday/special hours -
description
(string): Additional notes -
type
(string): Always "instantAnswers" -
configType
(string): Always "restaurantTimes"