action collegefootballdata_player_search { label: "Search for player information" description: "Search for players" provider: collegefootballdata method: GET path: "/player/search" encoding: json input: { type: "object" properties: { position: { type: "string" } searchTerm: { type: "string" } team: { type: "string" } year: { type: "integer" } } required: ["searchTerm"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { firstName: { type: "string" } height: { type: "integer" } hometown: { type: "string" } id: { type: "integer" } jersey: { type: "integer" } lastName: { type: "string" } name: { type: "string" } position: { type: "string" } team: { type: "string" } teamColor: { type: "string" } teamColorSecondary: { type: "string" } weight: { type: "integer" } } } } }