action collegefootballdata_get_player_game_ppa { label: "Player Predicated Points Added (PPA/EPA) broken down by game" description: "Predicted Points Added (PPA) by player game" provider: collegefootballdata method: GET path: "/ppa/players/games" encoding: json input: { type: "object" properties: { excludeGarbageTime: { type: "boolean" } playerId: { type: "integer" } position: { type: "string" } seasonType: { type: "string" } team: { type: "string" } threshold: { type: "string" } week: { type: "integer" } year: { type: "integer" } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { averagePPA: { type: "object" properties: { all: { type: "number" } pass: { type: "number" } rush: { type: "number" } } } name: { type: "string" } opponent: { type: "string" } position: { type: "string" } season: { type: "integer" } team: { type: "string" } week: { type: "integer" } } } } }