-
Notifications
You must be signed in to change notification settings - Fork 13
/
openapi-cms.yaml
521 lines (513 loc) · 14.9 KB
/
openapi-cms.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
openapi: 3.0.0
info:
title: OpenAPI Specification for CMS
description: API Specification document of the CMS system
termsOfService: http://mycollege.com/tos
contact:
name: Praveenkumar Bouna
url: http://mycollege.com/staff/praveenkumar-bouna
license:
name: MIT
version: '1.0'
externalDocs:
description: More information about CMS API
url: http://mycollege.com/api
servers:
- url: https://localhost:44333/api/v1
description: Production server
- url: https://{hostname}:{port}/stagingapi/v1
description: Development server
variables:
hostname:
default: localhost
port:
enum:
- '44333'
- '8990'
default: '44333'
tags:
- name: course
description: Operations about Course
externalDocs:
description: More information about Courses
url: http://mycollege.com/courses
- name: student
description: Operations about Students
paths:
/courses:
summary: Operations about Courses
description: Contains the list of operations on courses
get:
tags:
- course
summary: Get all the courses
description: Returns the list of all courses
operationId: getCourses
parameters:
- name: sortBy
in: query
description: The sort order
schema:
type: string
default: asc
example: ../api/courses?sortBy=asc
enum:
- asc
- desc
required: true
responses:
'200':
description: Successfully returned all course details
content:
application/json:
schema:
type: object
description: Represents a course entry
properties:
courseId:
type: number
description: Unique ID of the course
courseName:
type: string
description: Name of the course
courseDuration:
type: string
description: Duration of the course in years
courseType:
type: string
enum:
- Engineering
- Medical
- Management
required:
- courseName
- courseDuration
- courseType
example:
courseId: 1
courseName: Computer Science
courseDuration: 4
courseType: Engineering
'4XX':
description: Incorrect input
default:
description: Success
post:
tags:
- course
summary: Add a new course
description: Adds a new course entry to the system and returns the added course
operationId: addCourse
requestBody:
description: The new course to add
required: true
content:
application/json:
schema:
type: object
description: Represents a course entry
properties:
courseId:
type: number
description: Unique ID of the course
courseName:
type: string
description: Name of the course
courseDuration:
type: string
description: Duration of the course in years
courseType:
type: string
enum:
- Engineering
- Medical
- Management
required:
- courseName
- courseDuration
- courseType
example:
courseId: 1
courseName: Computer Science
courseDuration: 4
courseType: Engineering
responses:
'201':
description: Successfully added a course
content:
application/json:
schema:
type: object
description: Represents a course entry
properties:
courseId:
type: number
description: Unique ID of the course
courseName:
type: string
description: Name of the course
courseDuration:
type: string
description: Duration of the course in years
courseType:
type: string
enum:
- Engineering
- Medical
- Management
required:
- courseName
- courseDuration
- courseType
example:
courseId: 1
courseName: Computer Science
courseDuration: 4
courseType: Engineering
/courses/{courseId}:
summary: Operations about individual course
description: Contains the list of operations applied on courses
get:
tags:
- course
summary: Get a specific course
description: Returns the course details
operationId: getCourse
parameters:
- name: courseId
in: path
description: The unique course id
required: true
schema:
type: string
responses:
'200':
description: Successfully returned the course details
content:
application/json:
schema:
$ref: '#/components/schemas/Course'
'4XX':
$ref: '#/components/responses/4xxResponse'
put:
tags:
- course
summary: Update an existing course
description: Updates a course entry and returns the updated course
operationId: updateCourse
parameters:
- name: courseId
in: path
description: The unique course id
required: true
schema:
type: string
requestBody:
description: The course details to update
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Course'
responses:
'201':
$ref: '#/components/responses/CourseSuccess'
'4XX':
$ref: '#/components/responses/4xxResponse'
delete:
tags:
- course
summary: Delete a specific course
description: Removes a course entry from the system
operationId: deleteCourse
parameters:
- name: courseId
in: path
description: The unique course id
required: true
schema:
type: string
responses:
'200':
description: Successfully deleted the course details
content:
application/json:
schema:
$ref: '#/components/schemas/Course'
'4XX':
$ref: '#/components/responses/4xxResponse'
security:
- BearerAuthentication: []
/courses/{courseId}/students:
summary: Operations about students belonging to a course
description: Contains the list of operations applied on a course's students
get:
tags:
- course
summary: Get students belonging to a course
description: Returns the list of all students enrolled in the course
operationId: getCourseStudents
parameters:
- name: courseId
in: path
description: The unique course id
required: true
schema:
type: string
responses:
'200':
description: Successfully returned all students enrolled in a course
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Student'
'4XX':
$ref: '#/components/responses/4xxResponse'
default:
description: Success
post:
tags:
- course
summary: Add a student to a course
description: Adds a new student association to the course and returns the added student.
operationId: addCourseStudent
parameters:
- name: courseId
in: path
description: The unique course id
required: true
schema:
type: string
requestBody:
description: The student to add
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Student'
responses:
'201':
description: Student association is added sucessfully
content:
application/json:
schema:
$ref: '#/components/schemas/Student'
'400':
description: Invalid input.
/students:
summary: Operations about Students
description: Contains the list of operations applied on students
get:
tags:
- student
summary: Get all the students
description: Returns the list of all students present in the system
operationId: getStudents
responses:
'200':
description: Successfully returned all student entries
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Student'
'4XX':
$ref: '#/components/responses/4xxResponse'
'5XX':
$ref: '#/components/responses/5xxResponse'
post:
tags:
- student
summary: Add a new student
description: Adds a new student entry to the system and returns the added student
operationId: addStudent
requestBody:
description: The new student to add
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Student'
responses:
'201':
description: Student entry is added successfully
content:
application/json:
schema:
$ref: '#/components/schemas/Student'
'4XX':
$ref: '#/components/responses/4xxResponse'
'5XX':
$ref: '#/components/responses/5xxResponse'
default:
$ref: '#/components/responses/DefaultResponse'
/students/{studentId}:
summary: Operations about individual Student
description: Contains the list of operations applied on students
get:
tags:
- student
summary: Get a specific student
description: Returns the student details
operationId: getStudent
parameters:
- name: studentId
in: path
description: The unique student id
required: true
schema:
type: string
responses:
'200':
description: Successfully returned the student details
content:
application/json:
schema:
$ref: '#/components/schemas/Student'
'4XX':
$ref: '#/components/responses/4xxResponse'
'5XX':
$ref: '#/components/responses/5xxResponse'
put:
tags:
- student
summary: Update an existing student
description: Updates a student entry in the system and returns the updated student
operationId: updateStudent
parameters:
- name: studentId
in: path
description: The unique student id
required: true
schema:
type: string
requestBody:
description: The student details to update
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Student'
responses:
'200':
description: Student is updated successfully
content:
application/json:
schema:
$ref: '#/components/schemas/Student'
'4XX':
$ref: '#/components/responses/4xxResponse'
'5XX':
$ref: '#/components/responses/5xxResponse'
default:
$ref: '#/components/responses/DefaultResponse'
delete:
summary: Delete a student entry
description: Removes a student entry from the system
operationId: deleteStudent
tags:
- student
parameters:
- name: studentId
in: path
description: The unique student id
required: true
schema:
type: string
responses:
'200':
description: Successfully deleted
'4XX':
$ref: '#/components/responses/4xxResponse'
'5XX':
$ref: '#/components/responses/5xxResponse'
default:
description: Success
content:
application/json:
examples:
deleteResponse:
value: Successfully deleted
components:
schemas:
Course:
type: object
description: Represents a course entry
properties:
courseId:
type: number
description: Unique ID of the course
courseName:
type: string
description: Name of the course
courseDuration:
type: string
description: Duration of the course in years
courseType:
type: string
enum:
- Engineering
- Medical
- Management
required:
- courseName
- courseDuration
- courseType
example:
courseId: 1
courseName: Computer Science
courseDuration: 4
courseType: Engineering
Student:
type: object
description: Represents a student entry
properties:
studentId:
type: number
description: Unique ID of the student
firstName:
type: string
description: Firt name of the student
lastName:
type: string
description: Last name of the student
phoneNumber:
type: string
description: Phone number of the student
address:
type: string
description: Address of the student
required:
- firstName
- lastName
example:
studentId: 101
firstName: James
lastName: Smith
phoneNumber: 555-555-1234
address: US
responses:
CourseSuccess:
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/Course'
4xxResponse:
description: Bad Request
5xxResponse:
description: Internal server error
DefaultResponse:
description: Success
securitySchemes:
BasicAuthentication:
type: http
scheme: basic
BearerAuthentication:
type: http
scheme: bearer
security:
- BasicAuthentication: []