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