Input schema
{
"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"
]
}