action collegefootballdata_get_team_matchup { label: "Team matchup history" description: "Matchup history" provider: collegefootballdata method: GET path: "/teams/matchup" encoding: json input: { type: "object" properties: { maxYear: { type: "integer" } minYear: { type: "integer" } team1: { type: "string" } team2: { type: "string" } } required: ["team1", "team2"] additionalProperties: false } output: { type: "object" properties: { endYear: { type: "integer" } games: { type: "array" items: { type: "object" properties: { awayScore: { type: "integer" } awayTeam: { type: "string" } date: { type: "string" } homeScore: { type: "integer" } homeTeam: { type: "string" } neutralSite: { type: "boolean" } season: { type: "integer" } season_type: { type: "string" } venue: { type: "string" } week: { type: "integer" } winner: { type: "string" } } } } startYear: { type: "integer" } team1: { type: "string" } team1Wins: { type: "integer" } team2: { type: "string" } team2Wins: { type: "integer" } ties: { type: "integer" } } } }