action bbci_get_programmes_by_channel { label: "Get programmes by channel" description: "Get programmes by channel" provider: bbci method: GET path: "/channels/{channel}/programmes" encoding: json input: { type: "object" properties: { availability: { type: "string" enum: ["all", "available"] } channel: { type: "string" } lang: { type: "string" enum: ["en", "cy", "ga", "gd", "pi"] } page: { type: "integer" format: "int64" } per_page: { type: "integer" format: "int64" } rights: { type: "string" enum: ["mobile", "tv", "web"] } } required: ["availability", "channel", "lang", "page", "per_page", "rights"] additionalProperties: false } output: { type: "object" } }