place-book
Book camping spots by specifying place ID, dates, and group size (adults & children). Submit details to secure reservations conveniently.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
adults | No | Number of adults. Default is 1. | |
children | No | Number of children. Default is 0. | |
endDate | No | The end date of the booking. Format: YYYY-MM-DD | |
placeId | Yes | The id of the place to book. | |
startDate | No | The start date of the booking. Format: YYYY-MM-DD |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"adults": {
"default": 1,
"description": "Number of adults. Default is 1.",
"type": "number"
},
"children": {
"default": 0,
"description": "Number of children. Default is 0.",
"type": "number"
},
"endDate": {
"description": "The end date of the booking. Format: YYYY-MM-DD",
"type": "string"
},
"placeId": {
"description": "The id of the place to book.",
"type": "string"
},
"startDate": {
"description": "The start date of the booking. Format: YYYY-MM-DD",
"type": "string"
}
},
"required": [
"placeId"
],
"type": "object"
}