-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenapi.yaml
475 lines (475 loc) · 11.4 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
openapi: "3.0.0"
info:
title: "Asu Cariocas"
version: "1.0.0"
paths:
/users/create:
post:
tags:
- Users
summary: Crear un usuario
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/UserInput'
responses:
'201':
description: Usuario creado exitosamente
content:
application/json:
schema:
$ref: '#/components/schemas/User'
'400':
description: Error al crear el usuario
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/users/list:
get:
tags:
- Users
summary: Obtener la lista de usuarios
responses:
'201':
description: Lista de usuarios obtenida exitosamente
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/User'
'400':
description: Error al obtener la lista de usuarios
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/users/show/{id}:
get:
tags:
- Users
summary: Obtener un usuario por ID
parameters:
- in: path
name: id
required: true
schema:
type: integer
responses:
'201':
description: Usuario obtenido exitosamente
content:
application/json:
schema:
$ref: '#/components/schemas/User'
'400':
description: Error al obtener el usuario
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/players/create:
post:
tags:
- Players
summary: Crear un jugador
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/PlayerInput'
responses:
'201':
description: Jugador creado exitosamente
content:
application/json:
schema:
$ref: '#/components/schemas/Player'
'400':
description: Error al crear el jugador
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/players/list:
get:
tags:
- Players
summary: Obtener la lista de jugadores
responses:
'201':
description: Lista de jugadores obtenida exitosamente
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Player'
'400':
description: Error al obtener la lista de jugadores
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/mazos/create:
post:
tags:
- Mazos
summary: Crear un mazo
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/MazoInput'
responses:
'201':
description: Mazo creado exitosamente
content:
application/json:
schema:
$ref: '#/components/schemas/Mazo'
'400':
description: Error al crear el juego
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/mazos/list:
get:
tags:
- Mazos
summary: Obtener la lista de mazos
responses:
'201':
description: Lista de mazos obtenida exitosamente
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/MazoWithCartas'
'400':
description: Error al obtener la lista de mazos
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/cartas/create:
post:
tags:
- Cartas
summary: Crear una carta
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/CartaInput'
responses:
'201':
description: Carta creada exitosamente
content:
application/json:
schema:
$ref: '#/components/schemas/Carta'
'400':
description: Error al crear la carta
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/cartas/list:
get:
tags:
- Cartas
summary: Obtener la lista de cartas
responses:
'200':
description: Lista de cartas obtenida exitosamente
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Carta'
'400':
description: Error al obtener la lista de cartas
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/games/create:
post:
tags:
- Games
summary: Crear un juego
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/GameInput'
responses:
'201':
description: Juego creado exitosamente
content:
application/json:
schema:
$ref: '#/components/schemas/Game'
'400':
description: Error al crear el juego
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/games/list:
get:
tags:
- Games
summary: Obtener la lista de juegos
responses:
'200':
description: Lista de juegos obtenida exitosamente
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/GameWithPlayersAndTables'
'400':
description: Error al obtener la lista de juegos
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/tables/create:
post:
tags:
- Tables
summary: Crear un Tablero
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/TableInput'
responses:
'201':
description: Tablero creado exitosamente
content:
application/json:
schema:
$ref: '#/components/schemas/Table'
'400':
description: Error al crear el tablero
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/tables/list:
get:
tags:
- Tables
summary: Obtener la lista de tableros
responses:
'200':
description: Lista de tableros obtenida exitosamente
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Table'
'400':
description: Error al obtener la lista de tableros
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
components:
schemas:
UserInput:
type: object
properties:
username:
type: string
example: juanperez
password:
type: string
example: contraseña1234
mail:
type: string
example: juan.perez@example.com
User:
type: object
properties:
id:
type: integer
username:
type: string
password:
type: string
mail:
type: string
createdAt:
type: string
format: date-time
updatedAt:
type: string
format: date-time
PlayerInput:
type: object
properties:
userId:
type: integer
example: 1
gameId:
type: integer
example: 1
Player:
type: object
properties:
id:
type: integer
userId:
type: integer
gameId:
type: integer
createdAt:
type: string
format: date-time
updatedAt:
type: string
format: date-time
Game:
type: object
properties:
id:
type: integer
winnerId:
type: integer
createdAt:
type: string
format: date-time
updatedAt:
type: string
format: date-time
GameInput:
type: object
properties:
winnerId:
type: integer
example: 1
Table:
type: object
properties:
id:
type: integer
gameId:
type: integer
playerId:
type: integer
createdAt:
type: string
format: date-time
updatedAt:
type: string
format: date-time
TableInput:
type: object
properties:
gameId:
type: integer
example: 1
playerId:
type: integer
example: 1
Mazo:
type: object
properties:
id:
type: integer
playerId:
type: integer
createdAt:
type: string
format: date-time
updatedAt:
type: string
format: date-time
MazoInput:
type: object
properties:
playerId:
type: integer
example: 1
CartaInput:
type: object
properties:
mazo_id:
type: integer
example: 1
rank:
type: string
example: "A"
suit:
type: string
example: "Clubs"
Carta:
type: object
properties:
id:
type: integer
mazo_id:
type: integer
rank:
type: string
suit:
type: string
createdAt:
type: string
format: date-time
updatedAt:
type: string
format: date-time
MazoWithCartas:
type: object
properties:
mazo:
$ref: '#/components/schemas/Mazo'
cartas:
type: array
items:
$ref: '#/components/schemas/Carta'
TableWithPlayer:
type: object
properties:
mazo:
$ref: '#/components/schemas/Table'
cartas:
type: array
items:
$ref: '#/components/schemas/Player'
GameWithPlayersAndTables:
type: object
properties:
game:
$ref: '#/components/schemas/Game'
players:
type: array
items:
$ref: '#/components/schemas/Player'
tables:
type: array
items:
$ref: '#/components/schemas/Table'
Error:
type: object
properties:
message:
type: string