You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| stop_id | UUID | Required | Unique ID for stop |
275
281
| stop_name | String | Required | Name of stop |
276
282
| lat | Double | Required | Latitude of the location |
277
283
| lng | Double | Required | Longitude of the location |
284
+
| status | Enum | Required | Status of the Stop. See [Stop Statuses](#stop-statuses) table. |
278
285
| capacity | {vehicle_type: number} | Required | Number of total spots per vehicle_type |
279
286
| num_vehicles_available | {vehicle_type: number} | Required | How many vehicles are available per vehicle_type at this stop? |
280
287
| num_vehicles_disabled | {vehicle_type: number} | Required | How many vehicles are unavailable/reserved per vehicle_type at this stop? |
281
-
| geography_id | UUID | Optional | Pointer to the Geography that represents the stop geospatially |
288
+
| geography_id | UUID | Optional | Pointer to the Geography that represents the Stop geospatially |
282
289
| region_id | string | Optional | ID of the region where station is located, see [GBFS Station Information](https://github.com/NABSA/gbfs/blob/master/gbfs.md#station_informationjson)|
| address | String | Optional | Postal address (useful for directions) |
@@ -287,8 +294,17 @@ Method: `GET`
287
294
| cross_street | String | Optional | Cross street of where the station is located. |
288
295
| num_spots_available | {vehicle_type: number} | Optional | How many spots are free to be populated with vehicles at this stop? |
289
296
| num_spots_disabled | {vehicle_type: number} | Optional | How many docks are disabled and unable to accept vehicles at this stop? |
290
-
| wheelchair_boarding | Boolean | Optional | Is this stop handicap accessible? |
291
-
| parent_stop | UUID | Optional | Describe a basic hierarchy of stops (e.g.a stop inside of a greater stop) |
297
+
| parent_stop | UUID | Optional | Describe a basic hierarchy of stops (e.g.a stop inside of a greater stop) |
298
+
299
+
In the case that a `stop_id` query parameter is specified, the `stops` array returned will only have one entry. In the case that no `stop_id` query parameter is specified, all stops will be returned.
|`open`| The station is open and available to rent out or accept vehicles |
306
+
|`closed`| The station is closed. Either because of operating hours, repairs, or a seasonal closure |
307
+
|`decommissioned`| The station is permanently closed and will be removed from the system ||
292
308
293
309
### GBFS Compatibility
294
310
Some of the fields in the `Stops` definition are using notions which are currently not in MDS, such as `rental_methods`. These fields are included for compatibility with GBFS.
0 commit comments