action collegefootballdata_get_player_season_stats { label: "Player stats by season" description: "Season player stats" provider: collegefootballdata method: GET path: "/stats/player/season" encoding: json input: { type: "object" properties: { category: { type: "string" } conference: { type: "string" } endWeek: { type: "integer" } seasonType: { type: "string" } startWeek: { type: "integer" } team: { type: "string" } year: { type: "integer" } } required: ["year"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { category: { type: "string" } conference: { type: "string" } player: { type: "string" } playerId: { type: "integer" } season: { type: "integer" } stat: { type: "number" } statType: { type: "string" } team: { type: "string" } } } } }