action britbox_get_item { label: "getItem" description: "Returns the details of an item with the specified id." provider: britbox method: GET path: "/items/{id}" encoding: json input: { type: "object" properties: { expand: { type: "string" enum: ["all", "children", "ancestors", "parent"] } id: { type: "string" } max_rating: { type: "string" } select_season: { type: "string" enum: ["first", "latest"] } use_custom_id: { type: "boolean" } } required: ["id"] additionalProperties: false } output: { type: "object" } }