demo · Travel & Booking · JSON · API for agents
Initiates a dining reservation request at Le Petit Bistro. Accepts customer details, timing, and seating preferences.
{
"name": "book_table_le_petit_bistro",
"kind": "action",
"impl": "declarative",
"description": "Initiates a dining reservation request at Le Petit Bistro. Accepts customer details, timing, and seating preferences.",
"inputSchema": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "e.g. Alexander Hamilton"
},
"phone": {
"type": "string",
"description": "(555) 000-0000"
},
"date": {
"type": "string"
},
"time": {
"type": "string"
},
"guests": {
"type": "string",
"enum": [
"1",
"2",
"3",
"4",
"5",
"6"
]
},
"seating": {
"type": "string",
"enum": [
"Main Dining",
"Terrace",
"Private Booth",
"Bar"
]
},
"requests": {
"type": "string",
"description": "Allergies, anniversaries, high chair..."
}
},
"required": [
"name",
"phone",
"date",
"time",
"guests"
]
}
}