-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi-run.yml
More file actions
325 lines (324 loc) · 7.25 KB
/
openapi-run.yml
File metadata and controls
325 lines (324 loc) · 7.25 KB
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:
title: core-api
version: '0.0'
paths:
/api/v1/base:
get:
produces:
- application/json
parameters: []
responses:
default:
description: getOwnBases default response
schema:
$ref: '#/definitions/ListRes_Base_'
operationId: getOwnBases
post:
consumes:
- application/json
produces:
- application/json
parameters:
- in: body
name: body
required: true
schema:
$ref: '#/definitions/BaseReq'
responses:
default:
description: postBase default response
schema:
$ref: '#/definitions/Base'
operationId: postBase
'/api/v1/base/{baseId}':
get:
produces:
- application/json
parameters:
- format: uuid
in: path
name: baseId
required: true
type: string
responses:
default:
description: getBaseIfOwn default response
schema:
$ref: '#/definitions/Base'
operationId: getBaseIfOwn
/api/v1/baseJoin:
post:
consumes:
- application/json
produces:
- application/json
parameters:
- in: body
name: body
required: true
schema:
$ref: '#/definitions/BaseJoinReq'
responses:
default:
description: requestIntoBase default response
schema:
$ref: '#/definitions/BaseJoin'
description: Not Implemented Yet
operationId: requestIntoBase
/api/v1/baseJoin/me:
get:
produces:
- application/json
parameters: []
responses:
default:
description: getBases default response
schema:
items:
$ref: '#/definitions/BaseJoin'
type: array
description: Not Implemented Yet
operationId: getBases
'/api/v1/baseJoin/{baseId}':
delete:
produces:
- application/json
parameters:
- in: path
name: baseId
required: true
type: string
responses:
default:
description: deleteBaseInvite default response
schema:
$ref: '#/definitions/Success'
description: Not Implemented Yet
operationId: deleteBaseInvite
/api/v1/mission/me:
get:
produces:
- application/json
parameters: []
responses:
default:
description: getOwnActiveMissions default response
schema:
items:
$ref: '#/definitions/Mission'
type: array
description: Not Implemented Yet
operationId: getOwnActiveMissions
/api/v1/mission/progress:
post:
consumes:
- application/json
produces:
- application/json
parameters:
- in: body
name: body
required: true
schema:
properties:
progressReq:
$ref: '#/definitions/ProgressReq'
type: object
responses:
default:
description: progressMission default response
schema:
$ref: '#/definitions/Mission'
description: Not Implemented Yet
operationId: progressMission
/api/v1/user/me:
get:
produces:
- application/json
parameters: []
responses:
default:
description: getMe default response
schema:
$ref: '#/definitions/User'
operationId: getMe
definitions:
Base:
allOf:
- $ref: '#/definitions/TouchBasePostgresDomain'
- properties:
active:
type: boolean
chats:
items:
$ref: '#/definitions/Chat'
type: array
imageUrl:
type: string
members:
items:
$ref: '#/definitions/BaseMember'
type: array
name:
type: string
score:
format: double
type: number
type: object
BaseJoin:
allOf:
- $ref: '#/definitions/TouchBasePostgresDomain'
- properties:
baseId:
type: string
baseJoinAction:
$ref: '#/definitions/BaseJoinAction'
type: object
BaseJoinAction:
enum:
- Request
- Invite
type: string
BaseJoinReq:
properties:
baseId:
type: string
baseJoinAction:
$ref: '#/definitions/BaseJoinAction'
userId:
type: string
type: object
BaseMember:
allOf:
- $ref: '#/definitions/TouchBasePostgresDomain'
- properties:
base:
$ref: '#/definitions/Base'
role:
$ref: '#/definitions/Role'
user:
$ref: '#/definitions/User'
type: object
BaseReq:
properties:
imageUrl:
type: string
name:
type: string
type: object
Chat:
allOf:
- $ref: '#/definitions/TouchBasePostgresDomain'
- properties:
base:
$ref: '#/definitions/Base'
chatpiChatId:
type: string
type: object
ListRes_Base_:
properties:
list:
items:
$ref: '#/definitions/Base'
type: array
type: object
Mission:
properties:
assignedBase:
$ref: '#/definitions/Base'
assignedUser:
$ref: '#/definitions/User'
createdAt:
format: date-time
type: string
id:
format: uuid
type: string
x-nullable: true
startedAt:
format: date-time
type: string
storedMissionTemplate:
$ref: '#/definitions/MissionTemplate'
type: object
MissionTemplate:
properties:
description:
type: string
missionType:
$ref: '#/definitions/MissionType'
name:
type: string
scoreReward:
format: double
type: number
type: object
MissionType:
enum:
- PERIODIC
- WEEKLY
- ONE_TIME
type: string
ProgressReq:
properties:
value:
format: int32
type: integer
type: object
Role:
enum:
- MEMBER
- ADMIN
type: string
Success:
properties:
status:
type: string
type: object
TouchBasePostgresDomain:
properties:
createdAt:
format: date-time
type: string
creator:
$ref: '#/definitions/User'
id:
format: uuid
type: string
x-nullable: true
updatedAt:
format: date-time
type: string
type: object
User:
allOf:
- $ref: '#/definitions/TouchBasePostgresDomain'
- properties:
authKey:
type: string
createdAt:
format: date-time
type: string
email:
type: string
firstName:
type: string
id:
format: uuid
type: string
x-nullable: true
imageUrl:
type: string
lastName:
type: string
score:
format: double
type: number
updatedAt:
format: date-time
type: string
username:
type: string
type: object
x-components: {}