-
Notifications
You must be signed in to change notification settings - Fork 8
/
remote-storage.yaml
904 lines (902 loc) · 26.1 KB
/
remote-storage.yaml
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
openapi: 3.0.0
info:
title: Remote storages API
version: v1
servers:
- url: /remote-storage/
paths:
/configurations:
get:
responses:
'200':
description: ""
content:
application/json:
schema:
$ref: "#/components/schemas/storageConfigurations"
'500':
description: Internal server error
content:
text/plain:
schema:
type: string
example: Internal server error
description: Get a list of remote storage configurations
operationId: getConfigurations
parameters:
- $ref: "#/components/parameters/trait_pageable_offset"
- $ref: "#/components/parameters/trait_pageable_limit"
- $ref: "#/components/parameters/trait_queryable_query"
post:
responses:
'201':
description: ""
content:
application/json:
schema:
$ref: "#/components/schemas/storageConfiguration"
'400':
description: Bad request
content:
text/plain:
schema:
type: string
example: Bad request
'422':
$ref: "#/components/responses/trait_validate_422"
'500':
description: Internal server error
content:
text/plain:
schema:
type: string
example: Internal server error
description: Add new remote storage configuration
operationId: postConfiguration
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/storageConfiguration"
required: true
/configurations/{configId}:
get:
responses:
'200':
description: ""
content:
application/json:
schema:
$ref: "#/components/schemas/storageConfiguration"
'404':
description: Configuration not found
content:
text/plain:
schema:
type: string
example: Configuration not found
'500':
description: Internal server error
content:
text/plain:
schema:
type: string
example: Internal server error
operationId: getConfigurationById
put:
responses:
'204':
description: No content
content:
text/plain:
schema:
type: string
example: No content
'400':
description: Bad request
content:
text/plain:
schema:
type: string
example: Bad request
'404':
description: Configuration not found
content:
text/plain:
schema:
type: string
example: Configuration not found
'500':
description: Internal server error
content:
text/plain:
schema:
type: string
example: Internal server error
description: Change the remote storage configuration
operationId: putConfiguration
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/storageConfiguration"
required: true
delete:
responses:
'204':
description: No content
content:
text/plain:
schema:
type: string
example: No content
'404':
description: Configuration not found
content:
text/plain:
schema:
type: string
example: Configuration not found
'500':
description: Internal server error
content:
text/plain:
schema:
type: string
example: Internal server error
operationId: deleteConfigurationById
parameters:
- name: configId
in: path
required: true
schema:
$ref: "#/components/schemas/uuid"
/mappings:
post:
responses:
'201':
description: ""
content:
application/json:
schema:
$ref: "#/components/schemas/remoteLocationConfigurationMapping"
'400':
description: Bad request
content:
text/plain:
schema:
type: string
example: Bad request
'422':
$ref: "#/components/responses/trait_validate_422"
'500':
description: Internal server error
content:
text/plain:
schema:
type: string
example: Internal server error
description: Add/update a mapping between remote and Folio locations
operationId: postMapping
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/remoteLocationConfigurationMapping"
required: true
get:
responses:
'200':
description: ""
content:
application/json:
schema:
$ref: "#/components/schemas/remoteLocationConfigurationMappings"
'500':
description: Internal server error
content:
text/plain:
schema:
type: string
example: Internal server error
description: Get a list of location mappings
operationId: getMappings
parameters:
- $ref: "#/components/parameters/trait_queryable_final_location_id"
- $ref: "#/components/parameters/trait_queryable_configuration_id"
- $ref: "#/components/parameters/trait_pageable_offset"
- $ref: "#/components/parameters/trait_pageable_limit"
/mappings/{folioLocationId}:
get:
responses:
'200':
description: ""
content:
application/json:
schema:
$ref: "#/components/schemas/remoteLocationConfigurationMapping"
'404':
description: Mapping not found
content:
text/plain:
schema:
type: string
example: Mapping not found
'500':
description: Internal server error
content:
text/plain:
schema:
type: string
example: Internal server error
operationId: getMappingById
delete:
responses:
'204':
description: No content
content:
text/plain:
schema:
type: string
example: No content
'404':
description: Mapping not found
content:
text/plain:
schema:
type: string
example: Mapping not found
'500':
description: Internal server error
content:
text/plain:
schema:
type: string
example: Internal server error
operationId: deleteMappingById
parameters:
- name: folioLocationId
in: path
required: true
schema:
$ref: "#/components/schemas/uuid"
/extended-mappings:
post:
responses:
'201':
description: ""
content:
application/json:
schema:
$ref: "#/components/schemas/extendedRemoteLocationConfigurationMapping"
'400':
description: Bad request
content:
text/plain:
schema:
type: string
example: Bad request
'422':
$ref: "#/components/responses/trait_validate_422"
'500':
description: Internal server error
content:
text/plain:
schema:
type: string
example: Internal server error
description: Add/update a mapping between remote and Folio locations
operationId: postExtendedRemoteLocationConfigurationMapping
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/extendedRemoteLocationConfigurationMapping"
required: true
get:
responses:
'200':
description: ""
content:
application/json:
schema:
$ref: "#/components/schemas/extendedRemoteLocationConfigurationMappings"
'500':
description: Internal server error
content:
text/plain:
schema:
type: string
example: Internal server error
description: Get a list of location mappings
operationId: getExtendedRemoteLocationConfigurationMappings
parameters:
- $ref: "#/components/parameters/trait_queryable_final_location_id"
- $ref: "#/components/parameters/trait_queryable_configuration_id"
- $ref: "#/components/parameters/trait_queryable_original_location_id"
- $ref: "#/components/parameters/trait_pageable_offset"
- $ref: "#/components/parameters/trait_pageable_limit"
/extended-mappings/{finalLocationId}:
get:
responses:
'200':
description: ""
content:
application/json:
schema:
$ref: "#/components/schemas/extendedRemoteLocationConfigurationMappings"
'404':
description: Mapping not found
content:
text/plain:
schema:
type: string
example: Mapping not found
'500':
description: Internal server error
content:
text/plain:
schema:
type: string
example: Internal server error
operationId: getExtendedRemoteLocationConfigurationMappingsById
parameters:
- name: finalLocationId
in: path
required: true
schema:
$ref: "#/components/schemas/uuid"
/extended-mappings/{remoteStorageConfigurationId}/{originalLocationId}:
delete:
responses:
'204':
description: No content
content:
text/plain:
schema:
type: string
example: No content
'404':
description: Mapping not found
content:
text/plain:
schema:
type: string
example: Mapping not found
'500':
description: Internal server error
content:
text/plain:
schema:
type: string
example: Internal server error
operationId: deleteOriginalLocationByRemoteStorageConfigurationIdAndOriginalLocationId
parameters:
- name: remoteStorageConfigurationId
in: path
required: true
schema:
$ref: "#/components/schemas/uuid"
- name: originalLocationId
in: path
required: true
schema:
$ref: "#/components/schemas/uuid"
/extended-mappings/locations:
get:
responses:
'200':
description: ""
content:
application/json:
schema:
$ref: "#/components/schemas/extendedRemoteLocationConfigurationMappings"
'500':
description: Internal server error
content:
text/plain:
schema:
type: string
example: Internal server error
description: Get a list of location mappings
operationId: getExtendedRemoteLocationConfigurationMappingsLocations
parameters:
- $ref: "#/components/parameters/trait_queryable_configuration_id"
- $ref: "#/components/parameters/trait_pageable_offset"
- $ref: "#/components/parameters/trait_pageable_limit"
/providers:
get:
responses:
'200':
description: ""
content:
application/json:
schema:
$ref: "#/components/schemas/providers"
'500':
description: Internal server error
content:
text/plain:
schema:
type: string
example: Internal server error
description: Get a list of providers
operationId: getProviders
/accessions:
post:
responses:
'201':
description: ""
content:
application/json:
schema:
$ref: "#/components/schemas/accessionQueue"
'400':
description: Bad request
content:
text/plain:
schema:
type: string
example: Bad request
'422':
$ref: "#/components/responses/trait_validate_422"
'500':
description: Internal server error
content:
text/plain:
schema:
type: string
example: Internal server error
description: Perform remote storage initiated accession
operationId: postAccession
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/accessionRequest"
required: true
get:
responses:
'200':
description: ""
content:
application/json:
schema:
$ref: "#/components/schemas/accessionQueues"
'500':
description: Internal server error
content:
text/plain:
schema:
type: string
example: Internal server error
description: Get a list of accession records
operationId: getAccessions
parameters:
- $ref: "#/components/parameters/trait_queryable_accessioned"
- $ref: "#/components/parameters/trait_queryable_storage_id"
- $ref: "#/components/parameters/trait_queryable_created_date"
- $ref: "#/components/parameters/trait_pageable_offset"
- $ref: "#/components/parameters/trait_pageable_limit"
/accessions/id/{accessionId}:
put:
responses:
'204':
description: Set accession date time
content:
text/plain:
schema:
type: string
example: No content
description: Set accessioned date by accession queue id
operationId: setAccessionedById
parameters:
- name: accessionId
in: path
required: true
schema:
$ref: "#/components/schemas/uuid"
/accessions/barcode/{barcode}:
put:
responses:
'204':
description: Set accession date time
content:
text/plain:
schema:
type: string
example: No content
description: Set accessioned date by item barcode
operationId: setAccessionedByBarcode
parameters:
- name: barcode
in: path
required: true
schema:
type: string
/pub-sub-handlers/log-record-event:
description: "Handler for PubSub event"
post:
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/pubSubEvent"
required: true
responses:
'204':
description: No content
content:
text/plain:
schema:
type: string
example: No content
/retrievals:
get:
responses:
'200':
description: ""
content:
application/json:
schema:
$ref: "#/components/schemas/retrievalQueues"
'500':
description: Internal server error
content:
text/plain:
schema:
type: string
example: Internal server error
description: Get a list of retrieval records
operationId: getRetrievals
parameters:
- $ref: "#/components/parameters/trait_queryable_retrieved"
- $ref: "#/components/parameters/trait_queryable_storage_id"
- $ref: "#/components/parameters/trait_queryable_created_date"
- $ref: "#/components/parameters/trait_pageable_offset"
- $ref: "#/components/parameters/trait_pageable_limit"
/retrievals/id/{retrievalId}:
put:
responses:
'204':
description: Set retrieve date time
content:
text/plain:
schema:
type: string
example: No content
description: Set retrieval date by retrieval queue id
operationId: setRetrievedById
parameters:
- name: retrievalId
in: path
required: true
schema:
$ref: "#/components/schemas/uuid"
/retrievals/barcode/{barcode}:
put:
responses:
'204':
description: Set retrieve date time
content:
text/plain:
schema:
type: string
example: No content
description: Set retrieved date by item barcode
operationId: setRetrievedByBarcode
parameters:
- name: barcode
in: path
required: true
schema:
type: string
/retrieve/{remoteStorageConfigurationId}/checkInItem:
post:
responses:
'200':
description: Checked-in the item
content:
text/plain:
schema:
type: string
'400':
description: Bad request
content:
text/plain:
schema:
type: string
example: Bad request
'422':
$ref: "#/components/responses/trait_validate_422"
'500':
description: Internal server error
content:
text/plain:
schema:
type: string
example: Internal server error
description: Check-in the item in the primary service by barcode value
operationId: checkInItemByBarcodeWithRemoteStorageConfigurationId
parameters:
- name: remoteStorageConfigurationId
in: path
required: true
schema:
$ref: "#/components/schemas/uuid"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/checkInItem"
required: true
/retrieve/{remoteStorageConfigurationId}/checkInItemByHoldId:
post:
responses:
'200':
description: Checked-in the item by holdId
content:
text/plain:
schema:
type: string
'400':
description: Bad request
content:
text/plain:
schema:
type: string
example: Bad request
'422':
$ref: "#/components/responses/trait_validate_422"
'500':
description: Internal server error
content:
text/plain:
schema:
type: string
example: Internal server error
description: Check-in the item in the primary service by barcode value
operationId: checkInItemByHoldIdWithRemoteStorageConfigurationId
parameters:
- name: remoteStorageConfigurationId
in: path
required: true
schema:
type: string
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/checkInItemByHoldId"
required: true
/return/{remoteStorageConfigurationId}:
post:
responses:
'200':
description: Return the item by barcode
content:
application/json:
schema:
$ref: "#/components/schemas/returnItemResponse"
'500':
description: Internal server error
content:
text/plain:
schema:
type: string
example: Internal server error
description: Return the item by barcode
operationId: returnItemByBarcode
parameters:
- name: remoteStorageConfigurationId
in: path
required: true
schema:
type: string
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/checkInItem"
required: true
/items/barcode/{barcode}/markAsMissing:
post:
responses:
'201':
description: Mark item as missing
content:
text/plain:
schema:
type: string
'400':
description: Bad request
content:
text/plain:
schema:
type: string
example: Bad request
'500':
description: Internal server error
content:
text/plain:
schema:
type: string
example: Internal server error
description: Mark item as missing
operationId: markItemAsMissingByBarcode
parameters:
- name: barcode
in: path
required: true
schema:
type: string
components:
responses:
trait_validate_422:
description: Validation errors
content:
application/json:
example: examples/errors.sample
schema:
$ref: "#/components/schemas/errors"
schemas:
accessionQueue:
$ref: schemas/accessionQueue.json
accessionQueues:
allOf:
- $ref: schemas/baseCollection.json
- type: object
properties:
accessions:
type: array
items:
$ref: "#/components/schemas/accessionQueue"
retrievalQueue:
$ref: schemas/retrievalQueue.json
retrievalQueues:
allOf:
- $ref: schemas/baseCollection.json
- type: object
properties:
retrievals:
type: array
items:
$ref: "#/components/schemas/retrievalQueue"
storageConfiguration:
$ref: schemas/storageConfiguration.json
storageConfigurations:
allOf:
- $ref: schemas/baseCollection.json
- type: object
properties:
configurations:
type: array
items:
$ref: "#/components/schemas/storageConfiguration"
required:
- configurations
extendedRemoteLocationConfigurationMapping:
$ref: schemas/extendedRemoteLocationConfigurationMapping.json
extendedRemoteLocationConfigurationMappings:
allOf:
- $ref: schemas/baseCollection.json
- type: object
properties:
mappings:
type: array
items:
$ref: "#/components/schemas/extendedRemoteLocationConfigurationMapping"
required:
- mappings
remoteLocationConfigurationMapping:
$ref: schemas/remoteLocationConfigurationMapping.json
remoteLocationConfigurationMappings:
allOf:
- $ref: schemas/baseCollection.json
- type: object
properties:
mappings:
type: array
items:
$ref: "#/components/schemas/remoteLocationConfigurationMapping"
required:
- mappings
errors:
$ref: schemas/errors.json
providers:
type: array
items:
$ref: schemas/provider.json
uuid:
$ref: schemas/uuid.json
checkInItem:
$ref: schemas/checkInItem.json
checkInItemByHoldId:
$ref: schemas/checkInItemByHoldId.json
returnItemResponse:
$ref: schemas/returnItemResponse.json
pubSubEvent:
$ref: schemas/pubSubEvent.json
accessionRequest:
$ref: schemas/accessionRequest.json
item:
$ref: schemas/item.json
instance:
$ref: schemas/instance.json
holdingsRecord:
$ref: schemas/holdingsRecord.json
itemsMove:
$ref: schemas/itemsMove.json
identifierType:
$ref: schemas/identifierType.json
contributorType:
$ref: schemas/contributorType.json
itemNoteType:
$ref: schemas/item-note-type.json
parameters:
trait_queryable_final_location_id:
name: finalLocationId
in: query
description: Final location id
schema:
type: string
trait_queryable_original_location_id:
name: originalLocationId
in: query
description: Original location id
schema:
type: string
trait_queryable_configuration_id:
name: remoteStorageConfigurationId
in: query
description: Remote storage configuration id
schema:
type: string
trait_queryable_storage_id:
name: storageId
in: query
description: Remote storage id
schema:
type: string
trait_queryable_accessioned:
name: accessioned
in: query
description: Flag to indicate, that accession queue record was accessioned and has accesion date
schema:
type: boolean
trait_queryable_retrieved:
name: retrieved
in: query
description: Flag to indicate, that retrievals queue record was retrieved and has retrievals date
schema:
type: boolean
trait_queryable_created_date:
name: createdDate
in: query
description: Date of accession queue record creation
schema:
type: string
trait_queryable_query:
name: query
in: query
description: A query string to filter rules based on matching criteria in fields.
schema:
type: string
trait_pageable_offset:
name: offset
in: query
description: Skip over a number of elements by specifying an offset value for the query
schema:
default: 0
minimum: 0
maximum: 2147483647
type: integer
trait_pageable_limit:
name: limit
in: query
description: Limit the number of elements returned in the response
schema:
default: 10
minimum: 0
maximum: 2147483647
type: integer