GBFSStation Data Type

Implemented Interfaces
Serializable
Properties
name data type description
station_id string
name string
short_name string
lat number
lon number
address string
cross_street string
post_code string
rental_methods array of RentalMethod
is_virtual_station boolean
capacity number
vehicle_type_capacity GBFSVehicleTypeCapacity
is_virtual_station boolean
region_id string
station_area GBFSStationArea
vehicle_capacity GBFSVehicleCapacity
is_valet_station boolean
rental_uris GBFSRentalUris
vehicle_type_capacity GBFSVehicleTypeCapacity
region_id string
post_code string
vehicle_capacity GBFSVehicleCapacity
station_area GBFSStationArea
cross_street string
is_valet_station boolean
rental_uris GBFSRentalUris
rental_methods array of RentalMethod
short_name string
station_id string

Example

{
  "station_id" : "...",
  "name" : "...",
  "short_name" : "...",
  "lat" : 12345.0,
  "lon" : 12345.0,
  "address" : "...",
  "cross_street" : "...",
  "post_code" : "...",
  "rental_methods" : [ "PHONE", "ACCOUNTNUMBER" ],
  "is_virtual_station" : true,
  "capacity" : 12345.0,
  "vehicle_type_capacity" : {
    "extension1" : "...",
    "extension2" : "..."
  },
  "region_id" : "...",
  "station_area" : {
    "type" : "MULTI_POLYGON",
    "coordinates" : [ [ [ [ 12345.0, 12345.0 ], [ 12345.0, 12345.0 ] ], [ [ 12345.0, 12345.0 ], [ 12345.0, 12345.0 ] ] ], [ [ [ 12345.0, 12345.0 ], [ 12345.0, 12345.0 ] ], [ [ 12345.0, 12345.0 ], [ 12345.0, 12345.0 ] ] ] ],
    "extension1" : "...",
    "extension2" : "..."
  },
  "vehicle_capacity" : {
    "extension1" : "...",
    "extension2" : "..."
  },
  "is_valet_station" : true,
  "rental_uris" : {
    "android" : "...",
    "ios" : "...",
    "web" : "...",
    "extension1" : "...",
    "extension2" : "..."
  },
  "extension1" : "...",
  "extension2" : "..."
}