-
Notifications
You must be signed in to change notification settings - Fork 0
/
TD1-STD21045.yaml
360 lines (356 loc) · 8.94 KB
/
TD1-STD21045.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
---
openapi: 3.0.1
info:
title: STD21045
description: Hello world ! This is my first openapi spec
version: 1.0.0-oas3
servers:
- url: https://std21045.mg
- url: http://std21045.mg
tags:
- name: Students
- name: Courses
paths:
/students/{id}:
get:
tags:
- Students
summary: Get a specific student by his id
description: Require id to get a specific Student
operationId: getStudentById
parameters:
- name: id
in: path
description: student's id
required: true
schema:
type: integer
format: int
responses:
'200':
description: Success
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Students'
'400':
description: Bad request
delete:
tags:
- Students
summary : Delete a student with a specific id
description: Require id to delete a specific Student
operationId: deleteStudentById
parameters:
- name : id
in : path
required: true
schema:
type: integer
format: int
responses:
'200':
description: "Student deleted"
'400':
description: Bad request
'403':
description: "You cannot delete a student"
put:
tags:
- Students
summary: Modify Student's data with a specified id
description : Require the Student's id
operationId: updateStudent
parameters:
- name : id
in : path
required: true
schema:
type: integer
format: int
requestBody:
required : true
content:
application/json:
schema:
properties:
lastname:
type: string
firstname:
type: string
birthdate:
type: string
format: date
gender:
type : string
example: 'BinaryTree'
email:
type: string
format: email
responses:
"200":
description: Student has been updated
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Students'
'400':
description: Bad request
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Error'
/students:
get:
tags:
- Students
summary: Get all students
operationId: getStudents
parameters:
- name: page
in: query
description: page's number
required: true
schema:
type: integer
format: int
- name: page-size
in: query
description: page's size
required: true
schema:
type: integer
format: int
responses:
'200':
description: Success
'400':
description: Bad request
'403':
description: Forbidden
post:
tags:
- Students
summary: Create a new student
operationId: createStudent
parameters:
- name: lastname
in: query
description: Student's lastname
required: true
schema:
type: string
- name: firstname
in: query
description: Student's firstname
required: false
schema:
type: string
- name: birthdate
in: query
description: Student's birthdate
required: true
schema:
type: string
format: date
- name: gender
in: query
description: Student's gender
required: true
schema:
type: string
format: char
- name: email
in: query
description: Student's email
required: true
schema:
type: string
requestBody:
required: true
content:
application/x-www-form-urlencoded:
schema:
properties:
lastname:
type: string
description: lastName of the student
example: Rajemisa
firstname:
type: string
description: firstName of the student
example: Sanda Mandresy
birthdate:
type: string
description: birthdate of the student
example: '2022-07-13'
gender:
type: string
description: gender of the student
example: M
email:
type: string
description: email of the student
example: hei.sanda.3@gmail.com
responses:
'201':
description: created
content: {}
'405':
description: Invalid input
content: {}
/courses:
get:
tags:
- Courses
summary: Get a list of all courses
operationId: getCourses
parameters:
- name: page
in: query
description: page's number
required: true
schema:
type: integer
format: int
- name: page-size
in: query
description: page's size
required: true
schema:
type: integer
format: int
responses:
'200':
description: List course
'400':
description: Bad request
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Error'
post:
tags:
- Courses
summary: Create a new course
operationId: createCourse
parameters:
- name: course_name
in: query
description: Course's name
required: true
schema:
type: string
- name: teacher_name
in: query
description: Teacher's name
required: true
schema:
type: string
- name: createdDatetime
in: query
description: Course's creation datetime
required: true
schema:
type: string
format: date
requestBody:
required: true
content:
application/x-www-form-urlencoded:
schema:
properties:
id:
type: number
description: Course's id
example: '5'
name:
type: string
description: name of the course
example: IA2
teacher:
type: string
description: name of the teacher
example: Pr Robotnik
createdDatetime:
type: string
description: creation date of the course
format: date
example: '2022-07-13'
responses:
'201':
description: Created
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Success'
'400':
description: Bad request
/courses/{id}:
get:
tags:
- Courses
summary: Get a specific course by its id
operationId: getCourseById
parameters:
- name: id
in: path
description: course's id
required: true
schema:
type: integer
format: int
responses:
'200':
description: The specific course is shown
'400':
description: Bad request
components:
schemas:
Students:
type: object
properties:
id:
type: number
example: 44
lastname:
type: string
example: Ny Tiana Andriantsoa
firstname:
type: string
example: Fifaliana Loica
birthdate:
type: string
format: date
example: '1999-08-05'
gender:
type: string
example: M
email:
type: string
example: hei.loica.2@gmail.com
Error:
type: object
properties:
code:
type: string
example: 400_BAD_REQUEST
message:
type: string
example: Parameters are missing
Success:
type: object
properties:
message:
type: string
example: 201_CREATED