get-week-schedule
Fetch the NHL schedule for a specific team during a given week using a three-letter team abbreviation and a date. Ideal for planning or tracking games efficiently.
Instructions
Get the NHL schedule for a specific team for a given week
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | Yes | Date in YYYY-MM-DD format to get the week containing this date | |
teamAbbrev | Yes | Three-letter team abbreviation (e.g. TOR, NYR, BOS) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"date": {
"description": "Date in YYYY-MM-DD format to get the week containing this date",
"type": "string"
},
"teamAbbrev": {
"description": "Three-letter team abbreviation (e.g. TOR, NYR, BOS)",
"maxLength": 3,
"minLength": 3,
"type": "string"
}
},
"required": [
"teamAbbrev",
"date"
],
"type": "object"
}