action collegefootballdata_get_team_ppa { label: "Predicted Points Added (PPA/EPA) data by team" description: "Predicted Points Added (PPA)" provider: collegefootballdata method: GET path: "/ppa/teams" encoding: json input: { type: "object" properties: { conference: { type: "string" } excludeGarbageTime: { type: "boolean" } team: { type: "string" } year: { type: "integer" } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { conference: { type: "string" } defense: { type: "object" properties: { cumulative: { type: "object" properties: { passing: { type: "number" } rushing: { type: "number" } total: { type: "number" } } } firstDown: { type: "number" } overall: { type: "number" } passing: { type: "number" } rushing: { type: "number" } secondDown: { type: "number" } thirdDown: { type: "number" } } } offense: { type: "object" properties: { cumulative: { type: "object" properties: { passing: { type: "number" } rushing: { type: "number" } total: { type: "number" } } } firstDown: { type: "number" } overall: { type: "number" } passing: { type: "number" } rushing: { type: "number" } secondDown: { type: "number" } thirdDown: { type: "number" } } } season: { type: "integer" } team: { type: "string" } } } } }