-
Notifications
You must be signed in to change notification settings - Fork 0
/
api-docs.yaml
1798 lines (1798 loc) · 52.8 KB
/
api-docs.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
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.0.1
info:
title: SROOM 프로젝트
description: RESTful API
version: v1.0.0
servers:
- url: http://localhost:8080
description: Generated server url
paths:
/members/profile:
put:
tags:
- 로그인
summary: 프로필 이름 수정
description: name을 받아 멤버의 이름을 수정합니다.
operationId: updateMemberName
requestBody:
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/NameUpdateRequest'
required: true
responses:
"400":
description: Bad Request
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"404":
description: Not Found
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"401":
description: Unauthorized
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"200":
description: 멤버 이름 변경에 성공하였습니다.
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/NameUpdateResponse'
/materials/summaries/{courseVideoId}:
put:
tags:
- 강의 수강
summary: 강의 노트 수정하기
description: 영상 ID를 사용해 저장된 강의노트를 수정합니다.
operationId: updateSummaries
parameters:
- name: courseVideoId
in: path
required: true
schema:
type: integer
format: int64
requestBody:
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/SummaryEdit'
required: true
responses:
"400":
description: Bad Request
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"404":
description: Not Found
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"401":
description: Unauthorized
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"200":
description: 성공적으로 강의 노트를 업데이트 했습니다.
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/SummaryId'
/materials/quizzes/{courseQuizId}/scrap:
put:
tags:
- 강의 수강
summary: "퀴즈 오답노트 등록, 취소"
description: courseQuizId 를 받아 해당 퀴즈를 오답노트에 등록하거나 취소합니다.
operationId: switchScrapFlag
parameters:
- name: courseQuizId
in: path
required: true
schema:
type: integer
format: int64
responses:
"400":
description: Bad Request
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"404":
description: Not Found
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"401":
description: Unauthorized
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"200":
description: 성공적으로 오답노트에 등록/취소하였습니다.
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ScrapResult'
/lectures/{courseVideoId}/time:
put:
tags:
- 강의 수강
summary: 시청중인 강의 학습시간 저장하기
description: "duration을 입력받아 업데이트하고, 70%가 넘었다면 수강완료 처리한다."
operationId: updateLectureTime
parameters:
- name: courseVideoId
in: path
required: true
schema:
type: integer
format: int64
- name: isCompletedManually
in: query
required: false
schema:
type: boolean
default: false
requestBody:
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/LectureTimeRecord'
required: true
responses:
"400":
description: Bad Request
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"404":
description: Not Found
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"401":
description: Unauthorized
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"200":
description: 성공적으로 학습시간을 저장 하였습니다.
content:
application/json:
schema:
$ref: '#/components/schemas/LectureStatus'
/reviews/lectures/{lectureId}:
post:
tags:
- 리뷰 평점
summary: 리뷰 평점 작성
description: 리뷰 평점 작성 및 제출
operationId: postReview
parameters:
- name: lectureId
in: path
required: true
schema:
type: integer
format: int64
requestBody:
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ReviewSubmitRequest'
required: true
responses:
"400":
description: Bad Request
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"404":
description: Not Found
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"401":
description: Unauthorized
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"200":
description: 성공적으로 작성 완료되었습니다.
content:
application/json:
schema:
$ref: '#/components/schemas/ReviewSubmitResponse'
/members/refresh:
post:
tags:
- 로그인
summary: access token 갱신
description: refresh token을 사용하여 로그인을 유지합니다.
operationId: refresh
requestBody:
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/RefreshToken'
required: true
responses:
"400":
description: Bad Request
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"404":
description: Not Found
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"401":
description: Unauthorized
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"200":
description: 토큰 갱신에 성공하였습니다.
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/Login'
/members/login:
post:
tags:
- 로그인
summary: 사용자 로그인
description: 구글 ID 키를 사용하여 사용자를 인증합니다.
operationId: login
requestBody:
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/GoogleIdKey'
required: true
responses:
"400":
description: 요청 본문이 유효하지 않습니다.
content: {}
"404":
description: Not Found
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"401":
description: 인증에 실패하였습니다.
content: {}
"200":
description: 성공적으로 사용자를 인증하였습니다.
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/Login'
/materials/quizzes/{courseVideoId}:
post:
tags:
- 강의 수강
summary: 퀴즈 채점 결과 저장
description: courseVideoId 를 받아 채점 결과를 courseQuiz 테이블에 저장합니다.
operationId: submitQuizResults
parameters:
- name: courseVideoId
in: path
required: true
schema:
type: integer
format: int64
requestBody:
content:
application/json;charset=UTF-8:
schema:
type: array
items:
$ref: '#/components/schemas/SubmittedQuiz'
required: true
responses:
"400":
description: Bad Request
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"404":
description: Not Found
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"401":
description: Unauthorized
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"200":
description: 성공적으로 채점 결과를 저장했습니다.
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/SubmittedQuizInfo'
/courses:
get:
tags:
- 내 강의실
summary: 내 강의코스 불러오기
description: 멤버ID를 입력받아 멤버의 등록 코스 리스트와 관련 정보를 불러옵니다.
operationId: getMyCourses
responses:
"400":
description: Bad Request
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"404":
description: Not Found
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"401":
description: Unauthorized
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"200":
description: 성공적으로 코스 리스트를 불러왔습니다.
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/MyCourses'
post:
tags:
- 강의 등록
summary: 강의 신규 등록
description: 강의코드를 입력받아 코스를 생성합니다.
operationId: enrollCourse
parameters:
- name: use_schedule
in: query
required: true
schema:
type: boolean
requestBody:
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/NewLecture'
required: true
responses:
"400":
description: Bad Request
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"404":
description: Not Found
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"401":
description: Unauthorized
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"200":
description: 성공적으로 강의 코스를 등록하였습니다.
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/EnrolledCourseInfo'
/courses/{courseId}:
get:
tags:
- 강의 수강
summary: 수강페이지 코스정보
description: 코스 ID를 받아 해당 코스 정보와 수강할 영상 리스트를 반환합니다.
operationId: getCourseDetail
parameters:
- name: courseId
in: path
required: true
schema:
type: integer
format: int64
responses:
"400":
description: Bad Request
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"404":
description: Not Found
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"401":
description: Unauthorized
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"200":
description: 성공적으로 수강 정보를 반환하였습니다.
content:
application/json:
schema:
$ref: '#/components/schemas/CourseDetail'
post:
tags:
- 강의 등록
summary: 기존 코스 강의 등록
description: 강의코드와 코스ID를 받아 코스에 추가합니다.
operationId: addLectureInCourse
parameters:
- name: courseId
in: path
required: true
schema:
type: integer
format: int64
requestBody:
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/NewLecture'
required: true
responses:
"400":
description: Bad Request
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"404":
description: Not Found
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"401":
description: Unauthorized
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"200":
description: 성공적으로 코스에 강의를 추가하였습니다.
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/EnrolledCourseInfo'
delete:
tags:
- 내 강의실
summary: 강의 코스 삭제
description: "지정한 강의 코스를 삭제하고, 업데이트된 강의 리스트를 반환합니다."
operationId: deleteCourse
parameters:
- name: courseId
in: path
required: true
schema:
type: integer
format: int64
responses:
"400":
description: Bad Request
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"404":
description: Not Found
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"401":
description: Unauthorized
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"200":
description: "강의코스 삭제가 성공했으며, 정상적으로 결과를 반환했습니다."
content:
application/json:
schema:
$ref: '#/components/schemas/MyCourses'
/:
get:
tags:
- health-check-controller
operationId: healthCheck
responses:
"400":
description: Bad Request
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"404":
description: Not Found
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"401":
description: Unauthorized
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"200":
description: OK
content:
application/json;charset=UTF-8:
schema:
type: object
/reviews/courses/{courseId}:
get:
tags:
- 리뷰 평점
summary: 리뷰 평점 강의 리스트 조회
description: 리뷰 평점을 위한 코스 내 강의 리스트 조회
operationId: getLectureList
parameters:
- name: courseId
in: path
required: true
schema:
type: integer
format: int64
responses:
"400":
description: Bad Request
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"404":
description: Not Found
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"401":
description: Unauthorized
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"200":
description: 성공적으로 강의 리스트를 불러왔습니다.
content:
application/json:
schema:
$ref: '#/components/schemas/LectureBriefList4Review'
/materials/{courseVideoId}:
get:
tags:
- 강의 수강
summary: 강의자료 불러오기
description: "영상 ID를 사용해 저장된 강의노트, 퀴즈를 불러옵니다."
operationId: getMaterials
parameters:
- name: courseVideoId
in: path
required: true
schema:
type: integer
format: int64
responses:
"400":
description: Bad Request
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"404":
description: Not Found
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"401":
description: Unauthorized
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"200":
description: 성공적으로 강의 자료를 불러왔습니다.
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/Material'
/lectures:
get:
tags:
- 강의 검색
summary: 강의 키워드 검색
description: 키워드를 입력받아 유튜브 강의를 검색한다.
operationId: getLecturesByKeyword
parameters:
- name: keywordSearchParam
in: query
required: true
schema:
$ref: '#/components/schemas/KeywordSearchParam'
- name: keyword
in: query
description: 검색할 키워드
required: true
example: 네트워크
- name: limit
in: query
description: 결과의 최대 개수
example: 5
- name: filter
in: query
description: "검색 종류 필터, all, playlist, video"
example: all
- name: nextPageToken
in: query
description: 다음 페이지 토큰
example: QAUQAA
- name: prevPageToken
in: query
description: 이전 페이지 토큰
example: CAUQAA
responses:
"400":
description: Bad Request
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"404":
description: Not Found
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"401":
description: Unauthorized
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"200":
description: 성공적으로 검색 결과를 반환하였습니다.
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/KeywordSearch'
/lectures/{lectureCode}:
get:
tags:
- 강의 검색
summary: 강의 상세 정보 조회
description: 강의 ID를 이용하여 강의의 상세 정보를 조회한다.
operationId: getLectureDetail
parameters:
- name: lectureCode
in: path
description: 강의 코드
required: true
schema:
type: string
example: OEV8gMkCHXQ
- name: lectureDetailParam
in: query
required: true
schema:
$ref: '#/components/schemas/LectureDetailParam'
- name: index_only
in: query
description: 목차만 응답 여부
example: false
- name: review_only
in: query
description: 후기만 응답 여부
example: false
- name: index_limit
in: query
description: 결과의 최대 개수
example: 50
- name: review_limit
in: query
description: 후기의 최대 개수
example: 10
- name: index_next_token
in: query
description: 목차 다음 페이지 토큰
example: EAAaBlBUOkNESQ
responses:
"400":
description: Bad Request
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"404":
description: Not Found
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"401":
description: Unauthorized
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"200":
description: 성공적으로 강의 상세 정보를 반환하였습니다.
content:
application/json:
schema:
oneOf:
- $ref: '#/components/schemas/PlaylistDetail'
- $ref: '#/components/schemas/VideoDetail'
- $ref: '#/components/schemas/IndexInfo'
/lectures/recommendations:
get:
tags:
- 강의 검색
summary: 강의 추천
description: 유저 ID를 받아 적당한 강의를 추천한다.
operationId: getRecommendations
responses:
"400":
description: Bad Request
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"404":
description: Not Found
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"401":
description: Unauthorized
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"200":
description: 성공적으로 추천 결과를 반환하였습니다.
content:
application/json:
schema:
$ref: '#/components/schemas/Recommendations'
/dashboards:
get:
tags:
- 대시보드
summary: 대시보드 불러오기
description: 유저 ID 바탕으로 대시보드 정보 불러오기
operationId: getDashboard
responses:
"400":
description: Bad Request
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"404":
description: Not Found
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"401":
description: Unauthorized
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/ErrorResponse'
"200":
description: 성공적으로 대시보드를 반환하였습니다.
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/Dashboard'
components:
schemas:
ErrorResponse:
type: object
properties:
statusCode:
type: integer
format: int32
message:
type: string
NameUpdateRequest:
type: object
properties:
name:
type: string
description: 수정할 멤버 이름
example: 손경식
description: 멤버 이름 수정
NameUpdateResponse:
type: object
properties:
memberId:
type: integer
format: int64
name:
type: string
SummaryEdit:
type: object
properties:
content:
type: string
SummaryId:
type: object
properties:
summaryId:
type: integer
format: int64
ScrapResult:
type: object
properties:
courseQuizId:
type: integer
format: int64
is_scrapped:
type: boolean
LectureTimeRecord:
type: object
properties:
view_duration:
type: integer
format: int32
writeOnly: true
viewDuration:
type: integer
format: int32
LectureStatus:
type: object
properties:
courseVideoId:
type: integer
format: int64
viewDuration:
type: integer
format: int32
is_completed:
type: boolean
description: 해당 강의에 대한 수강정보
ReviewSubmitRequest:
type: object
properties:
submittedRating:
type: integer
format: int32
reviewContent:
type: string
description: 리뷰 작성 API 요청 객체
ReviewSubmitResponse:
type: object
properties:
lectureId:
type: integer
format: int64
reviewId:
type: integer
format: int64
submittedRating:
type: integer
format: int32
reviewContent:
type: string
description: 리뷰 작성 API Response
RefreshToken:
type: object
properties:
refreshToken:
type: string
description: 리프레시 토큰
example: eyJhbGci...
description: 리프레시 토큰
Login:
type: object
properties:
accessToken:
type: string
description: 엑세스 토큰
example: eyJhbGci...
refreshToken:
type: string
description: 리프레시 토큰
example: eyJhbGci...
expiresAt:
type: integer
description: 만료 시간(초)
format: int64
example: 1688398507
name:
type: string
description: 멤버 이름
example: user_978538
profile:
type: string
description: 멤버 프로필 사진
example: https://lh3.googleusercontent.com/a/ACg8ocI-Fz8cwMOHu2AJttFMt-s-25lPa--EUakuTRgvqfi-bA=s96-c
bio:
type: string
description: 사용자 한줄소개
description: 로그인 정보
GoogleIdKey:
type: object
properties:
credential:
type: string
description: 구글 ID 토큰
example: eyJhbGciOiJSUzI1NiIsImtpZCI6Ijk5YmNiMDY5MzQwYTNmMTQ3NDYyNzk0ZGZlZmE3NWU3OTk2MTM2MzQiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJodHRwczovL2FjY291bnRzLmdvb2dsZS5jb20iLCJuYmYiOjE2ODgyMTkyODAsImF1ZCI6IjEwODUyMjEwNDc5NDYtNHMxZ2YwZjlqdHQ3OTB2a2ZkcHZ1Z3FqbW9qMzdrdGsuYXBwcy5nb29nbGV1c2VyY29udGVudC5jb20iLCJzdWIiOiIxMDYwMzMxMTQ0MzU1MjY2MTA0ODciLCJlbWFpbCI6ImxqanVuMDcwMkBnbWFpbC5jA0Nzk0Ni00czFnZjBmOWp0dDc5MHZrZmRwdnVncWptb2ozN2t0ay5hcHBzLmdvb2dsZXVzZXJjb250ZW50LmNvbSIsIm5hbWUiOiLsnbTsooXspIAiLCJwaWN0dXJlIjoiaHR0cHM6Ly9saDMuZ29vZ2xldXNlcmNvbnRlbnQuY29tL2EvQUF=NLQmhRemdtZnNMdXpJVEhNS081bHNnN3FrPXM5Ni1jIiwiZ2l2ZW5fbmFtZSI6IuyiheykgCIsImZhbWlseV9uYW1lIjoi7J20IiwiaWF0IjoxNjg4MjE5NTgwLCJleHAiOjE2ODgyMjMxODAsImp0aSI6kNmVmNmMyM2JlZDgifQ.U1zcrnD9T9tnq2boIRZ9m37fVqeq25elAyBtghKG1p4mzbI1VoygbzdbyYihUkIVz8I21EDiiny9pO8ZBh7_pfSVHXok2XWPtWtzp3SHFKwePhW-SD0HAh8vDPJrkGCiQj5CupAL5nIs-GlIfusC7rx9A1hHaxu-CNyuEDlqrHh-MHlQLN4Wp42RfptOf68cIZZvKQ9D-Fx7Ag6F3Ot8Wfq5yZA
description: 구글 ID 토큰
SubmittedQuiz:
type: object
properties:
id:
type: integer
format: int64
writeOnly: true
submitted_answer:
type: string
writeOnly: true
is_correct:
type: boolean
writeOnly: true
submittedAnswer:
type: string
isCorrect:
type: boolean
quizId:
type: integer
format: int64
SubmittedQuizInfo:
type: object
properties: