action collegefootballdata_get_transfer_portal { label: "Transfer portal by season" description: "Transfer portal by season" provider: collegefootballdata method: GET path: "/player/portal" encoding: json input: { type: "object" properties: { year: { type: "integer" } } required: ["year"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { destination: { type: "string" } eligibility: { type: "string" } firstName: { type: "string" } lastName: { type: "string" } origin: { type: "string" } position: { type: "string" } rating: { type: "number" } season: { type: "integer" } stars: { type: "integer" } transferDate: { type: "string" } } } } }