action trakt_get_show_studios { label: "Get show studios" description: "Returns all studios for a show." provider: trakt method: GET path: "/shows/{id}/studios" encoding: json input: { type: "object" properties: { id: { type: "string" } "trakt-api-key": { type: "string" } "trakt-api-version": { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }