action trakt_get_certifications { label: "Get certifications" description: "Get a list of all certifications, including names, slugs, and descriptions." provider: trakt method: GET path: "/certifications/{type}" encoding: json input: { type: "object" properties: { "trakt-api-key": { type: "string" } "trakt-api-version": { type: "string" } type: { type: "string" enum: ["movies", "shows"] } } required: ["type"] additionalProperties: false } output: { type: "object" additionalProperties: true } }