{
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Restaurant name to search for. Partial match, case-insensitive. Example: 'carbone', 'Don Angie'"
},
"cuisine": {
"type": "string",
"description": "Cuisine type to filter by. Partial match, case-insensitive. Examples: 'Italian', 'Japanese', 'Mexican', 'French'"
},
"neighborhood": {
"type": "string",
"description": "NYC neighborhood/area to filter by. Partial match, case-insensitive. Examples: 'West Village', 'Soho', 'Williamsburg', 'Lower East Side'"
},
"reservation_method": {
"type": "string",
"description": "Booking platform to filter by. Partial match, case-insensitive. Examples: 'Resy', 'OpenTable', 'Phone', 'Tock'"
}
}
}{
"type": "object",
"properties": {
"restaurant_name": {
"type": "string",
"description": "Exact name of the restaurant as it appears on NYC RSVPs. Use find_restaurants first if unsure of the exact name."
},
"desired_date": {
"type": "string",
"description": "The date the user wants to dine, in YYYY-MM-DD format. Must be a future date.",
"format": "date"
}
},
"required": [
"restaurant_name",
"desired_date"
]
}{
"type": "object",
"required": [
"restaurant"
],
"properties": {
"restaurant": {
"enum": [
"4 Charles Prime Rib",
"Adda",
"Atoboy",
"Au Cheval",
"Balthazar",
"Bangkok Supper Club",
"Bistrot Ha",
"Bong",
"Bonnie's",
"Borgo",
"Bridges",
"Bungalow",
"Buvette",
"Carbone",
"Chinese Tuxedo",
"Claud",
"COQODAQ",
"Corner Bar",
"Cote",
"Dhamaka",
"Din Tai Fung",
"Don Angie",
"Double Chicken Please",
"Eleven Madison Park",
"Fish Cheeks",
"Gage & Tollner",
"Golden Diner",
"Ha's Snack Bar",
"Hillstone",
"I Cavallini",
"i Sodi",
"Kabawa",
"L'Artusi",
"Laser Wolf",
"Le Café Louis Vuitton",
"Le Chêne",
"Lei",
"Lilia",
"Masalawala & Sons",
"Misi",
"Monkey Bar",
"Per Se",
"Peter Luger",
"Polo Bar",
"Ramen by Ra",
"Raoul's",
"Red Hook Tavern",
"Rezdôra",
"Roscioli (Tasting Menu)",
"Rubirosa",
"Sadelle's",
"schmuck.",
"Semma",
"Shuka",
"Sushi Nakazawa",
"Tatiana",
"Thai Diner",
"The Corner Store",
"The Four Horsemen",
"The Nines",
"Theodora",
"Torrisi Bar & Restaurant",
"Una Pizza Napoletana",
"Via Carota",
"Waverly Inn",
"Yamada",
"Zou Zou's"
],
"type": "string"
}
}
}{
"type": "object",
"properties": {}
}{
"type": "object",
"properties": {
"cuisine": {
"type": "string"
},
"neighborhood": {
"type": "string"
},
"restaurant_name": {
"type": "string"
},
"reservation_platform": {
"type": "string"
}
}
}