action collegefootballdata_get_recruiting_teams { label: "Team recruiting rankings and ratings" description: "Team recruiting rankings" provider: collegefootballdata method: GET path: "/recruiting/teams" encoding: json input: { type: "object" properties: { team: { type: "string" } year: { type: "integer" } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { points: { type: "number" } rank: { type: "integer" } team: { type: "string" } year: { type: "integer" } } } } }