check_availability
Verify restaurant reservation availability by entering place ID, date, time, party size, and locale. Perfect for planning bookings with accurate, location-specific details.
Instructions
Check availability for a restaurant reservation (mock implementation)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dateTime | Yes | Preferred date and time in ISO format (e.g., "2024-01-15T19:00:00") | |
locale | No | Locale for availability check (e.g., "en", "zh-TW", "ja", "ko") | en |
partySize | Yes | Number of people in the party | |
placeId | Yes | Google Places ID of the restaurant |
Input Schema (JSON Schema)
{
"properties": {
"dateTime": {
"description": "Preferred date and time in ISO format (e.g., \"2024-01-15T19:00:00\")",
"type": "string"
},
"locale": {
"default": "en",
"description": "Locale for availability check (e.g., \"en\", \"zh-TW\", \"ja\", \"ko\")",
"type": "string"
},
"partySize": {
"description": "Number of people in the party",
"type": "number"
},
"placeId": {
"description": "Google Places ID of the restaurant",
"type": "string"
}
},
"required": [
"placeId",
"dateTime",
"partySize"
],
"type": "object"
}