action tfl_get_occupancy_car_park { label: "Gets the occupancy for all car parks that have occupancy data" provider: tfl method: GET path: "/Occupancy/CarPark" encoding: json output: { type: "array" items: { type: "object" properties: { bays: { type: "array" items: { type: "object" properties: { bayCount: { type: "integer" format: "int32" } bayType: { type: "string" } free: { type: "integer" format: "int32" } occupied: { type: "integer" format: "int32" } } } } carParkDetailsUrl: { type: "string" } id: { type: "string" } name: { type: "string" } } } } }