action collegefootballdata_get_team_game_stats { label: "Team game stats" description: "Team stats broken down by game" provider: collegefootballdata method: GET path: "/games/teams" 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" } } required: ["year"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { id: { type: "integer" } teams: { type: "array" items: { type: "object" properties: { conference: { type: "string" } homeAway: { type: "string" } points: { type: "integer" } school: { type: "string" } stats: { type: "array" items: { type: "object" properties: { category: { type: "string" } stat: { type: "string" } } } } } } } } } } }