action bbc_get_personalised_radio_favourites { label: "Favourite Episodes and Clips" description: "List of favourited episodes and clips for a given user for iPlayer Radio.\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 data as a 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: "/my/radio/favourites" encoding: json input: { type: "object" properties: { Authorization: { type: "string" } "X-API-Key": { type: "string" } "X-Authentication-Provider": { type: "string" } limit: { type: "string" } offset: { type: "string" } show_all_activity: { type: "string" } sort: { type: "string" } } required: ["Authorization", "X-API-Key", "X-Authentication-Provider"] additionalProperties: false } output: { type: "object" additionalProperties: true } }