action collegefootballdata_get_talent { label: "Team talent composite rankings" description: "Team talent composite" provider: collegefootballdata method: GET path: "/talent" encoding: json input: { type: "object" properties: { year: { type: "integer" } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { school: { type: "string" } talent: { type: "number" } year: { type: "integer" } } } } }