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 |
248
-
| stop_name | String | Required | Name of stop |
249
-
| lat | Double | Required | Latitude of the location |
250
-
| lng | Double | Required | Longitude of the location |
251
-
| capacity | {vehicle_type: number} | Required | Number of total spots per vehicle_type |
252
-
| geography_id | UUID | Optional | Pointer to the Geography that represents the stop geospatially |
253
-
| 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)|
| stop_id | UUID | Required | Unique ID for stop |
282
-
| stop_name | String | Required | Name of stop |
283
-
| lat | Double | Required | Latitude of the location |
284
-
| lng | Double | Required | Longitude of the location |
285
-
| status | Enum | Required | Status of the Stop. See [Stop Statuses](#stop-statuses) table. |
286
-
| capacity | {vehicle_type: number} | Required | Number of total spots per vehicle_type |
287
-
| num_vehicles_available | {vehicle_type: number} | Required | How many vehicles are available per vehicle_type at this stop? |
288
-
| num_vehicles_disabled | {vehicle_type: number} | Required | How many vehicles are unavailable/reserved per vehicle_type at this stop? |
289
-
| geography_id | UUID | Optional | Pointer to the Geography that represents the Stop geospatially |
290
-
| 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)|
| rental_methods |[Enum](https://github.com/NABSA/gbfs/blob/master/gbfs.md#station_informationjson)| Optional | Payment methods accepted at stop, see [GBFS Rental Methods](https://github.com/NABSA/gbfs/blob/master/gbfs.md#station_informationjson)|
295
-
| cross_street | String | Optional | Cross street of where the station is located. |
296
-
| num_spots_available | {vehicle_type: number} | Optional | How many spots are free to be populated with vehicles at this stop? |
297
-
| num_spots_disabled | {vehicle_type: number} | Optional | How many docks are disabled and unable to accept vehicles at this stop? |
298
-
| parent_stop | UUID | Optional | Describe a basic hierarchy of stops (e.g.a stop inside of a greater stop) |
261
+
**`data` Payload:**`{ "stops": [] }`, an array of [Stops](../general-information.md/#stop)
299
262
300
263
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 |
307
-
|`closed`| The station is closed. Either because of operating hours, repairs, or a seasonal closure |
308
-
|`decommissioned`| The station is permanently closed and will be removed from the system ||
309
-
310
-
### GBFS Compatibility
311
-
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