action collegefootballdata_get_team_season_stats { label: "Team statistics by season" description: "Team season stats" provider: collegefootballdata method: GET path: "/stats/season" encoding: json input: { type: "object" properties: { conference: { type: "string" } endWeek: { type: "integer" } startWeek: { type: "integer" } team: { type: "string" } year: { type: "integer" } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { conference: { type: "string" } season: { type: "integer" } statName: { type: "string" } statValue: { type: "integer" } team: { type: "string" } } } } }