getParkDetails
Retrieve comprehensive details about a specific U.S. national park by providing its unique park code. Access information on alerts, visitor centers, campgrounds, and upcoming events for informed planning.
Instructions
Get detailed information about a specific national park
Input Schema
Name | Required | Description | Default |
---|---|---|---|
parkCode | Yes | The park code of the national park (e.g., "yose" for Yosemite, "grca" for Grand Canyon) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"parkCode": {
"description": "The park code of the national park (e.g., \"yose\" for Yosemite, \"grca\" for Grand Canyon)",
"type": "string"
}
},
"required": [
"parkCode"
],
"type": "object"
}