-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapiSpecification.yaml
327 lines (324 loc) · 8.51 KB
/
apiSpecification.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
openapi: 3.0.1
info:
title: Bottom up ddd
description: ボトムアップDDDのサンプル実装
version: 1.0.0
servers:
- url: 'https://api.example.com'
paths:
/users:
get:
summary: すべてのユーザーを一覧表示する
operationId: listUser
tags:
- users
parameters:
- name: limit
in: query
description: 一度にレスポンスするアイテムの数(最大100)
required: false
schema:
type: integer
format: int32
- name: next-token
in: query
description: 途中からレスポンスを再開するためのトークン
required: false
schema:
type: string
responses:
'200':
description: ページングされたユーザーの配列
headers:
x-next:
description: レスポンスの次のページを取得する為のリンク
schema:
type: string
content:
application/json:
schema:
$ref: '#/components/schemas/Users'
default:
description: 予期しないエラー
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
post:
summary: ユーザーを登録する
operationId: registerUser
tags:
- users
requestBody:
content:
application/json:
schema:
type: object
properties:
user_name:
type: string
mail_address:
type: string
responses:
'201':
description: レスポンス無し
headers:
location:
description: 作成されたユーザーの為のリンク
schema:
type: string
default:
description: 予期しないエラー
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/users/{userId}:
get:
summary: 特定のユーザーの情報を取得する
operationId: getUserbyId
tags:
- users
parameters:
- name: userId
in: path
required: true
description: 取得するユーザーのID
schema:
type: string
responses:
'200':
description: 適切なリクエスト時の応答
content:
application/json:
schema:
$ref: '#/components/schemas/User'
default:
description: 予期しないエラー
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
post:
summary: 特定のユーザーの情報を更新する
operationId: updateUserById
tags:
- users
parameters:
- name: userId
in: path
required: true
description: 更新するユーザーのID
schema:
type: string
responses:
'204':
description: レスポンス無し
default:
description: 予期しないエラー
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
delete:
summary: 特定のユーザーを削除する
operationId: deleteUserById
tags:
- users
parameters:
- name: userId
in: path
required: true
description: 削除するユーザーのID
schema:
type: string
responses:
'204':
description: レスポンス無し
default:
description: 予期しないエラー
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/circles:
get:
summary: すべてのサークルを一覧表示する
operationId: listCircles
tags:
- circles
parameters:
- name: limit
in: query
description: 一度にレスポンスするアイテムの数(最大100)
required: false
schema:
type: integer
format: int32
responses:
'200':
description: ページングされたサークルの配列
headers:
x-next:
description: レスポンスの次のページを取得する為のリンク
schema:
type: string
content:
application/json:
schema:
$ref: '#/components/schemas/Circles'
default:
description: 予期しないエラー
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
post:
summary: サークルを登録する
operationId: registerCircle
tags:
- circles
requestBody:
content:
application/json:
schema:
type: object
properties:
circle_name:
type: string
mail_address:
type: string
responses:
'201':
description: レスポンス無し
headers:
location:
description: 作成されたサークルの為のリンク
schema:
type: string
default:
description: 予期しないエラー
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/circles/{circleId}:
get:
summary: 特定のサークルの情報を取得する
operationId: getCirclebyId
tags:
- circles
parameters:
- name: circleId
in: path
required: true
description: 取得するサークルのID
schema:
type: string
responses:
'200':
description: 適切なリクエスト時の応答
content:
application/json:
schema:
$ref: '#/components/schemas/Circle'
default:
description: 予期しないエラー
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
post:
summary: 特定のサークルの情報を更新する
operationId: updateCircleById
tags:
- circles
parameters:
- name: circleId
in: path
required: true
description: 更新するサークルのID
schema:
type: string
responses:
'204':
description: レスポンス無し
default:
description: 予期しないエラー
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
delete:
summary: 特定のサークルを削除する
operationId: deleteCircleById
tags:
- circles
parameters:
- name: circleId
in: path
required: true
description: 削除するサークルのID
schema:
type: string
responses:
'204':
description: レスポンス無し
default:
description: 予期しないエラー
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
components:
schemas:
User:
type: object
required:
- user_id
- user_name
- mail_address
properties:
user_id:
type: string
user_name:
type: string
mail_address:
type: string
Users:
type: array
items:
$ref: '#/components/schemas/User'
Circle:
type: object
required:
- circle_id
- circle_name
- ownwer_id
- member_ids
properties:
circle_id:
type: string
circle_name:
type: string
owner_id:
type: string
member_ids:
type: array
items:
type: string
Circles:
type: array
items:
$ref: "#/components/schemas/Circle"
Error:
type: object
required:
- code
- message
properties:
code:
type: integer
format: int32
message:
type: string