action trakt_get_all_season_translations { label: "Get all season translations" description: "Returns all translations for an season, including language and translated values for title and overview." provider: trakt method: GET path: "/shows/{id}/seasons/{season}/translations/{language}" encoding: json input: { type: "object" properties: { id: { type: "string" } language: { type: "string" } season: { type: "integer" } "trakt-api-key": { type: "string" } "trakt-api-version": { type: "string" } } required: ["id", "language", "season"] additionalProperties: false } output: { type: "object" additionalProperties: true } }