place-availability
Check availability of specific sites at a place for selected dates to plan your camping trip effectively. Input place and site IDs with start and end dates to get results.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endDate | Yes | The end date to check availability for. Format: YYYY-MM-DD | |
placeId | Yes | The id of the place to check availability for. | |
siteIds | No | The ids of the sites to check availability for. | |
startDate | Yes | The start date to check availability for. Format: YYYY-MM-DD |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"endDate": {
"description": "The end date to check availability for. Format: YYYY-MM-DD",
"type": "string"
},
"placeId": {
"description": "The id of the place to check availability for.",
"type": "string"
},
"siteIds": {
"description": "The ids of the sites to check availability for.",
"items": {
"type": "string"
},
"type": "array"
},
"startDate": {
"description": "The start date to check availability for. Format: YYYY-MM-DD",
"type": "string"
}
},
"required": [
"placeId",
"startDate",
"endDate"
],
"type": "object"
}