-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcourses.raml
More file actions
549 lines (542 loc) · 20.3 KB
/
courses.raml
File metadata and controls
549 lines (542 loc) · 20.3 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
#%RAML 1.0
title: Course Reserves API
version: v1
protocols: [ HTTP, HTTPS ]
baseUri: http://github.com/org/folio/mod-courses
documentation:
- title: Course Reserves API
content: API calls to perform CRUD on item reservations for courses
- title: Overview
content: !include overview.md
types:
course: !include course.json
courses: !include courses.json
courseListing: !include courselisting.json
courseListings: !include courselistings.json
instructor: !include instructor.json
instructors: !include instructors.json
reserve: !include reserve.json
reserves: !include reserves.json
role: !include role.json
roles: !include roles.json
term: !include term.json
terms: !include terms.json
courseType: !include coursetype.json
courseTypes: !include coursetypes.json
department: !include department.json
departments: !include departments.json
processingStatus: !include processingstatus.json
processingStatuses: !include processingstatuses.json
copyrightStatus: !include copyrightstatus.json
copyrightStatuses: !include copyrightstatuses.json
errors: !include raml-util/schemas/errors.schema
traits:
pageable: !include raml-util/traits/pageable.raml
searchable: !include raml-util/traits/searchable.raml
language: !include raml-util/traits/language.raml
validate: !include raml-util/traits/validation.raml
resourceTypes:
collection: !include raml-util/rtypes/collection.raml
collection-item: !include raml-util/rtypes/item-collection.raml
get-delete-only: !include raml-util/rtypes/get-delete.raml
/coursereserves:
/courselistings:
description: "Handle listings for a course"
type:
collection:
exampleCollection: !include examples/courselistings.json
exampleItem: !include examples/courselisting.json
schemaCollection: courseListings
schemaItem: courseListing
get:
description: "Return a list of listings"
is: [
searchable: {description: "with valid searchable fields", example: "name=aaa"},
pageable
]
post:
description: "Create a new listing"
is: [ validate ]
delete:
description: "Delete all listings"
is: [ validate ]
responses:
204:
description: "All listings deleted"
400:
description: "Bad request, e.g. unknown tenant"
body:
text/plain:
example: tenant not found
500:
description: "Internal server error"
body:
text/plain:
example: "Internal server error"
/{listing_id}:
description: "With provided listing id"
type:
collection-item:
exampleItem: !include examples/courselisting.json
schema: courseListing
get:
put:
description: "Update a listing by id"
delete:
/courses:
description: "Handle courses for a listing"
type:
collection:
exampleCollection: !include examples/courses.json
exampleItem: !include examples/course.json
schemaCollection: courses
schemaItem: course
get:
is: [
searchable: {description: "with valid searchable fields", example: "name=aaa"},
pageable
]
description: "Return a list of courses"
post:
description: "Create a new course"
is: [ validate ]
delete:
description: "Delete all courses"
is: [ validate ]
responses:
204:
description: "All courses deleted"
400:
description: "Bad request, e.g. malformed listing_id"
body:
text/plain:
example: listing_id is not a UUID
500:
description: "Internal server error"
body:
text/plain:
example: "Internal server error"
/{course_id}:
description: "Provide the course id"
type:
collection-item:
exampleItem: !include examples/course.json
schema: course
get:
put:
description: "Update a course by id"
is: [ validate ]
delete:
/instructors:
description: "Handle instructors for a listing"
type:
collection:
exampleCollection: !include examples/instructors.json
exampleItem: !include examples/instructor.json
schemaCollection: instructors
schemaItem: instructor
get:
description: "Return a list of instructors"
is: [
searchable: {description: "with valid searchable fields", example: "name=aaa"},
pageable
]
post:
description: "Create a new instructor"
is: [ validate ]
delete:
description: "Delete all instructors"
is: [ validate ]
responses:
204:
description: "All instructors deleted"
400:
description: "Bad request, e.g. malformed listing_id"
body:
text/plain:
example: listing_id is not a UUID
500:
description: "Internal server error"
body:
text/plain:
example: "Internal server error"
/{instructor_id}:
description: "With provided instructor id"
type:
collection-item:
exampleItem: !include examples/instructor.json
schema: instructor
get:
put:
description: "Update an instructor by id"
delete:
/reserves:
description: "Handle reserves for a listing"
type:
collection:
exampleCollection: !include examples/reserves.json
exampleItem: !include examples/reserve.json
schemaCollection: reserves
schemaItem: reserve
get:
description: "Return a list of reserves"
queryParameters:
expand:
description: Whether or not to expand the id fields
type: string
required: false
is: [
searchable: {description: "with valid searchable fields", example: "name=aaa"},
pageable
]
post:
description: "Create a new reserve"
is: [ validate ]
delete:
description: "Delete all reserves"
is: [ validate ]
responses:
204:
description: "All reserves deleted"
400:
description: "Bad request, e.g. malformed listing_id"
body:
text/plain:
example: listing_id is not a UUID
500:
description: "Internal server error"
body:
text/plain:
example: "Internal server error"
/{reserve_id}:
description: "With provided reserve id"
type:
collection-item:
exampleItem: !include examples/reserve.json
schema: reserve
get:
put:
description: "Update a reserve by id"
is: [ validate ]
delete:
/roles:
description: "Handle roles for course instructors"
type:
collection:
exampleCollection: !include examples/roles.json
exampleItem: !include examples/role.json
schemaCollection: roles
schemaItem: role
get:
description: "Return a list of roles"
is: [
searchable: { description: "With valid searchable fields", example: "name=aaa"},
pageable
]
post:
description: "Create a new role"
is: [ validate ]
delete:
description: "Delete all roles"
is: [ validate ]
responses:
204:
description: "All roles deleted"
400:
description: "Bad request, e.g. unknown tenant"
body:
text/plain:
example: "tenant not found"
500:
description: "Internal server error"
body:
text/plain:
example: "Internal server error"
/{role_id}:
description: "With provided role id"
type:
collection-item:
exampleItem: !include examples/role.json
schema: role
get:
put:
description: "Update a role by id"
is: [ validate ]
delete:
/terms:
description: "Handle terms for courses"
type:
collection:
exampleCollection: !include examples/terms.json
exampleItem: !include examples/term.json
schemaCollection: terms
schemaItem: term
get:
description: "Return a list of terms"
is: [
searchable: { description: "With valid searchable fields", example: "name=aaa"},
pageable
]
post:
description: "Create a new term"
is: [ validate ]
delete:
description: "Delete all terms"
is: [ validate ]
responses:
204:
description: "All terms deleted"
500:
description: "Internal server error"
body:
text/plain:
example: "Internal server error"
/{term_id}:
description: "With provided term id"
type:
collection-item:
exampleItem: !include examples/term.json
schema: term
get:
put:
description: "Update a term by id"
is: [ validate ]
delete:
/coursetypes:
description: "Handle types for courses"
type:
collection:
exampleCollection: !include examples/coursetypes.json
exampleItem: !include examples/coursetype.json
schemaCollection: courseTypes
schemaItem: courseType
get:
description: "Return a list of course types"
is: [
searchable: { description: "With valid searchable fields", example: "name=aaa"},
pageable
]
post:
description: "Create a new course type"
is: [ validate ]
delete:
description: "Delete all course types"
is: [ validate ]
responses:
204:
description: "All course types deleted"
500:
description: "Internal server error"
body:
text/plain:
example: "Internal server error"
/{type_id}:
description: "With provided course type id"
type:
collection-item:
exampleItem: !include examples/coursetype.json
schema: courseType
get:
put:
description: "Update a course type by id"
is: [ validate ]
delete:
/departments:
description: "Handle departments"
type:
collection:
exampleCollection: !include examples/departments.json
exampleItem: !include examples/department.json
schemaCollection: departments
schemaItem: department
get:
description: "Return a list of departments"
is: [
searchable: { description: "With valid searchable fields", example: "name=aaa"},
pageable
]
post:
description: "Create a new department"
is: [ validate ]
delete:
description: "Delete all departments"
is: [ validate ]
responses:
204:
description: "All departments deleted"
500:
description: "Internal server error"
body:
text/plain:
example: "Internal server error"
/{department_id}:
description: "With provided department id"
type:
collection-item:
exampleItem: !include examples/department.json
schema: department
get:
put:
description: "Update a department by id"
is: [ validate ]
delete:
/processingstatuses:
description: "Handle processing status"
type:
collection:
exampleCollection: !include examples/processingstatuses.json
exampleItem: !include examples/processingstatus.json
schemaCollection: processingStatuses
schemaItem: processingStatus
get:
description: "Return a list of statuses"
is: [
searchable: { description: "With valid searchable fields", example: "name=aaa"},
pageable
]
post:
description: "Create a new status"
is: [ validate ]
delete:
description: "Delete all statuses"
is: [ validate ]
responses:
204:
description: "All statuses deleted"
500:
description: "Internal server error"
body:
text/plain:
example: "Internal server error"
/{status_id}:
description: "With provided status id"
type:
collection-item:
exampleItem: !include examples/processingstatus.json
schema: processingStatus
get:
put:
description: "Update a status by id"
is: [ validate ]
delete:
/copyrightstatuses:
description: "Handle copyright status"
type:
collection:
exampleCollection: !include examples/copyrightstatuses.json
exampleItem: !include examples/copyrightstatus.json
schemaCollection: copyrightStatuses
schemaItem: copyrightStatus
get:
description: "Return a list of copyright statuses"
is: [
searchable: { description: "With valid searchable fields", example: "name=aaa"},
pageable
]
post:
description: "Create a new copyright status"
is: [ validate ]
delete:
description: "Delete all copyright statuses"
is: [ validate ]
responses:
204:
description: "All statuses deleted"
500:
description: "Internal server error"
body:
text/plain:
example: "Internal server error"
/{status_id}:
description: "With provided status id"
type:
collection-item:
exampleItem: !include examples/copyrightstatus.json
schema: copyrightStatus
get:
put:
description: "Update a status by id"
is: [ validate ]
delete:
/courses:
description: "Handle courses"
type:
collection:
exampleCollection: !include examples/courses.json
exampleItem: !include examples/course.json
schemaCollection: courses
schemaItem: course
get:
description: "Return a list of courses"
is: [
searchable: {description: "with valid searchable fields", example: "name=aaa"},
pageable
]
post:
description: "Create a new course"
is: [ validate ]
delete:
description: "Delete ALL courses"
is: [ validate ]
responses:
204:
description: "All courses delete"
500:
description: "Internal server error"
body:
text/plain:
example: "Internal server error"
/{course_id}:
description: "With provided id"
type:
collection-item:
exampleItem: !include examples/course.json
schema: course
get:
put:
description: "Update a course by id"
delete:
/reserves:
description: "Handle reserves"
type:
collection:
exampleCollection: !include examples/reserves.json
exampleItem: !include examples/reserve.json
schemaCollection: reserves
schemaItem: reserve
get:
description: "Return a list of reserves"
queryParameters:
expand:
description: What fields to expand
type: string
required: false
is: [
searchable: {description: "with valid searchable fields", example: "name=aaa"},
pageable
]
post:
description: "Create a new reserve"
is: [ validate ]
delete:
description: "Delete ALL reserves"
is: [ validate ]
responses:
204:
description: "All reserves deleted"
500:
description: "Internal server error"
body:
text/plain:
example: "Internal server error"
/{reserve_id}:
description: "With provided reserve id"
type:
collection-item:
exampleItem: !include examples/reserve.json
schema: reserve
get:
put:
description: "Update a reserve by id"
is: [ validate ]
delete: