Skip to content

Commit

Permalink
Extend vehicle types
Browse files Browse the repository at this point in the history
Update the changes in MobilityData/gbfs#370
  • Loading branch information
isabelle-dr committed Mar 10, 2022
1 parent c8a4389 commit 5ec98f3
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions v2.3-RC2/vehicle_types.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"form_factor": {
"description": "The vehicle's general form factor.",
"type": "string",
"enum": ["bicycle", "car", "moped", "other", "scooter"]
"enum": ["bicycle", "cargo_bicycle" ,"car", "moped", "scooter_standing", "scooter_seated", "other", "scooter"]
},
"propulsion_type": {
"description": "The primary propulsion type of the vehicle.",
Expand All @@ -57,7 +57,22 @@
},
"name": {
"description": "The public name of this vehicle type.",
"type": "string"
"type": "string",
},
"wheel_count": {
"description": "Number of wheels this vehicle type has. Added in v2.3-RC2",
"type": "number",
"minimum": 0
},
"max_permitted_speed": {
"description": "The maximum speed in kilometers per hour this vehicle is permitted to reach in accordance with local permit and regulations. Added in v2.3-RC2",
"type": "number",
"minimum": 0
},
"rated_power": {
"description": "The rated power of the motor for this vehicle type in watts. Added in v2.3-RC2",
"type": "number",
"minimum": 0
},
"default_reserve_time": {
"description": "Maximum time in minutes that a vehicle can be reserved before a rental begins added in v2.3-RC.",
Expand Down

0 comments on commit 5ec98f3

Please sign in to comment.