action bbc_get_radio_programmes { label: "Radio programmes" description: "Provides a paginated list of programmes by PID (brand, series, episode and clip). Accepts various filters and sorting methods.\n\nN.B. Swagger schemas cannot currently handle multiple combinations of object in an array i.e. a mix of Episode\nand Clip Summaries so we are defining results as an array of Programme Summary here. This will be resolved in V3 with full support for\n anyOf https://www.openapis.org/blog/2017/01/24/a-new-year-a-new-specification\n" provider: bbc method: GET path: "/radio/programmes" encoding: json input: { type: "object" properties: { "X-API-Key": { type: "string" } category: { type: "string" } container: { type: "string" } kind: { type: "string" } network: { type: "string" } network_url_key: { type: "string" } sort: { type: "string" } type: { type: "string" } } required: ["X-API-Key"] additionalProperties: false } output: { type: "object" additionalProperties: true } }