-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswagger.yaml
803 lines (803 loc) · 24.6 KB
/
swagger.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
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
openapi: 3.0.0
info:
version: 1.0.0
title: KAERA API 명세서
description: test API
license:
name: yelin kim
servers:
- url: 'https://api.kaera.site/v1'
- url: 'http://localhost:3000/v1'
security:
- bearerAuth: []
paths:
/auth/kakao/login:
post:
tags:
- Auth
summary: 카카오 회원가입/로그인하기
consumes:
- application/json
requestBody:
x-name: body
required: true
content:
application/json:
schema:
type: object
example:
accessToken: 카카오 액세스토큰
deviceToken: fcm 디바이스토큰
responses:
'200':
description: 회원가입/로그인 성공
content:
application/json:
schema:
type: object
examples:
login_example:
value:
status: 200
success: true
message: 로그인 성공
data:
id: 2
name: 김캐라
accessToken: 캐라의 jwt 액세스토큰
refreshToken: 캐라의 jwt 리프레쉬토큰
signIn_example:
value:
status: 200
success: true
message: 회원가입 성공
data:
id: 2
name: 김캐라
accessToken: 캐라의 jwt 액세스토큰
refreshToken: 캐라의 jwt 리프레쉬토큰
'400':
$ref: '#/components/responses/BadRequest'
'500':
$ref: '#/components/responses/InternalServerError'
/auth/apple/login:
post:
tags:
- Auth
summary: 애플 회원가입/로그인하기
consumes:
- application/json
requestBody:
x-name: body
required: true
content:
application/json:
schema:
type: object
example:
identityToken: apple identity토큰
user: apple의 유저 식별 스트링
fullName: 사용자 이름
deviceToken: fcm 디바이스토큰
responses:
'200':
description: 회원가입/로그인 성공
content:
application/json:
schema:
type: object
examples:
login_example:
value:
status: 200
success: true
message: 로그인 성공
data:
id: 2
name: 김캐라
accessToken: 캐라의 jwt 액세스토큰
refreshToken: 캐라의 jwt 리프레쉬토큰
signIn_example:
value:
status: 200
success: true
message: 회원가입 성공
data:
id: 2
name: 김캐라
accessToken: 캐라의 jwt 액세스토큰
refreshToken: 캐라의 jwt 리프레쉬토큰
'400':
$ref: '#/components/responses/BadRequest'
'500':
$ref: '#/components/responses/InternalServerError'
/auth/token/refresh:
post:
tags:
- Auth
summary: 토큰 재발급하기
consumes:
- application/json
requestBody:
x-name: body
required: true
content:
application/json:
schema:
type: object
example:
accessToken: 만료된 jwt 액세스토큰
refreshToekn: jwt 리프레쉬토큰
responses:
'200':
description: 토큰 재발급 성공
content:
application/json:
schema:
type: object
example:
status: 200
success: true
message: 토큰 재발급 성공
data:
accessToken: 재발급받은 jwt 액세스토큰
'400':
$ref: '#/components/responses/BadRequest'
'401':
description: 토큰 재발급 실패
content:
application/json:
schema:
type: object
example:
status: 401
success: false
message: 모든 토큰이 만료되었습니다.
'500':
$ref: '#/components/responses/InternalServerError'
/auth/unregister:
delete:
tags:
- Auth
summary: 회원탈퇴하기
consumes:
- application/json
responses:
'200':
description: 회원 탈퇴 성공
content:
application/json:
schema:
type: object
example:
status: 200
success: true
message: 회원 탈퇴 성공
'400':
$ref: '#/components/responses/BadRequest'
'500':
$ref: '#/components/responses/InternalServerError'
/template:
get:
tags:
- Template
summary: 템플릿 종류 조회
responses:
'200':
description: 템플릿 종류 조회 성공
content:
application/json:
schema:
type: object
example:
status: 200
success: true
message: 모든 템플릿 조회 성공
data:
- templateId: 1
title: 템플릿1
shortInfo: 간략설명
info: 템플릿 1 설명!~!~!
hasUsed: true
- templateId: 2
title: 템플릿2
shortInfo: 간략설명
info: 템플릿 2 설명!~!~!
hasUsed: false
- templateId: 3
title: 템플릿3
shortInfo: 간략설명
info: 템플릿 3 설명!~!~!
hasUsed: true
- templateId: 4
title: 템플릿4
shortInfo: 간략설명
info: 템플릿 4 설명!~!~!
hasUsed: false
- templateId: 5
title: 템플릿5
shortInfo: 간략설명
info: 템플릿 5 설명!~!~!
hasUsed: false
'/template/{templateId}':
get:
tags:
- Template
summary: 템플릿 질문 조회
parameters:
- in: path
name: templateId
required: true
description: 템플릿 id
schema:
type: string
responses:
'200':
description: 템플릿 질문 조회 성공
content:
application/json:
schema:
type: object
example:
status: 200
success: true
message: 템플릿 조회 성공
data:
title: 장단점 생각하기
guideline: 'A or B? 결정이 어렵다면, 장단점을 비교해 최선을 찾아봐요.'
questions:
- 고민의 선택지를 나열해보세요.
- 선택지들의 장점을 생각해보세요.
- 선택지들의 단점을 생각해보세요.
- 장점과 단점을 비교해 최선의 방법을 찾아보세요.
hints:
- 예) 휴학하고 스펙 쌓기 vs 학교 생활하기
- |-
예) 휴학: 시간을 여유롭게 활용할 수 있다
학교: 칼졸업 가능!
- |-
예) 휴학: 비효율적인 시간 관리가 우려된다
학교: 취업 준비의 여유가 없다
- 예) 휴학 기간 동안 참여할 대외활동 리스트를 세워두자
'400':
$ref: '#/components/responses/BadRequest'
'500':
$ref: '#/components/responses/InternalServerError'
/worry:
post:
tags:
- Worry
summary: 고민 작성하기
consumes:
- application/json
requestBody:
x-name: body
required: true
content:
application/json:
schema:
properties:
templateId:
type: number
description: 템플릿 id
title:
type: string
description: 고민 제목
answers:
type: array
items:
type: string
description: 질문에 대한 답변들
deadline:
type: number
description: 데드라인
examples:
example_with_deadline:
value:
templateId: 2
title: 고민고민
answers:
- a
- b
- c
- d
deadline: 6
example_with_no_deadline:
value:
templateId: 2
title: 고민고민
answers:
- a
- b
- c
- d
deadline: -1
responses:
'200':
description: 고민 작성 성공
content:
application/json:
schema:
type: object
examples:
withDeadline:
value:
status: 200
success: true
message: 고민 생성 성공
data:
worryId: 524
title: 고민고민
templateId: 2
answers:
- a
- b
- c
- d
createdAt: '2023-12-21'
deadline: '2023-12-27'
dDay: -6
withNoDeadline:
value:
status: 200
success: true
message: 고민 생성 성공
data:
worryId: 524
title: 고민고민
templateId: 2
answers:
- a
- b
- c
- d
createdAt: '2023-12-21'
deadline: 데드라인이 없습니다
dDay: -888
'400':
$ref: '#/components/responses/BadRequest'
'500':
$ref: '#/components/responses/InternalServerError'
patch:
tags:
- Worry
summary: 고민 수정하기
consumes:
- application/json
requestBody:
x-name: body
required: true
content:
application/json:
schema:
properties:
worryId:
type: number
description: 고민 id
templateId:
type: number
description: 템플릿 id
title:
type: string
description: 고민 제목
answers:
type: array
items:
type: string
description: 질문에 대한 답변들
deadline:
type: number
description: 데드라인
example:
worryId: 2
templateId: 1
title: 졸업후의 나
answers:
- 11이번 시험 망칠까봐 걱정된다.이번 시험 망칠까봐 걱정된다.이번 시험 망칠까봐 걱정된다.
- 22이번 시험 망칠까봐 걱정된다.이번 시험 망칠까봐 걱정된다.이번 시험 망칠까봐 걱정된다.
- 33이번 시험 망칠까봐 걱정된다.이번 시험 망칠까봐 걱정된다.이번 시험 망칠까봐 걱정된다.
- 44이번 시험 망칠까봐 걱정된다.이번 시험 망칠까봐 걱정된다.이번 시험 망칠까봐 걱정된다.
responses:
'200':
description: 고민 수정 성공
content:
application/json:
schema:
type: object
example:
status: 200
success: true
message: 고민 수정 성공
data:
updatedAt: '2022-10-10'
'400':
$ref: '#/components/responses/BadRequest'
'500':
$ref: '#/components/responses/InternalServerError'
'/worry/{worryId}':
delete:
tags:
- Worry
summary: 고민 삭제하기
parameters:
- in: path
name: worryId
required: true
description: 고민 id
schema:
type: string
responses:
'200':
description: 고민 삭제 성공
content:
application/json:
schema:
type: object
example:
status: 200
success: true
message: 고민 삭제 성공
'400':
$ref: '#/components/responses/BadRequest'
'500':
$ref: '#/components/responses/InternalServerError'
get:
tags:
- Worry
summary: 고민 상세 조회하기
parameters:
- in: path
name: worryId
required: true
description: 고민 id
schema:
type: string
responses:
'200':
description: 고민 상세조회 성공
content:
application/json:
schema:
type: object
examples:
notFinishedWorry:
value:
status: 200
success: true
message: 고민 상세조회 성공
data:
title: 고민고민
templateId: 2
subtitles:
- 고민의 선택지
- 선택지의 장점
- 선택지의 단점
- 장점과 단점의 비교
answers:
- a
- b
- c
- d
period: 아직 고민중인 글입니다.
updatedAt: '2023-12-21'
deadline: '2023-12-27'
dDay: -6
finalAnswer: ''
review:
content: ''
updatedAt: ''
finishedWorryWithNoReview:
value:
status: 200
success: true
message: 고민 상세조회 성공
data:
title: 12/21일에 생성
templateId: 4
subtitles:
- 고민의 최종 목표
- 목표를 위한 준비
- 올해 안에 할 수 있는 실천
- 오늘 당장 할 수 있는 실천
answers:
- a
- b
- c
- d
period: 2023-12-21 ~ 2023-12-21
updatedAt: '2023-12-21'
deadline: 데드라인이 없습니다.
dDay: -888
finalAnswer: 결정했다..!
review:
content: ''
updatedAt: '2023-12-21'
finishedWorryWithReview:
value:
status: 200
success: true
message: 고민 상세조회 성공
data:
title: 12/20일에 생성
templateId: 4
subtitles:
- 고민의 최종 목표
- 목표를 위한 준비
- 올해 안에 할 수 있는 실천
- 오늘 당장 할 수 있는 실천
answers:
- a
- b
- c
- d
period: 2023-12-20 ~ 2023-12-21
updatedAt: '2023-12-21'
deadline: '2023-12-26'
dDay: 0
finalAnswer: 결정했다..!
review:
content: 리뷰
updatedAt: '2023-12-21'
'400':
$ref: '#/components/responses/BadRequest'
'500':
$ref: '#/components/responses/InternalServerError'
/worry/finalAnswer:
patch:
tags:
- Worry
summary: 최종결정 등록하기
consumes:
- application/json
requestBody:
x-name: body
required: true
content:
application/json:
schema:
properties:
worryId:
type: number
description: 고민 id
finalAnswer:
type: string
description: 최종답변
example:
worryId: 1
finalAnswer: 해카라쿠배 지원하기
responses:
'200':
description: 최종결정 등록 성공
content:
application/json:
schema:
type: object
example:
status: 200
success: true
message: 최종결정 등록 성공
data:
quote: '고민하면서 길을 찾는 사람들, 그들은 참된 인간상이다.'
'400':
$ref: '#/components/responses/BadRequest'
'500':
$ref: '#/components/responses/InternalServerError'
/worry/deadline:
patch:
tags:
- Worry
summary: 데드라인 수정하기
consumes:
- application/json
requestBody:
x-name: body
required: true
content:
application/json:
schema:
properties:
worryId:
type: number
description: 고민 id
dayCount:
type: number
description: 며칠 후
example:
worryId: 1
dayCount: 13
responses:
'200':
description: 데드라인 수정 성공
content:
application/json:
schema:
type: object
example:
status: 200
success: true
message: 데드라인 수정 성공
data:
deadline: '2023-12-31'
dDay: -5
'/worry/{isSolved}/list?page={page}&limit={limit}':
get:
tags:
- Worry
summary: 고민목록 조회하기
parameters:
- in: path
name: isSolved
required: true
description: 고민해결 여부
schema:
type: string
- in: query
name: page
schema:
type: string
required: true
- in: query
name: limit
schema:
type: string
required: true
responses:
'200':
description: 고민목록 조회 성공
content:
application/json:
schema:
type: object
example:
status: 200
success: true
message: 고민목록 조회 성공
data:
- worryId: 1
templateId: 2
title: 고민제목1
- worryId: 2
templateId: 1
title: 고민제목2
- worryId: 3
templateId: 3
title: 고민제목3
'400':
$ref: '#/components/responses/BadRequest'
'500':
$ref: '#/components/responses/InternalServerError'
'/worry?templateId={templateId}':
get:
tags:
- Worry
summary: 템플릿별 고민목록 조회하기
parameters:
- in: query
name: templateId
schema:
type: string
required: true
responses:
'200':
description: 템플릿별 고민목록 조회 성공
content:
application/json:
schema:
type: object
example:
status: 200
success: true
message: 템플릿별 고민목록 조회 성공
data:
totalNum: 3
worry:
- worryId: 1
title: 고민1
period: 2023-01-01 ~ 2023-03-02
- worryId: 2
title: 고민2
period: 2023-02-28 ~ 2023-03-14
- worryId: 3
title: 고민3
period: 2020-11-11 ~ 2021-05-06
'400':
$ref: '#/components/responses/BadRequest'
'500':
$ref: '#/components/responses/InternalServerError'
/review:
put:
tags:
- Review
summary: 나의 기록 등록 및 수정하기
consumes:
- application/json
requestBody:
x-name: body
required: true
content:
application/json:
schema:
properties:
worryId:
type: number
description: 고민 id
review:
type: string
description: 나의 기록
example:
worryId: 1
review: 후기이이ㅣㅣㅣㅣㅣ~!
responses:
'200':
description: 나의 기록 등록 및 수정 성공
content:
application/json:
schema:
type: object
example:
status: 200
success: true
message: 나의 기록 등록/수정 성공
data:
updatedAt: '2019-10-01'
'400':
$ref: '#/components/responses/BadRequest'
'500':
$ref: '#/components/responses/InternalServerError'
components:
securitySchemes:
bearerAuth:
type: http
scheme: bearer
bearerFormat: JWT
parameters: null
schemas:
User:
properties:
name:
type: string
description: 유저 이름
email:
type: string
description: 이메일 주소
Error:
type: object
properties:
status:
type: number
success:
type: boolean
message:
type: string
examples:
userExample:
value:
name: 홍길동
email: [email protected]
responses:
successResponse:
description: successful request with no data
content:
application/json:
schema:
type: object
BadRequest:
description: 잘못된 요청
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
example:
status: 400
success: false
message: 잘못된 요청
InternalServerError:
description: 서버 에러
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
example:
status: 500
success: false
message: 서버 내부 오류