diff --git a/gbfs.md b/gbfs.md index 67d4d092..111454fb 100644 --- a/gbfs.md +++ b/gbfs.md @@ -1081,6 +1081,7 @@ Field Name | REQUIRED | Type | Defines    \- `ride_allowed` | Conditionally REQUIRED | Boolean | REQUIRED if `rules` array is defined. Is the undocked (“free floating”) ride allowed to start and end in this zone?

`true` - Undocked (“free floating”) ride can start and end in this zone.
`false` - Undocked (“free floating”) ride cannot start and end in this zone.    \- `ride_through_allowed` | Conditionally REQUIRED | Boolean | REQUIRED if `rules` array is defined. Is the ride allowed to travel through this zone?

`true` - Ride can travel through this zone.
`false` - Ride cannot travel through this zone.    \- `maximum_speed_kph` | OPTIONAL | Non-negative Integer | What is the maximum speed allowed, in kilometers per hour?

If there is no maximum speed to observe, this can be omitted. +   \- `station_parking` | OPTIONAL | Boolean | Vehicle MUST be parked at stations defined in station_information.json within this geofence zone?

`true` - MUST only be parked at stations.
`false` - MAY be parked outside of stations. ##### Example: @@ -1160,7 +1161,8 @@ Field Name | REQUIRED | Type | Defines ], "ride_allowed": false, "ride_through_allowed": true, - "maximum_speed_kph": 10 + "maximum_speed_kph": 10, + "station_parking": true } ] }