action bbc_get_music_popular_track_by_id { label: "Single Track Popularity" description: "Popular Track for BBC Music\n" provider: bbc method: GET path: "/music/popular/tracks/{id}" encoding: json input: { type: "object" properties: { "X-API-Key": { type: "string" } artist: { type: "string" } decomposed: { type: "string" } id: { type: "string" } network: { type: "string" } programme: { type: "string" } since: { type: "string" } until: { type: "string" } } required: ["X-API-Key", "id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }