From 5ec98f3f2f11aa5d92432f203a5590d7ffcf0e1d Mon Sep 17 00:00:00 2001 From: isabelle-dr <63653518+isabelle-dr@users.noreply.github.com> Date: Thu, 10 Mar 2022 10:00:04 -0500 Subject: [PATCH] Extend vehicle types Update the changes in https://github.com/NABSA/gbfs/pull/370 --- v2.3-RC2/vehicle_types.json | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/v2.3-RC2/vehicle_types.json b/v2.3-RC2/vehicle_types.json index a49b17f4..552be76d 100644 --- a/v2.3-RC2/vehicle_types.json +++ b/v2.3-RC2/vehicle_types.json @@ -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.", @@ -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.",