VehicleRentalSystem Data Type

Based on https://github.com/NABSA/gbfs/blob/master/gbfs.md#system_informationjson

Properties
name data type description
systemId string
language string
name string
shortName string
operator string
url string
purchaseUrl string
startDate string
phoneNumber string
email string
feedContactEmail string
timezone TimeZone
licenseUrl string
androidApp VehicleRentalSystemAppInformation
iosApp VehicleRentalSystemAppInformation

Example

{
  "systemId" : "...",
  "language" : "...",
  "name" : "...",
  "shortName" : "...",
  "operator" : "...",
  "url" : "...",
  "purchaseUrl" : "...",
  "startDate" : "...",
  "phoneNumber" : "...",
  "email" : "...",
  "feedContactEmail" : "...",
  "timezone" : {
    "rawOffset" : 12345,
    "DSTSavings" : 12345,
    "availableIDs" : [ "...", "..." ],
    "default" : { },
    "displayName" : "...",
    "ID" : "..."
  },
  "licenseUrl" : "...",
  "androidApp" : {
    "storeUri" : "...",
    "discoveryUri" : "..."
  },
  "iosApp" : {
    "storeUri" : "...",
    "discoveryUri" : "..."
  }
}