action transitfeeds_get_locations { label: "Retrieve a list of locations." description: "Retrieve a list of locations. Each location (except for the root) has a parent location, and each\nlocation has zero or more child locations. This hierarchy is generally structured so countries contain\nstates, states contain cities (although this typically depends on the country).\n" provider: transitfeeds method: GET path: "/getLocations" encoding: json input: { type: "object" properties: { key: { type: "string" } } required: ["key"] additionalProperties: false } output: { type: "object" additionalProperties: true } }