action collegefootballdata_get_scoreboard { label: "Live game results (Patreon only)" description: "Get live game results" provider: collegefootballdata method: GET path: "/scoreboard" encoding: json input: { type: "object" properties: { classification: { type: "string" } conference: { type: "string" } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { awayTeam: { type: "object" properties: { classification: { type: "string" } conference: { type: "string" } id: { type: "integer" } name: { type: "string" } points: { type: "integer" } } } betting: { type: "object" properties: { awayMoneyline: { type: "integer" } homeMoneyline: { type: "integer" } overUnder: { type: "number" } spread: { type: "number" } } } clock: { type: "string" } conferenceGame: { type: "boolean" } homeTeam: { type: "object" properties: { classification: { type: "string" } conference: { type: "string" } id: { type: "integer" } name: { type: "string" } points: { type: "integer" } } } id: { type: "integer" } neutralSite: { type: "boolean" } period: { type: "integer" } possession: { type: "string" } situation: { type: "string" } startDate: { type: "string" } startTimeTBD: { type: "boolean" } status: { type: "string" } tv: { type: "string" } venue: { type: "object" properties: { city: { type: "string" } name: { type: "string" } state: { type: "string" } } } weather: { type: "object" properties: { description: { type: "string" } temperature: { type: "number" } windDirection: { type: "number" } windSpeed: { type: "number" } } } } } } }