action bbci_get_highlights_by_channel { label: "List the highlights for a channel." description: "Get the editorial highlights of a given channel in TV & iPlayer." provider: bbci method: GET path: "/channels/{channel}/highlights" encoding: json input: { type: "object" properties: { availability: { type: "string" enum: ["all", "available"] } channel: { type: "string" } lang: { type: "string" enum: ["en", "cy", "ga", "gd", "pi"] } live: { type: "boolean" } mixin: { type: "array" enum: ["live", "promotions"] items: { type: "string" } } rights: { type: "string" enum: ["mobile", "tv", "web"] } } required: ["availability", "channel", "lang", "rights"] additionalProperties: false } output: { type: "object" } }