VehicleParking Data Type

Vehicle parking locations, which may allow bicycle and/or car parking.

All fields are immutable except for the availability, capacity which may be updated by updaters. If any other properties change a new VehicleParking instance should be created.

Properties
name data type description
id FeedScopedId
name I18NString
coordinate WgsCoordinate
detailsUrl string
imageUrl string
tags array of string
openingHours OHCalendar
note I18NString
state VehicleParkingState
capacity VehicleParkingSpaces
availability VehicleParkingSpaces
entrances array of VehicleParkingEntrance
vehicleParkingGroup VehicleParkingGroup

Example

{
  "id" : {
    "feedId" : "...",
    "id" : "..."
  },
  "name" : { },
  "coordinate" : { },
  "detailsUrl" : "...",
  "imageUrl" : "...",
  "tags" : [ "...", "..." ],
  "openingHours" : { },
  "note" : { },
  "state" : "CLOSED",
  "capacity" : {
    "bicycleSpaces" : 12345,
    "carSpaces" : 12345,
    "wheelchairAccessibleCarSpaces" : 12345
  },
  "availability" : {
    "bicycleSpaces" : 12345,
    "carSpaces" : 12345,
    "wheelchairAccessibleCarSpaces" : 12345
  },
  "entrances" : [ {
    "vehicleParking" : {
      "id" : { },
      "name" : { },
      "coordinate" : { },
      "detailsUrl" : "...",
      "imageUrl" : "...",
      "tags" : [ "...", "..." ],
      "openingHours" : { },
      "note" : { },
      "state" : "TEMPORARILY_CLOSED",
      "capacity" : { },
      "availability" : { },
      "entrances" : [ { }, { } ],
      "vehicleParkingGroup" : { }
    },
    "entranceId" : {
      "feedId" : "...",
      "id" : "..."
    },
    "coordinate" : { },
    "name" : { },
    "vertex" : {
      "areaStops" : [ { }, { } ],
      "intersectionName" : { },
      "connectedToWalkingEdge" : true,
      "connectedToDriveableEdge" : true,
      "eligibleForCarPickupDropoff" : true,
      "outgoing" : [ { }, { } ],
      "incoming" : [ { }, { } ],
      "degreeOut" : 12345,
      "degreeIn" : 12345,
      "x" : 12345.0,
      "y" : 12345.0,
      "lon" : 12345.0,
      "lat" : 12345.0,
      "name" : { },
      "defaultName" : "...",
      "stationElement" : { },
      "label" : "...",
      "coordinate" : { },
      "incomingStreetEdges" : [ { }, { } ],
      "outgoingStreetEdges" : [ { }, { } ]
    },
    "carAccessible" : true,
    "walkAccessible" : true
  }, {
    "vehicleParking" : {
      "id" : { },
      "name" : { },
      "coordinate" : { },
      "detailsUrl" : "...",
      "imageUrl" : "...",
      "tags" : [ "...", "..." ],
      "openingHours" : { },
      "note" : { },
      "state" : "TEMPORARILY_CLOSED",
      "capacity" : { },
      "availability" : { },
      "entrances" : [ { }, { } ],
      "vehicleParkingGroup" : { }
    },
    "entranceId" : {
      "feedId" : "...",
      "id" : "..."
    },
    "coordinate" : { },
    "name" : { },
    "vertex" : {
      "areaStops" : [ { }, { } ],
      "intersectionName" : { },
      "connectedToWalkingEdge" : true,
      "connectedToDriveableEdge" : true,
      "eligibleForCarPickupDropoff" : true,
      "outgoing" : [ { }, { } ],
      "incoming" : [ { }, { } ],
      "degreeOut" : 12345,
      "degreeIn" : 12345,
      "x" : 12345.0,
      "y" : 12345.0,
      "lon" : 12345.0,
      "lat" : 12345.0,
      "name" : { },
      "defaultName" : "...",
      "stationElement" : { },
      "label" : "...",
      "coordinate" : { },
      "incomingStreetEdges" : [ { }, { } ],
      "outgoingStreetEdges" : [ { }, { } ]
    },
    "carAccessible" : true,
    "walkAccessible" : true
  } ],
  "vehicleParkingGroup" : { }
}