Skip to content

Commit

Permalink
Squashed 'gbfs-validator/versions/schemas/' changes from 99a54d4..5e0…
Browse files Browse the repository at this point in the history
…2044

5e02044 Fix type (#70)

git-subtree-dir: gbfs-validator/versions/schemas
git-subtree-split: 5e02044c90491f2e2804b619b8030692b39cf4a0
  • Loading branch information
isabelle-dr committed Mar 21, 2022
1 parent 33f8032 commit a279014
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions v2.3-RC2/geofencing_zones.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@
},
"start": {
"description": "Start time of the geofencing zone in POSIX time.",
"type": "number",
"type": "integer",
"minimum": 1450155600
},
"end": {
"description": "End time of the geofencing zone in POSIX time.",
"type": "number",
"type": "integer",
"minimum": 1450155600
},
"rules": {
Expand Down
2 changes: 1 addition & 1 deletion v2.3-RC2/station_status.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
"last_reported": {
"description":
"The last time this station reported its status to the operator's backend in POSIX time.",
"type": "number",
"type": "integer",
"minimum": 1450155600
},
"vehicle_docks_available": {
Expand Down
4 changes: 2 additions & 2 deletions v2.3-RC2/system_alerts.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@
"properties": {
"start": {
"description": "Start time of the alert.",
"type": "number",
"type": "integer",
"minimum": 1450155600
},
"end": {
"description": "End time of the alert.",
"type": "number",
"type": "integer",
"minimum": 1450155600
}
}
Expand Down
8 changes: 4 additions & 4 deletions v2.3-RC2/vehicle_types.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
},
"g_CO2_km": {
"description": "Maximum quantity of CO2, in grams, emitted per kilometer, according to the WLTP. Added in v2.3-RC2",
"type": "number",
"type": "integer",
"minimum": 0
},
"vehicle_image": {
Expand All @@ -125,17 +125,17 @@
},
"wheel_count": {
"description": "Number of wheels this vehicle type has. Added in v2.3-RC2",
"type": "number",
"type": "integer",
"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",
"type": "integer",
"minimum": 0
},
"rated_power": {
"description": "The rated power of the motor for this vehicle type in watts. Added in v2.3-RC2",
"type": "number",
"type": "integer",
"minimum": 0
},
"default_reserve_time": {
Expand Down

0 comments on commit a279014

Please sign in to comment.