-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackages.raml
More file actions
313 lines (308 loc) · 11 KB
/
Copy pathpackages.raml
File metadata and controls
313 lines (308 loc) · 11 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
#%RAML 1.0
title: mod-kb-ebsco-java
baseUri: https://github.com/folio-org/mod-kb-ebsco-java
protocols: [ HTTPS ]
version: v1
mediaType: "application/vnd.api+json"
documentation:
- title: mod-kb-ebsco-java
content: Implements the eholdings interface using EBSCO KB as backend.
traits:
queriable: !include traits/queriable.raml
packageQueriable: !include traits/packageQueriable.raml
sortable: !include traits/sortable.raml
pageable: !include traits/pageable.raml
packageFilterable: !include traits/packageFilterable.raml
taggable: !include traits/taggable.raml
accessible: !include traits/accessible.raml
packageResourcesFilterable: !include traits/packageResourcesFilterable.raml
types:
packageCollection: !include types/packages/packageCollection.json
packagePostRequest: !include types/packages/packagePostRequest.json
packagePutRequest: !include types/packages/packagePutRequest.json
packageTagsPutRequest: !include types/packages/packageTagsPutRequest.json
package: !include types/packages/package.json
packageTags: !include types/packages/packageTags.json
resourceCollection: !include types/resources/resourceCollection.json
packagePostBulkFetchRequest: !include types/packages/packagePostBulkFetchRequest.json
packageBulkFetchCollection: !include types/packages/packageBulkFetchCollection.json
jsonapiError: !include types/jsonapiError.json
/eholdings/packages:
displayName: Packages
get:
description: Retrieve a collection of packages based on the search query.
is: [packageQueriable, packageFilterable, taggable, accessible,
sortable: {defaultValue: 'relevance', possibleValues: 'name, relevance'},
pageable: {maxCountValue: 100, defaultCountValue: 25}]
queryParameters:
filter[custom]:
displayName: Custom Packages List
type: string
description: |
Filter to get list of custom packages
Possible values are
- true
example: "true"
required: false
responses:
200:
description: OK
body:
application/vnd.api+json:
description: |
An array of packages comprising the results of the query.
The array will be paged if its length exceeds the value set with the `count` query param, or the default `count` of 25 in its stead.
The included metadata gives us the total result count outside of the paged context.
type: packageCollection
example:
strict: false
value: !include examples/packages/packages_get_200_response.json
400:
description: Bad Request
body:
application/vnd.api+json:
type: jsonapiError
example:
strict: false
value: !include examples/packages/packages_get_400_response.json
post:
description: Create a custom package
headers:
Content-Type:
example: application/vnd.api+json
body:
application/vnd.api+json:
description: Create a custom package
type: packagePostRequest
example:
strict: false
value: !include examples/packages/packages_post_request.json
responses:
200:
description: OK
body:
application/vnd.api+json:
description: The server has successfully fulfilled the POST request.
type: package
example:
strict: false
value: !include examples/packages/packages_post_200_response.json
400:
description: Bad Request
body:
application/vnd.api+json:
type: jsonapiError
example:
strict: false
value: !include examples/packages/packages_post_400_response.json
422:
description: Unprocessable Entity
body:
application/vnd.api+json:
type: jsonapiError
example:
strict: false
value: !include examples/packages/packages_post_422_response.json
/{packageId}:
displayName: Get package by package Id
description: Instance of a package given packageId
uriParameters:
packageId:
description: identifier of the package formed from Provider Id and Package Id (see example)
type: string
example: 583-4345
get:
description: |
Retrieve a specific package given packageId.
Note that packageId is providerId-packageId
queryParameters:
include:
displayName: Nested resources or provider
type: string
description: |
Include resources or provider in response
Possible values are
- resources
- provider
example: resources
required: false
responses:
200:
description: OK
body:
application/vnd.api+json:
description: Package details from KB for a given package Id.
type: package
example:
strict: false
value: !include examples/packages/packages_packageId_get_200_response.json
400:
description: Bad Request
body:
application/vnd.api+json:
type: jsonapiError
example:
strict: false
value: !include examples/packages/packages_packageId_get_400_response.json
404:
description: Not Found
body:
application/vnd.api+json:
type: jsonapiError
example:
strict: false
value: !include examples/packages/packages_packageId_get_404_response.json
put:
description: |
Update a managed or custom package using packageId
Note that packageId is providerId-packageId
headers:
Content-Type:
example: application/vnd.api+json
body:
application/vnd.api+json:
type: packagePutRequest
example:
strict: false
value: !include examples/packages/packages_put_request.json
responses:
200:
description: OK
body:
application/vnd.api+json:
description: The server has successfully fulfilled the PUT request.
type: package
example:
strict: false
value: !include examples/packages/packages_packageId_put_200_response.json
400:
description: Bad Request
body:
application/vnd.api+json:
type: jsonapiError
example:
strict: false
value: !include examples/packages/packages_packageId_put_400_response.json
404:
description: Not Found
body:
application/vnd.api+json:
type: jsonapiError
example:
strict: false
value: !include examples/packages/packages_packageId_put_404_response.json
422:
description: Unprocessable Entity
body:
application/vnd.api+json:
type: jsonapiError
example:
strict: false
value: !include examples/packages/packages_packageId_put_422_response.json
delete:
description: |
Delete a specific custom package using packageId.
Note that packageId is providerId-packageId
responses:
204:
description: No Content
400:
description: Bad Request
body:
application/vnd.api+json:
type: jsonapiError
example:
strict: false
value: !include examples/packages/packages_packageId_delete_400_response.json
/resources:
get:
description: Include all resources belonging to a specific package
is: [taggable, accessible, packageResourcesFilterable,
sortable: {defaultValue: 'relevance', possibleValues: 'name, relevance'},
pageable: {maxCountValue: 100, defaultCountValue: 25}]
responses:
200:
description: OK
body:
application/vnd.api+json:
description: All resources belonging to a specific package
type: resourceCollection
example:
strict: false
value: !include examples/packages/packages_packageId_resources_get_200_response.json
400:
description: Bad Request
body:
application/vnd.api+json:
type: jsonapiError
example:
strict: false
value: !include examples/packages/packages_packageId_resources_get_400_response.json
404:
description: Not Found
body:
application/vnd.api+json:
type: jsonapiError
example:
strict: false
value: !include examples/packages/packages_packageId_resources_get_404_response.json
/tags:
put:
description: Update tags assigned to package
headers:
Content-Type:
example: application/vnd.api+json
body:
application/vnd.api+json:
type: packageTagsPutRequest
example:
strict: false
value: !include examples/packages/package_tags_put_request.json
responses:
200:
description: OK
body:
application/vnd.api+json:
description: Updated list of tags
type: packageTags
example:
strict: false
value: !include examples/packages/package_tags_put_200_response.json
422:
description: Unprocessable Entity
body:
application/vnd.api+json:
type: jsonapiError
example:
strict: false
value: !include examples/packages/packages_post_422_response.json
/bulk/fetch:
post:
description:
headers:
Content-Type:
example: application/vnd.api+json
body:
application/vnd.api+json:
type: packagePostBulkFetchRequest
example:
strict: false
value: !include examples/packages/packages_bulk_fetch_post_request.json
responses:
200:
description: OK
body:
application/vnd.api+json:
description:
type: packageBulkFetchCollection
example:
strict: false
value: !include examples/packages/packages_bulk_fetch_post_200_response.json
422:
description: Unprocessable Entity
body:
application/vnd.api+json:
type: jsonapiError
example:
strict: false
value: !include examples/packages/packages_bulk_fetch_post_422_response.json