action bbc_get_radio_programmes_by_pid { label: "Available radio programme by Pid" description: "Find programmes by PID (brand, series, episode and clip)\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/{pid}" encoding: json input: { type: "object" properties: { "X-API-Key": { type: "string" } pid: { type: "string" } } required: ["X-API-Key", "pid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }