Skip to content

Vehicle Rental Service Directory API support

This adds support for the GBFS service directory endpoint component Lamassu. OTP uses the service directory to lookup and connects to all GBFS endpoints registered in the directory. This simplifies the management of the GBFS endpoints, since multiple services/components like OTP can connect to the directory and get the necessary configuration from it.

Contact Info

  • Entur, Norway

Changelog

  • Initial implementation of bike share updater API support
  • Make json tag names configurable #3447
  • Enable GBFS geofencing with VehicleRentalServiceDirectory #5324
  • Enable allowKeepingVehicleAtDestination #5944
  • Rewrite to use manifest.json from GBFS v3 as the service directory #6900

Configuration

To enable this you need to specify a url for the vehicleRentalServiceDirectory in the router-config.json

Parameter Summary

Config Parameter Type Summary Req./Opt. Default Value Since
language string Language code for GBFS feeds. Optional 2.1
url uri URL or file path to the GBFS v3 manifest.json Required 2.1
headers map of string HTTP headers to add to the request. Any header key, value can be inserted. Optional 2.1

Parameter Details

url

Since version: 2.1Type: uriCardinality: Required
Path: /vehicleRentalServiceDirectory

URL or file path to the GBFS v3 manifest.json

Can be either a remote URL (http/https) or a local file path (file://). The manifest must conform to the GBFS v3.0 specification.

headers

Since version: 2.1Type: map of stringCardinality: Optional
Path: /vehicleRentalServiceDirectory

HTTP headers to add to the request. Any header key, value can be inserted.

Example

// router-config.json
{
  "vehicleRentalServiceDirectory" : {
    "url" : "https://example.com/gbfs/v3/manifest.json",
    "headers" : {
      "ET-Client-Name" : "otp"
    }
  }
}