-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsmart_link_openapi.yaml
More file actions
1870 lines (1870 loc) · 50.8 KB
/
Copy pathsmart_link_openapi.yaml
File metadata and controls
1870 lines (1870 loc) · 50.8 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
openapi: 3.0.1
info:
title: Smart+ Link API
description: Kabam Robot API provides uniform access to control and monitor Kabam
robots. It enables 3rd party applications to interact with Kabam robots.
contact:
name: Jakub Tomasek
email: jakub@kabam.ai
url: kabam.ai
version: 2.3.2
servers:
- url: https://kcrapi-rest-dev.kabam.ai/<device_id>
paths:
/robot/status:
get:
tags:
- Kabam
summary: Current robot status
description: Retrieves current robot status
operationId: get_robot_status
responses:
"200":
description: successful operation
content:
application/json:
schema:
$ref: '#/components/schemas/RobotStatus'
"400":
description: Error retrieving status
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
x-openapi-router-controller: swagger_server.controllers.kabam_controller
/robot/config:
get:
tags:
- Kabam
summary: Get robot configurations
description: Get robot environment variables
operationId: get_robot_config
responses:
"200":
description: successful operation
content:
application/json:
schema:
type: object
example:
PUBLIC_ENV_VAR_1: "ABC"
PUBLIC_ENV_VAR_2: "XaB123"
PUBLIC_API_KEY: "xyz@123"
"400":
description: Error retrieving status
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
x-openapi-router-controller: swagger_server.controllers.kabam_controller
/robot/mapinfo:
get:
tags:
- Kabam
summary: Get robot map metadata
description: Get robot environment variables
operationId: get_robot_mapinfo
responses:
"200":
description: successful operation
content:
application/json:
schema:
type: object
example:
map_id: "48868f6d-45f0-4c89-b7cc-c0f84b17b128"
map_label: "kabam_office_partial"
map_filename: "null"
"400":
description: Error retrieving status
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
x-openapi-router-controller: swagger_server.controllers.kabam_controller
/robot/trigger/{command}:
post:
tags:
- Kabam
summary: Trigger command on a robot subsystem
description: "Submits a {command} to a robot, returns immediately. Process should\
\ be monitored through status. Can be used for example to `toggle_wheel_brake`,\
\ `release_bumper_lockout`, `reboot`, `stop` , `trigger_boom_up`, `trigger_boom_down`,\
\ `localize_boom` , `trigger_dock` , `trigger_undock` , `blinker_on` or `blinker_off`."
operationId: robot_cmd
parameters:
- name: command
in: path
required: true
style: simple
explode: false
schema:
type: string
enum:
- toggle_wheel_brake
- release_bumper_lockout
- reboot
- trigger_dock
- trigger_undock
- blinker_on
- blinker_off
- stop
- trigger_boom_up
- trigger_boom_down
- localize_boom
- blinker_on
- blinker_off
example: toggle
responses:
"200":
description: Command was accepted
"400":
description: Invalid command
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
x-openapi-router-controller: swagger_server.controllers.kabam_controller
/email/send:
post:
tags:
- Kabam
summary: Send an email to someone via sendgrid
description: Send an email to someone via sendgrid
operationId: send_email
requestBody:
description: Email Parameters
content:
application/json:
schema:
$ref: '#/components/schemas/email_send_body'
responses:
"200":
description: Email sent successfully
content: {}
"400":
description: Failed
content: {}
x-openapi-router-controller: swagger_server.controllers.kabam_controller
/mission/status:
get:
tags:
- Kabam
summary: Last mission status update
description: Retrieves last mission status update with details
operationId: get_mission_status
responses:
"200":
description: successful operation
content:
application/json:
schema:
$ref: '#/components/schemas/MissionStatus'
"400":
description: Error retrieving status
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
x-openapi-router-controller: swagger_server.controllers.kabam_controller
/mission/list:
get:
tags:
- Kabam
summary: List missions
description: Retrieves list of all available missions to run
operationId: get_mission_list
responses:
"200":
description: Successful operation
content:
application/json:
schema:
properties:
mission_list:
type: array
items:
type: object
properties:
mission_name:
type: string
example: "A17ST220224"
mission_id:
type: string
example: 40dd8fcd-5e6d-4890-b620-88882d9d3977
"400":
description: Error retrieving mission list
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
x-openapi-router-controller: swagger_server.controllers.kabam_controller
/mission/start:
post:
tags:
- Kabam
summary: Starts mission
description: Triggers mission start
operationId: mission_start
requestBody:
description: Mission parameters
content:
application/json:
schema:
$ref: '#/components/schemas/mission_start_body'
required: true
responses:
"200":
description: Command was accepted
"400":
description: Invalid command
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
x-openapi-router-controller: swagger_server.controllers.kabam_controller
/mission/trigger/{command}:
post:
tags:
- Kabam
summary: "Triggers stop,resume and pause for mission"
description: "Submits a {command} to a robot, returns immediately. Process should\
\ be monitored through status. Can be used for example to `stop`,`pause` ,`concierge_pause`,\
\ and `resume`"
operationId: mission_cmd_trigger
parameters:
- name: command
in: path
required: true
style: simple
explode: false
schema:
type: string
enum:
- stop
- pause
- resume
- concierge_pause
example: pause
responses:
"200":
description: Command was accepted
"400":
description: Invalid command
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
x-openapi-router-controller: swagger_server.controllers.kabam_controller
/mission/schedule:
get:
tags:
- Kabam
summary: Retrieves next mission scheduled
description: Retrieves next scheduled mission
operationId: get_mission_schedule
responses:
"200":
description: successful operation
content:
application/json:
schema:
$ref: '#/components/schemas/KabamTaskSchedule'
"400":
description: Error retrieving status
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
x-openapi-router-controller: swagger_server.controllers.kabam_controller
/mission/{mission_id}:
get:
tags:
- Kabam
summary: retrieves mission based on mission_id
description: This endpoint is used to retrieve mission details based on the
mission_id
operationId: mission_mission_id_get
parameters:
- name: mission_id
in: path
required: true
style: simple
explode: false
schema:
type: string
example: GoToDoor1
responses:
"200":
description: successful operation
content:
application/json:
schema:
$ref: '#/components/schemas/Mission'
"400":
description: Error retrieving status
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
x-openapi-router-controller: swagger_server.controllers.kabam_controller
/tts/speak:
post:
tags:
- Kabam
summary: Makes the robot robot convert text to speech
description: This endpoint is used to make the robot use its text to speech
functionality
operationId: tts_speak
requestBody:
description: Body for TTS speak parameters
content:
application/json:
schema:
$ref: '#/components/schemas/tts_speak_body'
responses:
"200":
description: Received command successfully
content: {}
"400":
description: Failed
content: {}
x-openapi-router-controller: swagger_server.controllers.kabam_controller
/tts/file:
post:
tags:
- Kabam
summary: Makes the robot convert file to speech
description: This endpoint is used to make the robot use its file to speech
functionality
operationId: tts_file
requestBody:
description: Body for TTS file paramters
content:
application/json:
schema:
$ref: '#/components/schemas/tts_file_body'
responses:
"200":
description: Received command successfully
content: {}
"400":
description: Failed
content: {}
x-openapi-router-controller: swagger_server.controllers.kabam_controller
/robot/camera:
get:
tags:
- Kabam
summary: Get Image from a specific robot camera
description: This endpoint gets an image from a specified robot camera in base64 format.
operationId: get_camera
parameters:
- name: camera_topic
in: query
required: false
description: The camera topic to be chosen for the robot
schema:
type: string
example: /hik_camera_back/camera/image_raw
responses:
"200":
description: Succesfully retrieved image
content:
application/json:
schema:
$ref: '#/components/schemas/robot_camera_body'
"400":
description: Error
content: {}
x-openapi-router-controller: swagger_server.controllers.kabam_controller
/robot/pose:
get:
tags:
- Kabam
summary: Get robots current position in the map
description: This endpoint is used to get the current position of the robot
relative to the fixed frame using tf2
operationId: robot_pose_get
responses:
"200":
description: Successfully received position
content:
application/json:
schema:
$ref: '#/components/schemas/robot_pose_body'
"400":
description: Failed to retrieve position
content: {}
x-openapi-router-controller: swagger_server.controllers.kabam_controller
/robot/tf:
get:
tags:
- Kabam
summary: Get any TF needed from tf list given child frame and parent frame
description: This endpoint is used to get the position of any sensor available through TF
operationId: get_tf
parameters:
- name: child_frame
in: query
required: true
style: form
explode: false
schema:
type: string
example: odom
- name: parent_frame
in: query
required: false
style: form
explode: false
schema:
type: string
default: "base_link"
- name: output_format
in: query
required: false
style: form
explode: false
schema:
type: string
enum:
- 2D
- 3DQUAT
- 3DRPY
default: 3DQUAT
responses:
"200":
description: Successfully received position
content:
application/json:
schema:
$ref: '#/components/schemas/robot_pose_body'
"400":
description: Failed to retrieve position
content: {}
x-openapi-router-controller: swagger_server.controllers.kabam_controller
/robot/command/go_to:
post:
tags:
- Kabam
summary: Sends a goal for the robot to navigate to
description: "This endpoint sends a `/move_base_simple/goal` to the robot to move towards. \
\ It also monitors the status of the goal and resends if the goal was dropped."
operationId: post_navigation_goal
requestBody:
description: Goal coordinates
content:
application/json:
schema:
$ref: '#/components/schemas/robot_pose_body'
responses:
"200":
description: Successfully sent goal
content: {}
"400":
description: Failed to send goal
content: {}
x-openapi-router-controller: swagger_server.controllers.kabam_controller
/robot/navigation_status:
get:
tags:
- Kabam
summary: Gets navigation goal completion status
description: This endpoint inquires whether or not the robot has completed its recent navigation goal.
operationId: get_navigation_completed
responses:
"200":
description: Successfully received completion status
content:
application/json:
schema:
$ref: '#/components/schemas/robot_navigation_completed_body'
"400":
description: Failed to inquire completion status
content: {}
x-openapi-router-controller: swagger_server.controllers.kabam_controller
/robot/command/switch_map:
post:
tags:
- Kabam
summary: Switches map of the Robot
description: This endpoint triggers a switch map on the robots.
operationId: switch_map
requestBody:
description: Map URL
content:
application/json:
schema:
$ref: '#/components/schemas/map_body'
responses:
"200":
description: Successfully switched map.
content: {}
"400":
description: Failed to switch map.
content: {}
x-openapi-router-controller: swagger_server.controllers.kabam_controller
/robot/command/localize:
post:
tags:
- Kabam
summary: Localization of Robot
description: This endpoint triggers init localization on the robots.
operationId: robot_initialize
requestBody:
description: Initial Point
content:
application/json:
schema:
$ref: '#/components/schemas/robot_pose_body'
responses:
"200":
description: Successfully initialize robot
content: {}
"400":
description: Failed to initialize robot.
content: {}
x-openapi-router-controller: swagger_server.controllers.kabam_controller
/robot/command/camera_capture:
post:
tags:
- Kabam
summary: Capturing image from Robot front camera
description: This endpoint triggers camera capture on the robots.
operationId: camera_capture
requestBody:
description: camera capture info
content:
application/json:
schema:
$ref: '#/components/schemas/cam_capture_body'
responses:
"200":
description: Successfully trigger camera capture
content: {}
"400":
description: Failed to trigger camera capture.
content: {}
x-openapi-router-controller: swagger_server.controllers.kabam_controller
components:
schemas:
ErrorResponse:
type: object
properties:
errorCode:
type: string
example: "404"
msg:
type: string
example: Failed to ...
Mission:
type: object
properties:
mission_name:
type: string
description: Unique name of the mission
example: A17ST220224
task_list:
type: array
items:
$ref: '#/components/schemas/Task'
Task:
type: object
properties:
name:
type: string
description: Name of the task
example: Navigate to wp0 - generated_map
type:
type: string
description: Type of the task
example: MOV2POINT
parameter:
$ref: '#/components/schemas/TaskParameters'
TaskParameters:
type: object
properties:
waypoint:
$ref: '#/components/schemas/Waypoint'
delay_period:
type: number
description: Delay period before executing the task
example: 0.0
camera_topic:
type: string
description: Topic of the camera feed
example: ''
announce_string:
type: string
description: Announcement message to be broadcasted
example: ''
parameter_list:
type: array
description: Additional parameters for the task
items:
type: string
example:
- /wifi_survey_mission
- --command
- start
Waypoint:
type: object
properties:
name:
type: string
description: Name of the waypoint
example: wp0
id:
type: string
description: Unique identifier for the waypoint
example: 5c378cec-5531-41cf-87b5-9e4b2fb5bcbd
frame_id:
type: string
description: Frame of reference for the waypoint
example: /map
pose:
$ref: '#/components/schemas/Pose'
Pose:
type: object
properties:
position:
$ref: '#/components/schemas/Position'
orientation:
$ref: '#/components/schemas/Orientation'
Position:
type: object
properties:
x:
type: number
description: X-coordinate
example: 15.716401325503847
y:
type: number
description: Y-coordinate
example: 52.85281746691924
z:
type: number
description: Z-coordinate
example: 0.0
Orientation:
type: object
properties:
x:
type: number
description: X-component of the orientation quaternion
example: 0.0
y:
type: number
description: Y-component of the orientation quaternion
example: 0.0
z:
type: number
description: Z-component of the orientation quaternion
example: -0.7770413872719396
w:
type: number
description: W-component of the orientation quaternion
example: 0.6294495074797497
MissionStatus:
type: object
properties:
status:
type: string
example: running
enum:
- idling
- running
- paused
- completed
- cancelled
- error
error:
type: string
example: ObstacleTooClose
enum:
- ""
- ObstacleTooClose
- EstopPressed
- LocalizationLost
- GoalNotSafe
- Unreachable
id:
type: string
example: InspectWarehouse
name:
type: string
example: InspectWarehouse
complete_pct:
maximum: 100
minimum: 0
type: integer
example: 20
loop_count_req:
type: integer
example: 2
loop_count_done:
type: integer
example: 1
example:
loop_count_done: 1
id: InspectWarehouse
name: InspectWarehouse
error: ObstacleTooClose
loop_count_req: 2
status: running
complete_pct: 20
RobotStatus:
type: object
properties:
system_health:
type: string
description: Overall robot system status
enum:
- ok
- warn
- error
- intervention
- unknown
system_health_desc:
type: string
description: Human-readable detailed description of system status
example: ""
battery:
$ref: '#/components/schemas/RobotStatus_battery'
safety:
$ref: '#/components/schemas/RobotStatus_safety'
door_lock:
type: object
additionalProperties:
type: boolean
example:
door1: true
door2: false
door3: true
sensorHealth:
$ref: '#/components/schemas/RobotStatus_sensors'
navigation:
$ref: '#/components/schemas/RobotStatus_navigation'
mission:
$ref: '#/components/schemas/MissionStatus'
cleaning:
$ref: '#/components/schemas/RobotStatus_cleaning'
other:
type: object
properties:
boom_status:
type: string
example: "STATIONARY_UP"
example:
boom_status: "STATIONARY_UP"
example:
cleaning:
cleaning_on: true
cleaning_mode: MutePushDust
dustbag_level: true
maintanance_msg: Dustbag is full
navigation:
localization: true
map_name: plq
autonomous: true
speed: 0.5
mileage: 100
lift:
lift_attendant_state: IDLE
current_floor: L1
lift_task_prog: 100
lift_task_success: true
lift_task_completed: false
mission:
loop_count_done: 1
id: InspectWarehouse
error: ObstacleTooClose
loop_count_req: 2
status: running
complete_pct: 20
sensors:
cameras:
overhang: ok
rear: warn
top: error
odom:
wheel: ok
imu: ok
lidars:
top: ok
ultrasonic:
"0": ok
"1": warn
"2": error
"3": ok
"4": ok
system_status: ok
safety:
estop: ok
bumper_lockout: ok
system_status_desc: ""
door_lock:
door1: true
door2: false
door3: true
battery:
current: 1.815
level: 45
charging: false
temperature: 35.1
health: ok
voltage: 21.815
other:
boom_status: "STATIONARY_UP"
Schedule:
type: object
properties:
mission_id:
type: string
example: GoToWarehouse
timestamp:
type: string
format: date-time
MapListResponse:
type: object
properties:
data:
type: array
items:
$ref: "#/components/schemas/MapListItem"
errorCode:
type: string
example: ""
msg:
type: string
example: Failed to poll Gaussian API.
successed:
type: boolean
MapListItem:
type: object
properties:
createdAt:
type: string
format: date-time
example: "2016-08-11 04:13:38"
dataFileName:
type: string
example: 40dd8fcd-5e6d-4890-b620-88882d9d3977.data
id:
type: integer
example: 0
mapInfo:
$ref: "#/components/schemas/inline_response_200_3_mapInfo"
name:
type: string
example: demo
obstacleFileName:
type: string
example: ""
pgmFileName:
type: string
example: 6a3e7cae-c4a8-4583-9a5d-08682344647a.pgm
pngFileName:
type: string
example: 228b335f-8c1a-4f05-a292-160f942cbe00.png
yamlFileName:
type: string
example: 4108be8c-4004-4ad6-a9c5-599b4a3d49df.yaml
LaserPhitResponse:
type: object
properties:
header:
$ref: "#/components/schemas/inline_response_200_4_header"
mapInfo:
$ref: "#/components/schemas/inline_response_200_3_mapInfo"
gridPhits:
type: array
items:
type: object
properties:
x:
type: number
description: X-coordinate of the rasterized laser position
example: 111
y:
type: number
description: Y-coordinate of the rasterized laser position
example: 111
worldPhits:
type: array
items:
type: object
properties:
x:
type: number
description: X-coordinate of the laser position in the world
example: -0.00000000000180135178
y:
type: number
description: Y-coordinate of the laser position in the world
example: 0.00000002584042026
z:
type: number
description: Z-coordinate of the laser position in the world
example: 0
inline_response_200_1:
type: object
properties:
data:
$ref: '#/components/schemas/inline_response_200_1_data'
errorCode:
type: string
example: ""
msg:
type: string
example: successed
successed:
type: boolean
example:
msg: successed
data:
emergencyStop: true
charge: true
chargerVoltage: 0.021
batteryVoltage: 21.815
chargerCurrent: 0.604688
statusUpdatedAt: 1515896014
indexUpdatedAt: 1515901694
emergency: true
battery: 45.435484
totalMileage: 0
speed: 0
uptime: 5709
charger: 0
playPathSpeedLevel: 2
chargerStatus: true
navigationSpeedLevel: 1
mileage: mileage
successed: true
errorCode: ""
inline_response_200_4:
type: object
properties:
header:
$ref: '#/components/schemas/inline_response_200_4_header'
angle_min:
type: number
example: -2.3
angle_max:
type: number
example: 2.3
angle_increment:
type: number
example: 0.005
range_min:
type: number
example: 0.05
range_max:
type: number
example: 10
ranges:
type: array
items:
type: number
example: 4.94
intensities:
type: array
items:
type: number
example: 0
example:
angle_max: 2.3
ranges:
- 4.94
- 4.94
angle_increment: 0.005
range_min: 0.05
header:
stamp: 14321212
frame_id: base_laser
range_max: 10
intensities:
- 0
- 0
angle_min: -2.3
inline_response_200_5:
type: object
properties:
data:
type: array
items:
$ref: '#/components/schemas/inline_response_200_5_data'
errorCode:
type: string
msg: