Specification

Version Endpoints

The version of the GBFS specification to which a feed conforms is declared in the version field in all files. See Output Format.

GBFS Best Practice defines that:

GBFS producers should provide endpoints that conform to both the current specification long term support (LTS) branch as well as the latest release branch within at least 3 months of a new spec MAJOR or MINOR version release. It is not necessary to support more than one MINOR release of the same MAJOR release group because MINOR releases are backwards-compatible. See specification versioning

GBFS consumers should, at a minimum, support the current LTS branch. It highly recommended that GBFS consumers support later releases.

Default GBFS feed URLs, e.g. https://www.example.com/data/gbfs.json or https://www.example.com/data/fr/system_information.json must direct consumers to the feed that conforms to the current LTS documentation branch.

Term Definitions

  • JSON - (JavaScript Object Notation) is a lightweight format for storing and transporting data. This document uses many terms defined by the JSON standard, including field, array, and object. (https://www.w3schools.com/js/js_json_datatypes.asp)

  • Field - In JSON, a name/value pair consists of a field name (in double quotes), followed by a colon, followed by a value. (https://www.w3schools.com/js/js_json_syntax.asp)

  • GeoJSON - GeoJSON is a format for encoding a variety of geographic data structures. (https://geojson.org/)

  • Required - The field must be included in the dataset, and a value must be provided in that field for each record.

  • Optional - The field may be omitted from the dataset. If an optional column is included, some of the entries in that field may be empty strings. An omitted field is equivalent to a field that is empty.

  • Conditionally required - The field or file is required under certain conditions, which are outlined in the field or file description. Outside of these conditions, this field or file is optional.

Accessibility

Datasets should be published at an easily accessible, public, permanent URL. (e.g., www.agency.org/gbfs/gbfs.json). Ideally, the URL should be directly available without requiring login to access the file to facilitate download by consuming software applications. While it is recommended (and the most common practice) to make a GBFS dataset openly downloadable, if a data provider does need to control access to GBFS for licensing or other reasons, it is recommended to control access to the GBFS dataset using API keys, which will facilitate automatic downloads.

To be compliant with GBFS, all systems must have an entry in the systems.csv file.

Feed Availability

Automated tools for application performance monitoring should be used to ensure feed availability.

Producers should provide a technical contact who can respond to feed outages in the feed_contact_email field in the system_information.json file.

Seasonal Shutdowns, Disruptions of Service

Feeds should continue to be published during seasonal or temporary shutdowns. Feed URLs should not return a 404. An empty bikes array should be returned by free_bike_status.json. Stations in station_status.json should be set to is_renting:false, is_returning:false and is_installed:false where applicable. Seasonal shutdown dates should be reflected in system_calendar.json.

Announcements for disruptions of service, including disabled stations or temporary closures of stations or systems should be made in system_alerts.json.

File Requirements

  • All files should be valid JSON

  • All files in the spec may be published at a URL path or with an alternate name (e.g., station_info instead of station_information.json) (as of v2.0).

  • All data should be UTF-8 encoded

  • Line breaks should be represented by unix newline characters only (\n)

  • Pagination is not supported.

File Distribution

  • Files are distributed as individual HTTP endpoints.

    • Required files must not 404. They must return a properly formatted JSON file as defined in Output Format.

    • Optional files may 404. A 404 of an optional file should not be considered an error.

Auto-Discovery

Publishers should implement auto-discovery of GBFS feeds by linking to the location of the gbfs.json auto-discovery endpoint.

  • The location of the auto-discovery file should be provided in the HTML area of the shared mobility landing page hosted at the URL specified in the URL field of the system_information.json file.

  • This is referenced via a link tag with the following format:

  • A shared mobility landing page may contain links to auto-discovery files for multiple systems.

Localization

  • Each set of data files should be distributed in a single language as defined in system_information.json.

  • A system that wants to publish feeds in multiple languages should do so by publishing multiple distributions, such as:

    • https://www.example.com/data/en/system_information.json

    • https://www.example.com/data/fr/system_information.json

Text Fields and Naming

Rich text should not be stored in free form text fields. Fields should not contain HTML.

All customer-facing text strings (including station names) should use Mixed Case (not ALL CAPS), following local conventions for capitalization of place names on displays capable of displaying lower case characters.

  • Examples:

    • Central Park South

    • Villiers-sur-Marne

    • Market Street

Abbreviations should not be used for names and other text (e.g. St. for Street) unless a location is called by its abbreviated name (e.g. “JFK Airport”). Abbreviations may be problematic for accessibility by screen reader software and voice user interfaces. Consuming software can be engineered to reliably convert full words to abbreviations for display, but converting from abbreviations to full words is prone to more risk of error.

Names used for stations, virtual stations and geofenced areas should be human readable. Naming conventions used for locations should consider a variety of use cases including both text and maps.

Descriptions should not include information so specific that it could be used in tracking of vehicles or trips.

Coordinate Precision

Feeds should provide 6 digits (0.000001) of precision for decimal degrees lat/lon coordinates.

Data Latency

The data returned by the near-realtime endpoints station_status.json and free_bike_status.json should be as close to realtime as possible, but in no case should it be more than 5 minutes out-of-date. Appropriate values should be set using the ttl property for each endpoint based on how often the data in feeds are refreshed or updated. For near-realtime endpoints where the data should always be refreshed the ttl value should be 0. The last_updated timestamp represents the publisher's knowledge of the current state of the system at this point in time. The last_reported timestamp represents the last time a station or vehicle reported its status to the operator's backend.

Licensing

It is recommended that all GBFS data sets be offered under an open data license. Open data licenses allow consumers to freely use, modify and share GBFS data for any purpose in perpetuity. Licensing of GBFS data provides certainty to GBFS consumers, allowing them to integrate GBFS data into their work. All GBFS data sets should specify a license using the license_id field with an SPDX identifier or by using license_url field with a URL pointing to a custom license in system_information.json. See the GBFS repo for a comparison of a subset of standard licenses.

Field Types

  • Array - A JSON element consisting of an ordered sequence of zero or more values.

  • Object - A JSON element consisting of key-value pairs (fields).

  • Boolean - One of two possible values, true or false. Boolean values must be JSON booleans, not strings (i.e. true or false, not "true" or "false"). (as of v2.0)

  • Date - Service day in the YYYY-MM-DD format. Example: 2019-09-13 for September 13th, 2019.

  • Time - Service time in the HH:MM:SS format for the time zone indicated in system_information.json (00:00:00 - 47:59:59). Time can stretch up to one additional day in the future to accommodate situations where, for example, a system was open from 11:30pm - 11pm the next day (i.e. 23:30:00-47:00:00).

  • Email - An email address. Example: [email protected]

  • Enum (Enumerable values) - An option from a set of predefined constants in the "Defines" column. Example: The rental_methods field contains values CREDITCARD, PAYPASS, etc...

  • Timestamp - Timestamp fields must be represented as integers in POSIX time. (e.g., the number of seconds since January 1st 1970 00:00:00 UTC)

  • ID - Should be represented as a string that identifies that particular entity. An ID:

    • must be unique within like fields (e.g. station_id must be unique among stations)

    • does not have to be globally unique, unless otherwise specified

    • must not contain spaces

    • must be persistent for a given entity (station, plan, etc). An exception is floating bike_id, which must not be persistent for privacy reasons (see free_bike_status.json). (as of v2.0)

  • String - Can only contain text. Strings must not contain any formatting codes (including HTML) other than newlines.

  • Language - An IETF BCP 47 language code. For an introduction to IETF BCP 47, refer to http://www.rfc-editor.org/rfc/bcp/bcp47.txt and http://www.w3.org/International/articles/language-tags/. Examples: en for English, en-US for American English, or de for German.

  • Latitude - WGS84 latitude in decimal degrees. The value must be greater than or equal to -90.0 and less than or equal to 90.0. Example: 41.890169 for the Colosseum in Rome.

  • Longitude - WGS84 longitude in decimal degrees. The value must be greater than or equal to -180.0 and less than or equal to 180.0. Example: 12.492269 for the Colosseum in Rome.

  • Non-negative Integer - An integer greater than or equal to 0.

  • Non-negative Float - A 32-bit floating point number greater than or equal to 0.

  • Float (added in v2.1) - A 32-bit floating point number.

  • Timezone - TZ timezone from the https://www.iana.org/time-zones. Timezone names never contain the space character but may contain an underscore. Refer to http://en.wikipedia.org/wiki/List_of_tz_zones for a list of valid values. Example: Asia/Tokyo, America/Los_Angeles or Africa/Cairo.

  • URI (added in v1.1) - A fully qualified URI that includes the scheme (e.g., com.abcrental.android://), and any special characters in the URI must be correctly escaped. See the following http://www.w3.org/Addressing/URL/4_URI_Recommentations.html for a description of how to create fully qualified URI values. Note that URIs may be URLs.

  • URL - A fully qualified URL that includes http:// or https://, and any special characters in the URL must be correctly escaped. See the following http://www.w3.org/Addressing/URL/4_URI_Recommentations.html for a description of how to create fully qualified URL values.

  • GeoJSON FeatureCollection - A FeatureCollection as described by the IETF RFC 7946 https://tools.ietf.org/html/rfc7946#section-3.3.

  • GeoJSON MultiPolygon - A Geometry Object as described by the IETF RFC https://tools.ietf.org/html/rfc7946#section-3.1.7.

Extensions Outside of the Specification

To accommodate the needs of feed producers and consumers prior to the adoption of a change, additional fields can be added to feeds even if these fields are not part of the official specification. Custom extensions that may provide value to the GBFS community and align with the GBFS Guiding Principles should be proposed for inclusion in the specification through the change process.

Field names of extensions should be prefixed with an underscore ( _) character. It is strongly recommended that these additional fields be documented on the wiki page of the GBFS repository in this format:

Submitted by

Field Name

File Name

Defines

Publisher's name

_field_name

Name of GBFS endpoint where field is used

Description of purpose of use

JSON Files

Output Format

Every JSON file presented in this specification contains the same common header information at the top level of the JSON response object:

File Name

(Required, Type) Defines

last_updated

(Required, Timestamp) Indicates the last time data in the feed was updated. This timestamp represents the publisher's knowledge of the current state of the system at this point in time.

ttl

(Required, Non-Negative Integer) Number of seconds before the feed will be updated again (0 if the data should always be refreshed).

version

(added in v1.1)

(Required, String) GBFS version number to which the feed confirms, according to the versioning framework.

data

(Required, Object) Response data in the form of name:value pairs.

Example:


{

"last_updated": 1609866247,

"ttl": 3600,

"version": "3.0",

"data": {

"name": "Example Bike Rental",

"system_id": "example_cityname",

"timezone": "US/Central",

"language": "en"

}

}

Files

File Name

Required

Defines

gbfs.json

Yes (as of v2.0)

Auto-discovery file that links to all of the other files published by the system.

gbfs_versions.json

(added in v1.1)

Optional

Lists all feed endpoints published according to versions of the GBFS documentation.

system_information.json

Yes

Details including system operator, system location, year implemented, URL, contact info, time zone.

vehicle_types.json

Conditionally Required

Describes the types of vehicles that System operator has available for rent. Required of systems that include information about vehicle types in the station_status and/or free_bike_status files. If this file is not included, then all vehicles in the feed are assumed to be non-motorized bicycles.

station_information.json

Conditionally Required

List of all stations, their capacities and locations. Required of systems utilizing docks.

station_status.json

Conditionally Required

Number of available vehicles and docks at each station and station availability. Required of systems utilizing docks.

free_bike_status.json

Conditionally Required

Vehicles that are available for rent. Required of systems that offer vehicles for rent outside of stations.

system_hours.json

Optional

Hours of operation for the system.

system_calendar.json

Optional

Dates of operation for the system.

system_regions.json

Optional

Regions the system is broken up into.

system_pricing_plans.json

Optional

System pricing scheme.

system_alerts.json

Optional

Current system alerts.

geofencing_zones.json

(added in v2.1)

Optional

Geofencing zones and their associated rules and attributes.

gbfs.json

The gbfs.json discovery file should represent a single system or geographic area in which vehicles are operated. The location (URL) of the gbfs.json file should be made available to the public using the specification’s auto-discovery function.

File Name

(Required, Type) Defines

language

(Required, Language) The language that will be used throughout the rest of the files. It must match the value in system_information.json

- feeds

(Required, Array) An array of all of the feeds that are published by this auto-discovery file. Each element in the array is an object with the keys below.

- name

(Required, String) Key identifying the type of feed this is. The key must be the base file name defined in the spec for the corresponding feed type (system_information for system_information.json file, station_information for station_information.json file).

- url

(Required, URL) URL for the feed. Note that the actual feed endpoints (urls) may not be defined in the file_name.json format. For example, a valid feed endpoint could end with station_info instead of station_information.json.

Example:


{

"last_updated": 1609866247,

"ttl": 0,

"version": "3.0",

"data": {

"en": {

"feeds": [

{

"name": "system_information",

"url": "https://www.example.com/gbfs/1/en/system_information"

},

{

"name": "station_information",

"url": "https://www.example.com/gbfs/1/en/station_information"

}

]

},

"fr" : {

"feeds": [

{

"name": "system_information",

"url": "https://www.example.com/gbfs/1/fr/system_information"

},

{

"name": "station_information",

"url": "https://www.example.com/gbfs/1/fr/station_information"

}

]

}

}

}

gbfs_versions.json (added in v1.1)

Each expression of a GBFS feed describes all of the versions that are available.

The following fields are all attributes within the main "data" object for this feed.

File Name

(Required, Type) Defines

versions

(Required, Array) Contains one object, as defined below, for each of the available versions of a feed. The array must be sorted by increasing MAJOR and MINOR version number.

- version

(Required, String) The semantic version of the feed in the form X.Y.

- url

(Required, URL) URL of the corresponding gbfs.json endpoint.

Example:


{

"last_updated": 1609866247,

"ttl": 0,

"version": "3.0",

"data": {

"versions": [

{

"version": "2.0",

"url": "https://www.example.com/gbfs/2/gbfs"

},

{

"version": "3.0",

"url": "https://www.example.com/gbfs/3/gbfs"

}

]

}

}

system_information.json

The following fields are all attributes within the main "data" object for this feed.

File Name

(Required, Type) Defines

system_id

(Required, ID) This is a globally unique identifier for the vehicle share system. It is up to the publisher of the feed to guarantee uniqueness and must be checked against existing system_id fields in systems.csv to ensure this. This value is intended to remain the same over the life of the system.

Each distinct system or geographic area in which vehicles are operated should have its own system_id. Systems IDs should be recognizable as belonging to a particular system as opposed to random strings - for example, bcycle_austin or biketown_pdx.

language

(Required, Language) The language that will be used throughout the rest of the files. It must match the value in the gbfs.json file.

name

(Required, String) Name of the system to be displayed to customers.

short_name

(Optional, String) Optional abbreviation for a system.

operator

(Optional, String) Name of the operator.

url

(Optional, URL) The URL of the vehicle share system.

purchase_url

(Optional, URL) URL where a customer can purchase a membership.

start_date

(Optional, Date) Date that the system began operations.

phone_number

(Optional, Phone Number) This optional field should contain a single voice telephone number for the specified system’s customer service department. It can and should contain punctuation marks to group the digits of the number. Dialable text (for example, Capital Bikeshare’s "877-430-BIKE") is permitted, but the field must not contain any other descriptive text.

email

(Optional, Email) This optional field should contain a single contact email address actively monitored by the operator’s customer service department. This email address should be a direct contact point where riders can reach a customer service representative.

feed_contact_email

(added in v1.1)

(Optional, Email) This optional field should contain a single contact email for feed consumers to report technical issues with the feed.

timezone

(Required, Timezone) The time zone where the system is located.

license_id

(added in v3.0-RC)

(Conditionally Required, String) Required if the dataset is provided under a standard license. An identifier for a standard license from the SPDX License List. Provide license_id rather than license_url if the license is included in the SPDX License List. See the GBFS wiki for a comparison of a subset of standard licenses. If the license_id and license_url fields are blank or omitted, this indicates that the feed is provided under the Creative Commons Universal Public Domain Dedication.

license_url

(added in v3.0-RC)

(Conditionally Required, String) Required if the dataset is provided under a customized license. A fully qualified URL of a page that defines the license terms for the GBFS data for this system. Do not specify a license_url if license_id is specified. If the license_id and license_url fields are blank or omitted, this indicates that the feed is provided under the Creative Commons Universal Public Domain Dedication. (as of v3.0-RC)

attribution_organization_name

(added in v3.0-RC)

(Optional, String) If the feed license requires attribution, name of the organization to which attribution should be provided.

attribution_url

(added in v3.0-RC)

(Optional, URL) URL of the organization to which attribution should be provided.

brand_assets

(added in v2.3-RC)

(Optional, Object) An object where each key defines one of the items listed below.

- brand_last_modified

(added in v2.3-RC)

(Conditionally Required, Date) REQUIRED if brand_assets is defined. Date that indicates the last time any included brand assets were updated or modified. MUST be in the format YYYY-MM-DD.

- brand_terms_url

(added in v2.3-RC)

(Optional, URL) A fully qualified URL pointing to the location of a page that defines the license terms and brand icons, colors or other trademark information. This field MUST NOT take the place of license_url or license_id.

- brand_image_url

(added in v2.3-RC)

(Conditionally Required, URL) REQUIRED if brand_assets objects is defined. A fully qualified URL pointing to the location of a graphic file representing the brand for the service. File MUST be in SVG V1.1 format and MUST be either square of round.

- brand_image_url_dark

(added in v2.3-RC)

(Optional, URL) A fully qualified URL pointing to the location of a graphic file representing the brand for the service for use in dark mode applications. File MUST be in SVG V1.1 format and MUST be either square of round.

- color

(added in v2.3-RC)

(Optional, String) Color used to represent the brand for the service expressed as a 6 digit hexadecimal color code in the form #000000.

terms_url

(added in v2.3-RC)

(Optional, URL) A fully qualified URL pointing to the terms of service (also called terms of use or terms and conditions) for the service.

terms_last_updated

(added in v2.3-RC)

(Conditionally Required, Date) REQUIRED if terms_url is defined. The date that the terms of service provided at terms_url were last updated. MUST be in the format YYYY-MM-DD.

privacy_url

(added in v2.3-RC)

(Optional, URL) A fully qualified URL pointing to the privacy policy for the service.

privacy_last_updated

(added in v2.3-RC)

(Conditionally Required, Date) REQUIRED if privacy_url is defined. The date that the privacy policy provided at privacy_url was last updated. MUST be in the format YYYY-MM-DD.

rental_apps

(added in v1.1)

(Optional, Object) Contains rental app information in the android and ios JSON objects.

- android

(added in v1.1)

(Optional, Object) Contains rental app download and app discovery information for the Android platform in the store_uri and discovery_uri fields. See examples of how to use these fields and supported analytics.

- store_uri

(added in v1.1)

(Condtionally Required, URI) URI where the rental Android app can be downloaded from. Typically this will be a URI to an app store such as Google Play. If the URI points to an app store such as Google Play, the URI should follow Android best practices so the viewing app can directly open the URI to the native app store app instead of a website.

If a rental_uris.android field is populated then this field is required, otherwise it is optional.

See the Analytics section for how viewing apps can report the origin of the deep link to rental apps.

Example value: https://play.google.com/store/apps/details?id=com.abcrental.android

- discovery_uri

(added in v1.1)

(Condtionally Required, URI) URI that can be used to discover if the rental Android app is installed on the device (e.g., using PackageManager.queryIntentActivities()). This intent is used by viewing apps prioritize rental apps for a particular user based on whether they already have a particular rental app installed.

This field is required if a rental_uris.android field is populated, otherwise it is optional.

Example value: com.abcrental.android://

- ios

(added in v1.1)

(Optional, Object) Contains rental information for the iOS platform in the store_uri and discovery_uri fields. See examples of how to use these fields and supported analytics.

- store_uri

(added in v1.1)

(Condtionally Required, URI) URI where the rental iOS app can be downloaded from. Typically this will be a URI to an app store such as the Apple App Store. If the URI points to an app store such as the Apple App Store, the URI should follow iOS best practices so the viewing app can directly open the URI to the native app store app instead of a website.

If a rental_uris.android field is populated then this field is required, otherwise it is optional.

See the Analytics section for how viewing apps can report the origin of the deep link to rental apps.

Example value: https://apps.apple.com/app/apple-store/id123456789

- discovery_uri

(added in v1.1)

(Condtionally Required, URI) URI that can be used to discover if the rental iOS app is installed on the device (e.g., using UIApplication canOpenURL:). This intent is used by viewing apps prioritize rental apps for a particular user based on whether they already have a particular rental app installed.

This field is required if a rental_uris.ios field is populated, otherwise it is optional.

Example value: com.abcrental.ios://

Example:


{

"last_updated": 1611598155,

"ttl": 1800,

"version": "3.0",

"data": {

"system_id": "example_cityname",

"language": "en",

"name": "Example Bike Rental",

"short_name": "Example Bike",

"operator": "Example Sharing, Inc",

"url": "https://www.example.com",

"purchase_url": "https://www.example.com",

"start_date": "2010-06-10",

"phone_number": "1-800-555-1234",

"email": "[email protected]",

"feed_contact_email": "[email protected]",

"timezone": "US/Central",

"license_url": "https://www.example.com/data-license.html",

"brand_assets": {

"brand_last_modified": "2021-06-15",

"brand_image_url": "https://www.example.com/assets/brand_image.svg",

"brand_image_url_dark": "https://www.example.com/assets/brand_image_dark.svg",

"color": "#C2D32C",

"terms_url": "https://www.example.com/assets/brand.pdf"

}

}

}


vehicle_types.json (added in v2.1)

Required of systems that include information about vehicle types in the free_bike_status file. If this file is not included, then all vehicles in the feed are assumed to be non-motorized bicycles. This file should be published by systems offering multiple vehicle types for rental, for example pedal bikes and ebikes.

The following fields are all attributes within the main "data" object for this feed.

File Name

(Required, Type) Defines

vehicle_types

(Required, Array) Array that contains one object per vehicle type in the system as defined below.

- vehicle_type_id

(Required, ID) Unique identifier of a vehicle type. See Field Types above for ID field requirements.

- form_factor

(Required, Enum)The vehicle's general form factor.

Current valid issues are:

  • bicycle

  • car

  • moped

  • other

  • scooter

- propulsion_type

(Required, Enum) The primary propulsion type of the vehicle.

Current valid issues are:

  • human (Pedal or foot propulsion)

  • electric_assist (Provides power only alongside human propulsion)

  • electric (Contains throttle mode with a battery-powered motor)

  • combustion (Contains throttle mode with a gas engine-powered motor)

This field was inspired by, but differed from the propulsion types field described in the Open Mobility Foundation Mobility Data Specification

- max_range_meters

(Conditionally Required, Enum) If the vehicle has a motor (as indicated by having a value other than human in the propulsion_type field), this field is required. This represents the furthest distance in meters that the vehicle can travel without recharging or refueling when it has the maximum amount of energy potential (for example, a full battery or full tank of gas).

- name

(Optional, String) The public name of this vehicle type.

- vehicle_reserve_time

(added in v2.3-RC)

(Optional, Non-negative Integer) Maximum time in minutes that a vehicle can be reserved before a rental begins. When a vehicle is reserved by a user the vehicle remains locked until the rental begins. During the time the vehicle is unavailable and cannot be reserved or rented by other users. The vehicle status in free_bike_status.json MUST be set to is_reserved = true. If the value of vehicle_reserve_time elapses without a rental beginning, the vehicle status MUST change to is_reserved = false. If vehicle_reserve_time is set to to 0 the vehicle type cannot be reserved.

- return_type

(added in v2.3-RC)

(Optional, Array) The conditions for returning the vehicle at the end of the trip. For vehicles that have more than one return option, include all applicable methods in the array.

Current valid values are:

  • free_floating (The vehicle can be returned anywhere permitted within the service area - note that this field is subject to rules in geofencing_zones.json if defined.)

  • roundtrip_station (The vehicle must be returned to the initial rental station. Cannot be defined in combination with free_floating.)

  • any_station (The vehicle must be returned to any station within the service area - note that a specific station can be defined in free_bike_status.json using home_station. Cannot be defined in combination with roundtrip_station.)

- vehicle_assets

(added in v2.3-RC)

(Optional, Object) An object where each key defines one of the items listed below.

- icon_url

(added in v2.3-RC)

(Conditionally Required, URL) REQUIRED if vehicle_assets is defined. A fully qualified URL pointing to the location of a graphic icon file that MAY be used to represent this vehicle type on maps and in other applications. File MUST be in SVG V1.1 format and MUST be either square or round.

- icon_url_dark

(added in v2.3-RC)

(Optional, URL) A fully qualified URL pointing to the location of a graphic icon file to be used to represent this vehicle type when in dark mode on maps and in other applications. File MUST be in SVG V1.1 format and MUST be either square or round.

- icon_last_modified

(added in v2.3-RC)

(Conditionally Required, Date) REQUIRED if icon_url and/or icon_url_dark is defined. Date that indicates the last time any included vehicle icon images were modified or updated. MUST be in the format YYYY-MM-DD.

- default_pricing_plan_id

(added in v2.3-RC)

(Conditionally Required, ID) REQUIRED if both system_pricing_plans.json and vehicle_types.json are defined. A plan_id as defined in system_pricing_plans.json that identifies a default pricing plan for this vehicle to be used by trip planning applications for the purposes of calculating the cost of a single trip using this vehicle type. This default pricing plan is superseded by pricing_plan_id when it is defined in free_bike_status.json. Publishers SHOULD defined default_pricing_plan_id first and then override it using pricing_plan_id in free_bike_status.json when necessary.

- pricing_plans

(added in v2.3-RC)

(Optional, Array) Array of all pricing plan IDs as defined in system_pricing_plans.json that are applied to this vehicle type.

This array SHOULD be published when there are multiple pricing plans defined in system_pricing_plans.json that apply to a single vehicle type.

Example:

{

"last_updated": 1609866247,

"ttl": 0,

"version": "3.0",

"data": {

"vehicle_types": [

{

"vehicle_type_id": "abc123",

"form_factor": "bicycle",

"propulsion_type": "human",

"name": "Example Basic Bike",

"vehicle_reserve_time": 30,

"return_type": [

"any_station",

"free_floating"

],

"vehicle_assets": {

"icon_url": "https://www.example.com/assets/icon_bicycle.svg",

"icon_url_dark": "https://www.example.com/assets/icon_bicycle_dark.svg",

"icon_last_modified": "2021-06-15"

},

"default_pricing_plan": "bike_plan_1",

"pricing_plans": [

"bike_plan_1",

"bike_plan_2",

"bike_plan_3"

]

},

{

"vehicle_type_id": "def456",

"form_factor": "scooter",

"propulsion_type": "electric",

"name": "Example E-scooter V2",

"vehicle_reserve_time": 30,

"max_range_meters": 12345,

"return_type": [

"free_floating"

],

"vehicle_assets": {

"icon_url": "https://www.example.com/assets/icon_escooter.svg",

"icon_url_dark": "https://www.example.com/assets/icon_escooter_dark.svg",

"icon_last_modified": "2021-06-15"

},

"default_pricing_plan": "scooter_plan_1"

},

{

"vehicle_type_id": "car1",

"form_factor": "car",

"propulsion_type": "combustion",

"name": "Four-door Sedan",

"vehicle_reserve_time": 0,

"max_range_meters": 523992,

"return_type": [

"roundtrip_station"

],

"vehicle_assets": {

"icon_url": "https://www.example.com/assets/icon_car.svg",

"icon_url_dark": "https://www.example.com/assets/icon_car_dark.svg",

"icon_last_modified": "2021-06-15"

},

"default_pricing_plan": "car_plan_1"

}

]

}

}


station_information.json

All stations included in station_information.json are considered public (e.g., can be shown on a map for public use). If there are private stations (such as Capital Bikeshare’s White House station), these should not be included here. Any station that is represented in station_information.json must have a corresponding entry in station_status.json.

File Name

(Required, Type) Defines

stations

(Required, Array) Array that contains one object per station as described below.

- station_id

(Required, ID) Identifier of a station.

- name

(Required, String) The public name of the station for display in maps, digital signage and other text applications. Names should reflect the station location through the use of a cross street or local landmark. Abbreviations should not be used for names and other text (e.g. St. for Street) unless a location is called by its abbreviated name (e.g. “JFK Airport”). See Text Fields and Naming.

Examples:

  • Broadway and East 22nd Street

  • Convention Center

  • Central Park South

- short_name

(Optional, String) Short name or other type of identifier.

- lat

(Required, Latitude) Latitude of the station in decimal degrees. This field should have a precision of 6 decimal places (0.000001). See Coordinate Precision.

- lon

(Required, Longitude) Longitude of the station in decimal degrees. This field should have a precision of 6 decimal places (0.000001). See Coordinate Precision.

- address

(Optional, String) Address (street number and name) where station is located. This must be a valid address, not a free-form text description. Example: 1234 Main Street

- cross_street

(Optional, String) Cross street or landmark where the station is located.

- region_id

(Optional, ID) Identifier of the region where station is located. See system_regions.json

- post_code

(Optional, String) Postal code where the station is located.

- rental_methods

(Optional, Array) Payment methods accepted at this station.

Current valid values are:

  • KEY (e.g. operator issued vehicle key / fob / card)

  • CREDITCARD

  • PAYPASS

  • APPLEPAY

  • ANDROIDPAY

  • TRANSITCARD

  • ACCOUNTNUMBER

  • PHONE

- is_virtual_station

(added in v2.1)

(Optional, Boolean) Is this station a location with or without physical infrastructures (docks)?

true - The station is a location without physical infrastructure, defined by a point (lat/lon) and/or station_area (below).

false - The station consists of physical infrastructure (docks).

If this field is empty, it means the station consists of physical infrastructure (docks).

This field should be published in systems that have station locations without standard, internet connected physical docking infrastructure. These may be racks or geofenced areas designated for rental and/or return of vehicles. Locations that fit within this description should have the is_virtual_station boolean set to true.

- station_area

(added in v2.1)

(Optional, GeoJSON Multipolygon) A GeoJSON multipolygon that describes the area of a virtual station. If station_area is supplied then the record describes a virtual station.

If lat/lon and station_area are both defined, the lat/lon is the significant coordinate of the station (e.g. dock facility or valet drop-off and pick up point). The station_area takes precedence over any ride_allowed rules in overlapping geofencing_zones.

- capacity

(Optional, Non-negative Integer) Number of total docking points installed at this station, both available and unavailable, regardless of what vehicle types are allowed at each dock. Empty indicates unlimited capacity.

- vehicle_capacity

(added in v.2.1)

(Optional, ID) An object where each key is a vehicle_type_id as described in vehicle_types.json and the value is a number representing the total number of vehicles of this type that can park within the area defined in the station_area field. If the field station_area is defined and a particular vehicle type id is not defined in this object, then an unlimited virtual capacity is assumed for that vehicle type.

- is_valet_station

(added in v.2.1)

(Optional, Boolean)Are valet services provided at this station?

true - Valet services are provided at this station.

false - Valet services are not provided at this station.

If this field is empty, it is assumed that valet services are not provided at this station.

This field’s boolean should be set to true during the hours which valet service is provided at the station. Valet service is defined as providing unlimited capacity at a station.

- is_charging_station

(added in v.2.3-RC)

(Optional, Boolean) Does the station support charging of electric vehicles?

true - Electric vehicle charging is available at this station.

false - Electric vehicle charging is not available at this station.

- rental_uris

(added in v.1.1)

(Optional, Object) Contains rental URIs for Android, iOS, and web in the android, ios and web fields. See examples of how to use these fields and supported analytics.

- android

(added in v.1.1)

(Optional, URI) URI that can be passed to an Android app with an android.intent.action.VIEW Android intent to support Android Deep Links (https://developer.android.com/training/app-links/deep-linking). Please use Android App Links (https://developer.android.com/training/app-links) if possible so viewing apps don’t need to manually manage the redirect of the user to the app store if the user doesn’t have the application installed.

This URI should be a deep link specific to this station, and should not be a general rental page that includes information for more than one station. The deep link should take users directly to this station, without any prompts, interstitial pages, or logins. Make sure that users can see this station even if they never previously opened the application.

If this field is empty, it means deep linking isn’t supported in the native Android rental app.

Note that URIs do not necessarily include the station_id for this station - other identifiers can be used by the rental app within the URI to uniquely identify this station.

See the Analytics section for how viewing apps can report the origin of the deep link to rental apps.

Android App Links example value: https://www.abc.com/app?sid=1234567890&platform=android

Deep Link (without App Links) example value: com.abcrental.android://open.abc.app/app?sid=1234567890.

- ios

(added in v.1.1)

(Optional, URI) URI that can be used on iOS to launch the rental app for this station. More information on this iOS feature can be found here. Please use iOS Universal Links (https://developer.apple.com/ios/universal-links/) if possible so viewing apps don’t need to manually manage the redirect of the user to the app store if the user doesn’t have the application installed.

This URI should be a deep link specific to this station, and should not be a general rental page that includes information for more than one station. The deep link should take users directly to this station, without any prompts, interstitial pages, or logins. Make sure that users can see this station even if they never previously opened the application.

If this field is empty, it means deep linking isn’t supported in the native iOS rental app.

Note that the URI does not necessarily include the station_id - other identifiers can be used by the rental app within the URL to uniquely identify this station.

See the Analytics section for how viewing apps can report the origin of the deep link to rental apps.

iOS Universal Links example value: https://www.abc.com/app?sid=1234567890&platform=ios

Deep Link (without Universal Links) example value: com.abcrental.ios://open.abc.app/app?sid=1234567890

- web

(added in v.1.1)

(Optional, URL) URL that can be used by a web browser to show more information about renting a vehicle at this station.

This URL should be a deep link specific to this station, and should not be a general rental page that includes information for more than one station. The deep link should take users directly to this station, without any prompts, interstitial pages, or logins. Make sure that users can see this station even if they never previously opened the application.

If this field is empty, it means deep linking isn’t supported for web browsers.

Example value: https://www.abc.com/app?sid=1234567890

- vehicle_type_capacity

(added in v.2.1)

(Optional, Object) An object where each key is a vehicle_type_id as described in vehicle_types.json and the value is a number representing the total docking points installed at this station, both available and unavailable for the specified vehicle type.

Example 1 - Physical Station:

{

"last_updated": 1609866247,

"ttl": 0,

"version": "3.0",

"data": {

"stations": [

{

"station_id": "pga",

"name": "Parking garage A",

"lat": 12.345678,

"lon": 45.678901,

"vehicle_type_capacity": {

"abc123": 7,

"def456": 9

}

}

]

}

}

Example 2 - Virtual Station:


{

"last_updated": 1609866247,

"ttl": 0,

"version": "3.0",

"data": {

"stations": [

{

"station_id": "station12",

"name": "SE Belmont & SE 10 th",

"lat": -122.655775,

"lon": 45.516445,

"is_valet_station": false,

"is_virtual_station": true,

"station_area": {

"type": "MultiPolygon",

"coordinates": [

[

[

[

-122.655775,

45.516445

],

[

-122.655705,

45.516445

],

[

-122.655705,

45.516495

],

[

-122.655775,

45.516495

],

[

-122.655775,

45.516445

]

]

]

]

},

"capacity": 16,

"vehicle_capacity": {

"abc123": 8,

"def456": 8,

"ghi789": 16

}

}

]

}

}

station_status.json

Describes the capacity and rental availability of a station. Data returned should be as close to realtime as possible, but in no case should it be more than 5 minutes out-of-date. See Data Latency. Data reflects the operators most recent knowledge of the station’s status. Any station that is represented in station_status.json must have a corresponding entry in station_information.json.

File Name

(Required, Type) Defines

stations

(Required, Array) Array that contains one object per station in the system as described below.

- station_id

(Required, ID) Identifier of a station, see station_information.json.

- num_bikes_available

(Required, Non-negative Integer) Number of functional vehicles physically at the station that may be offered for rental. To know if the vehicles are available for rental, see is_renting.

If is_renting = true, this is the number of vehicles that are currently available for rent. If is_renting = false this is the number of vehicle that would be available for rent if the station were set to allow rentals.

- vehicle_types_available

(added in v2.1)

(Conditionally Required, Array) This field is required if the vehicle_types.json file has been defined. This field's value is an array of objects. Each of these objects is used to model the total number of each defined vehicle type available at a station. The total number of vehicles from each of these objects should add up to match the value specified in the num_bikes_available field.

- vehicle_type_id

(added in v2.1)

(Required, ID) The vehicle_type_id of each vehicle type at the station as described in vehicle_types.json. This field is required if vehicle_types.json is defined.

- count

(added in v2.1)

(Required, Non-negative integer) A number representing the total number of available vehicles of the corresponding vehicle_type_id as defined in vehicle_types.json at the station.

- num_bikes_disabled

(Optional, Non-negative Integer) Number of disabled vehicles of any type at the station. Vendors who do not want to publicize the number of disabled vehicles or docks in their system can opt to omit station capacity (in station_information), num_bikes_disabled and num_docks_disabled (as of v2.0). If station capacity is published, then broken docks/vehicles can be inferred (though not specifically whether the decreased capacity is a broken vehicle or dock).

- num_docks_available

(Conditionally Required (as of v2.0), Non-negative Integer) Required except for stations that have unlimited docking capacity (e.g. virtual stations) (as of v2.0). Number of functional docks physically at the station that are able to accept vehicles for return. To know if the docks are accepting vehicle returns, see is_returning.

If is_returning = true this is the number of dicks that are currently available to accept vehicle returns. If is_returning = false this is the number of docks that would be available if the station were set to allow returns.

- vehicle_docks_available

(added in v2.1)

(Conditionally Required, Array) This field is required in feeds where the vehicle_types.json is defined and where certain docks are only able to accept certain vehicle types. If every dock at the station is able to accept any vehicle type, then this field is not required. This field's value is an array of objects. Each of these objects is used to model the number of docks available for certain vehicle types. The total number of docks from each of these objects should add up to match the value specified in the num_docks_available field.

- vehicle_type_ids

(added in v2.1)

(Required, Array of Strings) An array of strings where each string represents a vehicle_type_id that is able to use a particular type of dock at the station.

- count

(added in v2.1)

(Required, Non-negative integer) A number representing the total number of available vehicles of the corresponding vehicle type as defined in the vehicle_types array at the station that can accept vehicles of the specified types in the vehicle_types array.

- num_docks_disabled

(Optional, Non-negative Integer) Number of empty but disabled dock points at the station.

- is_installed

(Required, Boolean) Is the station currently on the street?

true - Station is installed on the street.

false - Station is not installed on the street.

- is_installed

(Required, Boolean) Is the station currently on the street?

true - Station is installed on the street.

false - Station is not installed on the street.

Boolean should be set to true when equipment is present on the street. In seasonal systems where equipment is removed during winter, boolean should be set to false during the off season. May also be set to false to indicate planned (future) stations which have not yet been installed.

- is_renting

(Required, Boolean) Is the station currently renting vehicles?

true - Station is renting vehicles. Even if the station is empty, if it would otherwise allow rentals this value must be true.

false - Station is not renting vehicles.

If a station becomes inaccessible to users due to road construction or other factors this field should be set to false. Field should be set to false during hours or days when the system is not offering vehicles for rent.

- is_returning

(Required, Boolean) Is the station accepting vehicle returns?

true - Station is accepting vehicle returns. Even if a station is full, if it would otherwise allow vehicle returns this value must be true.

false - Station is not accepting vehicle returns.

If the station is temporarily taken out of service and not allowing vehicle returns this field must be set to false.

If a station becomes inaccessible to users due to road construction or other factors this field should be set to false.

- last_reported

(Required, Timestamp) The last time this station reported its status to the operator's backend.

Example:


{

"last_updated": 1609866247,

"ttl": 0,

"version": "3.0",

"data": {

"stations": [

{

"station_id": "station1",

"is_installed": true,

"is_renting": true,

"is_returning": true,

"last_reported": 1609866125,

"num_docks_available": 3,

"vehicle_docks_available": [

{

"vehicle_type_ids": [ "abc123" ],

"count": 2

},

{

"vehicle_type_ids": [ "def456" ],

"count": 1

}

],

"num_bikes_available": 1,

"vehicle_types_available": [

{

"vehicle_type_id": "abc123",

"count": 1

},

{

"vehicle_type_id": "def456",

"count": 0

}

]

},

{

"station_id": "station2",

"is_installed": true,

"is_renting": true,

"is_returning": true,

"last_reported": 1609866106,

"num_docks_available": 8,

"vehicle_docks_available": [

{

"vehicle_type_ids": [ "abc123" ],

"count": 6

},

{

"vehicle_type_ids": [ "def456" ],

"count": 2

}

],

"num_bikes_available": 6,

"vehicle_types_available": [

{

"vehicle_type_id": "abc123",

"count": 2

},

{

"vehicle_type_id": "def456",

"count": 4

}

]

}

]

}

}

free_bike_status.json

(as of v2.1) Describes all vehicles that are not currently in active rental. Required for free floating (dockless) vehicles. Optional for station based (docked) vehicles. Data returned should be as close to realtime as possible, but in no case should it be more than 5 minutes out-of-date. See Data Latency. Vehicles that are part of an active rental must not appear in this feed. Vehicles listed as available for rental must be in the field and accessible to users. Vehicles that are not accessible (e.g. in a warehouse or in transit) must not appear as available for rental.

File Name

(Required, Type) Defines

bikes

(Required, Array) Array that contains one object per vehicle that is currently stopped as defined below.

- bike_id

(Required, ID) Identifier of a vehicle. The bike_id identifier must be rotated to a random string after each trip to protect user privacy (as of v2.0). Use of persistent vehicle IDs poses a threat to user privacy. The bike_id identifier should only be rotated once per trip.

- system_id

(added in v3.0-RC)

(Conditionally Required, ID) Identifier referencing the system_id field in system_information.json. Required in the case of feeds that specify free (undocked) bikes and define systems in system_information.json.

- lat

(Conditionally Required, Latitude) Latitude of the vehicle in decimal degrees. (as of v2.1-RC2) This field is required if station_id is not provided for this vehicle (free floating). This field should have a precision of 6 decimal places (0.000001). See Coordinate Precision.

- lon

(Conditionally Required, Longitude) Longitude of the vehicle in decimal degrees. (as of v2.1-RC2) This field is required if station_id is not provided for this vehicle (free floating). This field should have a precision of 6 decimal places (0.000001). See Coordinate Precision.

- is_reserved

(Required, Boolean) Is the vehicle currently reserved?

true - Vehicle is currently reserved.

false - Vehicle is not currently reserved.

- is_disabled

(Required, Boolean) Is the vehicle currently disabled?

true - Vehicle is currently disabled.

false - Vehicle is not currently disabled.

This field is used to indicate vehicles that are in the field but not available for rental. This may be due to a mechanical issue, low battery, etc. Publishing this data may prevent users from attempting to rent vehicles that are disabled and not available for rental.

- rental_uris

(added in v1.1)

(Optional, Object) JSON object that contains rental URIs for Android, iOS, and web in the android, ios, and web fields. See examples of how to use these fields and supported analytics.

- android

(added in v1.1)

(Optional, URI) URI that can be passed to an Android app with an android.intent.action.VIEW Android intent to support Android Deep Links (https://developer.android.com/training/app-links/deep-linking). Please use Android App Links (https://developer.android.com/training/app-links) if possible so viewing apps don’t need to manually manage the redirect of the user to the app store if the user doesn’t have the application installed.

This URI should be a deep link specific to this vehicle, and should not be a general rental page that includes information for more than one vehicle. The deep link should take users directly to this vehicle, without any prompts, interstitial pages, or logins. Make sure that users can see this vehicle even if they never previously opened the application. Note that as a best practice providers should rotate identifiers within deep links after each rental to avoid unintentionally exposing private vehicle trip origins and destinations.

If this field is empty, it means deep linking isn’t supported in the native Android rental app.

Note that URIs do not necessarily include the bike_id for this vehicle - other identifiers can be used by the rental app within the URI to uniquely identify this vehicle.

See the Analytics section for how viewing apps can report the origin of the deep link to rental apps.

Android App Links example value: https://www.abc.com/app?sid=1234567890&platform=android

Deep Link (without App Links) example value: com.abcrental.android://open.abc.app/app?sid=1234567890

- ios

(added in v1.1)

(Optional, URI) URI that can be used on iOS to launch the rental app for this vehicle. More information on this iOS feature can be found here. Please use iOS Universal Links (https://developer.apple.com/ios/universal-links/) if possible so viewing apps don’t need to manually manage the redirect of the user to the app store if the user doesn’t have the application installed.

This URI should be a deep link specific to this vehicle, and should not be a general rental page that includes information for more than one vehicle. The deep link should take users directly to this vehicle, without any prompts, interstitial pages, or logins. Make sure that users can see this vehicle even if they never previously opened the application. Note that as a best practice providers should rotate identifiers within deep links after each rental to avoid unintentionally exposing private vehicle trip origins and destinations.

If this field is empty, it means deep linking isn’t supported in the native iOS rental app.

Note that the URI does not necessarily include the bike_id - other identifiers can be used by the rental app within the URL to uniquely identify this vehicle.

See the Analytics section for how viewing apps can report the origin of the deep link to rental apps.

iOS Universal Links example value: https://www.abc.com/app?sid=1234567890&platform=ios

Deep Link (without Universal Links) example value: com.abcrental.ios://open.abc.app/app?sid=1234567890

- web

(added in v1.1)

(Optional, URL) URL that can be used by a web browser to show more information about renting a vehicle at this vehicle.

This URL should be a deep link specific to this vehicle, and should not be a general rental page that includes information for more than one vehicle. The deep link should take users directly to this vehicle, without any prompts, interstitial pages, or logins. Make sure that users can see this vehicle even if they never previously opened the application. Note that as a best practice providers should rotate identifiers within deep links after each rental to avoid unintentionally exposing private vehicle trip origins and destinations.

If this field is empty, it means deep linking isn’t supported for web browsers.

Example value: https://www.abc.com/app?sid=1234567890

- vehicle_type_id

(added in v2.1)

(Conditionally Required, ID) The vehicle_type_id of this vehicle as described in vehicle_types.json. This field is required if the vehicle_types.json is defined.

- last_reported

(added in v2.1)

(Optional, Timestamp) The last time this vehicle reported its status to the operator's backend.

- current_range_meters

(added in v2.1)

(Conditionally Required, Non-negative Float) If the corresponding vehicle_type definition for this vehicle has a motor, then this field is required. This value represents the furthest distance in meters that the vehicle can travel without recharging or refueling with the vehicle's current charge or fuel.

- station_id

(added in v2.1)

(Conditionally Required, ID) Identifier referencing the station_id field in system_information.json. Required only if the vehicle is currently at a station and the vehicle_types.json file has been defined.

- pricing_plan_id

(added in v2.2)

(Optional, ID) The plan_id of the pricing plan this vehicle is eligible for as described in system_pricing_plans.json.

Example:


{

"last_updated": 1609866247,

"ttl": 0,

"version": "3.0",

"data": {

"bikes": [

{

"bike_id": "ghi789",

"last_reported": 1609866109,

"lat": 12.345678,

"lon": 56.789012,

"is_reserved": false,

"is_disabled": false,

"vehicle_type_id": "abc123"

},

{

"bike_id": "jkl012",

"last_reported": 1609866204,

"is_reserved": false,

"is_disabled": false,

"vehicle_type_id": "def456",

"current_range_meters": 6543,

"station_id": "86",

"pricing_plan_id": "plan3",

"home_station": "146"

}

]

}

}

system_hours.json

This optional file is used to describe hours and days of operation when vehicles are available for rental. If system_hours.json is not published it indicates that vehicles are available for rental 24 hours a day, 7 days a week.

File Name

(Required, Type) Defines

rental_hours

(Required, Array) Array of objects as defined below. The array must contain a minimum of one object identifying hours for every day of the week or a maximum of two for each day of the week objects ( one for each user type).

- user_types

(Required, Array) An array of member and/or nonmember value(s). This indicates that this set of rental hours applies to either members or non-members only.

- days

(Required, Array) An array of abbreviations (first 3 letters) of English names of the days of the week for which this object applies (e.g. ["mon", "tue", "wed", "thu", "fri", "sat, "sun"]). Rental hours must not be defined more than once for each day and user type.

- start_time

(Required, Time) Start time for the hours of operation of the system in the time zone indicated in system_information.json.

- end_time

(Required, Time) End time for the hours of operation of the system in the time zone indicated in system_information.json.

Example:


{

"last_updated": 1609866247,

"ttl": 86400,

"version": "3.0",

"data": {

"rental_hours": [

{

"user_types": [ "member" ],

"days": [

"sat",

"sun"

],

"start_time": "00:00:00",

"end_time": "23:59:59"

},

{

"user_types": [ "nonmember" ],

"days": [

"sat",

"sun"

],

"start_time": "05:00:00",

"end_time": "23:59:59"

},

{

"user_types": [

"member",

"nonmember"

],

"days": [

"mon",

"tue",

"wed",

"thu",

"fri"

],

"start_time": "00:00:00",

"end_time": "23:59:59"

}

]

}

}

system_calendar.json

Describes the operating calendar for a system. This optional file should be published by systems that operate seasonally or don’t offer continuous year-round service.

File Name

(Required, Type) Defines

calendars

(Required, Array) Array of objects describing the system operational calendar. A minimum of one calendar object is required. If start and end dates are the same every year, then start_year and end_year should be omitted.

- start_month

(Required, Non-negative Integer) Starting month for the system operations (1-12).

- start_day

(Required, Non-negative Integer) Starting date for the system operations (1-31).

- start_year

(Required, Non-negative Integer) Starting year for the system operations.

- end_month

(Required, Non-negative Integer) Ending month for the system operations (1-12).

- end_day

(Required, Non-negative Integer) Ending date for the system operations (1-31).

- end_year

(Required, Non-negative Integer) Ending year for the system operations.

Example:


{

"last_updated": 1604333830,

"ttl": 86400,

"version": "3.0",

"data": {

"calendars": [

{

"start_month": 4,

"start_day": 1,

"start_year": 2020,

"end_month": 11,

"end_day": 5,

"end_year": 2020

}

]

}

}

system_regions.json

Describe regions for a system that is broken up by geographic or political region.

File Name

(Required, Type) Defines

regions

(Required, Array) Array of objects as defined below.

- region_id

(Required, ID) Identifier of the region.

- name

(Required, ID) Public name of this region.

Example:


{

"last_updated": 1604332380,

"ttl": 86400,

"version": "3.0",

"data": {

"regions": [

{

"name": "North",

"region_id": "3"

},

{

"name": "East",

"region_id": "4"

},

{

"name": "South",

"region_id": "5"

},

{

"name": "West",

"region_id": "6"

}

]

}

}

system_pricing_plans.json

Describes pricing for the system.

File Name

(Required, Type) Defines

plans

(Required, Array) Array of objects as defined below.

- plan_id

(Required, ID) Identifier for a pricing plan in the system.

- url

(Optional, URL) URL where the customer can learn more about this pricing plan

- name

(Required, String) Name of this pricing plan.

- currency

(Required, String) Currency used to pay the fare.

This pricing is in ISO 4217 code: http://en.wikipedia.org/wiki/ISO_4217 (e.g. CAD for Canadian dollars, EUR for euros, or JPY for Japanese yen.)

- price

(Required, Non-negative Float OR String) Fare price, in the unit specified by currency. If string, must be in decimal monetary value.

(added in v2.1-RC2) Note: v3.0 may only allow non-negative float, therefore future implementations should be non-negative float.

In case of non-rate price, this field is the total price. In case of rate price, this field is the base price that is charged only once per trip (e.g., price for unlocking) in addition to per_km_pricing and/or per_min_pricing.

- is_taxable

(Required, Boolean) Will additional tax be added to the base price?

true - Yes.

false - No.

false may be used to indicate that tax is not charged or that tax is included in the base price.

- description

(Required, String) Customer-readable description of the pricing plan. This should include the duration, price, conditions, etc. that the publisher would like users to see.

- per_km_pricing

(added in v2.2)

(Optional, Array) Array of segments when the price is a function of distance travelled, displayed in kilometers.

Total price is the addition of price and all segments in per_km_pricing and per_min_pricing. If this array is not provided, there are no variable prices based on distance.

- start

(added in v2.2)

(Required, Non-Negative Integer) The kilometer at which this segment rate starts being charged (inclusive).

- rate

(added in v2.2)

(Required, Float) Rate that is charged for each kilometer interval after the start. Can be a negative number, which indicates that the traveller will receive a discount.

- interval

(added in v2.2)

(Required, Non-Negative Integer) Interval in kilometers at which the rate of this segment is either reapplied indefinitely, or if defined, up until (but not including) end kilometer.

An interval of 0 indicates the rate is only charged once.

- end

(added in v2.2)

(Optional, Non-Negative Integer)The kilometer at which the rate will no longer apply (exclusive) e.g. if end is 20 the rate no longer applies at 20.00 km.

If this field is empty, the price issued for this segment is charged until the trip ends, in addition to following segments.

- per_min_pricing

(added in v2.2)

(Optional, Array) Array of segments when the price is a function of time travelled, displayed in minutes.

Total price is the addition of price and all segments in per_km_pricing and per_min_pricing. If this array is not provided, there are no variable prices based on time.

- start

(added in v2.2)

(Required, Non-Negative Integer) The minute at which this segment rate starts being charged (inclusive).

- rate

(added in v2.2)

(Required, Float) Rate that is charged for each minute interval after the start. Can be a negative number, which indicates that the traveller will receive a discount.

- interval

(added in v2.2)

(Required, Non-Negative Integer) Interval in minutes at which the rate of this segment is either reapplied indefinitely, or if defined, up until (but not including) end minutes.

An interval of 0 indicates the rate is only charged once.

- end

(added in v2.2)

(Optional, Non-Negative Integer) The minute at which the rate will no longer apply (exclusive) e.g. if end is 20 the rate no longer applies after 19:59.

If this field is empty, the price issued for this segment is charged until the trip ends, in addition to following segments.

- surge_pricing

(added in v2.2)

(Optional, Boolean) Is there currently an increase in price in response to increased demand in this pricing plan? If this field is empty, it means these is no surge pricing in effect.

true - Surge pricing is in effect.

false - Surge pricing is not in effect.

Example 1:

The user does not pay more than the base price for the first 10 km. After 10 km the user pays $1 per km. After 25 km the user pays $0.50 per km and an additional $3 every 5 km, the extension price, in addition to $0.50 per km.


{

"last_updated": 1609866247,

"ttl": 0,

"version": "3.0",

"data": {

"plans": [

{

"plan_id": "plan2",

"name": "One-Way",

"currency": "USD",

"price": 2,

"is_taxable": false,

"description": "Includes 10km, overage fees apply after 10km.",

"per_km_pricing": [

{

"start": 10,

"rate": 1,

"interval": 1,

"end": 25

},

{

"start": 25,

"rate": 0.5,

"interval": 1

},

{

"start": 25,

"rate": 3,

"interval": 5

}

]

}

]

}

}

Example 2:

This example demonstrates a pricing scheme that has a rate both by minute and by km. The user is charged $0.25 per km as well as $0.50 per minute. Both of these rates happen concurrently and are not dependent on one another.


{

"last_updated": 1609866247,

"ttl": 0,

"version": "3.0",

"data": {

"plans": [

{

"plan_id": "plan3",

"name": "Simple Rate",

"currency": "CAD",

"price": 3,

"is_taxable": true,

"description": "$3 unlock fee, $0.25 per kilometer and 0.50 per minute.",

"per_km_pricing": [

{

"start": 0,

"rate": 0.25,

"interval": 1

}

],

"per_min_pricing": [

{

"start": 0,

"rate": 0.50,

"interval": 1

}

]

}

]

}

}

system_alerts.json

This feed is intended to inform customers about changes to the system that do not fall within the normal system operations. For example, system closures due to weather would be listed here, but a system that only operated for part of the year would have that schedule listed in the system_calendar.json feed.

Obsolete alerts should be removed so the client application can safely present to the end user everything present in the feed.

File Name

(Required, Type) Defines

alerts

(Required, Array) Array of objects each indicating a system alert as defined below.

- alert_id

(Required, ID) Identifier for this alert.

- type

(Required, Enum) Valid values are:

  • SYSTEM_CLOSURE

  • STATION_CLOSURE

  • STATION_MOVE

  • OTHER

- times

(Optional, Array) Array of objects with the fields start and end indicating when the alert is in effect (e.g. when the system or station is actually closed, or when it is scheduled to be moved).

- start

(Required, Timestamp) Start time of the alert.

- end

(Optional, Timestamp) End time of the alert. If there is currently no end time planned for the alert, this can be omitted.

- station_ids

(Optional, Array) If this is an alert that affects one or more stations, include their ID(s). Otherwise omit this field. If both station_id and region_id are omitted, this alert affects the entire system.

- region_ids

(Optional, Array) If this system has regions, and if this alert only affects certain regions, include their ID(s). Otherwise, omit this field. If both station_id and region_id are omitted, this alert affects the entire system.

- url

(Optional, URL) URL where the customer can learn more information about this alert.

- summary

(Required, String) A short summary of this alert to be displayed to the customer.

- description

(Optional, String) Detailed description of the alert.

- last_updated

(Optional, Timestamp) Indicates the last time the info for the alert was updated.

Example:

{

"last_updated": 1604198100,

"ttl": 60,

"version": "3.0",

"data": {

"alerts": [

{

"alert_id": "21",

"type": "station_closure",

"station_ids": [

"123",

"456",

"789"

],

"times": [

{

"start": "1604448000",

"end": "1604674800"

}

],

"url": "https://example.com/more-info",

"summary": "Disruption of Service",

"description": "The three stations on Broadway will be out of service

from 12:00am Nov 3 to 3:00pm Nov 6th to accommodate road work",

"last_updated": 1604519393

}

]

}

}

geofencing_zones.json (added in v2.1)

Describes geofencing zones and their associated rules and attributes.

Geofenced areas are delineated using GeoJSON in accordance with RFC 7946. By default, no restrictions apply everywhere. Geofencing zones should be modeled according to restrictions rather than allowance. An operational area (outside of which vehicles cannot be used) should be defined with a counterclockwise polygon, and a limitation area (in which vehicles can be used under certain restrictions) should be defined with a clockwise polygon.

Geofences and GPS operate in two dimensions. Restrictions placed on an overpass or bridge will also be applied to the roadway or path beneath.

Care should be taken when developing geofence based policies that rely on location data. Location data from GPS, cellular and Wi-Fi signals are subject to interference resulting in accuracy levels in the tens of meters or greater. This may result in vehicles being placed within a geofenced zone when they are actually outside or adjacent to the zone. Transit time between server and client can also impact when a user is notified of a geofence based policy. A vehicle traveling at 15kph can be well inside of a restricted zone before a notification is received.

File Name

(Required, Type) Defines

geofencing_zones

(Required, GeoJSON FeatureCollection) Each geofenced zone and its associated rules and attributes is described as an object within the array of features, as follows.

- type

(Required, String) “FeatureCollection” (as per IETF RFC 7946).

- features

(Required, Array) Array of objects as defined below.

- type

(Required, String) “Feature” (as per IETF RFC 7946).

- geometry

(Required, GeoJSON Multipolygon) A polygon that describes where rides might not be able to start, end, go through, or have other limitations. A clockwise arrangement of points defines the area enclosed by the polygon, while a counterclockwise order defines the area outside the polygon (right-hand rule). All geofencing zones contained in this list are public (i.e., can be shown on a map for public use).

- properties

(Required, Object) Properties: As defined below, describing travel allowances and limitations.

- name

(Optional, String) Public name of the geofencing zone.

- start

(Optional, Timestamp) Start time of the geofencing zone. If the geofencing zone is always active, this can be omitted.

- end

(Optional, Timestamp) End time of the geofencing zone. If the geofencing zone is always active, this can be omitted.

- rules

(Optional, Array) Array that contains one object per rule as defined below.

In the event of colliding rules within the same polygon, the earlier rule (in order of the JSON file) takes precedence.

In the case of overlapping polygons, the combined set of rules associated with the overlapping polygons applies to the union of the polygons. In the event of colliding rules in this set, the earlier rule (in order of the JSON file) also takes precedence.

- vehicle_type_id

(Optional, Array) Array of IDs of vehicle types for which any restrictions should be applied (see vehicle type definitions in PR #136). If vehicle_type_ids are not specified, then restrictions apply to all vehicle types.

- ride_allowed

(Required, Boolean) Is the undocked (“free bike”) ride allowed to start and end in this zone?

true - Undocked (“free bike”) ride can start and end in this zone.

false - Undocked (“free bike”) ride cannot start and end in this zone.

- ride_through_allowed

(Required, Boolean) 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

Example:


{

"last_updated": 1604198100,

"ttl": 60,

"version": "3.0",

"data": {

"geofencing_zones": {

"type": "FeatureCollection",

"features": [

{

"type": "Feature",

"geometry": {

"type": "MultiPolygon",

"coordinates": [

[

[

[

-122.578067,

45.562982

],

[

-122.661838,

45.562741

],

[

-122.661151,

45.504542

],

[

-122.578926,

45.5046625

],

[

-122.578067,

45.562982

]

]

],

[

[

[

-122.650680,

45.548197

],

[

-122.650852,

45.534731

],

[

-122.630939,

45.535212

],

[

-122.630424,

45.548197

],

[

-122.650680,

45.548197

]

]

]

]

},

"properties": {

"name": "NE 24th/NE Knott",

"start": 1593878400,

"end": 1593907260,

"rules": [

{

"vehicle_type_id": [

"moped1",

"car1"

],

"ride_allowed": false,

"ride_through_allowed": true,

"maximum_speed_kph": 10

}

]

}

}

]

}

}

}

Deep Links (added in v1.1)

Deep links to iOS, Android, and web apps are supported via URIs in the system_information.json, station_information.json, and free_bike_status.json files. The following sections describe how analytics can be added to these URIs, as well as some examples.

Analytics (added in v1.1.)

In all of the rental URI fields, a viewing app can report the origin of a deep link to request to a rental app by appending the client_id (added in v1.1) parameter to the URI along with the domain name for the viewing app.

For example, if Google is the viewing app, it can append:

client_id=google.com

...to the URI field to report that Google is the originator of the deep link request. If the Android URI is:

com.abcrental.android://open.abc.app/stations?id=1234567890

...then the URI used by Google would be: com.abcrental.android://open.abc.app/stations? id=1234567890&client_id=google.com

Other supported parameters include:

  1. ad_id (added in v1.1) - Advertising ID issued to the viewing app (e.g., IFDA on iOS)

  2. token (added in v1.1) - A token identifier that was issued by the rental app to the viewing app.

Examples (added in v1.1)

Example 1 - App Links on Android and Universal Links on iOS are supported:

system_information.json

{

"last_updated": 1572447999,

"ttl": 60,

"version": "3.0",

"data": {

"name": "Example Bike Rental",

"system_id": "example_cityname",

"timezone": "US/Central",

"language": "en",

"rental_apps": {

"android": {

"discovery_uri": "com.example.android://"

},

"ios": {

"discovery_uri": "com.example.ios://"

}

}

}

}

station_information.json

{

"last_updated": 1609866247,

"ttl": 60,

"version": "3.0",

"data": {

"stations": [

{

"station_id": "425",

"name": "Coppertail",

"lat": 27.956333,

"lon": -82.430436,

"rental_uris": {

"android": "https://www.example.com/app?sid=1234567890&platform=android",

"ios": "https://www.example.com/app?sid=1234567890&platform=ios"

}

}

]

}

}

Note that the Android URI and iOS Universal Link URLs don’t necessarily use the same identifier as the station_id.


Example 2 - App Links are not supported on Android and Universal Links are not support on iOS, but deep links are still supported on Android and iOS:

system_information.json


{

"last_updated": 1572447999,

"ttl": 60,

"version": "3.0",

"data": {

"name": "Example Bike Rental",

"system_id": "example_cityname",

"timezone": "US/Central",

"language": "en",

"rental_apps": {

"android": {

"discovery_uri": "com.example.android://"

"store_uri": "https://play.google.com/store/apps/details?id=com.example.android",

},

"ios": {

"store_uri": "https://apps.apple.com/app/apple-store/id123456789",

"discovery_uri": "com.example.ios://"

}

}

}

}

station_information.json


{

"last_updated": 1609866247,

"ttl": 60,

"version": "3.0",

"data": {

"stations": [

{

"station_id": "425",

"name": "Coppertail",

"lat": 27.956333,

"lon": -82.430436,

"rental_uris":{

"android":"com.example.android://open.example.app/app?sid=1234567890",

"ios":"com.example.ios://open.example.app/app?sid=1234567890"

}

}

]

}

}

Example 3 - Deep link web URLs are supported, but not Android or iOS native apps:

station_information.json


{

"last_updated": 1609866247,

"ttl": 60,

"version": "3.0",

"data": {

"stations": [

{

"station_id": "425",

"name": "Coppertail",

"lat": 27.956333,

"lon": -82.430436,

"rental_uris": {

"web": "https://www.example.com/app?sid=1234567890"

}

}

]

}

}

Disclaimers

Apple Pay, PayPass and other third-party product and service names are trademarks or registered trademarks of their respective owners.

License

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 3.0 License.