Skip to content

Commit f1b3743

Browse files
정동하정동하
authored andcommitted
api명세서 수정
1 parent 7c48328 commit f1b3743

File tree

1 file changed

+25
-7
lines changed

1 file changed

+25
-7
lines changed

docs/api-specification.yaml

Lines changed: 25 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -901,17 +901,35 @@ paths:
901901
data:
902902
$ref: '#/components/schemas/GuideRatingSummaryResponse'
903903

904-
/api/rate/aichat/sessions:
904+
/api/rate/admin/aichat/sessions:
905905
get:
906906
tags:
907907
- rate
908-
summary: 내가 남긴 AI 채팅 평가 조회
909-
description: 현재 로그인한 사용자가 자신이 남긴 모든 AI 채팅 평가 목록을 조회합니다.
908+
summary: 관리자의 모든 AI 채팅 평가 조회
909+
description: 관리자가 모든 AI 채팅 세션의 평가 목록을 페이지 단위로 조회합니다.
910910
security:
911911
- BearerAuth: []
912+
parameters:
913+
- in: query
914+
name: page
915+
schema:
916+
type: integer
917+
description: 페이지 번호 (0부터 시작)
918+
default: 0
919+
- in: query
920+
name: size
921+
schema:
922+
type: integer
923+
description: 페이지당 개수
924+
default: 20
925+
- in: query
926+
name: sort
927+
schema:
928+
type: string
929+
description: '정렬 기준 (예: createdAt,desc)'
912930
responses:
913931
'200':
914-
description: 내가 남긴 AI 채팅 평가 목록 조회 성공
932+
description: AI 채팅 평가 목록 조회 성공
915933
content:
916934
application/json:
917935
schema:
@@ -920,8 +938,8 @@ paths:
920938
- type: object
921939
properties:
922940
data:
923-
type: array
924-
items:
925-
$ref: '#/components/schemas/RateResponse'
941+
type: object
942+
description: Page<RateResponse> 형태
943+
926944

927945

0 commit comments

Comments
 (0)