-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSensorLayoutsv1.json
746 lines (746 loc) · 23.8 KB
/
SensorLayoutsv1.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
{
"openapi": "3.0.1",
"info": {
"title": "Sensor Layouts",
"version": "v1"
},
"paths": {
"/avx-sensorlabs/v1/sensorlayouts/{id}": {
"delete": {
"tags": [
"SensorLayouts"
],
"summary": "Delete the sensor layout from the library.",
"parameters": [
{
"name": "id",
"in": "path",
"description": "Unique identifier of the sensor layout in the library.",
"required": true,
"schema": {
"type": "string",
"description": "Unique identifier of the sensor layout in the library.",
"format": "uuid"
}
}
],
"responses": {
"200": {
"description": "Success",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LayoutRead.Identifier"
}
}
}
},
"404": {
"description": "Not Found",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Response.ProblemDetails"
}
}
}
}
}
},
"get": {
"tags": [
"SensorLayouts"
],
"summary": "Read the sensor layout with the given id.",
"description": "The existing identifiers in the library can be seen in <code>SensorLayoutLibrary -> GET: /sensorlayouts</code>.",
"parameters": [
{
"name": "id",
"in": "path",
"description": "Unique identifier of the sensor layout in the library.",
"required": true,
"schema": {
"type": "string",
"description": "Unique identifier of the sensor layout in the library.",
"format": "uuid"
}
}
],
"responses": {
"200": {
"description": "Success",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LayoutEdit.Layout.LayoutData"
}
}
}
},
"400": {
"description": "Bad Request",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Response.ProblemDetails"
}
}
}
}
}
},
"put": {
"tags": [
"SensorLayouts"
],
"summary": "Update the sensor layout given by its id with the information in the body",
"description": "To get the correct json structure, use the <code>GET: /sensors/{id}</code><code>GET: /sensorlayouts/{id}</code> service.",
"parameters": [
{
"name": "id",
"in": "path",
"description": "Unique identifier of the sensor layout in the library.",
"required": true,
"schema": {
"type": "string",
"description": "Unique identifier of the sensor layout in the library.",
"format": "uuid"
}
}
],
"requestBody": {
"description": "<br>Json containing all properties of the sensor layout\r\n<br>Example to add a Camera to the layout is as follows,\r\n<br>{\"metadata\":{\"name\":\"SensorLayout\",\"vehicleModel\":\"\",\"manufacturer\":\"\",\"version\":\"\",\"comment\":\"\"},\"root\":{\"nodeName\":\"SensorReferential\",\"sensorInfo\":null,\"transform\":{\"position\":{\"x\":0,\"y\":0,\"z\":0},\"rotation\":{\"x\":0,\"y\":0,\"z\":0}},\"children\":[{\"nodeName\":\"Camera\",\"sensorInfo\":{\"type\":{\"type\":\"Camera\"},\"id\":{\"id\":\"8798a6ac-fff9-4a1a-858e-846b696bdc9d\"},\"name\":\"Camera\"},\"transform\":{\"position\":{\"x\":0,\"y\":0,\"z\":0},\"rotation\":{\"x\":0,\"y\":0,\"z\":0}},\"children\":[]}]}}\r\n<br>Example to add a Camera and Fisheye Camera is as follows,\r\n<br>{\"metadata\":{\"name\":\"SensorLayout\",\"vehicleModel\":\"\",\"manufacturer\":\"\",\"version\":\"\",\"comment\":\"\"},\"root\":{\"nodeName\":\"SensorReferential\",\"sensorInfo\":null,\"transform\":{\"position\":{\"x\":0,\"y\":0,\"z\":0},\"rotation\":{\"x\":0,\"y\":0,\"z\":0}},\"children\":[{\"nodeName\":\"Camera\",\"sensorInfo\":{\"type\":{\"type\":\"Camera\"},\"id\":{\"id\":\"8798a6ac-fff9-4a1a-858e-846b696bdc9d\"},\"name\":\"Camera\"},\"transform\":{\"position\":{\"x\":0,\"y\":0,\"z\":0},\"rotation\":{\"x\":0,\"y\":0,\"z\":0}},\"children\":[]},{\"nodeName\":\"Fisheye Camera\",\"sensorInfo\":{\"type\":{\"type\":\"FishEyeCamera\"},\"id\":{\"id\":\"06cff0e5-4d21-4b65-86a8-52a28b6048a6\"},\"name\":\"Fisheye Camera\"},\"transform\":{\"position\":{\"x\":0,\"y\":0,\"z\":0},\"rotation\":{\"x\":0,\"y\":0,\"z\":0}},\"children\":[]}]}}",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LayoutEdit.Layout.LayoutData"
}
},
"text/json": {
"schema": {
"$ref": "#/components/schemas/LayoutEdit.Layout.LayoutData"
}
},
"application/*+json": {
"schema": {
"$ref": "#/components/schemas/LayoutEdit.Layout.LayoutData"
}
}
}
},
"responses": {
"200": {
"description": "Success",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LayoutEdit.Identifier"
}
}
}
},
"400": {
"description": "Bad Request",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Response.ProblemDetails"
}
}
}
}
}
}
},
"/avx-sensorlabs/v1/sensorlayouts": {
"get": {
"tags": [
"SensorLayouts"
],
"summary": "List all sensors layouts available in the library.",
"description": "<br>Valid sensor layouts will be displayed under validLayouts, with their id, name and metadata.\r\n<br>\r\n If there are any corrupted sensor layouts, they are deleted from the library and their names will appear in corruptedLayoutNames,\r\n or if the name cannot be retrieved, the flag anyDeleted will be set to true.\r\n ",
"parameters": [
{
"name": "offset",
"in": "query",
"description": "Number of initial sensor layouts to skip.",
"schema": {
"type": "integer",
"description": "Number of initial sensor layouts to skip.",
"format": "int32",
"default": 0
}
},
{
"name": "limit",
"in": "query",
"description": "Number of sensor layouts to retrieve.",
"schema": {
"type": "integer",
"description": "Number of sensor layouts to retrieve.",
"format": "int32",
"default": 5
}
},
{
"name": "sortByName",
"in": "query",
"description": "Should sensor layouts be sorted by name.",
"schema": {
"type": "boolean",
"description": "Should sensor layouts be sorted by name.",
"default": true
}
},
{
"name": "pattern",
"in": "query",
"description": "Filter sensor layouts by names containing pattern substring.",
"schema": {
"type": "string",
"description": "Filter sensor layouts by names containing pattern substring.",
"nullable": true
}
},
{
"name": "name",
"in": "query",
"description": "Search sensor layouts matching name.",
"schema": {
"type": "string",
"description": "Search sensor layouts matching name.",
"nullable": true
}
}
],
"responses": {
"200": {
"description": "Success",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LayoutRead.LayoutsInformation"
}
}
}
},
"400": {
"description": "Bad Request",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Response.ProblemDetails"
}
}
}
}
}
},
"post": {
"tags": [
"SensorLayouts"
],
"summary": "Create a new empty sensor layout.",
"parameters": [
{
"name": "copyOf",
"in": "query",
"description": "Create a copy of the sensor with the given id. In this case the POST body should contain the desired name.",
"schema": {
"type": "string",
"description": "Create a copy of the sensor with the given id. In this case the POST body should contain the desired name.",
"format": "uuid",
"nullable": true
}
}
],
"requestBody": {
"description": "Name of the sensor layout to create.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LayoutRead.LayoutName"
}
},
"text/json": {
"schema": {
"$ref": "#/components/schemas/LayoutRead.LayoutName"
}
},
"application/*+json": {
"schema": {
"$ref": "#/components/schemas/LayoutRead.LayoutName"
}
}
}
},
"responses": {
"200": {
"description": "Success",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LayoutRead.Identifier"
}
}
}
},
"400": {
"description": "Bad Request",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Response.ProblemDetails"
}
}
}
}
}
}
},
"/avx-sensorlabs/v1/sensorlayouts/{id}/packed/{sensorLayoutName}": {
"get": {
"tags": [
"SensorLayouts"
],
"summary": "Download a sensor layout to a file with the specified name.",
"parameters": [
{
"name": "id",
"in": "path",
"description": "Unique identifier of the sensor layout in the library.",
"required": true,
"schema": {
"type": "string",
"description": "Unique identifier of the sensor layout in the library.",
"format": "uuid"
}
},
{
"name": "sensorLayoutName",
"in": "path",
"description": "Desired name for the packed sensor layout file.",
"required": true,
"schema": {
"type": "string",
"description": "Desired name for the packed sensor layout file.",
"nullable": true
}
}
],
"responses": {
"200": {
"description": "Success"
},
"400": {
"description": "Bad Request",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Response.ProblemDetails"
}
}
}
},
"404": {
"description": "Not Found",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Response.ProblemDetails"
}
}
}
}
}
}
},
"/avx-sensorlabs/v1/sensorlayouts/packed": {
"post": {
"tags": [
"SensorLayouts"
],
"summary": "Upload a packed sensor layout and add it to the library.",
"description": "Conflicts might appear if a sensor layout with the same name already exists in the library or if sensors with the same name already exist in the library.",
"requestBody": {
"content": {
"multipart/form-data": {
"schema": {
"type": "object",
"properties": {
"file": {
"type": "string",
"description": "File to upload.",
"format": "binary",
"nullable": true
},
"sensorLayoutName": {
"type": "string",
"description": "New name for the layout, in case of layout name conflict.",
"nullable": true
},
"overwrite": {
"type": "boolean",
"description": "Flag to indicate if existing sensor layout should be overwritten, in case of conflict.",
"nullable": true
},
"sensorUpdatesJson": {
"type": "string",
"description": "Json structure with a list of actions for each conflicting sensor that is referenced in the layout.\r\nContains: current sensor name, new name, should replace sensor, should use existing sensor, is the sensor a thermal camera.\r\n<br>Replace : [{\"name\":\"Camera\",\"replaceName\":\"\",\"replace\":true, \"useExisting\": false, \"isThermalCamera\": false}]<br>Rename : [{\"name\":\"Camera\",\"replaceName\":\"NewCamera\",\"replace\":false, \"useExisting\": false, \"isThermalCamera\": false}]",
"nullable": true
}
}
},
"encoding": {
"file": {
"style": "form"
},
"sensorLayoutName": {
"style": "form"
},
"overwrite": {
"style": "form"
},
"sensorUpdatesJson": {
"style": "form"
}
}
}
}
},
"responses": {
"200": {
"description": "Success",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LayoutRead.Identifier"
}
}
}
}
}
}
}
},
"components": {
"schemas": {
"LayoutRead.Identifier": {
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
}
},
"additionalProperties": false,
"description": "Identifier as Guid."
},
"Response.ProblemDetails": {
"type": "object",
"properties": {
"type": {
"type": "string",
"nullable": true
},
"title": {
"type": "string",
"nullable": true
},
"status": {
"type": "integer",
"format": "int32",
"nullable": true
},
"detail": {
"type": "string",
"nullable": true
},
"instance": {
"type": "string",
"nullable": true
}
},
"additionalProperties": {}
},
"LayoutEdit.Layout.Metadata": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of the layout.",
"nullable": true
},
"manufacturer": {
"type": "string",
"description": "Manufacturer.",
"nullable": true
},
"version": {
"type": "string",
"description": "Version.",
"nullable": true
},
"comment": {
"type": "string",
"description": "Comment.",
"nullable": true
},
"vehicleModel": {
"type": "string",
"description": "Vehicle model.",
"nullable": true
}
},
"additionalProperties": false,
"description": "Metadata of the layout."
},
"LayoutEdit.Layout.Position": {
"type": "object",
"properties": {
"x": {
"type": "number",
"description": "Translation following X direction (m).",
"format": "double"
},
"y": {
"type": "number",
"description": "Translation following Y direction (m).",
"format": "double"
},
"z": {
"type": "number",
"description": "Translation following Z direction (m).",
"format": "double"
}
},
"additionalProperties": false,
"description": "Position."
},
"LayoutEdit.Layout.Rotation": {
"type": "object",
"properties": {
"x": {
"type": "number",
"description": "Rotation X value (deg).",
"format": "double"
},
"y": {
"type": "number",
"description": "Rotation Y value (deg).",
"format": "double"
},
"z": {
"type": "number",
"description": "Rotation Z value (deg).",
"format": "double"
}
},
"additionalProperties": false,
"description": "Rotation."
},
"LayoutEdit.Layout.Transform": {
"type": "object",
"properties": {
"position": {
"$ref": "#/components/schemas/LayoutEdit.Layout.Position"
},
"rotation": {
"$ref": "#/components/schemas/LayoutEdit.Layout.Rotation"
}
},
"additionalProperties": false,
"description": "Transform."
},
"LayoutEdit.Identifier": {
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
}
},
"additionalProperties": false,
"description": "Identifier as Guid."
},
"LayoutEdit.Sensor.SensorType": {
"type": "object",
"properties": {
"type": {
"type": "string",
"nullable": true,
"readOnly": true
}
},
"additionalProperties": false,
"description": "Sensor type."
},
"LayoutEdit.Sensor.SensorInfo": {
"type": "object",
"properties": {
"id": {
"$ref": "#/components/schemas/LayoutEdit.Identifier"
},
"type": {
"$ref": "#/components/schemas/LayoutEdit.Sensor.SensorType"
},
"name": {
"type": "string",
"description": "Sensor name.",
"nullable": true
}
},
"additionalProperties": false,
"description": "Sensor information."
},
"LayoutEdit.Layout.TreeNode": {
"type": "object",
"properties": {
"nodeName": {
"type": "string",
"nullable": true
},
"transform": {
"$ref": "#/components/schemas/LayoutEdit.Layout.Transform"
},
"sensorInfo": {
"$ref": "#/components/schemas/LayoutEdit.Sensor.SensorInfo"
},
"children": {
"type": "array",
"items": {
"$ref": "#/components/schemas/LayoutEdit.Layout.TreeNode"
},
"nullable": true
}
},
"additionalProperties": false,
"description": "Represents Tree node."
},
"LayoutEdit.Layout.LayoutData": {
"type": "object",
"properties": {
"metadata": {
"$ref": "#/components/schemas/LayoutEdit.Layout.Metadata"
},
"root": {
"$ref": "#/components/schemas/LayoutEdit.Layout.TreeNode"
},
"missingSensorNames": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of missing sensor names.",
"nullable": true
}
},
"additionalProperties": false,
"description": "Layout data."
},
"LayoutRead.Metadata": {
"type": "object",
"properties": {
"manufacturer": {
"type": "string",
"description": "Manufacturer.",
"nullable": true
},
"version": {
"type": "string",
"description": "Version.",
"nullable": true
},
"comment": {
"type": "string",
"description": "Comment.",
"nullable": true
},
"vehicleModel": {
"type": "string",
"description": "Vehicle model.",
"nullable": true
},
"cameraCount": {
"type": "integer",
"description": "Number of Cameras present inside the layout.",
"format": "int32"
},
"lidarCount": {
"type": "integer",
"description": "Number of Lidars present inside the layout.",
"format": "int32"
},
"radarCount": {
"type": "integer",
"description": "Number of Radars present inside the layout.",
"format": "int32"
}
},
"additionalProperties": false,
"description": "Represents metadata."
},
"LayoutRead.LayoutData": {
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"name": {
"type": "string",
"nullable": true
},
"metadata": {
"$ref": "#/components/schemas/LayoutRead.Metadata"
}
},
"additionalProperties": false,
"description": "Layout data."
},
"LayoutRead.LayoutsInformation": {
"type": "object",
"properties": {
"totalLayoutsCount": {
"type": "integer",
"description": "Layout count.",
"format": "int32"
},
"validLayouts": {
"type": "array",
"items": {
"$ref": "#/components/schemas/LayoutRead.LayoutData"
},
"description": "Valid layouts count.",
"nullable": true
},
"anyDeleted": {
"type": "boolean",
"description": "Indicate if any of the corrupted layout is deleted"
},
"corruptedLayoutNames": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of corrupted layouts.",
"nullable": true
}
},
"additionalProperties": false,
"description": "Layout information."
},
"LayoutRead.LayoutName": {
"type": "object",
"properties": {
"name": {
"type": "string",
"nullable": true
}
},
"additionalProperties": false,
"description": "Layout name."
}
}
}
}