action tfl_place_get_at { label: "Gets any places of the given type whose geography intersects the given latitude and longitude. In practice this means the Place \n must be polygonal e.g. a BoroughBoundary." provider: tfl method: GET path: "/Place/{type}/At/{Lat}/{Lon}" encoding: json input: { type: "object" properties: { Lat: { type: "string" } Lon: { type: "string" } lat: { type: "string" } "location.lat": { type: "number" format: "double" } "location.lon": { type: "number" format: "double" } lon: { type: "string" } type: { type: "array" items: { type: "string" } } } required: ["Lat", "Lon", "lat", "location.lat", "location.lon", "lon", "type"] additionalProperties: false } output: { type: "object" properties: {} } }