action tvmaze_get_user_follows_shows { label: "List the followed shows" provider: tvmaze method: GET path: "/user/follows/shows" encoding: json input: { type: "object" properties: { embed: { type: "string" enum: ["show"] } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { _embedded: { type: "object" properties: { show: { type: "object" } } } show_id: { type: "integer" } } } } }