action collegefootballdata_get_player_season_ppa { label: "Player Predicated Points Added (PPA/EPA) broken down by season" description: "Predicted Points Added (PPA) by player season" provider: collegefootballdata method: GET path: "/ppa/players/season" encoding: json input: { type: "object" properties: { conference: { type: "string" } excludeGarbageTime: { type: "boolean" } playerId: { type: "integer" } position: { type: "string" } team: { type: "string" } threshold: { type: "string" } year: { type: "integer" } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { averagePPA: { type: "object" properties: { all: { type: "number" } firstDown: { type: "number" } pass: { type: "number" } passingDowns: { type: "number" } rush: { type: "number" } secondDown: { type: "number" } standardDowns: { type: "number" } thirdDown: { type: "number" } } } conference: { type: "string" } id: { type: "integer" } name: { type: "string" } position: { type: "string" } season: { type: "integer" } team: { type: "string" } totalPPA: { type: "object" properties: { all: { type: "number" } firstDown: { type: "number" } pass: { type: "number" } passingDowns: { type: "number" } rush: { type: "number" } secondDown: { type: "number" } standardDowns: { type: "number" } thirdDown: { type: "number" } } } } } } }