-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathedge-inventory.yaml
More file actions
1075 lines (1038 loc) · 39.7 KB
/
Copy pathedge-inventory.yaml
File metadata and controls
1075 lines (1038 loc) · 39.7 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.0
info:
title: Inventory API
version: v1
description: Inventory API
servers:
- url: /inventory
paths:
/inventory/instances/{instanceId}:
get:
tags:
- instances
operationId: getInstance
summary: Retrieve inventory instance by id from folio mod-inventory
description: Retrieve inventory instance by id from folio mod-inventory
parameters:
- $ref: '#/components/parameters/x-okapi-tenant-header'
- $ref: '#/components/parameters/x-okapi-token-header'
- $ref: '#/components/parameters/instance-id'
- $ref: '#/components/parameters/lang'
responses:
'200':
description: |
Calls the mod-inventory GET /inventory/instance/{id} API and returns the result as-is. \
The example of response: https://github.com/folio-org/mod-inventory/blob/master/ramls/examples/instance_get.json
content:
application/json:
schema:
type: string
'400':
$ref: '#/components/responses/badRequestResponse'
'404':
$ref: '#/components/responses/notFoundResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/inventory/instances/{instanceId}/summary:
get:
tags:
- instances
operationId: getInstanceSummary
summary: Retrieve inventory instance summary by id from folio mod-inventory-storage
description: Retrieve inventory instance summary by id from folio mod-inventory-storage
parameters:
- $ref: '#/components/parameters/x-okapi-tenant-header'
- $ref: '#/components/parameters/x-okapi-token-header'
- $ref: '#/components/parameters/instance-id'
responses:
'200':
description: |
Calls the mod-inventory-storage GET /instance-storage/instances/{id}/summary API and returns the result as-is. \
In ECS central tenant mode, summaries from tenants with holdings are merged into a single response.
content:
application/json:
schema:
type: string
'400':
$ref: '#/components/responses/badRequestResponse'
'404':
$ref: '#/components/responses/notFoundResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/inventory/instances:
get:
operationId: getInstancesByQuery
summary: Retrieve inventory instances associated with the keyword query from folio mod-inventory
description: Retrieve inventory instances associated with the keyword query
parameters:
- $ref: '#/components/parameters/x-okapi-tenant-header'
- $ref: '#/components/parameters/x-okapi-token-header'
- $ref: '#/components/parameters/request-query-parameters'
responses:
'200':
description: |
Calls the mod-inventory GET /inventory/instances API and returns the result as-is. \
The example of response: https://github.com/folio-org/mod-inventory/blob/master/ramls/examples/instances_get.json
content:
application/json:
schema:
type: string
'400':
$ref: '#/components/responses/badRequestResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/inventory/authorities/{authorityId}:
get:
tags:
- authorities
operationId: getAuthority
summary: Retrieve authority by id from folio mod-entities-links
description: Retrieve authority by id from folio mod-entities-links
parameters:
- $ref: '#/components/parameters/x-okapi-tenant-header'
- $ref: '#/components/parameters/x-okapi-token-header'
- $ref: '#/components/parameters/authority-id'
responses:
'200':
description: |
Calls the mod-entities-links GET /authority-storage/authorities/{id} API and returns the result as-is. \
The example of response: https://github.com/folio-org/mod-inventory/blob/master/ramls/examples/instance_get.json
content:
application/json:
schema:
type: string
'400':
$ref: '#/components/responses/badRequestResponse'
'404':
$ref: '#/components/responses/notFoundResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/inventory/authorities:
get:
operationId: getAuthoritiesByQuery
summary: Retrieve authorities associated with the keyword query from folio mod-entities-links
description: Retrieve authorities associated with the keyword query
parameters:
- $ref: '#/components/parameters/x-okapi-tenant-header'
- $ref: '#/components/parameters/x-okapi-token-header'
- $ref: '#/components/parameters/request-query-parameters'
responses:
'200':
description: |
Calls the mod-entities-links GET /authority-storage/authorities API and returns the result as-is. \
The example of response: https://github.com/folio-org/mod-inventory/blob/master/ramls/examples/instances_get.json
content:
application/json:
schema:
type: string
'400':
$ref: '#/components/responses/badRequestResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/inventory/holdings:
get:
tags:
- holdings
operationId: getHoldings
summary: Return a list of holdings associated with the keyword query from folio mod-inventory
description: Return a list of holdings by query
parameters:
- $ref: '#/components/parameters/x-okapi-tenant-header'
- $ref: '#/components/parameters/x-okapi-token-header'
- $ref: '#/components/parameters/request-query-parameters'
responses:
'200':
description: |
Calls the mod-inventory-storage GET /holdings-storage/holdings API and returns the result as-is. \
The example of response: https://github.com/folio-org/mod-inventory-storage/blob/master/ramls/examples/holdingsrecords_get.json
content:
application/json:
schema:
type: string
'400':
$ref: '#/components/responses/badRequestResponse'
'401':
$ref: '#/components/responses/notAuthorizedResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/inventory/identifier-types:
get:
tags:
- identifierTypes
operationId: getIdentifierTypes
summary: Retrieve invetory instance identifier types by query
description: Retrieve invetory instance identifier types by query
parameters:
- $ref: '#/components/parameters/x-okapi-tenant-header'
- $ref: '#/components/parameters/x-okapi-token-header'
- $ref: '#/components/parameters/request-query-parameters'
responses:
'200':
description: |
Calls the mod-inventory-storage GET /identifier-types API and returns the result as-is. \
The example of response: https://github.com/folio-org/mod-inventory-storage/blob/master/ramls/examples/identifiertypes.json
content:
application/json:
schema:
type: string
'400':
$ref: '#/components/responses/badRequestResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/inventory/classification-types:
get:
tags:
- classificationTypes
operationId: getClassificationTypes
summary: Retrieve inventory instance classification types by query
description: Retrieve inventory instance classification types by query
parameters:
- $ref: '#/components/parameters/x-okapi-tenant-header'
- $ref: '#/components/parameters/x-okapi-token-header'
- $ref: '#/components/parameters/request-query-parameters'
responses:
'200':
description: |
Calls the mod-inventory-storage GET /classification-types API and returns the result as-is. \
The example of response: https://github.com/folio-org/mod-inventory-storage/blob/master/ramls/examples/classificationtypes.json
content:
application/json:
schema:
type: string
'400':
$ref: '#/components/responses/badRequestResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/inventory/contributor-types:
get:
tags:
- contributorTypes
operationId: getContributorTypes
summary: Retrieve inventory contributor types by query
description: Retrieve inventory contributor types by query
parameters:
- $ref: '#/components/parameters/x-okapi-tenant-header'
- $ref: '#/components/parameters/x-okapi-token-header'
- $ref: '#/components/parameters/request-query-parameters'
responses:
'200':
description: |
Calls the mod-inventory-storage GET /contributor-types API and returns the result as-is. \
The example of response: https://github.com/folio-org/mod-inventory-storage/blob/master/ramls/examples/contributortypes.json
content:
application/json:
schema:
type: string
'400':
$ref: '#/components/responses/badRequestResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/inventory/contributor-name-types:
get:
tags:
- contributorNameTypes
operationId: getContributorNameTypes
summary: Retrieve inventory contributor name types by query
description: Retrieve inventory contributor name types by query
parameters:
- $ref: '#/components/parameters/x-okapi-tenant-header'
- $ref: '#/components/parameters/x-okapi-token-header'
- $ref: '#/components/parameters/request-query-parameters'
responses:
'200':
description: |
Calls the mod-inventory-storage GET /contributor-name-types API and returns the result as-is. \
The example of response: https://github.com/folio-org/mod-inventory-storage/blob/master/ramls/examples/contributornametypes.json
content:
application/json:
schema:
type: string
'400':
$ref: '#/components/responses/badRequestResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/inventory/locations:
get:
tags:
- locations
operationId: getLocations
summary: Retrieve collection of location items.
description: Retrieve collection of location items.
parameters:
- $ref: '#/components/parameters/x-okapi-tenant-header'
- $ref: '#/components/parameters/x-okapi-token-header'
- $ref: '#/components/parameters/request-query-parameters'
responses:
'200':
description: |
Calls the mod-inventory-storage GET /locations API and returns the result as-is. \
The example of response: https://github.com/folio-org/mod-inventory-storage/blob/master/ramls/examples/locations.json
content:
application/json:
schema:
type: string
'400':
$ref: '#/components/responses/badRequestResponse'
'401':
$ref: '#/components/responses/notAuthorizedResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/inventory/service-points:
get:
tags:
- servicePoints
operationId: getServicePoints
summary: Retrieve collection of service points.
description: Retrieve collection of service points.
parameters:
- $ref: '#/components/parameters/x-okapi-tenant-header'
- $ref: '#/components/parameters/x-okapi-token-header'
- $ref: '#/components/parameters/request-query-parameters'
responses:
'200':
description: |
Calls the mod-inventory-storage GET /service-points API and returns the result as-is. \
The example of response: https://github.com/folio-org/mod-inventory-storage/blob/master/ramls/examples/servicepoints.json
content:
application/json:
schema:
type: string
'400':
$ref: '#/components/responses/badRequestResponse'
'401':
$ref: '#/components/responses/notAuthorizedResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/inventory/nature-of-content-terms:
get:
tags:
- natureOfContentTerms
operationId: getNatureOfContentTerms
summary: Return a list of nature-of-content terms
description: Return a list of nature-of-content terms
parameters:
- $ref: '#/components/parameters/x-okapi-tenant-header'
- $ref: '#/components/parameters/x-okapi-token-header'
- $ref: '#/components/parameters/request-query-parameters'
responses:
'200':
description: |
Calls the mod-inventory-storage GET /nature-of-content-terms API and returns the result as-is. \
The example of response: https://github.com/folio-org/mod-inventory-storage/blob/master/ramls/examples/natureofcontentterms.json
content:
application/json:
schema:
type: string
'400':
$ref: '#/components/responses/badRequestResponse'
'401':
$ref: '#/components/responses/notAuthorizedResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/inventory/modes-of-issuance:
get:
tags:
- modesOfIssuance
operationId: getModesOfIssuance
summary: Return a list of modes of issuance
description: Return a list of modes of issuance
parameters:
- $ref: '#/components/parameters/x-okapi-tenant-header'
- $ref: '#/components/parameters/x-okapi-token-header'
- $ref: '#/components/parameters/request-query-parameters'
responses:
'200':
description: |
Calls the mod-inventory-storage GET /modes-of-issuance API and returns the result as-is. \
The example of response: https://github.com/folio-org/mod-inventory-storage/blob/master/ramls/examples/modeofissuance.json
content:
application/json:
schema:
type: string
'400':
$ref: '#/components/responses/badRequestResponse'
'401':
$ref: '#/components/responses/notAuthorizedResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/inventory/instance-formats:
get:
tags:
- instanceFormats
operationId: getInstanceFormats
summary: Return a list of instance formats
description: Return a list of instance formats
parameters:
- $ref: '#/components/parameters/x-okapi-tenant-header'
- $ref: '#/components/parameters/x-okapi-token-header'
- $ref: '#/components/parameters/request-query-parameters'
responses:
'200':
description: |
Calls the mod-inventory-storage GET /instance-formats API and returns the result as-is. \
The example of response: https://github.com/folio-org/mod-inventory-storage/blob/master/ramls/examples/instanceformats.json
content:
application/json:
schema:
type: string
'400':
$ref: '#/components/responses/badRequestResponse'
'401':
$ref: '#/components/responses/notAuthorizedResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/inventory/items:
get:
tags:
- items
operationId: getItems
summary: Retrieve collection of items.
description: Retrieve collection of items.
parameters:
- $ref: '#/components/parameters/x-okapi-tenant-header'
- $ref: '#/components/parameters/x-okapi-token-header'
- $ref: '#/components/parameters/request-query-parameters'
responses:
'200':
description: |
Calls the mod-inventory-storage GET /items API and returns the result as-is. \
The example of response: https://github.com/folio-org/mod-inventory-storage/blob/master/ramls/examples/items_get.json
content:
application/json:
schema:
type: string
'400':
$ref: '#/components/responses/badRequestResponse'
'401':
$ref: '#/components/responses/notAuthorizedResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/inventory/instance-types:
get:
tags:
- instanceTypes
operationId: getInstanceTypes
summary: Retrieve collection of instance types.
description: Retrieve collection of instance types.
parameters:
- $ref: '#/components/parameters/x-okapi-tenant-header'
- $ref: '#/components/parameters/x-okapi-token-header'
- $ref: '#/components/parameters/request-query-parameters'
responses:
'200':
description: |
Calls the mod-inventory-storage GET /instance-types API and returns the result as-is. \
The example of response: https://github.com/folio-org/mod-inventory-storage/blob/master/ramls/examples/instancetypes.json
content:
application/json:
schema:
type: string
'400':
$ref: '#/components/responses/badRequestResponse'
'401':
$ref: '#/components/responses/notAuthorizedResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/inventory/instance-note-types:
get:
tags:
- instanceNoteTypes
operationId: getInstanceNoteTypes
summary: Retrieve collection of instance note types
description: Retrieve collection of instance note types.
parameters:
- $ref: '#/components/parameters/x-okapi-tenant-header'
- $ref: '#/components/parameters/x-okapi-token-header'
- $ref: '#/components/parameters/request-query-parameters'
responses:
'200':
description: |
Calls the mod-inventory-storage GET /instance-note-types API and returns the result as-is. \
The example of response: https://github.com/folio-org/mod-inventory-storage/blob/master/ramls/examples/instancenotetypes.json
content:
application/json:
schema:
type: string
'400':
$ref: '#/components/responses/badRequestResponse'
'401':
$ref: '#/components/responses/notAuthorizedResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/inventory/inventory-view/instances:
get:
tags:
- inventoryViewInstances
operationId: getInventoryViewInstances
summary: Retrieve collection of inventory-view instances.
description: Retrieve collection of inventory-view instances.
parameters:
- $ref: '#/components/parameters/x-okapi-tenant-header'
- $ref: '#/components/parameters/x-okapi-token-header'
- $ref: '#/components/parameters/request-query-parameters'
- $ref: '#/components/parameters/withBoundedItems'
responses:
'200':
description: |
Calls the mod-inventory-storage GET /inventory-view/instances API and returns the result as-is. \
The example of response: https://github.com/folio-org/mod-inventory-storage/blob/master/ramls/examples/inventory-view-instances.json
content:
application/json:
schema:
type: string
'400':
$ref: '#/components/responses/badRequestResponse'
'401':
$ref: '#/components/responses/notAuthorizedResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/inventory/alternative-title-types:
get:
tags:
- alternativeTitleTypes
operationId: getAlternativeTitleTypes
summary: Retrieve collection of alternative-title-type items.
description: Retrieve collection of alternative-title-type items.
parameters:
- $ref: '#/components/parameters/x-okapi-tenant-header'
- $ref: '#/components/parameters/x-okapi-token-header'
- $ref: '#/components/parameters/request-query-parameters'
responses:
'200':
description: |
Calls the mod-inventory-storage GET /alternative-title-types API and returns the result as-is. \
The example of response: https://github.com/folio-org/mod-inventory-storage/blob/master/ramls/examples/alternativetitletypes.json
content:
application/json:
schema:
type: string
'400':
$ref: '#/components/responses/badRequestResponse'
'401':
$ref: '#/components/responses/notAuthorizedResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/inventory/locations/{locationId}:
get:
tags:
- locations
operationId: getLocationById
summary: Retrieve location information by id.
description: Retrieve location information by id.
parameters:
- $ref: '#/components/parameters/x-okapi-tenant-header'
- $ref: '#/components/parameters/x-okapi-token-header'
- $ref: '#/components/parameters/location-id'
responses:
'200':
description: |
Calls the mod-inventory-storage GET /locations/{id} API and returns the result as-is. \
The example of response: https://github.com/folio-org/mod-inventory-storage/blob/master/ramls/locinst.json
content:
application/json:
schema:
type: string
'404':
$ref: '#/components/responses/notFoundResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/inventory/location-units/institutions/{institutionId}:
get:
tags:
- locations
operationId: getInstitutionById
summary: Retrieve institution information by id.
description: Retrieve institution information by id.
parameters:
- $ref: '#/components/parameters/x-okapi-tenant-header'
- $ref: '#/components/parameters/x-okapi-token-header'
- $ref: '#/components/parameters/institution-id'
responses:
'200':
description: |
Calls the mod-inventory-storage GET /location-units/institutions/{institutionId} API and returns the result as-is. \
The example of response: https://github.com/folio-org/mod-inventory-storage/blob/master/ramls/locinst.json
content:
application/json:
schema:
type: string
'404':
$ref: '#/components/responses/notFoundResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/inventory/location-units/libraries/{libraryId}:
get:
tags:
- locations
operationId: getLibraryById
summary: Retrieve library information by id.
description: Retrieve library information by id.
parameters:
- $ref: '#/components/parameters/x-okapi-tenant-header'
- $ref: '#/components/parameters/x-okapi-token-header'
- $ref: '#/components/parameters/library-id'
responses:
'200':
description: |
Calls the mod-inventory-storage GET /location-units/libraries/{libraryId} API and returns the result as-is. \
The example of response: https://github.com/folio-org/mod-inventory-storage/blob/master/ramls/loclib.json
content:
application/json:
schema:
type: string
'404':
$ref: '#/components/responses/notFoundResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/inventory/location-units/campuses/{campusId}:
get:
tags:
- locations
operationId: getCampusById
summary: Retrieve campus information by id.
description: Retrieve campus information by id.
parameters:
- $ref: '#/components/parameters/x-okapi-tenant-header'
- $ref: '#/components/parameters/x-okapi-token-header'
- $ref: '#/components/parameters/campus-id'
responses:
'200':
description: |
Calls the mod-inventory-storage GET /location-units/campuses/{campusId} API and returns the result as-is. \
https://github.com/folio-org/mod-inventory-storage/blob/master/ramls/loccamp.json
content:
application/json:
schema:
type: string
'404':
$ref: '#/components/responses/notFoundResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/inventory/material-types:
get:
tags:
- materialTypes
operationId: getMaterialTypes
summary: Retrieve collection of material type items.
description: Retrieve collection of material type items.
parameters:
- $ref: '#/components/parameters/x-okapi-tenant-header'
- $ref: '#/components/parameters/x-okapi-token-header'
- $ref: '#/components/parameters/request-query-parameters'
responses:
'200':
description: |
Calls the mod-inventory-storage GET /material-types API and returns the result as-is. \
The example of response: https://github.com/folio-org/mod-inventory-storage/blob/master/ramls/examples/materialtypes.json
content:
application/json:
schema:
type: string
'400':
$ref: '#/components/responses/badRequestResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/inventory/material-types/{materialTypeId}:
get:
tags:
- materialTypes
operationId: getMaterialTypeById
summary: Retrieve material type information by id.
description: Retrieve material type information by id.
parameters:
- $ref: '#/components/parameters/x-okapi-tenant-header'
- $ref: '#/components/parameters/x-okapi-token-header'
- $ref: '#/components/parameters/material-type-id'
responses:
'200':
description: |
Calls the mod-inventory-storage GET /material-types{materialTypeId} API and returns the result as-is. \
https://github.com/folio-org/mod-inventory-storage/blob/master/ramls/materialtype.json
content:
application/json:
schema:
type: string
'404':
$ref: '#/components/responses/notFoundResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/inventory/source-records/{instanceId}:
get:
tags:
- sourceRecords
operationId: getSourceRecords
summary: Retrieve source records by id from folio mod-source-record-storage
description: Retrieve source records by id from folio mod-source-record-storage
parameters:
- $ref: '#/components/parameters/x-okapi-tenant-header'
- $ref: '#/components/parameters/x-okapi-token-header'
- $ref: '#/components/parameters/instance-id'
responses:
'200':
description: |
Calls the mod-source-record-storage GET source-storage/records/{id} API and returns the result as-is. \
The example of response: https://github.com/folio-org/data-import-raml-storage/blob/e7f0fef18a5a00925e04a79bbbe5b6c82ae0df9c/schemas/dto/sourceRecord.json
content:
application/json:
schema:
type: string
'400':
$ref: '#/components/responses/badRequestResponse'
'404':
$ref: '#/components/responses/notFoundResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/inventory/authorities/source-records/{authorityId}:
get:
tags:
- authoritySourceRecords
operationId: getAuthoritySourceRecords
summary: Retrieve authority source records by id from folio mod-source-record-storage
description: Retrieve authority source records by id from folio mod-source-record-storage
parameters:
- $ref: '#/components/parameters/x-okapi-tenant-header'
- $ref: '#/components/parameters/x-okapi-token-header'
- $ref: '#/components/parameters/authority-id'
responses:
'200':
description: |
Calls the mod-source-record-storage GET source-storage/records/{id} API and returns the result as-is. \
The example of response: https://github.com/folio-org/data-import-raml-storage/blob/e7f0fef18a5a00925e04a79bbbe5b6c82ae0df9c/schemas/dto/sourceRecord.json
content:
application/json:
schema:
type: string
'400':
$ref: '#/components/responses/badRequestResponse'
'404':
$ref: '#/components/responses/notFoundResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/inventory/download-authority/{authorityId}:
get:
description: Download single authority record by id in specified format
operationId: downloadAuthorityById
parameters:
- $ref: '#/components/parameters/authority-id'
- $ref: '#/components/parameters/suppress999ff'
- $ref: '#/components/parameters/x-okapi-tenant-header'
- $ref: '#/components/parameters/x-okapi-token-header'
- name: utf
in: query
description: "Specify whether to encode the file in UTF-8."
required: false
schema:
type: boolean
default: true
responses:
'200':
description: A file download in binary format
content:
application/octet-stream:
schema:
type: string
format: binary
'404':
$ref: '#/components/responses/notFoundResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/inventory/download-instance/{instanceId}:
get:
description: Download single instance record by id in specified format
operationId: downloadInstanceById
parameters:
- $ref: '#/components/parameters/instance-id'
- $ref: '#/components/parameters/x-okapi-tenant-header'
- $ref: '#/components/parameters/x-okapi-token-header'
- name: utf
in: query
description: "Specify whether to encode the file in UTF-8."
required: false
schema:
type: boolean
default: true
responses:
'200':
description: A file download in binary format
content:
application/octet-stream:
schema:
type: string
format: binary
'404':
$ref: '#/components/responses/notFoundResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/inventory/subject-sources:
get:
tags:
- subjectSources
operationId: getSubjectSources
summary: Retrieve collection of subject sources.
description: Retrieve collection of subject sources.
parameters:
- $ref: '#/components/parameters/x-okapi-tenant-header'
- $ref: '#/components/parameters/x-okapi-token-header'
- $ref: '#/components/parameters/request-query-parameters'
responses:
'200':
description: |
Calls the mod-inventory-storage GET /subject-sources API and returns the result as-is. \
The example of response: https://github.com/folio-org/mod-inventory-storage/blob/master/ramls/examples/subject-sources.json
content:
application/json:
schema:
type: string
'400':
$ref: '#/components/responses/badRequestResponse'
'401':
$ref: '#/components/responses/notAuthorizedResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/inventory/subject-types:
get:
tags:
- subjectTypes
operationId: getSubjectTypes
summary: Retrieve collection of subject types.
description: Retrieve collection of subject types.
parameters:
- $ref: '#/components/parameters/x-okapi-tenant-header'
- $ref: '#/components/parameters/x-okapi-token-header'
- $ref: '#/components/parameters/request-query-parameters'
responses:
'200':
description: |
Calls the mod-inventory-storage GET /subject-types API and returns the result as-is. \
The example of response: https://github.com/folio-org/mod-inventory-storage/blob/master/ramls/examples/subject-types.json
content:
application/json:
schema:
type: string
'400':
$ref: '#/components/responses/badRequestResponse'
'401':
$ref: '#/components/responses/notAuthorizedResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
/inventory/holdings-note-types:
get:
tags:
- holdingsNoteTypes
operationId: getHoldingsNoteTypes
summary: Retrieve collection of holdings note types.
description: Retrieve collection of holdings note types.
parameters:
- $ref: '#/components/parameters/x-okapi-tenant-header'
- $ref: '#/components/parameters/x-okapi-token-header'
- $ref: '#/components/parameters/request-query-parameters'
responses:
'200':
description: |
Calls the mod-inventory-storage GET /holding-note-types API and returns the result as-is. \
The example of response: https://github.com/folio-org/mod-inventory-storage/blob/master/ramls/examples/holdings-note-types/holdingsNoteTypes.json
content:
application/json:
schema:
type: string
'400':
$ref: '#/components/responses/badRequestResponse'
'401':
$ref: '#/components/responses/notAuthorizedResponse'
'500':
$ref: '#/components/responses/internalServerErrorResponse'
components:
schemas:
errorResponse:
$ref: './schemas/error.json#/Error'
requestQueryParameters:
$ref: './schemas/requestQueryParameters.json#/RequestQueryParameters'
userTenants:
$ref: './schemas/userTenants.json'
facetResponse:
$ref: './schemas/facetResponse.json'
holdingResponse:
$ref: './schemas/holdingResponse.json'
tenants:
$ref: './schemas/tenantCollection.json'
parameters:
request-query-parameters:
name: requestQueryParameters
in: query
description: Request query parameters(query, limit, offset and etc.) as object.
schema:
$ref: '#/components/schemas/requestQueryParameters'
x-okapi-tenant-header:
name: x-okapi-tenant
in: header
description: x-okapi-tenant header value
required: false
schema:
type: string
x-okapi-url-header:
name: x-okapi-url
in: header
description: x-okapi-url header value
required: false
schema:
type: string
x-okapi-token-header:
name: x-okapi-token
in: header
description: x-okapi-token header value
required: false
schema:
type: string
lang:
name: lang
in: query
description: Requested language
required: false
example: en
schema:
pattern: "[a-zA-Z]{2}"
default: en
type: string
withBoundedItems:
name: withBoundedItems
in: query
description: Retrieve bounded items when value is true
required: false
schema:
default: false
type: boolean
instance-id:
name: instanceId
in: path
description: Inventory Instance's UUID
required: true
schema:
type: string
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$'
authority-id:
name: authorityId
in: path
description: Authority's UUID
required: true
schema:
type: string
pattern: '^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$'
location-id:
name: locationId
in: path
description: Location id
required: true
schema:
type: string
institution-id:
name: institutionId
in: path
description: Location institution id
required: true
schema:
type: string
library-id:
name: libraryId
in: path
description: Location library id
required: true
schema:
type: string
campus-id:
name: campusId
in: path
description: Library campus id
required: true
schema:
type: string
material-type-id:
name: materialTypeId
in: path
description: Material type id
required: true
schema:
type: string
suppress999ff:
name: suppress999ff
in: query
description: "Specify whether to suppress 999ff field."
required: false
schema:
type: boolean
default: false
responses: