action collegefootballdata_get_calendar { label: "Season calendar" description: "Get calendar of weeks by season" provider: collegefootballdata method: GET path: "/calendar" encoding: json input: { type: "object" properties: { year: { type: "integer" } } required: ["year"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { firstGameStart: { type: "string" } lastGameStart: { type: "string" } season: { type: "integer" } seasonType: { type: "string" } week: { type: "integer" } } } } }