action collegefootballdata_get_coaches { label: "Coaching records and history" description: "Coaching history" provider: collegefootballdata method: GET path: "/coaches" encoding: json input: { type: "object" properties: { firstName: { type: "string" } lastName: { type: "string" } maxYear: { type: "integer" } minYear: { type: "integer" } team: { type: "string" } year: { type: "integer" } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { first_name: { type: "string" } hire_date: { type: "string" } last_name: { type: "string" } seasons: { type: "array" items: { type: "object" properties: { games: { type: "integer" } losses: { type: "integer" } postseason_rank: { type: "integer" description: "Final ranking in the AP poll" } preseason_rank: { type: "integer" description: "Rank in the AP preseason poll" } school: { type: "string" } sp_defense: { type: "number" description: "Final SP+ defensive rating" } sp_offense: { type: "number" description: "Final SP+ offensive rating" } sp_overall: { type: "number" description: "Final overall SP+ rating" } srs: { type: "number" description: "Final SRS rankings" } ties: { type: "integer" } wins: { type: "integer" } year: { type: "string" } } } } } } } }