File tree 3 files changed +89
-0
lines changed
3 files changed +89
-0
lines changed Original file line number Diff line number Diff line change @@ -126,6 +126,40 @@ const docTemplate = `{
126
126
}
127
127
}
128
128
},
129
+ "/analysis/rank": {
130
+ "get": {
131
+ "security": [
132
+ {
133
+ "Bearer": []
134
+ }
135
+ ],
136
+ "description": "로그인한 사용자의 자세 추정 결과를 통해 해당 사용자가 상위 몇 %인지 조회합니다.",
137
+ "consumes": [
138
+ "application/json"
139
+ ],
140
+ "produces": [
141
+ "application/json"
142
+ ],
143
+ "tags": [
144
+ "Reports"
145
+ ],
146
+ "summary": "내가 상위 몇 %인지 조회 (나이대 및 성별에 따른)",
147
+ "responses": {
148
+ "200": {
149
+ "description": "OK",
150
+ "schema": {
151
+ "$ref": "#/definitions/global.Response"
152
+ }
153
+ },
154
+ "400": {
155
+ "description": "Bad Request",
156
+ "schema": {
157
+ "$ref": "#/definitions/global.Response"
158
+ }
159
+ }
160
+ }
161
+ }
162
+ },
129
163
"/analysis/summary": {
130
164
"get": {
131
165
"security": [
Original file line number Diff line number Diff line change 115
115
}
116
116
}
117
117
},
118
+ "/analysis/rank" : {
119
+ "get" : {
120
+ "security" : [
121
+ {
122
+ "Bearer" : []
123
+ }
124
+ ],
125
+ "description" : " 로그인한 사용자의 자세 추정 결과를 통해 해당 사용자가 상위 몇 %인지 조회합니다." ,
126
+ "consumes" : [
127
+ " application/json"
128
+ ],
129
+ "produces" : [
130
+ " application/json"
131
+ ],
132
+ "tags" : [
133
+ " Reports"
134
+ ],
135
+ "summary" : " 내가 상위 몇 %인지 조회 (나이대 및 성별에 따른)" ,
136
+ "responses" : {
137
+ "200" : {
138
+ "description" : " OK" ,
139
+ "schema" : {
140
+ "$ref" : " #/definitions/global.Response"
141
+ }
142
+ },
143
+ "400" : {
144
+ "description" : " Bad Request" ,
145
+ "schema" : {
146
+ "$ref" : " #/definitions/global.Response"
147
+ }
148
+ }
149
+ }
150
+ }
151
+ },
118
152
"/analysis/summary" : {
119
153
"get" : {
120
154
"security" : [
Original file line number Diff line number Diff line change @@ -154,6 +154,27 @@ paths:
154
154
summary : 자세 추정 결과 전체 조회 (테스트용)
155
155
tags :
156
156
- Reports
157
+ /analysis/rank :
158
+ get :
159
+ consumes :
160
+ - application/json
161
+ description : 로그인한 사용자의 자세 추정 결과를 통해 해당 사용자가 상위 몇 %인지 조회합니다.
162
+ produces :
163
+ - application/json
164
+ responses :
165
+ " 200 " :
166
+ description : OK
167
+ schema :
168
+ $ref : ' #/definitions/global.Response'
169
+ " 400 " :
170
+ description : Bad Request
171
+ schema :
172
+ $ref : ' #/definitions/global.Response'
173
+ security :
174
+ - Bearer : []
175
+ summary : 내가 상위 몇 %인지 조회 (나이대 및 성별에 따른)
176
+ tags :
177
+ - Reports
157
178
/analysis/summary :
158
179
get :
159
180
consumes :
You can’t perform that action at this time.
0 commit comments