-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenapi.yaml
544 lines (544 loc) · 13.2 KB
/
openapi.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
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
openapi: 3.0.3
info:
title: INFO6150 - Web Design and User Experience Engineering Final Project || LEETIFY
description: Leetify is an online platform that provides a collection of coding challenges to help developers prepare for technical interviews.
version: "1.0.0"
externalDocs:
description: Github Source
url: https://github.com/neu-mis-info-6150-spring-2023/final-project-group-codelite_lsar
servers:
- url: https://leetify-backend.vercel.app/
tags:
- name: users
description: User endpoints
- name: problems
description: Problem endpoints
- name: tests
description: Test endpoints
paths:
/users:
get:
tags:
- users
summary: Get all users
description: Get all users
operationId: getallusers
responses:
"200":
description: List of users
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/User"
"500":
description: Internal server error
/users/{id}:
get:
tags:
- users
summary: Get a user
description: Get a user
operationId: getauser
parameters:
- name: id
in: path
description: "Fetch user by ID"
required: true
schema:
type: integer
responses:
"200":
description: Get a user
content:
application/json:
schema:
$ref: "#/components/schemas/User"
"500":
description: Internal server error
put:
tags:
- users
summary: Update user details
description: Update user details
operationId: updateuser
parameters:
- name: id
in: path
description: "Update user"
required: true
schema:
type: integer
requestBody:
description: Register user
content:
application/json:
schema:
$ref: "#/components/schemas/User"
required: true
responses:
"200":
description: Update user
content:
application/json:
schema:
$ref: "#/components/schemas/User"
"404":
description: User not found!
"500":
description: Internal server error
delete:
tags:
- users
summary: Delete user details
description: Delete user details
operationId: deleteuser
parameters:
- name: id
in: path
description: "Delete user"
required: true
schema:
type: integer
responses:
"200":
description: User details deleted!
"404":
description: User not found!
"500":
description: Internal server error
/users/register:
post:
tags:
- users
summary: Register a user
description: Register a user
operationId: registeruser
requestBody:
description: Register user
content:
application/json:
schema:
$ref: "#/components/schemas/RegisterUser"
required: true
responses:
"201":
description: User created and registered
content:
application/json:
schema:
$ref: "#/components/schemas/User"
"400":
description: Required data not provided
/users/login:
post:
tags:
- users
summary: User Login
description: User login
operationId: userlogin
requestBody:
description: User Login
content:
application/json:
schema:
$ref: "#/components/schemas/LoginUser"
required: true
responses:
"201":
description: Login successful
content:
application/json:
schema:
$ref: "#/components/schemas/User"
"400":
description: Required data not provided
/problems:
get:
tags:
- problems
summary: Get all problems
description: Get all problems
operationId: getallproblems
responses:
"200":
description: Retrieved all problems
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Problem"
"500":
description: Internal server error
post:
tags:
- problems
summary: Create a problem
description: Create a problem
operationId: createaproblem
requestBody:
description: Create a problem
content:
application/json:
schema:
$ref: "#/components/schemas/Problem"
required: true
responses:
"201":
description: Problem created
content:
application/json:
schema:
$ref: "#/components/schemas/Problem"
"400":
description: Required data not provide
/problems/{difficulty}:
get:
tags:
- problems
summary: Fetch problems by difficulty
description: Fetch problems by difficulty
operationId: fetchproblemsbydifficulty
parameters:
- name: difficulty
in: path
description: "Fetch problems by difficulty"
required: true
schema:
type: string
responses:
"200":
description: Retrieved all problems by difficulty
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Problem"
"500":
description: Internal server error
/problems/{id}:
get:
tags:
- problems
summary: Fetch problems by id
description: Fetch problems by id
operationId: fetchproblemsbyid
parameters:
- name: id
in: path
description: "Fetch problems by id"
required: true
schema:
type: integer
responses:
"200":
description: Retrieved all problems by id
content:
application/json:
schema:
$ref: "#/components/schemas/Problem"
"500":
description: Internal server error
put:
tags:
- problems
summary: Update a problem
description: Update a problem
operationId: updateaproblem
parameters:
- name: id
in: path
description: "Update a problem"
required: true
schema:
type: integer
example: 19
requestBody:
description: Update a problem
content:
application/json:
schema:
type: object
properties:
name:
type: string
example: "Two Sum Problem"
required: true
responses:
"200":
description: Problem updated
content:
application/json:
schema:
$ref: "#/components/schemas/Problem"
"400":
description: Required data not provided
"404":
description: Problem not found
delete:
tags:
- problems
summary: Delete a problem
description: Delete a problem
operationId: deleteaproblem
parameters:
- name: id
in: path
description: "Delete a problem"
required: true
schema:
type: integer
example: 19
responses:
"200":
description: Problem deleted!
"404":
description: Problem not found!
/tests:
get:
tags:
- tests
summary: Get all tests
description: Get all tests
responses:
"200":
description: Get all tests
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Test"
"500":
description: Internal server error
post:
tags:
- tests
summary: Create a test
description: create a test
operationId: createatest
requestBody:
description: Create a test
content:
application/json:
schema:
$ref: "#/components/schemas/Test"
required: true
responses:
"201":
description: Test created
content:
application/json:
schema:
$ref: "#/components/schemas/Test"
"400":
description: Bad request
/tests/{id}:
get:
tags:
- tests
summary: Fetch test by id
description: Fetch test by id
parameters:
- name: id
in: path
description: "Fetch a test by id"
required: true
schema:
type: integer
responses:
"200":
description: Fetch test by id
content:
application/json:
schema:
$ref: "#/components/schemas/Test"
"404":
description: Test not found!
"500":
description: Internal server error
put:
tags:
- tests
summary: Update a test
description: Update test by id
parameters:
- name: id
in: path
description: "Update a test by id"
required: true
schema:
type: integer
requestBody:
description: update a test
content:
application/json:
schema:
$ref: "#/components/schemas/Test"
required: true
responses:
"200":
description: Update test by id
content:
application/json:
schema:
$ref: "#/components/schemas/Test"
"404":
description: Test not found!
"500":
description: Internal server error
delete:
tags:
- tests
summary: Delete a test
description: Delete test
parameters:
- name: id
in: path
description: "Delete a test by id"
required: true
schema:
type: integer
responses:
"200":
description: Test deleted!
"404":
description: Test not found!
"500":
description: Internal server error
components:
schemas:
RegisterUser:
type: object
properties:
name:
type: string
example: username
email:
type: string
example: example@gmail.com
password:
type: string
example: password
phone:
type: string
example: 8775429987
LoginUser:
type: object
properties:
email:
type: string
example: example@gmail.com
password:
type: string
example: password
Submission:
type: object
properties:
id:
type: integer
format: int64
example: 11
problem_id:
type: integer
format: int64
example: 7
user_id:
type: integer
format: int64
example: 10
submitted_time:
type: string
language:
type: string
example: Java
submission:
type: object
status:
type: string
example: pending
enum:
- pending
- accepted
- rejected
Problem:
type: object
properties:
id:
type: integer
format: int64
example: 19
name:
type: string
example: Two Sum
description:
type: string
difficulty:
type: string
enum:
- easy
- medium
- hard
solution:
type: object
tests:
type: object
tag:
type: object
Test:
type: object
properties:
id:
type: integer
format: int64
example: 55
problem_id:
type: integer
format: int64
example: 45
name:
type: string
example: "Two Sum Test 1"
description:
type: string
test:
type: object
User:
type: object
properties:
id:
type: integer
format: int64
example: 10
name:
type: string
example: username
email:
type: string
example: example@gmail.com
password:
type: string
example: password
phone:
type: string
example: 8775429987
role:
type: string
example: user
enum:
- user
- premium_user
- admin
score:
type: integer
example: 89
problemsSolved:
type: integer
example: 65
submissions:
type: array
items:
$ref: "#/components/schemas/Submission"