action collegefootballdata_get_game_media { label: "Game media information and schedules" description: "Game media information (TV, radio, etc)" provider: collegefootballdata method: GET path: "/games/media" encoding: json input: { type: "object" properties: { classification: { type: "string" } conference: { type: "string" } mediaType: { type: "string" } seasonType: { type: "string" } team: { type: "string" } week: { type: "integer" } year: { type: "integer" } } required: ["year"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { awayConference: { type: "string" } awayTeam: { type: "string" } homeConference: { type: "string" } homeTeam: { type: "string" } id: { type: "integer" } isStartTimeTBD: { type: "boolean" } mediaType: { type: "string" } outlet: { type: "string" } season: { type: "integer" } seasonType: { type: "string" } startTime: { type: "string" } week: { type: "integer" } } } } }