action collegefootballdata_get_elo_ratings { label: "Historical Elo ratings" description: "Elo rating data" provider: collegefootballdata method: GET path: "/ratings/elo" encoding: json input: { type: "object" properties: { conference: { type: "string" } team: { type: "string" } week: { type: "integer" } year: { type: "integer" } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { conference: { type: "string" } elo: { type: "number" } team: { type: "string" } year: { type: "integer" } } } } }