get-date-range-schedule
Retrieve NHL game schedules for specific date ranges by providing start and end dates in YYYY-MM-DD format. Ideal for accessing structured hockey match data efficiently.
Instructions
Get the NHL schedule for a date range
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endDate | Yes | End date in YYYY-MM-DD format | |
startDate | Yes | Start date in YYYY-MM-DD format |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"endDate": {
"description": "End date in YYYY-MM-DD format",
"type": "string"
},
"startDate": {
"description": "Start date in YYYY-MM-DD format",
"type": "string"
}
},
"required": [
"startDate",
"endDate"
],
"type": "object"
}