action collegefootballdata_get_player_game_stats { label: "Player game stats" description: "Player stats broken down by game" provider: collegefootballdata method: GET path: "/games/players" encoding: json input: { type: "object" properties: { category: { 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: { categories: { type: "array" items: { type: "object" properties: { name: { type: "string" } types: { type: "array" items: { type: "object" properties: { athletes: { type: "object" additionalProperties: true } name: { type: "object" additionalProperties: true } } } } } } } homeAway: { type: "boolean" } points: { type: "integer" } school: { type: "object" properties: { conference: { type: "string" } name: { type: "string" } } } } } } } } } }