action collegefootballdata_get_game_weather { label: "Game weather information (Patreon only)" description: "Weather information for the hour of kickoff" provider: collegefootballdata method: GET path: "/games/weather" encoding: json input: { type: "object" properties: { classification: { type: "string" } conference: { type: "string" } gameId: { type: "integer" } seasonType: { type: "string" } team: { type: "string" } week: { type: "integer" } year: { type: "integer" } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { awayConference: { type: "string" } awayTeam: { type: "string" } dewPoint: { type: "number" } gameIndoors: { type: "boolean" } homeConference: { type: "string" } homeTeam: { type: "string" } humidity: { type: "number" } id: { type: "integer" } precipitation: { type: "number" } pressure: { type: "number" } season: { type: "integer" } seasonType: { type: "string" } snowfall: { type: "number" } startTime: { type: "string" } temperature: { type: "number" } venue: { type: "string" } venueId: { type: "integer" } weatherCondition: { type: "string" } weatherConditionCode: { type: "integer" } week: { type: "integer" } windDirection: { type: "number" } windSpeed: { type: "number" } } } } }