action collegefootballdata_get_returning_production { label: "Team returning production metrics" description: "Returning production metrics" provider: collegefootballdata method: GET path: "/player/returning" encoding: json input: { type: "object" properties: { conference: { type: "string" } team: { type: "string" } year: { type: "integer" } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { conference: { type: "string" } passingUsage: { type: "number" } percentPPA: { type: "number" } percentPassingPPA: { type: "number" } percentReceivingPPA: { type: "number" } percentRushingPPA: { type: "number" } receivingUsage: { type: "number" } rushingUsage: { type: "number" } season: { type: "integer" } team: { type: "string" } totalPPA: { type: "number" } totalPassingPPA: { type: "number" } totalReceivingPPA: { type: "number" } totalRushingPPA: { type: "number" } usage: { type: "number" } } } } }