action collegefootballdata_get_srsratings { label: "Historical SRS ratings" description: "SRS rating data (requires either a year or team specified)" provider: collegefootballdata method: GET path: "/ratings/srs" 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" } division: { type: "string" } ranking: { type: "number" } rating: { type: "number" } team: { type: "string" } year: { type: "integer" } } } } }