[
{
"description": "Search for hotels based on specific criteria.",
"name": "fetchHotels",
"parameters": {
"properties": {
"destination": {
"type": "string"
},
"checkinDay": {
"type": "integer"
},
"checkinMonth": {
"type": "integer"
},
"checkinYear": {
"type": "integer"
},
"checkoutDay": {
"type": "integer"
},
"checkoutMonth": {
"type": "integer"
},
"checkoutYear": {
"type": "integer"
},
"adults": {
"type": "integer"
},
"children": {
"type": "integer"
},
"rooms": {
"type": "integer"
},
"categories": {
"type": "string"
}
},
"required": [
"destination"
],
"type": "object"
}
}
]