action collegefootballdata_get_rankings { label: "Historical polls and rankings" description: "Poll rankings" provider: collegefootballdata method: GET path: "/rankings" encoding: json input: { type: "object" properties: { seasonType: { type: "string" } week: { type: "integer" } year: { type: "integer" } } required: ["year"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { polls: { type: "array" items: { type: "object" properties: { poll: { type: "string" } ranks: { type: "array" items: { type: "object" properties: { conference: { type: "string" } firstPlaceVotes: { type: "integer" } points: { type: "integer" } rank: { type: "integer" } school: { type: "string" } } } } } } } season: { type: "integer" } seasonType: { type: "string" } week: { type: "integer" } } } } }