-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenapi.yml
1210 lines (1131 loc) · 33.4 KB
/
openapi.yml
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.1.0
# see https://swagger.io/specification/#info-object
info:
title: "Pathfinder - Mobility Platform"
version: 0.10.0
# see https://swagger.io/specification/#contact-object
contact:
email: github.com/workloads
name: Project Maintainers
url: "https://github.com/workloads/pathfinder/issues"
description: |
This OpenAPI specification describes the programmatic interface of the _Pathfinder Mobility Platform_.
For more information, see the `externalDocs` in this file as well as [github.com/workloads/pathfinder](https://github.com/workloads/pathfinder).
# see https://swagger.io/specification/#license-object
license:
name: Apache License 2.0
identifier: Apache-2.0
summary: "Pathfinder - Mobility Platform"
termsOfService: "https://github.com/workloads/.github/blob/main/CONTRIBUTING.md"
# see https://github.com/Redocly/redoc/blob/main/docs/redoc-vendor-extensions.md#x-logo
x-logo:
url: "https://assets.workloads.io/pathfinder/mobility-platform-logo.png"
backgroundColor: "#282433"
altText: Pathfinder logo
x-terraform-provider-name: pathfinder
# see https://swagger.io/specification/#components-object
components:
# see https://swagger.io/specification/#schema-object
schemas:
DeviceStatus:
description: "Response containing the device status"
example:
features:
isHttpEnabled: true
isInsightsEnabled: false
identifiers:
long: pathfinder-000000000000C418
short: pathfinder-c418
name: Pathfinder
uptime: 1234
versions:
api: 0.1.0
app: 0.10.0
properties:
features:
additionalProperties:
$ref: "#/components/schemas/FeatureFlagItem"
description: "Feature flags"
examples:
- isHttpEnabled: true
- isInsightsEnabled: false
type: object
identifiers:
description: "Identifiers"
properties:
long:
description: "Long identifier"
examples:
- pathfinder-000000000000C418
type: string
short:
description: "Short identifier"
examples:
- pathfinder-c418
type: string
required:
- short
- long
type: object
name:
description: "Name"
examples:
- Pathfinder
type: string
uptime:
description: "Uptime (in seconds)"
examples:
- 1234
type: number
versions:
description: "Versions"
properties:
api:
description: "API version"
examples:
- 0.1.0
- 1.0.0
type: string
app:
description: "Application version"
examples:
- 0.10.0
- 1.0.0
type: string
required:
- api
- app
type: object
required:
- features
- identifiers
- name
- uptime
- versions
type: object
DeviceBattery:
description: "Response containing the battery status"
examples:
- shuntVoltage:
unit: mV
value: 1
busVoltage:
unit: mV
value: 2
current:
unit: mA
value: 3
power:
unit: mW
value: 4
loadVoltage:
unit: mV
value: 5
ina219Overflow: false
properties:
shuntVoltage:
$ref: "#/components/schemas/DeviceBatteryItem"
busVoltage:
type: object
$ref: "#/components/schemas/DeviceBatteryItem"
current:
type: object
$ref: "#/components/schemas/DeviceBatteryItem"
power:
type: object
$ref: "#/components/schemas/DeviceBatteryItem"
loadVoltage:
type: object
$ref: "#/components/schemas/DeviceBatteryItem"
ina219Overflow:
type: boolean
examples:
- true
- false
type: object
DeviceBatteryItem:
description: "Structure of a single battery item"
examples:
- unit: mA
value: 1
- unit: mV
value: 2
properties:
unit:
description: "Unit of the battery item"
examples:
- mA # milli ampere
- mV # milli volt
- V # volt
type: string
value:
description: "Value of the battery item"
examples:
- 1
- 2
type: integer
required:
- unit
- value
type: object
DeviceReboot:
description: "Response containing the reboot status"
examples:
- reboot: true
properties:
reboot:
description: "Reboot status"
examples:
- true
type: boolean
required:
- reboot
type: object
DeviceWifi:
description: "Response containing the Wi-Fi network"
items:
$ref: "#/components/schemas/DeviceWifiNetworkItem"
type: array
maximum: 1
minimum: 1
DeviceWifiRequest:
description: "Request containing a Wi-Fi network configuration"
examples:
- password: workloads
ssid: workloads
properties:
password:
description: "Password"
examples:
- workloads
type: string
ssid:
description: "SSID"
examples:
- workloads
type: string
required:
- password
- ssid
type: object
DeviceWifiNetworkItem:
description: "Structure of a single Wi-Fi network item"
examples:
- encrypted: true
rssi: -30
ssid: workloads
properties:
encrypted:
description: "Encryption status"
examples:
- true
type: boolean
rssi:
description: "RSSI (in dBm)"
examples:
- -30 # great signal
- -67 # okay signal
- -90 # unusable signal
format: float
type: number
ssid:
description: "SSID"
examples:
- workloads
type: string
required:
- encrypted
- rssi
- ssid
type: object
DeviceWifiScan:
description: "Response containing the detected Wi-Fi networks"
items:
$ref: "#/components/schemas/DeviceWifiNetworkItem"
type: array
ErrorMessage:
description: "Response containing the error"
examples:
- title: Bad Request
type: 400
- title: Internal Server Error
type: 500
properties:
title:
description: "Title of error"
examples:
- Bad Request
- Internal Server Error
type: string
type:
description: "Type of error"
examples:
- 400
- 500
type: number
required:
- title
- type
type: object
ErrorBadRequest:
allOf:
- $ref: "#/components/schemas/ErrorMessage"
- type: object
properties:
title:
type: string
examples:
- Bad Request
type:
type: number
examples:
- 400
examples:
- title: Bad Request
type: 400
ErrorForbidden:
allOf:
- $ref: "#/components/schemas/ErrorMessage"
- type: object
properties:
title:
type: string
examples:
- Forbidden
type:
type: number
examples:
- 403
examples:
- title: Forbidden
type: 403
ErrorInternalServerError:
allOf:
- $ref: "#/components/schemas/ErrorMessage"
- type: object
properties:
title:
type: string
examples:
- Internal Server Error
type:
type: number
examples:
- 500
examples:
- title: Internal Server Error
type: 500
ErrorNotFound:
allOf:
- $ref: "#/components/schemas/ErrorMessage"
- type: object
properties:
title:
type: string
example: Not Found
type:
type: number
example: 400
examples:
- title: Not Found
type: 404
ErrorUnauthorized:
allOf:
- $ref: "#/components/schemas/ErrorMessage"
- type: object
properties:
title:
type: string
examples:
- Unauthorized
type:
type: number
examples:
- 401
examples:
- title: Unauthorized
type: 401
FeatureFlagItem:
description: "Structure of a single feature flag item"
examples:
- true
- false
type: boolean
Healthz:
description: "Response containing the health status"
examples:
- healthy: true
properties:
healthy:
description: "Health status"
examples:
- true
type: boolean
required:
- healthy
type: object
MovementDelete:
description: "Request containing the movement identifier TODO"
examples:
- id: movement-1ab2
name: Movement Plan
properties:
id:
description: "Identifier of the movement plan"
examples:
- movement-1ab2
type: string
name:
description: "Name of the movement plan"
examples:
- Movement Plan
- movement-plan
type: string
required:
- id
- name
type: object
MovementLock:
description: "Response containing the movement lock status"
examples:
- locked: true
properties:
locked:
description: "Movement lock status"
examples:
- true
type: boolean
required:
- locked
type: object
MovementStepItem:
description: "Structure of a single movement step"
examples:
- bearing: 90
direction: forward
distance: 10
# see https://swagger.io/specification/#external-documentation-object
externalDocs:
description: "Documentation on the Schema of a Movement Plans"
url: "https://github.com/workloads/pathfinder-openapi-specs/blob/main/movement-plan/README.md"
properties:
bearing:
description: "Angle (in degrees) of movement"
examples:
- 90
maximum: 360
minimum: -360
type: integer
direction:
description: "Direction of movement"
enum:
- backward
- forward
examples:
- forward
type: string
distance:
description: "Distance (in centimeters) of movement"
examples:
- 10
maximum: 100
minimum: 1
type: number
required:
- bearing
- direction
- distance
type: object
MovementRequest:
description: "Request for a movement"
examples:
- name: Movement Plan
persist: true
steps:
- bearing: 90
direction: forward
distance: 10
properties:
name:
description: "Name of the movement plan"
examples:
- Movement Plan
- movement-plan
type: string
persist:
description: "Persist the movement plan to the filesystem"
examples:
- true
type: boolean
steps:
description: "List of movement steps"
items:
$ref: "#/components/schemas/MovementStepItem"
maxItems: 50
minItems: 1
type: array
required:
- name
- persist
- steps
type: object
MovementResponse:
description: "Response containing the movement operation status"
examples:
- id: movement-1ab2
name: Movement Plan
properties:
id:
description: "Identifier of the movement plan"
examples:
- movement-1ab2
type: string
name:
description: "Name of the movement plan"
examples:
- Movement Plan
- movement-plan
type: string
required:
- id
- name
type: object
Readyz:
description: "Response containing the readiness status"
examples:
- ready: true
properties:
ready:
description: "Readiness status"
examples:
- true
type: boolean
required:
- ready
type: object
# see https://swagger.io/specification/#responses-object
responses:
DeviceStatus:
content:
application/json:
schema:
$ref: "#/components/schemas/DeviceStatus"
description: "Response containing the device status"
DeviceBattery:
content:
application/json:
schema:
$ref: "#/components/schemas/DeviceBattery"
description: "Response containing the battery status"
DeviceReboot:
content:
application/json:
schema:
$ref: "#/components/schemas/DeviceReboot"
description: "Response containing the reboot status"
DeviceWifi:
content:
application/json:
schema:
$ref: "#/components/schemas/DeviceWifi"
description: "Response containing the Wi-Fi status"
DeviceWifiScan:
content:
application/json:
schema:
$ref: "#/components/schemas/DeviceWifiScan"
description: "Response containing the available Wi-Fi networks"
ErrorBadRequest:
content:
application/problem+json:
schema:
$ref: "#/components/schemas/ErrorBadRequest"
description: "Response containing the error object"
ErrorForbidden:
content:
application/problem+json:
schema:
$ref: "#/components/schemas/ErrorForbidden"
description: "Response containing the error object"
ErrorInternalServerError:
content:
application/problem+json:
schema:
$ref: "#/components/schemas/ErrorInternalServerError"
description: "Response containing the error object"
ErrorNotFound:
content:
application/problem+json:
schema:
$ref: "#/components/schemas/ErrorNotFound"
description: "Response containing the error object"
ErrorUnauthorized:
content:
application/problem+json:
schema:
$ref: "#/components/schemas/ErrorUnauthorized"
description: "Response containing the error object"
Healthz:
content:
application/json:
schema:
$ref: "#/components/schemas/Healthz"
description: "Response containing the health status"
InterfaceRoot:
content:
text/html:
schema:
type: string
examples:
- "<html><body>Index</body></html>"
description: "Response containing HTML"
InterfaceApiRoot:
content:
text/html:
schema:
type: string
examples:
- "<html><body>API Index</body></html>"
description: "Response containing HTML"
Movement:
content:
application/json:
schema:
$ref: "#/components/schemas/MovementResponse"
description: "Response containing the movement response object"
MovementLock:
content:
application/json:
schema:
$ref: "#/components/schemas/MovementLock"
description: "Response containing the movement lock object"
Readyz:
content:
application/json:
schema:
$ref: "#/components/schemas/Readyz"
description: "Response containing the ready status"
# see https://swagger.io/specification/#security-scheme-object
securitySchemes:
apiKey:
description: "Access Key for endpoints requiring authorization"
in: header
name: x-api-key
type: apiKey
# see https://swagger.io/specification/#external-documentation-object
externalDocs:
description: "Project Documentation"
url: "https://github.com/workloads/pathfinder"
# see https://swagger.io/specification/#paths-object
paths:
/:
get:
description: "Retrieve the root HTML content."
operationId: getRootContent
responses:
'200':
$ref: "#/components/responses/InterfaceRoot"
'400':
$ref: "#/components/responses/InterfaceRoot"
security: []
summary: "Retrieve root"
tags:
- meta
# see https://redocly.com/docs/api-reference-docs/specification-extensions/x-code-samples
x-codeSamples:
- lang: 'cURL'
label: 'CLI'
source: |
curl \
--request GET \
--url 'http://mock.local.svcs.dev:7284/' \
--header 'Accept: text/html'
/v1:
get:
description: "Retrieve the API root content."
operationId: getApiRootContent
responses:
'200':
$ref: "#/components/responses/InterfaceApiRoot"
'400':
$ref: "#/components/responses/InterfaceRoot"
security: []
summary: "Retrieve API root"
tags:
- meta
# see https://redocly.com/docs/api-reference-docs/specification-extensions/x-code-samples
x-codeSamples:
- lang: 'cURL'
label: 'CLI'
source: |
curl \
--request GET \
--url 'http://mock.local.svcs.dev:7284/v1' \
--header 'Accept: text/html'
/v1/device/status:
get:
description: "Retrieve the device status."
operationId: getDeviceStatus
responses:
'200':
$ref: "#/components/responses/DeviceStatus"
'400':
$ref: "#/components/responses/ErrorBadRequest"
'500':
$ref: "#/components/responses/ErrorInternalServerError"
security: []
summary: "Retrieve device status"
tags:
- device
- terraform-enabled
# see https://redocly.com/docs/api-reference-docs/specification-extensions/x-code-samples
x-codeSamples:
- lang: 'cURL'
label: 'CLI'
source: |
curl \
--request GET \
--url 'http://mock.local.svcs.dev:7284/v1/device/status' \
--header 'Accept: application/json'
x-terraform-types:
- datasource
/v1/device/battery:
get:
description: "Retrieve the battery status."
operationId: getDeviceBattery
responses:
'200':
$ref: "#/components/responses/DeviceBattery"
'400':
$ref: "#/components/responses/ErrorBadRequest"
'500':
$ref: "#/components/responses/ErrorInternalServerError"
security: []
summary: "Retrieve battery status"
tags:
- device
- terraform-enabled
# see https://redocly.com/docs/api-reference-docs/specification-extensions/x-code-samples
x-codeSamples:
- lang: 'cURL'
label: 'CLI'
source: |
curl \
--request GET \
--url 'http://mock.local.svcs.dev:7284/v1/device/battery' \
--header 'Accept: application/json'
x-terraform-types:
- datasource
/v1/device/reboot:
post:
description: "Initiate a reboot."
operationId: postDeviceReboot
requestBody:
content:
application/json:
schema:
type: object
$ref: "#/components/schemas/DeviceReboot"
responses:
'200':
$ref: "#/components/responses/DeviceReboot"
'400':
$ref: "#/components/responses/ErrorBadRequest"
'401':
$ref: "#/components/responses/ErrorUnauthorized"
'500':
$ref: "#/components/responses/ErrorInternalServerError"
security:
- apiKey: []
summary: "Initiate reboot"
tags:
- device
# see https://redocly.com/docs/api-reference-docs/specification-extensions/x-code-samples
x-codeSamples:
- lang: 'cURL'
label: 'CLI'
source: |
curl \
--request POST \
--url 'http://mock.local.svcs.dev:7284/v1/device/reboot' \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{"reboot": true}'
/v1/device/wifi:
get:
description: "Retrieve the Wi-Fi status."
operationId: getDeviceWifi
responses:
'200':
$ref: "#/components/responses/DeviceWifi"
'400':
$ref: "#/components/responses/ErrorBadRequest"
'500':
$ref: "#/components/responses/ErrorInternalServerError"
security: []
summary: "Retrieve Wi-Fi status"
tags:
- device-wifi
- terraform-enabled
# see https://redocly.com/docs/api-reference-docs/specification-extensions/x-code-samples
x-codeSamples:
- lang: 'cURL'
label: 'CLI'
source: |
curl \
--request GET \
--url 'http://mock.local.svcs.dev:7284/v1/device/wifi' \
--header 'Accept: application/json'
x-terraform-types:
- datasource
post:
description: "Update the Wi-Fi configuration."
operationId: postDeviceWifiChange
responses:
'200':
$ref: "#/components/responses/DeviceWifi"
'400':
$ref: "#/components/responses/ErrorBadRequest"
'500':
$ref: "#/components/responses/ErrorInternalServerError"
requestBody:
content:
application/json:
schema:
type: object
$ref: "#/components/schemas/DeviceWifiRequest"
security: []
summary: "Update Wi-Fi configuration"
tags:
- device-wifi
# see https://redocly.com/docs/api-reference-docs/specification-extensions/x-code-samples
x-codeSamples:
- lang: 'cURL'
label: 'CLI'
source: |
curl \
--request POST \
--url 'http://mock.local.svcs.dev:7284/v1/device/wifi' \
--header 'Content-Type: application/json' \
--data '{"ssid": "workloads", "password": "workloads"}'
/v1/device/wifi/scan:
get:
description: "Initiate a Wi-Fi scan"
operationId: getDeviceWifiScan
responses:
'200':
$ref: "#/components/responses/DeviceWifiScan"
'400':
$ref: "#/components/responses/ErrorBadRequest"
'500':
$ref: "#/components/responses/ErrorInternalServerError"
security: []
summary: "Initiate Wi-Fi scan"
tags:
- device-wifi
# see https://redocly.com/docs/api-reference-docs/specification-extensions/x-code-samples
x-codeSamples:
- lang: 'cURL'
label: 'CLI'
source: |
curl \
--request GET \
--url 'http://mock.local.svcs.dev:7284/v1/device/wifi/scan' \
--header 'Accept: application/json'
x-terraform-types:
- datasource
/v1/healthz:
get:
description: "Retrieve the health status"
operationId: getHealthz
responses:
'200':
$ref: "#/components/responses/Healthz"
'400':
$ref: "#/components/responses/ErrorBadRequest"
'500':
$ref: "#/components/responses/ErrorInternalServerError"
security: []
summary: "Retrieve health status"
tags:
- health
# see https://redocly.com/docs/api-reference-docs/specification-extensions/x-code-samples
x-codeSamples:
- lang: 'cURL'
label: 'CLI'
source: |
curl \
--request GET \
--url 'http://mock.local.svcs.dev:7284/v1/healthz' \
--header 'Accept: application/json'
x-terraform-types:
- datasource
'/v1/movement/{movementIdentifier}':
delete:
description: "Delete a movement plan"
operationId: deleteMovement
parameters:
- description: "The identifier of the movement plan to delete"
examples:
example:
value: 550e8400-e29b-41d4-a716-446655440000
in: path
name: movementIdentifier
required: true
schema:
format: uuid
maxLength: 64
type: string
responses:
'200':
$ref: "#/components/responses/Movement"
'400':
$ref: "#/components/responses/ErrorBadRequest"
'500':
$ref: "#/components/responses/ErrorInternalServerError"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/MovementDelete"
security: []
summary: "Stop movement"
tags:
- movement
- terraform-enabled
# see https://redocly.com/docs/api-reference-docs/specification-extensions/x-code-samples
x-codeSamples:
- lang: 'cURL'
label: 'CLI'
source: |
curl \
--request DELETE \
--url 'http://mock.local.svcs.dev:7284/v1/movement/550e8400-e29b-41d4-a716-446655440000' \
--header 'Content-Type: application/json' \
--data '{"id": "movement-1ab2", "name": "Movement Plan"}'
x-terraform-types:
- resource
/v1/movement:
get:
description: "Retrieve the movement status"
operationId: getMovement
responses:
'200':
$ref: "#/components/responses/Movement"
'400':
$ref: "#/components/responses/ErrorBadRequest"
'404':
$ref: "#/components/responses/ErrorNotFound"
'500':
$ref: "#/components/responses/ErrorInternalServerError"
security: []
summary: "Retrieve movement status"
tags:
- movement
- terraform-enabled
# see https://redocly.com/docs/api-reference-docs/specification-extensions/x-code-samples
x-codeSamples:
- lang: 'cURL'
label: 'CLI'
source: |
curl \
--request GET \
--url 'http://mock.local.svcs.dev:7284/v1/movement' \
--header 'Accept: application/json'
x-terraform-types:
- datasource
- resource