-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvss_release_2.0.json
12124 lines (12124 loc) · 561 KB
/
vss_release_2.0.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"Vehicle": {
"type": "branch",
"description": "High-level vehicle data.",
"uuid": "ccc825f94139544dbb5f4bfd033bece6",
"children": {
"VersionVSS": {
"type": "branch",
"description": "Supported Version of VSS",
"uuid": "9a687e56f1305eedb20f6a021ea58f48",
"children": {
"Major": {
"datatype": "uint32",
"type": "attribute",
"description": "Supported Version of VSS - Major version",
"uuid": "5edf1a338c975cbb84d4ce3cfe1aa4b4"
},
"Minor": {
"datatype": "uint32",
"type": "attribute",
"description": "Supported Version of VSS - Minor version",
"uuid": "6e70a598dbc7534c96c58c18e9888cfd"
},
"Patch": {
"datatype": "uint32",
"type": "attribute",
"description": "Supported Version of VSS - Patch version",
"uuid": "69858f224af459338b9bfbff436dda45"
},
"Label": {
"datatype": "string",
"type": "attribute",
"description": "Label to further describe the version",
"uuid": "7c92cd50d24b5662922b27cb9a327e53"
}
}
},
"VehicleIdentification": {
"type": "branch",
"description": "Attributes that identify a vehicle",
"uuid": "c33861c3e9125208b05f23fe922bf08e",
"children": {
"VIN": {
"datatype": "string",
"type": "attribute",
"description": "17-character Vehicle Identification Number (VIN) as defined by ISO 3779",
"uuid": "6f0b6fa8c34f589baa92e565bc9df5bd"
},
"WMI": {
"datatype": "string",
"type": "attribute",
"description": "3-character World Manufacturer Identification (WMI) as defined by ISO 3780",
"uuid": "e7c86defbcd554a79f90ba85de58e133"
},
"Brand": {
"datatype": "string",
"type": "attribute",
"description": "Vehicle brand or manufacturer",
"uuid": "19fd645ff5385767bcdbf5dd4313483f"
},
"Model": {
"datatype": "string",
"type": "attribute",
"description": "Vehicle model",
"uuid": "dd3d3b72e6a85b3695ba25f829255403"
},
"Year": {
"datatype": "uint16",
"type": "attribute",
"description": "Model year of the vehicle",
"uuid": "9a76b0aca8e45f6fb33dbaf5b976b8b5"
},
"ACRISSCode": {
"datatype": "string",
"type": "attribute",
"description": "The ACRISS Car Classification Code is a code used by many car rental companies.",
"uuid": "de98b9de86f359b4bd703b2e3d48f25a"
},
"bodyType": {
"datatype": "string",
"type": "attribute",
"description": "Indicates the design and body style of the vehicle (e.g. station wagon, hatchback, etc.).",
"uuid": "3f6910e6773c532e986240e3d45f623b"
},
"dateVehicleFirstRegistered": {
"datatype": "string",
"type": "attribute",
"description": "The date of the first registration of the vehicle with the respective public authorities.",
"uuid": "a48af4a5ef28520090255ca1ea2610f1"
},
"meetsEmissionStandard": {
"datatype": "string",
"type": "attribute",
"description": "Indicates that the vehicle meets the respective emission standard.",
"uuid": "4324b78dfb865164ba91345564d88f39"
},
"productionDate": {
"datatype": "string",
"type": "attribute",
"description": "The date of production of the item, e.g. vehicle.",
"uuid": "fc755d9de42d5286bfd6b35e4dca6bcb"
},
"purchaseDate": {
"datatype": "string",
"type": "attribute",
"description": "The date the item e.g. vehicle was purchased by the current owner.",
"uuid": "07ac6595c60a57318b627a05775d696a"
},
"vehicleModelDate": {
"datatype": "string",
"type": "attribute",
"description": "The release date of a vehicle model (often used to differentiate versions of the same make and model).",
"uuid": "8292d5c6e0b15a92b97d301b31a6f27b"
},
"vehicleConfiguration": {
"datatype": "string",
"type": "attribute",
"description": "A short text indicating the configuration of the vehicle, e.g. '5dr hatchback ST 2.5 MT 225 hp' or 'limited edition'.",
"uuid": "d5efd9741e5f582f8a8da0d93811347f"
},
"vehicleSeatingCapacity": {
"datatype": "uint16",
"type": "attribute",
"description": "The number of passengers that can be seated in the vehicle, both in terms of the physical space available, and in terms of limitations set by law.",
"uuid": "0d00e8ecfccf52d9aed6abbe5938df5d"
},
"vehicleSpecialUsage": {
"datatype": "string",
"type": "attribute",
"description": "Indicates whether the vehicle has been used for special purposes, like commercial rental, driving school.",
"uuid": "5d4264def1fd5328a45108a62a4770b1"
},
"vehicleinteriorColor": {
"datatype": "string",
"type": "attribute",
"description": "A short text indicating the configuration of the vehicle, e.g. '5dr hatchback ST 2.5 MT 225 hp' or 'limited edition'.",
"uuid": "aea3643341d650959293617972a9405e"
},
"vehicleinteriorType": {
"datatype": "string",
"type": "attribute",
"description": "The type or material of the interior of the vehicle (e.g. synthetic fabric, leather, wood, etc.).",
"uuid": "a2466d9fa9b05409ba53ed46660b7147"
},
"knownVehicleDamages": {
"datatype": "string",
"type": "attribute",
"description": "A textual description of known damages, both repaired and unrepaired.",
"uuid": "60f32d73afff58d0ac80c1c09b98dfb9"
}
}
},
"IgnitionOn": {
"datatype": "boolean",
"type": "sensor",
"description": "Indicates whether the vehicle ignition is on or off.",
"uuid": "6de19e6839af5f62acab3fbbd8077a98"
},
"IgnitionOnTime": {
"datatype": "uint32",
"type": "sensor",
"unit": "s",
"description": "Accumulated ignition on time in seconds.",
"uuid": "ffae3b559998574ba58ee66dd0ac5d39"
},
"IgnitionOffTime": {
"datatype": "uint32",
"type": "sensor",
"unit": "s",
"description": "Accumulated ignition off time in seconds.",
"uuid": "c0c4467bb00d5c0683c5bb81bcfdcb3e"
},
"DriveTime": {
"datatype": "uint32",
"type": "sensor",
"unit": "s",
"description": "Accumulated drive time in seconds.",
"uuid": "f707495fbe155b7fa109dbb69c021850"
},
"IdleTime": {
"datatype": "uint32",
"type": "sensor",
"unit": "s",
"description": "Accumulated idle time in seconds.",
"uuid": "97be8abc404f5c15a78e7edc6296ab04"
},
"Speed": {
"datatype": "int32",
"type": "sensor",
"min": -250,
"max": 250,
"unit": "km/h",
"description": "Vehicle speed, as sensed by the gearbox.",
"uuid": "efe50798638d55fab18ab7d43cc490e9"
},
"TravelledDistance": {
"datatype": "float",
"type": "sensor",
"unit": "km",
"description": "Odometer reading",
"uuid": "90be9d7b0ac15b75a83027ea3b73b65b"
},
"TripMeterReading": {
"datatype": "float",
"type": "sensor",
"unit": "km",
"description": "Current trip meter reading",
"uuid": "81f51ebfe29c591190171d7b96e1c948"
},
"AmbientAirTemperature": {
"datatype": "float",
"type": "sensor",
"unit": "celsius",
"description": "Ambient air temperature",
"uuid": "2ffcbc2e6ea75dd991e3ae80b29a1d85"
},
"IsMoving": {
"datatype": "boolean",
"type": "sensor",
"description": "Indicates whether the vehicle is stationary or moving",
"uuid": "db69549cc7375e919c2a2883b41cd19c"
},
"AverageSpeed": {
"datatype": "int32",
"type": "sensor",
"min": -250,
"max": 250,
"unit": "km/h",
"description": "Average speed for the current trip",
"uuid": "43a489636a665c3abb99b63174eb552b"
},
"Acceleration": {
"type": "branch",
"description": "Spatial acceleration",
"uuid": "6c490e6a798c5abc8f0178ed6deae0a8",
"children": {
"Longitudinal": {
"datatype": "int32",
"type": "sensor",
"unit": "m/s^2",
"description": "Vehicle acceleration in X (longitudinal acceleration).",
"uuid": "3d511fe7232b5841be311b37f322de5a"
},
"Lateral": {
"datatype": "int32",
"type": "sensor",
"unit": "m/s^2",
"description": "Vehicle acceleration in Y (lateral acceleration).",
"uuid": "7522c5d6b7665b16a099643b2700e93c"
},
"Vertical": {
"datatype": "int32",
"type": "sensor",
"unit": "m/s^2",
"description": "Vehicle acceleration in Z (vertical acceleration).",
"uuid": "a4a8a7c4ac5b52deb0b3ee4ed8787c59"
}
}
},
"AngularVelocity": {
"type": "branch",
"description": "Spatial rotation",
"uuid": "1eef530a43de56aab665d2766483cde2",
"children": {
"Roll": {
"datatype": "int16",
"type": "sensor",
"unit": "degrees/s",
"description": "Vehicle rotation rate along X (longitudinal).",
"uuid": "221e6b93881e5771bcbd03e0849e0075"
},
"Pitch": {
"datatype": "int16",
"type": "sensor",
"unit": "degrees/s",
"description": "Vehicle rotation rate along Y (lateral).",
"uuid": "42236f4a01f45313a97fdd9b6848ce4f"
},
"Yaw": {
"datatype": "int16",
"type": "sensor",
"unit": "degrees/s",
"description": "Vehicle rotation rate along Z (vertical).",
"uuid": "4114c41552565c1f9035670cabe2a611"
}
}
},
"RoofLoad": {
"datatype": "int16",
"type": "attribute",
"unit": "kg",
"description": "The permitted total weight of cargo and installations (e.g. a roof rack) on top of the vehicle.",
"uuid": "97dc98269a19591d9efa455a8d943c16"
},
"accelerationTime": {
"datatype": "int16",
"type": "attribute",
"unit": "s",
"description": "The time needed to accelerate the vehicle from a given start velocity to a given target velocity.",
"uuid": "a0dfbb5fa9c052018addeb48d64d4c6a"
},
"cargoVolume": {
"datatype": "int16",
"type": "attribute",
"unit": "l",
"description": "The available volume for cargo or luggage. For automobiles, this is usually the trunk volume.",
"min": 0,
"max": 100,
"uuid": "1b7c5f7c8ac952168cd2e89b3e9cd841"
},
"emissionsCO2": {
"datatype": "int16",
"type": "attribute",
"description": "The CO2 emissions in g/km.",
"unit": "g/km",
"uuid": "5dc70045865b5bba9260945b28f737ff"
},
"Private": {
"type": "branch",
"description": "Uncontrolled branch where non-public signals can be defined.",
"uuid": "4161866b048a5b76aa3124dec82e0260",
"children": {}
},
"Media": {
"type": "branch",
"description": "Media service data.",
"uuid": "b778b6c07b055eae9f0a51d64c5b3bf3",
"children": {}
},
"Powertrain": {
"type": "branch",
"description": "Powertrain data for battery management, etc.",
"uuid": "12f35ec7bd1c58d1a329565ce3d053d5",
"children": {
"AccumulatedBrakingEnergy": {
"datatype": "float",
"type": "sensor",
"unit": "kWh",
"description": "The accumulated energy from regenerative braking over lifetime.",
"uuid": "0dd466d28d3d5ad094f2015adafb91a5"
},
"CombustionEngine": {
"type": "branch",
"description": "Engine-specific data, stopping at the bell housing.",
"uuid": "159e2e3e75f0590f95b4d2f6cfae54b5",
"children": {
"Displacement": {
"datatype": "uint16",
"type": "attribute",
"description": "Displacement in cubic centimetres.",
"unit": "cm^3",
"uuid": "94dbd928847150ab842c00fa5caaf272"
},
"StrokeLength": {
"datatype": "uint16",
"type": "attribute",
"description": "Stroke length in centimetres.",
"unit": "cm",
"uuid": "1bdfdab7904d51ed93e101b84ea54ddf"
},
"Bore": {
"datatype": "uint16",
"type": "attribute",
"description": "Bore in centimetres.",
"unit": "cm",
"uuid": "1618fb16035b5464961570cc1afd934e"
},
"Configuration": {
"datatype": "string",
"type": "attribute",
"enum": [
"unknown",
"straight",
"V",
"boxer",
"W",
"rotary",
"radial",
"square",
"H",
"U",
"opposed",
"X"
],
"description": "Engine configuration.",
"default": "unknown",
"uuid": "586be4567fe059ee9e6cf42901c2e773"
},
"NumberOfCylinders": {
"datatype": "uint16",
"type": "attribute",
"description": "Number of cylinders.",
"uuid": "b2cd342c218257e88d214cdb511df82b"
},
"NumberOfValvesPerCylinder": {
"datatype": "uint16",
"type": "attribute",
"description": "Number of valves per cylinder.",
"uuid": "44633204726e561ca21beff31f3fef80"
},
"CompressionRatio": {
"datatype": "string",
"type": "attribute",
"description": "Engine compression ratio.",
"uuid": "ead42922511051a0a0a1b634781f3c09"
},
"OilLifeRemaining": {
"datatype": "uint32",
"type": "attribute",
"description": "Remaining engine oil life in seconds.",
"unit": "s",
"uuid": "94303734c68c5353a02625f652103918"
},
"EngineOilCapacity": {
"datatype": "uint16",
"type": "attribute",
"description": "Engine oil capacity in liters.",
"unit": "l",
"uuid": "2ca7af6facb55a13885989faa9bc6ca7"
},
"EngineCoolantCapacity": {
"datatype": "uint16",
"type": "attribute",
"description": "Engine coolant capacity in liters.",
"unit": "l",
"uuid": "90b5b64808ea5f4fa2798d96143b0d60"
},
"MaxPower": {
"datatype": "uint16",
"type": "attribute",
"default": 0,
"unit": "kW",
"description": "Peak power, in kilowatts, that engine can generate.",
"uuid": "81fbdd5e90f557a38b96578a38dc137d"
},
"MaxTorque": {
"datatype": "uint16",
"type": "attribute",
"default": 0,
"unit": "Nm",
"description": "Peak power, in newton meter, that the engine can generate.",
"uuid": "471cd478c1e8597f8e97c85b4e4ebe26"
},
"AspirationType": {
"datatype": "string",
"type": "attribute",
"enum": [
"unknown",
"natural",
"supercharger",
"turbocharger"
],
"default": "unknown",
"description": "Type of aspiration (natural, turbocharger, supercharger etc).",
"uuid": "3ca6a8ff30275c20a9d8d6d6829574eb"
},
"FuelType": {
"datatype": "string",
"type": "attribute",
"enum": [
"unknown",
"gasoline",
"diesel",
"E85",
"CNG"
],
"default": "unknown",
"description": "Type of fuel that the engine runs on.",
"uuid": "d0f8c79131c850bab8159eaefc7e23e5"
},
"Engine": {
"type": "branch",
"description": "Engine signals",
"uuid": "96a96cd4f18b519eb4b00566b4e6308f",
"children": {
"Speed": {
"datatype": "uint16",
"type": "sensor",
"unit": "rpm",
"min": 0,
"max": 20000,
"description": "Engine speed measured as rotations per minute.",
"uuid": "c145005246125d1eb6531052f46eec94"
},
"ECT": {
"datatype": "int16",
"type": "sensor",
"unit": "celsius",
"min": -50,
"max": 200,
"description": "Engine coolant temperature.",
"uuid": "de032ac3cc2858f2a1ef0a4b6f945098"
},
"EOT": {
"datatype": "int16",
"type": "sensor",
"unit": "celsius",
"min": -50,
"max": 300,
"description": "Engine oil temperature.",
"uuid": "7fcbd0abd829530ca022e69a224f1845"
},
"MAP": {
"datatype": "int16",
"type": "sensor",
"unit": "kPa",
"min": 0,
"max": 1000,
"description": "Manifold air pressure possibly boosted using forced induction.",
"uuid": "6269b87f545f5466a0c5ba13432810da"
},
"MAF": {
"datatype": "int16",
"type": "sensor",
"unit": "g/s",
"min": 0,
"max": 3000,
"description": "Grams of air drawn into engine per second.",
"uuid": "944823218c565afa86adc3ebdf8b77c5"
},
"TPS": {
"datatype": "int8",
"type": "sensor",
"unit": "percent",
"min": 0,
"max": 100,
"description": "Current throttle position.",
"uuid": "5ab79d75e2af52dda3d61f3a2bf41462"
},
"EOP": {
"datatype": "int16",
"type": "sensor",
"unit": "kPa",
"min": 0,
"max": 1000,
"description": "Engine oil pressure.",
"uuid": "054dacf5e59a5688981834690c5d449e"
},
"Power": {
"datatype": "int16",
"type": "sensor",
"unit": "kW",
"min": 0,
"max": 2000,
"description": "Current engine power output.",
"uuid": "6de515320e3257c7842923c88d11a09f"
},
"Torque": {
"datatype": "int16",
"type": "sensor",
"unit": "Nm",
"min": 0,
"max": 3000,
"description": "Current engine torque.",
"uuid": "b0295cd26bfc586ca3a42f9296a26ceb"
}
}
},
"DieselParticulateFilter": {
"type": "branch",
"description": "Diesel Particulate Filter signals",
"uuid": "eeddd99ad6475b1a92b9ec7bd7cefdbd",
"children": {
"InletTemperature": {
"datatype": "float",
"type": "sensor",
"unit": "celsius",
"description": "Inlet temperature of Diesel Particulate Filter.",
"uuid": "70e90d202d3054bd967e67dce95c8ef2"
},
"OutletTemperature": {
"datatype": "float",
"type": "sensor",
"unit": "celsius",
"description": "Outlet temperature of Diesel Particulate Filter.",
"uuid": "e2b7f9d97bec5c0d94ade71a5e2f6518"
},
"DeltaPressure": {
"datatype": "float",
"type": "sensor",
"unit": "Pa",
"description": "Delta Pressure of Diesel Particulate Filter.",
"uuid": "a6f476775c60531b93acb835e0bc6ab6"
}
}
}
}
},
"Transmission": {
"type": "branch",
"description": "Transmission-specific data, stopping at the drive shafts.",
"uuid": "6b71e284b63a527caa6296a66e9fdd0c",
"children": {
"Type": {
"datatype": "string",
"type": "attribute",
"enum": [
"unknown",
"sequential",
"H",
"automatic",
"DSG",
"CVT"
],
"default": "unknown",
"description": "Transmission type.",
"uuid": "f83b9e5464d85a0288fcb32c164d3c63"
},
"GearCount": {
"datatype": "uint8",
"type": "attribute",
"default": 0,
"description": "Number of forward gears in the transmission. -1 = CVT.",
"uuid": "84293f40d3ed57f1a08992d97b1a9ccd"
},
"DriveType": {
"datatype": "string",
"type": "attribute",
"enum": [
"unknown",
"forward wheel drive",
"rear wheel drive",
"all wheel drive"
],
"default": "unknown",
"description": "Drive type.",
"uuid": "0e480b76fb2d5f8bb08fb586f90ee6ae"
},
"Speed": {
"datatype": "int32",
"type": "sensor",
"min": -250,
"max": 250,
"unit": "km/h",
"description": "Vehicle speed, as sensed by the gearbox.",
"uuid": "080c5c7a7a8f512a858f84cd678d09cb"
},
"TravelledDistance": {
"datatype": "float",
"type": "sensor",
"unit": "km",
"description": "Odometer reading",
"uuid": "b9dd66f20c7f5b12a046766b94dc20c1"
},
"Gear": {
"datatype": "int8",
"type": "actuator",
"min": -1,
"max": 16,
"description": "Current gear. 0=Neutral. -1=Reverse",
"uuid": "d72df16818e75f71b9fffdff8250e9b9"
},
"PerformanceMode": {
"datatype": "string",
"type": "actuator",
"enum": [
"normal",
"sport",
"economy",
"snow",
"rain"
],
"description": "Current gearbox performance mode.",
"uuid": "6b5cfd85cb595e559503ccf993be04dd"
},
"GearChangeMode": {
"datatype": "string",
"type": "actuator",
"enum": [
"manual",
"automatic"
],
"description": "Is the gearbox in automatic or manual (paddle) mode.",
"uuid": "ff3c69378c2f598286e51f7dac13adaa"
},
"Temperature": {
"datatype": "int16",
"type": "sensor",
"min": -50,
"max": 200,
"unit": "celsius",
"description": "The current gearbox temperature",
"uuid": "4f5e48c3511b5e1abff11aa7ec62dd18"
},
"ClutchWear": {
"datatype": "uint8",
"type": "sensor",
"unit": "percent",
"description": "Clutch wear as a percent. 0 = no wear. 100 = worn.",
"uuid": "c113405ad165571a9d53ae4cf55dc929"
}
}
},
"ElectricMotor": {
"type": "branch",
"description": "Electric Motor specific data.",
"uuid": "1ade64f6b0d05f6c9340e7a667555ae2",
"children": {
"MaxPower": {
"datatype": "uint16",
"type": "attribute",
"default": 0,
"unit": "kW",
"description": "Peak power, in kilowatts, that motor(s) can generate.",
"uuid": "825ec7911ee958abb199b9f7903df3a6"
},
"MaxTorque": {
"datatype": "uint16",
"type": "attribute",
"default": 0,
"unit": "Nm",
"description": "Peak power, in newton meter, that the motor(s) can generate.",
"uuid": "cf31eabcde5151f589e9b0f7a6090512"
},
"MaxRegenPower": {
"datatype": "uint16",
"type": "attribute",
"default": 0,
"unit": "kW",
"description": "Peak regen/brake power, in kilowatts, that motor(s) can generate.",
"uuid": "7f2cb2650ba95485b7156ffe76e27366"
},
"MaxRegenTorque": {
"datatype": "uint16",
"type": "attribute",
"default": 0,
"unit": "Nm",
"description": "Peak regen/brake torque, in newton meter, that the motor(s) can generate.",
"uuid": "0e5190c2517b55aa80fcb9bf698e02d6"
},
"Motor": {
"type": "branch",
"description": "motor signals",
"uuid": "af1521cbe56b599fa9fff8c6171e645c",
"children": {
"Rpm": {
"datatype": "uint32",
"type": "sensor",
"unit": "rpm",
"min": -100000,
"max": 100000,
"description": "Motor rotational speed measured as rotations per minute. Negative values indicate reverse driving mode.",
"uuid": "96259c99dc105266bbe7aba70e16f1ef"
},
"Temperature": {
"datatype": "int16",
"type": "sensor",
"unit": "celsius",
"min": -50,
"max": 200,
"description": "Motor temperature.",
"uuid": "6ae826db62d552c5b9fe2701f5655455"
},
"CoolantTemperature": {
"datatype": "int16",
"type": "sensor",
"unit": "celsius",
"min": -50,
"max": 200,
"description": "Motor coolant temperature (if applicable).",
"uuid": "ff978ffe8e615fada4b6423d5ba25e25"
},
"Power": {
"datatype": "int16",
"type": "sensor",
"unit": "kW",
"min": -2000,
"max": 2000,
"description": "Current motor power output. Negative values indicate regen mode.",
"uuid": "630a478781b95ad8b012ce52f745f3e8"
},
"Torque": {
"datatype": "int16",
"type": "sensor",
"unit": "Nm",
"min": -5000,
"max": 5000,
"description": "Current motor torque. Negative values indicate regen mode.",
"uuid": "0d07c1c502a1557a91b4ed564e024a19"
}
}
}
}
},
"Battery": {
"type": "branch",
"description": "Battery Management data.",
"uuid": "3e92d75e0cbc5765a459308f71873ae0",
"children": {
"Temperature": {
"datatype": "float",
"type": "sensor",
"unit": "celsius",
"description": "Temperature of the battery pack",
"uuid": "2b9d90f1d87c57dcbbd6a72807f8d412"
},
"StateOfCharge": {
"type": "branch",
"description": "Information on the state of charge of the vehicle's high voltage battery.",
"uuid": "74249091cd7653078b6c1e87ac6fbe5b",
"children": {
"Current": {
"type": "sensor",
"unit": "percent",
"datatype": "float",
"min": 0,
"max": 100.0,
"description": "Physical state of charge of the high voltage battery. This is not necessarily the state of charge being displayed to the customer.",
"uuid": "e0628947864a5c14986b2ae1487f550f"
},
"Displayed": {
"type": "sensor",
"datatype": "float",
"unit": "percent",
"min": 0,
"max": 100.0,
"description": "State of charge displayed to the customer.",
"uuid": "13190cf240665e4db38780ad39051784"
},
"Target": {
"type": "actuator",
"datatype": "uint8",
"min": 0,
"max": 100,
"unit": "percent",
"description": "Target state of charge set (eg. by customer).",
"uuid": "864039c9295a50f9b7087e3fa8c5ce28"
}
}
},
"GrossCapacity": {
"datatype": "uint16",
"type": "attribute",
"unit": "kWh",
"description": "Gross capacity of the battery",
"uuid": "7b5402cc647454b49ee019e8689d3737"
},
"NetCapacity": {
"datatype": "uint16",
"type": "attribute",
"unit": "kWh",
"description": "Net capacity of the battery",
"uuid": "7b037dd1cab553b18a87456a3d764714"
},
"NominalVoltage": {
"datatype": "uint16",
"type": "attribute",
"unit": "V",
"description": "Nominal Voltage of the battery",
"uuid": "77d38e4890ea55cca3798616968384ed"
},
"ReferentVoltage": {
"datatype": "uint16",
"type": "attribute",
"unit": "V",
"description": "Referent Voltage of the battery",
"uuid": "bceafc8cc7a852319d5e453312cf6949"
},
"AccumulatedChargedEnergy": {
"datatype": "float",
"type": "sensor",
"unit": "kWh",
"description": "The accumulated energy delivered to the battery during charging over lifetime.",
"uuid": "d2abf26b03f5519d878a7f4b5891519b"
},
"AccumulatedConsumedEnergy": {
"datatype": "float",
"type": "sensor",
"unit": "kWh",
"description": "The accumulated energy leaving HV battery for propulsion and auxiliary loads over lifetime.",
"uuid": "c96530e0b22c56779cea2645823e87be"
},
"Charging": {
"type": "branch",
"description": "Properties related to battery charging",
"uuid": "14b2e022987d5cf383ee6ea0c6919195",
"children": {
"ChargeLimit": {
"datatype": "uint8",
"type": "actuator",
"min": 0,
"max": 100,
"unit": "percent",
"description": "Maximum charge level for battery, can potentially be set manually.",
"uuid": "6a44522726625d42b0fbdf3f36fb1c87"
},
"MaximumChargingCurrent": {
"datatype": "float",
"type": "sensor",
"unit": "A",
"description": "Maximum charging current that can be accepted by the system.",
"uuid": "36e8aee0ff4c52f5af271ef610523e88"
},
"ChargePortFlap": {
"datatype": "string",
"type": "actuator",
"value": "closed",
"enum": [
"open",
"closed"
],
"description": "Signal indicating if charge port cover is open or closed, can potentially be controlled manually.",
"uuid": "528e53ad98c1546b90bb48f24f04815a"
},
"ChargePlugStatus": {
"datatype": "boolean",
"type": "sensor",
"description": "Signal indicating if charge plug is connected or not.",
"uuid": "9be742dcbf2f526bb67b538fd801edc3"
},
"ChargePlugType": {
"datatype": "string",
"type": "attribute",
"value": "ccs",
"enum": [
"type 1",
"type 2",
"ccs",
"chademo"
],
"description": "Type of charge plug available on the vehicle (CSS includes Type2).",
"uuid": "0c4cf2b3979456928967e73b646bda05"
},
"Mode": {
"datatype": "string",
"type": "actuator",
"value": "manual",
"enum": [
"manual",
"timer",
"grid"
],
"description": "Control of the charge process - manually initiated (plug-in event, companion app, etc), timer-based or grid-controlled (eg ISO 15118).",
"uuid": "d50906b9d2525e8581fc01f900c1c096"
},
"Status": {
"datatype": "boolean",
"type": "sensor",
"description": "State of charging process.",
"uuid": "b772427703c05e7ba81b11424be20540"
},
"StartStopCharging": {
"datatype": "string",
"type": "actuator",
"value": "stop",
"enum": [
"start",
"stop"
],
"description": "Start or stop the charging process.",
"uuid": "e754c34897b4594587b93d8e7e89e280"
},
"ChargeCurrent": {
"datatype": "float",
"type": "sensor",
"unit": "A",
"description": "Current charging current.",
"uuid": "a98b14e0d52d51a09d74c85d599738ea"
},
"ChargeVoltage": {
"datatype": "float",
"type": "sensor",
"unit": "V",
"description": "Current charging voltage.",
"uuid": "1be74bd9d81d510b9d65cc1f83cb904e"
},
"ChargeRate": {
"datatype": "float",
"type": "sensor",
"unit": "km/h",
"description": "Current charging rate, as in kilometers of range added per hour.",
"uuid": "382fa50af6a25d64b56979e1306f564e"
},
"TimeToComplete": {
"datatype": "uint32",
"type": "sensor",
"unit": "s",
"description": "The time needed to complete the current charging process to the set charge limit. 0 if charging is complete, negative number if no charging process is active.",
"uuid": "519e70bc8a985e1b984c472a1cd7d3cf"
},
"Timer": {
"type": "branch",
"description": "Properties related to timing of battery charging sessions.",
"uuid": "4d632fd461e550b4b3af46e21e507457",
"children": {
"Time": {
"datatype": "uint32",
"type": "actuator",
"unit": "s",
"description": "Time value for next charging-related action (Unix timestamp, seconds).",
"uuid": "d9cb0f458c255c33830409a3e313f781"
},
"Mode": {
"datatype": "string",
"type": "actuator",
"value": "starttime",
"enum": [
"starttime",
"endtime",
"depaturetime"