-
Notifications
You must be signed in to change notification settings - Fork 1
/
schema.yml
324 lines (305 loc) · 6.99 KB
/
schema.yml
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
swagger: '2.0'
info:
version: 1.0.0
title: Django Starter API
basePath: /v1
tags:
- name: Users
description: Authentification and profiles
schemes:
- http
paths:
/users/{user_id}/:
get:
tags:
- Users
summary: User detail
operationId: user_detail
consumes:
- application/json
produces:
- application/json
parameters:
- in: "path"
name: "user_id"
required: true
type: "string"
responses:
201:
description: Created
schema:
$ref: '#/definitions/UserResponse'
400:
description: Bad request
500:
description: Internal Server Error
patch:
tags:
- Users
summary: User detail
operationId: user_detail_patch
consumes:
- application/json
produces:
- application/json
parameters:
- in: "path"
name: "user_id"
required: true
type: "string"
- in: body
name: body
description: User information
required: true
schema:
properties:
username:
type: string
example: [email protected]
email:
type: string
example: [email protected]
first_name:
type: string
example: John
last_name:
type: string
example: Doe
phone_number:
type: string
example: "+34630245253"
responses:
201:
description: Created
schema:
$ref: '#/definitions/UserResponse'
400:
description: Bad request
500:
description: Internal Server Error
/users/{user_id}/profile/:
patch:
tags:
- Users
summary: User profile
operationId: user_profile_patch
consumes:
- application/json
produces:
- application/json
parameters:
- in: "path"
name: "user_id"
required: true
type: "string"
- in: body
name: body
description: User information
required: true
schema:
$ref: '#/definitions/Profile'
responses:
201:
description: Created
schema:
$ref: '#/definitions/UserResponse'
400:
description: Bad request
500:
description: Internal Server Error
/users/signup/:
post:
tags:
- Users
summary: Signup
operationId: signup
consumes:
- application/json
produces:
- application/json
parameters:
- in: body
name: body
description: User information
required: true
schema:
properties:
username:
type: string
example: [email protected]
email:
type: string
example: [email protected]
first_name:
type: string
example: John
last_name:
type: string
example: Doe
phone_number:
type: string
example: "+34630245253"
password:
type: string
example: "MyPassword1-"
password_confirmation:
type: string
example: "MyPassword1-"
responses:
201:
description: Created
schema:
$ref: '#/definitions/UserResponse'
400:
description: Bad request
500:
description: Internal Server Error
/users/login/:
post:
tags:
- Users
summary: Login
operationId: login
consumes:
- application/json
produces:
- application/json
parameters:
- in: body
name: body
description: Email and Password
required: true
schema:
properties:
email:
type: string
example: [email protected]
password:
type: string
example: "MyPassword1-"
responses:
200:
description: OK
schema:
$ref: '#/definitions/TokenResponse'
400:
description: Bad request
500:
description: Internal Server Error
/users/token/verify/:
post:
tags:
- Users
summary: Verify token
operationId: verify
consumes:
- application/json
produces:
- application/json
parameters:
- in: body
name: body
description: Token to verify
required: true
schema:
$ref: '#/definitions/Token'
responses:
200:
description: OK
schema:
$ref: '#/definitions/TokenResponse'
400:
description: Bad request
500:
description: Internal Server Error
/users/token/refresh/:
post:
tags:
- Users
summary: Refresh token
operationId: refresh_token
consumes:
- application/json
produces:
- application/json
parameters:
- in: body
name: body
description: Token to refresh
required: true
schema:
$ref: '#/definitions/Token'
responses:
200:
description: OK
schema:
$ref: '#/definitions/TokenResponse'
400:
description: Bad request
500:
description: Internal Server Error
definitions:
User:
type: object
properties:
id:
type: integer
format: int64
example: 1
username:
type: string
example: [email protected]
email:
type: string
example: [email protected]
first_name:
type: string
example: John
last_name:
type: string
example: Doe
verified:
type: boolean
profile:
$ref: '#/definitions/Profile'
Profile:
type: object
properties:
level:
type: integer
example: 3
avatar:
type: string
ProfileResponse:
type: object
properties:
success:
type: boolean
code:
type: integer
data:
$ref: '#/definitions/Profile'
UserResponse:
type: object
properties:
success:
type: boolean
code:
type: integer
data:
$ref: '#/definitions/User'
TokenResponse:
type: object
properties:
success:
type: boolean
code:
type: integer
data:
$ref: '#/definitions/Token'
Token:
type: object
properties:
token:
type: string
example: "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjozLCJ1c2VybmFtZSI6ImhlbGxvMkBkYWtlbi54eXoiLCJleHAiOjE1NTExMjYzODksImVtYWlsIjoiaGVsbG8yQGRha2VuLnh5eiIsIm9yaWdfaWF0IjoxNTUxMDM5OTg5fQ.Yso0bBcv93DFO8ej3pctGvRd5pR4_x7Oc-fIGOoFSGk"