action tfl_occupancy_get_bike_points_occupancies { label: "Get the occupancy for bike points." provider: tfl method: GET path: "/Occupancy/BikePoints/{ids}" encoding: json input: { type: "object" properties: { ids: { type: "array" items: { type: "string" } } } required: ["ids"] additionalProperties: false } output: { type: "array" items: { type: "object" description: "Bike point occupancy" properties: { bikesCount: { type: "integer" format: "int32" description: "Total bike counts" } eBikesCount: { type: "integer" format: "int32" description: "Total ebikes count" } emptyDocks: { type: "integer" format: "int32" description: "Empty docks" } id: { type: "string" description: "Id of the bike point such as BikePoints_1" } name: { type: "string" description: "Name / Common name of the bike point" } standardBikesCount: { type: "integer" format: "int32" description: "Total standard bikes count" } totalDocks: { type: "integer" format: "int32" description: "Total docks available" } } } } }