action trakt_get_season_ratings { label: "Get season ratings" description: "Returns rating (between 0 and 10) and distribution for a season." provider: trakt method: GET path: "/shows/{id}/seasons/{season}/ratings" encoding: json input: { type: "object" properties: { id: { type: "string" } season: { type: "integer" } "trakt-api-key": { type: "string" } "trakt-api-version": { type: "string" } } required: ["id", "season"] additionalProperties: false } output: { type: "object" additionalProperties: true } }