-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcam_schema_2-2-0.json
More file actions
1099 lines (1099 loc) · 47.3 KB
/
cam_schema_2-2-0.json
File metadata and controls
1099 lines (1099 loc) · 47.3 KB
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
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://Orange-OpenSource.github.io/its-client/schema/cam",
"$references": [
{
"name": "CAM TS 103 900",
"version": "2.2.1",
"url": "https://forge.etsi.org/rep/ITS/asn1/cam_ts103900/-/tree/v2.2.1"
},
{
"$comment": "This technical specification file (TS) is hereby considered right over the European standard one (EN); meaning that for any difference that may be present between those files this schema will prefer what is defined in the technical specification",
"name": "CDD TS 102 894-2",
"version": "2.3.1",
"url": "https://forge.etsi.org/rep/ITS/asn1/cdd_ts102894_2/-/tree/v2.3.1"
}
],
"description": "CAM JSON schema",
"type": "object",
"additionalProperties": false,
"required": [
"message_type",
"source_uuid",
"timestamp",
"version",
"message"
],
"properties": {
"message_type": {
"type": "string",
"description": "Type of the message carried in message property.",
"const": "cam"
},
"source_uuid": {
"type": "string",
"description": "Unique id all over the world for the message sender.",
"examples": [
"com_car_4294967295",
"com_application_42"
]
},
"timestamp": {
"type": "integer",
"description": "Timestamp when the message was generated since Unix Epoch (millisecond).",
"examples": [
1574778515424
],
"minimum": 1514764800000,
"maximum": 1830297600000
},
"version": {
"type": "string",
"description": "JSON message format version.",
"const": "2.2.0"
},
"message": {
"type": "object",
"required": [
"protocol_version",
"station_id",
"generation_delta_time",
"basic_container",
"high_frequency_container"
],
"properties": {
"protocol_version": {
"type": "integer",
"description": "Version of the ITS message.",
"minimum": 0,
"maximum": 255,
"examples": [
1
]
},
"station_id": {
"type": "integer",
"description": "Identifier for an ITS-S.",
"minimum": 0,
"maximum": 4294967295,
"examples": [
4294967295,
42
]
},
"generation_delta_time": {
"type": "integer",
"description": "Time of the reference position in the CAM, considered as time of the CAM generation. TimestampIts mod 65 536. TimestampIts represents an integer value in milliseconds since 2004-01-01T00:00:00:000Z. oneMilliSec(1).",
"minimum": 0,
"maximum": 65535,
"examples": [
1,
1245
]
},
"basic_container": {
"type": "object",
"required": [
"station_type",
"reference_position"
],
"properties": {
"station_type": {
"$ref": "#/$defs/traffic_participant_type"
},
"reference_position": {
"$ref": "#/$defs/reference_position_with_confidence"
}
}
},
"high_frequency_container": {
"type": "object",
"oneOf": [
{
"required": [
"basic_vehicle_container_high_frequency"
]
},
{
"required": [
"rsu_container_high_frequency"
]
}
],
"properties": {
"basic_vehicle_container_high_frequency": {
"type": "object",
"description": "Detailed information of the Basic Vehicle Container High Frequency.",
"required": [
"heading",
"speed",
"drive_direction",
"vehicle_length",
"vehicle_width",
"longitudinal_acceleration",
"curvature",
"curvature_calculation_mode",
"yaw_rate"
],
"properties": {
"heading": {
"$ref": "#/$defs/heading"
},
"speed": {
"$ref": "#/$defs/speed"
},
"drive_direction": {
"type": "integer",
"description": "Vehicle drive direction (forward or backward) of the originating ITS-S. forward (0), backward (1), unavailable (2).",
"default": 2,
"minimum": 0,
"maximum": 2
},
"vehicle_length": {
"$ref": "#/$defs/vehicle_length"
},
"vehicle_width": {
"type": "integer",
"description": "Vehicle Width of the vehicle ITS-S that originates the CAM excluding side mirrors and possible similar extensions.",
"default": 62,
"minimum": 1,
"maximum": 62
},
"longitudinal_acceleration": {
"$ref": "#/$defs/acceleration_component"
},
"curvature": {
"$ref": "#/$defs/curvature"
},
"curvature_calculation_mode": {
"type": "integer",
"description": "Whether vehicle yaw-rate is used in the calculation of the curvature of the vehicle ITS-S that originates the CAM. yawRateUsed (0), yawRateNotUsed (1), unavailable (2).",
"default": 2,
"minimum": 0,
"maximum": 2
},
"yaw_rate": {
"$ref": "#/$defs/yaw_rate"
},
"acceleration_control": {
"type": "object",
"description": "Optional component which represents the current status of the vehcile mechnanisms controlling the longitudinal movement of the vehcile ITS-S (e.g. brake pedal, gas pedal, etc. engaged) that originate the CAM.",
"required": [
"brake_pedal_engaged",
"gas_pedal_engaged",
"emergency_brake_engaged",
"collision_warning_engaged",
"acc_engaged",
"cruise_control_engaged",
"speed_limiter_engaged"
],
"properties": {
"brake_pedal_engaged": {
"type": "boolean",
"description": "Indicates whether the brake pedal is engaged or not."
},
"gas_pedal_engaged": {
"type": "boolean",
"description": "Indicates whether the gas pedal is engaged or not."
},
"emergency_brake_engaged": {
"type": "boolean",
"description": "Indicates whether the emergency brake is engaged or not."
},
"collision_warning_engaged": {
"type": "boolean",
"description": "Indicates whether the collision warning system is engaged or not."
},
"acc_engaged": {
"type": "boolean",
"description": "Indicates whether the ACC system is engaged or not."
},
"cruise_control_engaged": {
"type": "boolean",
"description": "Indicates whether the cruise control system is engaged or not."
},
"speed_limiter_engaged": {
"type": "boolean",
"description": "Indicates whether the speed limiter system is engaged or not."
}
}
},
"lane_position": {
"type": "integer",
"description": "Optional component which represents the lanePosition of the referencePosition of a vehicle. offTheRoad (-1), innerHardShoulder (0), outerHardShoulder (14).",
"minimum": -1,
"maximum": 14
},
"steering_wheel_angle": {
"$ref": "#/$defs/steering_wheel_angle"
},
"lateral_acceleration": {
"$ref": "#/$defs/acceleration_component"
},
"vertical_acceleration": {
"$ref": "#/$defs/acceleration_component"
},
"performance_class": {
"type": "integer",
"description": "Optional component characterizes the maximum age of the CAM data elements with regard to the generation delta time. unavailable (0), performanceClassA (1), performanceClassB (2).",
"default": 0,
"minimum": 0,
"maximum": 7
},
"cen_dsrc_tolling_zone": {
"type": "object",
"description": "Optional component which represents the information about the position of a CEN DSRC Tolling Station operating in the 5,8 GHz frequency band.",
"required": [
"protected_zone_latitude",
"protected_zone_longitude"
],
"properties": {
"protected_zone_latitude": {
"$ref": "#/$defs/latitude_value"
},
"protected_zone_longitude": {
"$ref": "#/$defs/longitude_value"
},
"cen_dsrc_tolling_zone_id": {
"type": "integer",
"description": "Identifier of a protected communication zone.",
"minimum": 0,
"maximum": 134217727
}
}
}
}
},
"rsu_container_high_frequency": {
"type": "object",
"description": "Basic RSU container high frequency",
"properties": {
"protected_communication_zones_rsu": {
"type": "array",
"description": "Path history, a path with a set of path points",
"minItems": 1,
"maxItems": 16,
"items": {
"type": "object",
"required": [
"protected_zone_type",
"protected_zone_latitude",
"protected_zone_longitude"
],
"properties": {
"protected_zone_type": {
"type": "integer",
"description": "Type of the protected zone. permanentCenDsrcTolling(0), temporaryCenDsrcTolling(1)",
"minimum": 0,
"maximum": 1
},
"expiry_time": {
"type": "integer",
"description": "Optional time at which the validity of the protected communication zone will expire.",
"minimum": 0,
"maximum": 4398046511103
},
"protected_zone_latitude": {
"$ref": "#/$defs/latitude_value"
},
"protected_zone_longitude": {
"$ref": "#/$defs/longitude_value"
},
"protected_zone_radius": {
"type": "integer",
"description": "Optional radius of the protected communication zone in metres.",
"minimum": 1,
"maximum": 255
},
"protected_zone_id": {
"type": "integer",
"description": "Optional ID of the protected communication zone.",
"minimum": 0,
"maximum": 134217727
}
}
}
}
}
}
}
},
"low_frequency_container": {
"type": "object",
"required": [
"basic_vehicle_container_low_frequency"
],
"properties": {
"basic_vehicle_container_low_frequency ": {
"description": "Basic vehicle container low frequency",
"required": [
"vehicle_role",
"exterior_lights",
"path_history"
],
"properties": {
"vehicle_role": {
"type": "integer",
"description": "Role of the vehicle ITS-S that originates the CAM. default (0), publicTransport (1), specialTransport (2), dangerousGoods (3), roadWork (4), rescue (5), emergency (6), safetyCar (7), agriculture (8), commercial (9), military (10), roadOperator (11), taxi (12), uvar (13), rfu1 (14), rfu2 (15)",
"default": 0,
"minimum": 0,
"maximum": 15
},
"exterior_lights": {
"type": "object",
"description": "Status of the most important exterior lights switches of the vehicle ITS-S that originates the CAM.",
"required": [
"low_beam_headlights_on",
"high_beam_headlights_on",
"left_turn_signal_on",
"right_turn_signal_on",
"daytime_running_lights_on",
"reverse_light_on",
"fog_light_on",
"parking_lights_on"
],
"properties": {
"low_beam_headlights_on": {
"type": "boolean",
"description": "When the low beam head light switch is on."
},
"high_beam_headlights_on": {
"type": "boolean",
"description": "when the high beam head light switch is on"
},
"left_turn_signal_on": {
"type": "boolean",
"description": "When the left turnSignal switch is on."
},
"right_turn_signal_on": {
"type": "boolean",
"description": "When the right turn signal switch is on."
},
"daytime_running_lights_on": {
"type": "boolean",
"description": "When the daytime running light switch is on."
},
"reverse_light_on": {
"type": "boolean",
"description": "When the reverse light switch is on."
},
"fog_light_on": {
"type": "boolean",
"description": "When the tail fog light switch is on."
},
"parking_lights_on": {
"type": "boolean",
"description": "When the parking light switch is on."
}
}
},
"path_history": {
"type": "array",
"description": "Vehicle's recent movement over some past time and/or distance.",
"minItems": 0,
"maxItems": 40,
"items": {
"type": "object",
"required": [
"path_position"
],
"properties": {
"path_position": {
"$ref": "#/$defs/delta_reference_position"
},
"path_delta_time": {
"type": "integer",
"description": "Optional travel time separated from a waypoint to the predefined reference position.",
"minimum": 1,
"maximum": 65535
}
}
}
}
}
}
}
},
"special_vehicle_container": {
"type": "object",
"oneOf": [
{
"required": [
"public_transport_container"
]
},
{
"required": [
"special_transport_container"
]
},
{
"required": [
"dangerous_goods_container"
]
},
{
"required": [
"road_works_container_basic"
]
},
{
"required": [
"rescue_container"
]
},
{
"required": [
"emergency_container"
]
},
{
"required": [
"safety_car_container"
]
}
],
"properties": {
"public_transport_container": {
"type": "object",
"description": "If the vehicleRole component is set to publicTransport(1) this container shall be present.",
"required": [
"embarkation_status"
],
"properties": {
"embarkation_status": {
"type": "boolean",
"description": "Passenger embarkation is currently ongoing."
},
"pt_activation": {
"type": "object",
"description": "Optional component used for controlling traffic lights, barriers, bollards, etc.",
"required": [
"pt_activation_type",
"pt_activation_data"
],
"properties": {
"pt_activation_type": {
"type": "integer",
"description": "Type of activation. undefinedCodingType (0), r09-16CodingType (1), vdv-50149CodingType (2).",
"default": 0,
"minimum": 0,
"maximum": 255
},
"pt_activation_data": {
"type": "string",
"description": "Data of activation.",
"minLength": 1,
"maxLength": 20
}
}
}
}
},
"special_transport_container": {
"type": "object",
"description": "If the vehicleRole component is set to specialTransport(2) this container shall be present.",
"required": [
"special_transport_type",
"light_bar_siren_in_use"
],
"properties": {
"special_transport_type": {
"type": "object",
"description": "Vehicle is carrying goods in the special transport conditions.",
"required": [
"heavy_load",
"excess_width",
"excess_length",
"excess_height"
],
"properties": {
"heavy_load": {
"type": "boolean",
"description": "Vehicle is carrying goods with heavy load."
},
"excess_width": {
"type": "boolean",
"description": "Vehicle is carrying goods in excess of width."
},
"excess_length": {
"type": "boolean",
"description": "Vehicle is carrying goods in excess of length."
},
"excess_height": {
"type": "boolean",
"description": "Vehicle is carrying goods in excess of height."
}
}
},
"light_bar_siren_in_use": {
"$ref": "#/$defs/light_bar_siren_in_use"
}
}
},
"dangerous_goods_container": {
"type": "object",
"description": "If the vehicleRole component is set to dangerousGoods(3) this container shall be present.",
"required": [
"dangerous_goods_basic"
],
"properties": {
"dangerous_goods_basic": {
"type": "integer",
"description": "Type of the dangerous goods being carried by a heavy vehicle. explosives1 (0), explosives2 (1), explosives3 (2), explosives4 (3), explosives5 (4), explosives6 (5), flammableGases (6), nonFlammableGases (7), toxicGases (8), flammableLiquids (9), flammableSolids (10), substancesLiableToSpontaneousCombustion (11), substancesEmittingFlammableGasesUponContactWithWater (12), oxidizingSubstances (13), organicPeroxides (14), toxicSubstances (15), infectiousSubstances (16), radioactiveMaterial (17), corrosiveSubstances (18), miscellaneousDangerousSubstances (19).",
"minimum": 0,
"maximum": 19
}
}
},
"road_works_container_basic": {
"type": "object",
"description": "If the vehicleRole component is set to roadWork(4) this container shall be present.",
"required": [
"light_bar_siren_in_use"
],
"properties": {
"road_works_sub_cause_code": {
"type": "integer",
"description": "Optional component, in case the originating ITS-S is mounted to a vehicle ITS-S participating to roadwork. unavailable (0), majorRoadworks (1),roadMarkingWork (2), slowMovingRoadMaintenance (3), shortTermStationaryRoadworks (4), streetCleaning (5), winterService (6), setupPhase (7), remodellingPhase (8), dismantlingPhase (9).",
"minimum": 0,
"maximum": 255
},
"light_bar_siren_in_use": {
"$ref": "#/$defs/light_bar_siren_in_use"
},
"closed_lanes": {
"type": "object",
"description": "Optional component which provides information about the opening/closure status of the lanes ahead.",
"properties": {
"inner_hard_shoulder_status": {
"type": "integer",
"description": "Optional and shall be included if an inner hard shoulder is present and the information is known. availableForStopping(0), closed(1), availableForDriving(2).",
"minimum": 0,
"maximum": 2
},
"outer_hard_shoulder_status": {
"type": "integer",
"description": "Optional and shall be included if an outer hard shoulder is present and the information is known. availableForStopping(0), closed(1), availableForDriving(2).",
"minimum": 0,
"maximum": 2
},
"driving_lane_status": {
"type": "object",
"description": "Optional and shall be included if the information is known.",
"required": [
"lane_1_closed",
"lane_2_closed",
"lane_3_closed",
"lane_4_closed",
"lane_5_closed",
"lane_6_closed",
"lane_7_closed",
"lane_8_closed",
"lane_9_closed",
"lane_10_closed",
"lane_11_closed",
"lane_12_closed",
"lane_13_closed"
],
"properties": {
"lane_1_closed": {
"type": "boolean",
"description": "Indicates whether lane 1 is closed or not."
},
"lane_2_closed": {
"type": "boolean",
"description": "Indicates whether lane 2 is closed or not."
},
"lane_3_closed": {
"type": "boolean",
"description": "Indicates whether lane 3 is closed or not."
},
"lane_4_closed": {
"type": "boolean",
"description": "Indicates whether lane 4 is closed or not."
},
"lane_5_closed": {
"type": "boolean",
"description": "Indicates whether lane 5 is closed or not."
},
"lane_6_closed": {
"type": "boolean",
"description": "Indicates whether lane 6 is closed or not."
},
"lane_7_closed": {
"type": "boolean",
"description": "Indicates whether lane 7 is closed or not."
},
"lane_8_closed": {
"type": "boolean",
"description": "Indicates whether lane 8 is closed or not."
},
"lane_9_closed": {
"type": "boolean",
"description": "Indicates whether lane 9 is closed or not."
},
"lane_10_closed": {
"type": "boolean",
"description": "Indicates whether lane 10 is closed or not."
},
"lane_11_closed": {
"type": "boolean",
"description": "Indicates whether lane 11 is closed or not."
},
"lane_12_closed": {
"type": "boolean",
"description": "Indicates whether lane 12 is closed or not."
},
"lane_13_closed": {
"type": "boolean",
"description": "Indicates whether lane 13 is closed or not."
}
}
}
}
}
}
},
"rescue_container": {
"type": "object",
"description": "If the vehicleRole component is set to rescue(5) this container shall be present.",
"required": [
"light_bar_siren_in_use"
],
"properties": {
"light_bar_siren_in_use": {
"$ref": "#/$defs/light_bar_siren_in_use"
}
}
},
"emergency_container": {
"type": "object",
"description": "If the vehicleRole component is set to emergency(6) this container shall be present.",
"required": [
"light_bar_siren_in_use"
],
"properties": {
"light_bar_siren_in_use": {
"$ref": "#/$defs/light_bar_siren_in_use"
},
"incident_indication": {
"type": "object",
"description": "Optional incident related to the roadworks to provide additional information of the roadworks zone.",
"required": [
"cc_and_scc"
],
"properties": {
"cc_and_scc": {
"$comment": "Choice has been made not to use CauseCodeV2 object as defined in DENM TS CDD, because it would require a object definition for each cause just to hold the subcause code; Using the deprecated CauseCode instead",
"$ref": "#/$defs/cause_code"
}
}
},
"emergency_priority": {
"type": "object",
"description": "Optional component represent right of way indicator of the vehicle ITS-S that originates the CAM PDU.",
"required": [
"request_for_right_of_way",
"request_for_free_crossing_at_a_traffic_light"
],
"properties": {
"request_for_right_of_way": {
"type": "boolean",
"description": "When the vehicle is requesting/assuming the right of way."
},
"request_for_free_crossing_at_a_traffic_light": {
"type": "boolean",
"description": "When the vehicle is requesting/assuming the right to pass at a (red) traffic light."
}
}
}
}
},
"safety_car_container": {
"type": "object",
"description": "If the vehicleRole component is set to safetyCar(7) this container shall be present.",
"required": [
"light_bar_siren_in_use"
],
"properties": {
"light_bar_siren_in_use": {
"$ref": "#/$defs/light_bar_siren_in_use"
},
"incident_indication": {
"type": "object",
"description": "Optional incident related to the roadworks to provide additional information of the roadworks zone.",
"required": [
"cc_and_scc"
],
"properties": {
"cc_and_scc": {
"$comment": "Choice has been made not to use CauseCodeV2 object as defined in DENM TS CDD, because it would require a object definition for each cause just to hold the subcause code; Using the deprecated CauseCode instead.",
"$ref": "#/$defs/cause_code"
}
}
},
"traffic_rule": {
"type": "integer",
"description": "Optional rule indicates whether vehicles are allowed to overtake a safety car that is originating this CAM. noPassing(0), noPassingForTrucks(1), passToRight(2), passToLeft(3), passToLeftOrRight (4).",
"minimum": 0,
"maximum": 4
},
"speed_limit": {
"type": "integer",
"description": "Optional speed indicates whether a speed limit is applied to vehicles following the safety car.",
"minimum": 1,
"maximum": 255
}
}
}
}
}
}
}
},
"$defs": {
"angle_value": {
"type": "integer",
"description": "Angle value in degrees described in the WGS84 reference system with respect to the WGS84 north.",
"default": 3601,
"minimum": 0,
"maximum": 3601
},
"position_confidence_ellipse": {
"type": "object",
"required": [
"semi_major",
"semi_minor",
"semi_major_orientation"
],
"properties": {
"semi_major": {
"type": "integer",
"description": "Half of length of the major axis, i.e. distance between the centre point and major axis point of the position accuracy ellipse.",
"default": 4095,
"minimum": 0,
"maximum": 4095
},
"semi_minor": {
"type": "integer",
"description": "Half of length of the minor axis, i.e. distance between the centre point and minor axis point of the position accuracy ellipse.",
"default": 4095,
"minimum": 0,
"maximum": 4095
},
"semi_major_orientation": {
"$ref": "#/$defs/angle_value"
}
}
},
"latitude_value": {
"type": "integer",
"description": "Latitude of the geographical point.",
"default": 900000001,
"minimum": -900000000,
"maximum": 900000001
},
"longitude_value": {
"type": "integer",
"description": "Longitude of the geographical point.",
"default": 1800000001,
"minimum": -1800000000,
"maximum": 1800000001
},
"altitude": {
"type": "object",
"description": "Altitude and an altitude accuracy of the geographical point.",
"required": [
"value",
"confidence"
],
"properties": {
"value": {
"type": "integer",
"description": "Altitude of a geographical point.",
"default": 800001,
"minimum": -100000,
"maximum": 800001
},
"confidence": {
"type": "integer",
"description": "Confidence level of the altitudeValue.",
"default": 15,
"minimum": 0,
"maximum": 15
}
}
},
"reference_position_with_confidence": {
"type": "object",
"description": "Position within a geographic coordinate system together with a confidence ellipse.",
"required": [
"latitude",
"longitude",
"position_confidence_ellipse",
"altitude"
],
"properties": {
"latitude": {
"$ref": "#/$defs/latitude_value"
},
"longitude": {
"$ref": "#/$defs/longitude_value"
},
"position_confidence_ellipse": {
"$ref": "#/$defs/position_confidence_ellipse"
},
"altitude": {
"$ref": "#/$defs/altitude"
}
}
},
"traffic_participant_type": {
"description": "Type of a traffic participant. unknown(0), pedestrian(1), cyclist(2), moped(3), motorcycle(4), passengerCar(5), bus(6), lightTruck(7), heavyTruck(8), trailer(9), specialVehicles(10), tram(11), roadSideUnit(15).",
"type": "integer",
"default": 0,
"minimum": 0,
"maximum": 255
},
"heading": {
"description": "Heading in a WGS84 co-ordinates system.",
"type": "object",
"required": [
"value",
"confidence"
],
"properties": {
"value": {
"type": "integer",
"description": "Heading value.",
"default": 3601,
"minimum": 0,
"maximum": 3601
},
"confidence": {
"type": "integer",
"description": "Confidence value of the heading value with a predefined confidence level.",
"default": 127,
"minimum": 1,
"maximum": 127
}
}
},
"speed": {
"type": "object",
"description": "Speed and associated confidence value.",
"required": [
"value",
"confidence"
],
"properties": {
"value": {
"type": "integer",
"description": "Speed value.",
"default": 16383,
"minimum": 0,
"maximum": 16383
},
"confidence": {
"type": "integer",
"description": "Confidence value of the speed value.",
"default": 127,
"minimum": 1,
"maximum": 127
}
}
},
"vehicle_length": {
"type": "object",
"description": "Length of vehicle and accuracy indication information.",
"required": [
"value",
"confidence"
],
"properties": {
"value": {
"type": "integer",
"description": "Length of vehicle.",
"default": 1023,
"minimum": 1,
"maximum": 1023
},
"confidence": {
"type": "integer",
"description": "Indication of the length value confidence. noTrailerPresent (0), trailerPresentWithKnownLength (1), trailerPresentWithUnknownLength (2), trailerPresenceIsUnknown (3), unavailable (4).",
"default": 4,
"minimum": 0,
"maximum": 4
}
}
},
"acceleration_component": {
"type": "object",
"description": "Acceleration component along with a confidence value.",
"required": [
"value",
"confidence"
],
"properties": {
"value": {
"type": "integer",
"description": "Value of the component.",
"minimum": -160,
"maximum": 161,
"default": 161
},
"confidence": {
"type": "integer",
"description": "Confidence value of the value.",
"minimum": 0,
"maximum": 102,
"default": 102
}
}
},
"curvature": {
"type": "object",
"description": "Curvature of the vehicle trajectory and the associated confidence value.",
"required": [
"value",
"confidence"
],
"properties": {
"value": {
"type": "integer",
"description": "Detected curvature of the vehicle trajectory.",
"default": 1023,
"minimum": -1023,
"maximum": 1023
},
"confidence": {
"type": "integer",
"description": "Along with a confidence value of the curvature value with a predefined confidence level. onePerMeter-0-00002 (0),onePerMeter-0-0001 (1),onePerMeter-0-0005 (2),onePerMeter-0-002 (3),onePerMeter-0-01 (4),onePerMeter-0-1 (5),outOfRange (6),unavailable (7).",
"minimum": 0,
"maximum": 7
}
}
},
"yaw_rate": {
"type": "object",
"description": "Yaw rate of vehicle at a point in time.",
"required": [
"value",
"confidence"
],
"properties": {
"value": {
"type": "integer",
"description": "Yaw rate value at a point in time.",
"default": 32767,
"minimum": -32766,
"maximum": 32767
},
"confidence": {
"type": "integer",
"description": "Confidence value associated to the yaw rate value. degSec-000-01 (0), degSec-000-05 (1), degSec-000-10 (2), degSec-001-00 (3), degSec-005-00 (4),degSec-010-00 (5),degSec-100-00 (6),outOfRange (7),unavailable (8).",
"default": 8,
"minimum": 0,
"maximum": 8
}
}