action bbc_get_categories_id { label: "Category by ID" description: "Retrieve Categories by ID\n" provider: bbc method: GET path: "/categories/{id}" encoding: json input: { type: "object" properties: { "X-API-Key": { type: "string" } id: { type: "string" } } required: ["X-API-Key", "id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }