-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add vehicle type definitions Add geofencing, virtual station, and dockless support
- Loading branch information
1 parent
f882cf4
commit 23d0663
Showing
6 changed files
with
409 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,155 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema", | ||
"$id": "https://github.com/NABSA/gbfs/blob/master/gbfs.md#geofencing_zonesjson", | ||
"description": "Describes geofencing zones and their associated rules and attributes (added in v2.1-RC).", | ||
"type": "object", | ||
"properties": { | ||
"last_updated": { | ||
"description": "Last time the data in the feed was updated in POSIX time.", | ||
"type": "integer", | ||
"minimum": 1450155600 | ||
}, | ||
"ttl": { | ||
"description": "Number of seconds before the data in the feed will be updated again (0 if the data should always be refreshed).", | ||
"type": "integer", | ||
"minimum": 0 | ||
}, | ||
"version": { | ||
"description": "GBFS version number to which the feed conforms, according to the versioning framework.", | ||
"type": "string", | ||
"enum": [ | ||
"2.1-RC", | ||
"2.1-RC2", | ||
"2.1", | ||
"3.0-RC", | ||
"3.0" | ||
] | ||
}, | ||
"data": { | ||
"description": "Array that contains geofencing information for the system.", | ||
"type": "object", | ||
"properties": { | ||
"geofencing_zones": { | ||
"type": "array", | ||
"items": { | ||
"type": { | ||
"description": "FeatureCollection as per IETF RFC 7946.", | ||
"type": "string", | ||
"enum": [ | ||
"FeatureCollection" | ||
] | ||
}, | ||
"features": { | ||
"description": "Array of objects.", | ||
"type": "array", | ||
"items": { | ||
"title": "GeoJSON Feature", | ||
"type": "object", | ||
"properties": { | ||
"type": { | ||
"type": "string", | ||
"enum": [ | ||
"Feature" | ||
] | ||
}, | ||
"properties": { | ||
"description": "Describing travel allowances and limitations.", | ||
"type": "object", | ||
"properties": { | ||
"name": { | ||
"description": "Public name of the geofencing zone.", | ||
"type": "string" | ||
}, | ||
"start": { | ||
"description": "Start time of the geofencing zone in POSIX time.", | ||
"type": "number", | ||
"minimum": 1450155600 | ||
}, | ||
"end": { | ||
"description": "End time of the geofencing zone in POSIX time.", | ||
"type": "number", | ||
"minimum": 1450155600 | ||
}, | ||
"rules": { | ||
"description": "Array that contains one object per rule.", | ||
"type": "array", | ||
"items": { | ||
"vehicle_type_id": { | ||
"description": "Array of vehicle type IDs for which these restrictions apply.", | ||
"type": "array" | ||
}, | ||
"ride_allowed": { | ||
"description": "Is the undocked ride allowed to stat and end in this zone?", | ||
"type": "boolean" | ||
}, | ||
"ride_through_allowed": { | ||
"description": "Is the ride allowed to travel through this zone?", | ||
"type": "boolean" | ||
}, | ||
"maximum_speed_kph": { | ||
"description": "What is the maximum speed allowed, in kilometers per hour?", | ||
"type": "number", | ||
"minimum": 0 | ||
} | ||
} | ||
} | ||
}, | ||
"required": [ | ||
"ride_allowed", | ||
"ride_through_allowed" | ||
] | ||
}, | ||
"geometry": { | ||
"description": "A polygon that describes where rides might not be able to start, end, go through, or have otehr limitations. Must follow the right-hand rule.", | ||
"title": "GeoJSON MultiPolygon", | ||
"type": "object", | ||
"properties": { | ||
"type": { | ||
"type": "string", | ||
"enum": [ | ||
"MultiPolygon" | ||
] | ||
}, | ||
"coordinates": { | ||
"type": "array", | ||
"items": { | ||
"type": "array", | ||
"items": { | ||
"type": "array", | ||
"minItems": 4, | ||
"items": { | ||
"type": "array", | ||
"minItems": 2, | ||
"items": { | ||
"type": "number" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"required": [ | ||
"type", | ||
"coordinates" | ||
] | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"required": [ | ||
"type", | ||
"geometry", | ||
"properties" | ||
] | ||
} | ||
} | ||
} | ||
}, | ||
"required": [ | ||
"last_updated", | ||
"ttl", | ||
"version", | ||
"data" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.