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