action collegefootballdata_get_games { label: "Games and results" description: "Get game results" provider: collegefootballdata method: GET path: "/games" encoding: json input: { type: "object" properties: { away: { type: "string" } conference: { type: "string" } division: { type: "string" } home: { type: "string" } id: { type: "integer" } seasonType: { type: "string" } team: { type: "string" } week: { type: "integer" } year: { type: "integer" } } required: ["year"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { attendance: { type: "integer" } away_conference: { type: "string" } away_division: { type: "string" } away_id: { type: "integer" } away_line_scores: { type: "array" items: { type: "integer" } } away_points: { type: "integer" } away_post_win_prob: { type: "number" } away_postgame_elo: { type: "integer" } away_pregame_elo: { type: "integer" } away_team: { type: "string" } completed: { type: "boolean" } conference_game: { type: "boolean" } excitement_index: { type: "number" } highlights: { type: "string" } home_conference: { type: "string" } home_division: { type: "string" } home_id: { type: "integer" } home_line_scores: { type: "array" items: { type: "integer" } } home_points: { type: "integer" } home_post_win_prob: { type: "number" } home_postgame_elo: { type: "integer" } home_pregame_elo: { type: "integer" } home_team: { type: "string" } id: { type: "integer" } neutral_site: { type: "boolean" } notes: { type: "string" } season: { type: "integer" } season_type: { type: "string" } start_date: { type: "string" } start_time_tbd: { type: "boolean" } venue: { type: "string" } venue_id: { type: "integer" } week: { type: "integer" } } } } }