-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsettings.yaml
More file actions
1210 lines (1210 loc) · 42.9 KB
/
settings.yaml
File metadata and controls
1210 lines (1210 loc) · 42.9 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: INN-Reach Settings API
version: v1
servers:
- url: /inn-reach/
paths:
/central-servers:
post:
tags:
- central-servers
responses:
'201':
description: Created
content:
application/json:
schema:
$ref: "#/components/schemas/centralServerDTO"
'400':
$ref: "api-common.yaml#/components/responses/trait_response_validation_400"
'409':
$ref: "api-common.yaml#/components/responses/trait_response_409"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
description: Add new central server
operationId: postCentralServer
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/centralServerDTO"
required: true
get:
tags:
- central-servers
responses:
'200':
description: "OK"
content:
application/json:
schema:
$ref: "#/components/schemas/centralServersDTO"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
description: Get a list of central servers
operationId: getCentralServers
parameters:
- $ref: "api-common.yaml#/components/parameters/trait_pageable_offset"
- $ref: "api-common.yaml#/components/parameters/trait_pageable_limit"
/central-servers/{centralServerId}:
get:
tags:
- central-servers
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/centralServerDTO"
'404':
$ref: "api-common.yaml#/components/responses/trait_response_404"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
description: Get central server by id
operationId: getCentralServerById
parameters:
- $ref: 'api-common.yaml#/components/parameters/id'
put:
tags:
- central-servers
responses:
'204':
description: No content
'400':
$ref: "api-common.yaml#/components/responses/trait_response_validation_400"
'404':
$ref: "api-common.yaml#/components/responses/trait_response_404"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
description: Update central server
operationId: updateCentralServer
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/centralServerDTO"
required: true
parameters:
- $ref: 'api-common.yaml#/components/parameters/id'
delete:
tags:
- central-servers
responses:
'204':
description: No content
'404':
$ref: "api-common.yaml#/components/responses/trait_response_404"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
description: Delete central server
operationId: deleteCentralServer
parameters:
- $ref: 'api-common.yaml#/components/parameters/id'
/central-servers/{centralServerId}/material-type-mappings:
get:
description: Get a list of material type mappings for the given central server
operationId: getMaterialTypeMappingsByServerId
tags:
- material-type-mappings
responses:
'200':
description: "OK"
content:
application/json:
schema:
$ref: "#/components/schemas/materialTypeMappingsDTO"
'400':
$ref: "api-common.yaml#/components/responses/trait_response_malformed_query_400"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
parameters:
- $ref: "api-common.yaml#/components/parameters/centralServerId"
- $ref: "api-common.yaml#/components/parameters/trait_pageable_offset"
- $ref: "api-common.yaml#/components/parameters/trait_pageable_limit"
post:
description: Add new material type mapping associated with the central server
operationId: postMaterialTypeMapping
tags:
- material-type-mappings
responses:
'201':
description: Material type mapping created
content:
application/json:
schema:
$ref: "#/components/schemas/materialTypeMappingDTO"
'400':
$ref: "api-common.yaml#/components/responses/trait_response_validation_400"
'409':
$ref: "api-common.yaml#/components/responses/trait_response_409"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/materialTypeMappingDTO"
required: true
parameters:
- $ref: "api-common.yaml#/components/parameters/centralServerId"
put:
description: >-
Update (replace) the entire collection of material type mappings
associated with the central server
operationId: updateMaterialTypeMappings
tags:
- material-type-mappings
responses:
'204':
description: Collection successfully updated
'400':
$ref: "api-common.yaml#/components/responses/trait_response_validation_400"
'409':
$ref: "api-common.yaml#/components/responses/trait_response_409"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/materialTypeMappingsDTO"
required: true
parameters:
- $ref: "api-common.yaml#/components/parameters/centralServerId"
/central-servers/{centralServerId}/material-type-mappings/{id}:
get:
description: Get material type mapping by id
operationId: getMaterialTypeMappingById
tags:
- material-type-mappings
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/materialTypeMappingDTO"
'404':
$ref: "api-common.yaml#/components/responses/trait_response_404"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
parameters:
- $ref: "api-common.yaml#/components/parameters/centralServerId"
- $ref: "api-common.yaml#/components/parameters/id"
put:
description: Update material type mapping
operationId: updateMaterialTypeMapping
tags:
- material-type-mappings
responses:
'204':
description: No content
'400':
$ref: "api-common.yaml#/components/responses/trait_response_validation_400"
'404':
$ref: "api-common.yaml#/components/responses/trait_response_404"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/materialTypeMappingDTO"
required: true
parameters:
- $ref: "api-common.yaml#/components/parameters/centralServerId"
- $ref: "api-common.yaml#/components/parameters/id"
delete:
description: Delete material type mapping
operationId: deleteMaterialTypeMapping
tags:
- material-type-mappings
responses:
'204':
description: No content
'404':
$ref: "api-common.yaml#/components/responses/trait_response_404"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
parameters:
- $ref: "api-common.yaml#/components/parameters/centralServerId"
- $ref: "api-common.yaml#/components/parameters/id"
/locations:
post:
description: Add new InnReach location
operationId: postInnReachLocation
tags:
- locations
responses:
'201':
description: Created
content:
application/json:
schema:
$ref: "#/components/schemas/innReachLocationDTO"
'400':
$ref: "api-common.yaml#/components/responses/trait_response_validation_400"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/innReachLocationDTO"
required: true
get:
description: Get a list of InnReach locations
operationId: getLocations
tags:
- locations
responses:
'200':
description: "OK"
content:
application/json:
schema:
$ref: "#/components/schemas/innReachLocationsDTO"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
parameters:
- $ref: "api-common.yaml#/components/parameters/trait_pageable_offset"
- $ref: "api-common.yaml#/components/parameters/trait_pageable_limit"
/locations/{locationId}:
get:
description: Get InnReach location by id
operationId: getLocationById
tags:
- locations
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/innReachLocationDTO"
'404':
$ref: "api-common.yaml#/components/responses/trait_response_404"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
parameters:
- $ref: 'api-common.yaml#/components/parameters/id'
put:
description: Update InnReach location
operationId: updateLocation
tags:
- locations
responses:
'204':
description: No content
'400':
$ref: "api-common.yaml#/components/responses/trait_response_validation_400"
'404':
$ref: "api-common.yaml#/components/responses/trait_response_404"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/innReachLocationDTO"
required: true
parameters:
- $ref: 'api-common.yaml#/components/parameters/id'
delete:
description: Delete InnReach location
operationId: deleteLocation
tags:
- locations
responses:
'204':
description: No content
'404':
$ref: "api-common.yaml#/components/responses/trait_response_404"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
parameters:
- $ref: 'api-common.yaml#/components/parameters/id'
/central-servers/{centralServerId}/libraries/location-mappings/:
get:
description: Get a list of library to Inn-Reach location mappings for the given central server
operationId: getLibraryMappingsByServerId
tags:
- library-mappings
responses:
'200':
description: "OK"
content:
application/json:
schema:
$ref: "#/components/schemas/libraryMappingsDTO"
'400':
$ref: "api-common.yaml#/components/responses/trait_response_malformed_query_400"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
parameters:
- $ref: "api-common.yaml#/components/parameters/centralServerId"
- $ref: "api-common.yaml#/components/parameters/trait_pageable_offset"
- $ref: "api-common.yaml#/components/parameters/trait_pageable_limit"
put:
description: >-
Update (replace) the entire collection of library to Inn-Reach location mappings
associated with the central server
operationId: putLibraryMappings
tags:
- library-mappings
responses:
'204':
description: Collection successfully updated
'400':
$ref: "api-common.yaml#/components/responses/trait_response_validation_400"
'409':
$ref: "api-common.yaml#/components/responses/trait_response_409"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/libraryMappingsDTO"
required: true
parameters:
- $ref: "api-common.yaml#/components/parameters/centralServerId"
/central-servers/{centralServerId}/libraries/{libraryId}/locations/location-mappings/:
get:
description: Get a list of library location to Inn-Reach location mappings for the given central server
operationId: getLocationMappingsByServerId
tags:
- location-mappings
responses:
'200':
description: "OK"
content:
application/json:
schema:
$ref: "#/components/schemas/locationMappingsDTO"
'400':
$ref: "api-common.yaml#/components/responses/trait_response_malformed_query_400"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
parameters:
- $ref: "api-common.yaml#/components/parameters/centralServerId"
- $ref: "#/components/parameters/libraryId"
- $ref: "api-common.yaml#/components/parameters/trait_pageable_offset"
- $ref: "api-common.yaml#/components/parameters/trait_pageable_limit"
put:
description: >-
Update (replace) the entire collection of library location to Inn-Reach location mappings
associated with the central server
operationId: putLocationMappings
tags:
- location-mappings
responses:
'204':
description: Collection successfully updated
'400':
$ref: "api-common.yaml#/components/responses/trait_response_validation_400"
'409':
$ref: "api-common.yaml#/components/responses/trait_response_409"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/locationMappingsDTO"
required: true
parameters:
- $ref: "api-common.yaml#/components/parameters/centralServerId"
- $ref: "#/components/parameters/libraryId"
/central-servers/{centralServerId}/libraries/locations/location-mappings/:
get:
description: Get a list of libraries locations to Inn-Reach location mappings for the given central server
operationId: getLocationMappingsForAllLibrariesByServerId
tags:
- location-mappings
responses:
'200':
description: "OK"
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/locationMappingDTO"
'400':
$ref: "api-common.yaml#/components/responses/trait_response_malformed_query_400"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
parameters:
- $ref: "api-common.yaml#/components/parameters/centralServerId"
/central-servers/{centralServerId}/contribution-criteria:
get:
description: Get Contribution Criteria by Central Server id
operationId: getCriteriaByServerId
tags:
- contribution-criteria
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/contributionCriteriaDTO"
'404':
$ref: "api-common.yaml#/components/responses/trait_response_404"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
parameters:
- $ref: "api-common.yaml#/components/parameters/centralServerId"
post:
description: Create new contribution criteria for Central Server
operationId: postContributionCriteria
tags:
- contribution-criteria
responses:
'201':
description: Created
content:
application/json:
schema:
$ref: "#/components/schemas/contributionCriteriaDTO"
'400':
$ref: "api-common.yaml#/components/responses/trait_response_validation_400"
'409':
$ref: "api-common.yaml#/components/responses/trait_response_409"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/contributionCriteriaDTO"
required: true
parameters:
- $ref: "api-common.yaml#/components/parameters/centralServerId"
delete:
description: Delete Contribution Criteria Configuration
operationId: deleteCriteria
tags:
- contribution-criteria
responses:
'204':
description: No content
'404':
$ref: "api-common.yaml#/components/responses/trait_response_404"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
parameters:
- $ref: "api-common.yaml#/components/parameters/centralServerId"
put:
description: Update Contribution Criteria Configuration
operationId: updateCriteria
tags:
- contribution-criteria
responses:
'204':
description: No content
'400':
$ref: "api-common.yaml#/components/responses/trait_response_validation_400"
'404':
$ref: "api-common.yaml#/components/responses/trait_response_404"
'409':
$ref: "api-common.yaml#/components/responses/trait_response_409"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/contributionCriteriaDTO"
parameters:
- $ref: "api-common.yaml#/components/parameters/centralServerId"
/authentication:
post:
description: Authenticate InnReach local server key/secret pair
operationId: authenticateLocalServerKeySecret
tags:
- authentication
responses:
'200':
description: OK
'400':
$ref: "api-common.yaml#/components/responses/trait_response_validation_400"
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: "api-common.yaml#/components/schemas/validationErrorsDTO"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/authenticationRequest"
required: true
/central-servers/{centralServerId}/item-contribution-options:
get:
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/itemContributionOptionsConfigurationDTO"
'404':
$ref: "api-common.yaml#/components/responses/trait_response_404"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
description: Get Item Contribution Options Configuration by id
operationId: getItemContributionOptionsConfigurationById
tags:
- item-contribution-options-configuration
parameters:
- $ref: 'api-common.yaml#/components/parameters/centralServerId'
put:
responses:
'204':
description: No content
'400':
$ref: "api-common.yaml#/components/responses/trait_response_validation_400"
'404':
$ref: "api-common.yaml#/components/responses/trait_response_404"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
description: Update Item Contribution Options Configuration
operationId: updateItemContributionOptionsConfiguration
tags:
- item-contribution-options-configuration
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/itemContributionOptionsConfigurationDTO"
parameters:
- $ref: 'api-common.yaml#/components/parameters/centralServerId'
post:
description: Add new item contribution options configuration associated with the central server
operationId: createItemContributionOptionsConfiguration
tags:
- item-contribution-options-configuration
responses:
'201':
description: Item Contribution Options Configuration created
content:
application/json:
schema:
$ref: "#/components/schemas/itemContributionOptionsConfigurationDTO"
'400':
$ref: "api-common.yaml#/components/responses/trait_response_validation_400"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/itemContributionOptionsConfigurationDTO"
required: true
parameters:
- $ref: 'api-common.yaml#/components/parameters/centralServerId'
/central-servers/{centralServerId}/agency-mappings:
get:
description: Get a list of Inn-Reach Agency to FOLIO location mappings for the given central server
operationId: getAgencyMappingsByServerId
tags:
- agency-mappings
responses:
'200':
description: "OK"
content:
application/json:
schema:
$ref: "#/components/schemas/agencyLocationMappingDTO"
'400':
$ref: "api-common.yaml#/components/responses/trait_response_malformed_query_400"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
parameters:
- $ref: "api-common.yaml#/components/parameters/centralServerId"
put:
description: >-
Update (add) INN-Reach Agency to FOLIO location mappings
associated with the central server
operationId: putAgencyMappings
tags:
- agency-mappings
responses:
'204':
description: Mapping successfully updated
'400':
$ref: "api-common.yaml#/components/responses/trait_response_validation_400"
'409':
$ref: "api-common.yaml#/components/responses/trait_response_409"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/agencyLocationMappingDTO"
required: true
parameters:
- $ref: "api-common.yaml#/components/parameters/centralServerId"
/central-servers/{centralServerId}/marc-transformation-options:
get:
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/MARCTransformationOptionsSettingsDTO"
'404':
$ref: "api-common.yaml#/components/responses/trait_response_404"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
description: Get MARC Transformation Options Settings by id
operationId: getMARCTransformationOptionsSettingsById
tags:
- M-A-R-C-transformation-options-settings
parameters:
- $ref: 'api-common.yaml#/components/parameters/centralServerId'
put:
responses:
'204':
description: No content
'400':
$ref: "api-common.yaml#/components/responses/trait_response_validation_400"
'404':
$ref: "api-common.yaml#/components/responses/trait_response_404"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
description: Update MARC Transformation Options Settings
operationId: updateMARCTransformationOptionsSettings
tags:
- M-A-R-C-transformation-options-settings
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/MARCTransformationOptionsSettingsDTO"
parameters:
- $ref: 'api-common.yaml#/components/parameters/centralServerId'
post:
description: Add new MARC Transformation Options Settings associated with the central server
operationId: createMARCTransformationOptionsSettings
tags:
- M-A-R-C-transformation-options-settings
responses:
'201':
description: MARC Transformation Options Settings created
content:
application/json:
schema:
$ref: "#/components/schemas/MARCTransformationOptionsSettingsDTO"
'400':
$ref: "api-common.yaml#/components/responses/trait_response_validation_400"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/MARCTransformationOptionsSettingsDTO"
required: true
parameters:
- $ref: 'api-common.yaml#/components/parameters/centralServerId'
delete:
tags:
- M-A-R-C-transformation-options-settings
responses:
'204':
description: No content
'404':
$ref: "api-common.yaml#/components/responses/trait_response_404"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
description: Delete Marc Transformation Options Settings
operationId: deleteMARCTransformationOptionsSettings
parameters:
- $ref: 'api-common.yaml#/components/parameters/centralServerId'
/central-servers/marc-transformation-options:
get:
tags:
- M-A-R-C-transformation-options-settings
responses:
'200':
description: "OK"
content:
application/json:
schema:
$ref: "#/components/schemas/MARCTransformationOptionsSettingsListDTO"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
description: Get a list of Marc Transformation Options Settings
operationId: getAllMARCTransformationOptionsSettings
parameters:
- $ref: "api-common.yaml#/components/parameters/trait_pageable_offset"
- $ref: "api-common.yaml#/components/parameters/trait_pageable_limit"
/central-servers/{centralServerId}/patron-type-mappings:
get:
tags:
- patron-type-mapping
responses:
'200':
description: "OK"
content:
application/json:
schema:
$ref: "#/components/schemas/patronTypeMappingsDTO"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
description: Get a list of Patron Type Mappings
operationId: getPatronTypeMappingsByServerId
parameters:
- $ref: 'api-common.yaml#/components/parameters/centralServerId'
- $ref: "api-common.yaml#/components/parameters/trait_pageable_offset"
- $ref: "api-common.yaml#/components/parameters/trait_pageable_limit"
put:
description: Update Patron Type Mappings
operationId: updatePatronTypeMappings
tags:
- patron-type-mapping
responses:
'204':
description: No content
'400':
$ref: "api-common.yaml#/components/responses/trait_response_validation_400"
'404':
$ref: "api-common.yaml#/components/responses/trait_response_404"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/patronTypeMappingsDTO"
required: true
parameters:
- $ref: 'api-common.yaml#/components/parameters/centralServerId'
/central-servers/{centralServerId}/marc-record-transformation/{inventoryInstanceId}:
get:
tags:
- M-A-R-C-transformation-records
responses:
'200':
description: "OK"
content:
application/json:
schema:
$ref: "#/components/schemas/TransformedMARCRecordDTO"
'400':
$ref: "api-common.yaml#/components/responses/trait_response_validation_400"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
description: Transform MARC record by Id according to CentralServer settings
operationId: transformMARCRecord
parameters:
- $ref: 'api-common.yaml#/components/parameters/centralServerId'
- $ref: '#/components/parameters/inventoryInstanceId'
/central-servers/{centralServerId}/item-type-mappings:
get:
tags:
- item-type-mappings
responses:
'200':
description: "OK"
content:
application/json:
schema:
$ref: "#/components/schemas/itemTypeMappingsDTO"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
description: Get a list of Item Type Mappings
operationId: getItemTypeMappingsByServerId
parameters:
- $ref: 'api-common.yaml#/components/parameters/centralServerId'
- $ref: "api-common.yaml#/components/parameters/trait_pageable_offset"
- $ref: "api-common.yaml#/components/parameters/trait_pageable_limit"
put:
description: Update Item Type Mappings
operationId: updateItemTypeMappings
tags:
- item-type-mappings
responses:
'204':
description: No content
'400':
$ref: "api-common.yaml#/components/responses/trait_response_validation_400"
'404':
$ref: "api-common.yaml#/components/responses/trait_response_404"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/itemTypeMappingsDTO"
required: true
parameters:
- $ref: 'api-common.yaml#/components/parameters/centralServerId'
/central-servers/{centralServerId}/user-custom-field-mappings:
get:
tags:
- user-custom-field-mappings
responses:
'200':
description: "OK"
content:
application/json:
schema:
$ref: "#/components/schemas/userCustomFieldMappingDTO"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
description: Get a User Custom Field Mapping
operationId: getUserCustomFieldMapping
parameters:
- $ref: 'api-common.yaml#/components/parameters/centralServerId'
put:
description: Update User Custom Field Mapping
operationId: updateUserCustomFieldMapping
tags:
- user-custom-field-mappings
responses:
'204':
description: No content
'400':
$ref: "api-common.yaml#/components/responses/trait_response_validation_400"
'404':
$ref: "api-common.yaml#/components/responses/trait_response_404"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/userCustomFieldMappingDTO"
required: true
parameters:
- $ref: 'api-common.yaml#/components/parameters/centralServerId'
post:
description: Add new User Custom Field Mapping associated with the central server
operationId: createUserCustomFieldMapping
tags:
- user-custom-field-mappings
responses:
'201':
description: User Custom Field Mapping created
content:
application/json:
schema:
$ref: "#/components/schemas/userCustomFieldMappingDTO"
'400':
$ref: "api-common.yaml#/components/responses/trait_response_validation_400"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/userCustomFieldMappingDTO"
required: true
parameters:
- $ref: 'api-common.yaml#/components/parameters/centralServerId'
/central-servers/{centralServerId}/central-patron-type-mappings:
get:
operationId: getCentralPatronTypeMappings
description: Get a list of Central Patron Type Mappings
tags:
- central-patron-type-mappings
responses:
'200':
description: "OK"
content:
application/json:
schema:
$ref: "#/components/schemas/centralPatronTypeMappingsDTO"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
parameters:
- $ref: 'api-common.yaml#/components/parameters/centralServerId'
- $ref: "api-common.yaml#/components/parameters/trait_pageable_offset"
- $ref: "api-common.yaml#/components/parameters/trait_pageable_limit"
put:
description: Update Central Patron Type Mappings
operationId: updateCentralPatronTypeMappings
tags:
- central-patron-type-mappings
responses:
'204':
description: No content
'400':
$ref: "api-common.yaml#/components/responses/trait_response_validation_400"
'404':
$ref: "api-common.yaml#/components/responses/trait_response_404"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/centralPatronTypeMappingsDTO"
required: true
parameters:
- $ref: 'api-common.yaml#/components/parameters/centralServerId'
/central-servers/{centralServerId}/inn-reach-recall-user:
post:
description: Add new Inn-Reach recall user to central server
operationId: saveInnReachRecallUser
tags:
- inn-reach-recall-user
responses:
'201':
description: Inn-Reach recall user saved
content:
application/json:
schema:
$ref: "#/components/schemas/innReachRecallUserDTO"
'400':
$ref: "api-common.yaml#/components/responses/trait_response_validation_400"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/innReachRecallUserDTO"
required: true
parameters:
- $ref: 'api-common.yaml#/components/parameters/centralServerId'
get:
description: Get Inn-Reach Central server recall user
operationId: getCentralServerRecallUser
tags:
- inn-reach-recall-user
responses:
'200':
description: "OK"
content:
application/json:
schema:
$ref: "#/components/schemas/innReachRecallUserDTO"
'500':
$ref: "api-common.yaml#/components/responses/trait_response_500"
parameters:
- $ref: 'api-common.yaml#/components/parameters/centralServerId'
put:
description: Update Inn-Reach Central server recall user