action collegefootballdata_get_recruiting_groups { label: "Recruit position group ratings" description: "Gets a list of aggregated statistics by team and position grouping" provider: collegefootballdata method: GET path: "/recruiting/groups" encoding: json input: { type: "object" properties: { conference: { type: "string" } endYear: { type: "integer" } startYear: { type: "integer" } team: { type: "string" } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { averageRating: { type: "number" } averageStars: { type: "number" } commits: { type: "number" } conference: { type: "string" } positionGroup: { type: "string" } team: { type: "string" } totalRating: { type: "number" } } } } }