action tfl_occupancy_get { label: "Gets the occupancy for a car park with a given id" provider: tfl method: GET path: "/Occupancy/CarPark/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { 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" } } } }