diff options
Diffstat (limited to 'support/doc/api')
-rw-r--r-- | support/doc/api/openapi.yaml | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/support/doc/api/openapi.yaml b/support/doc/api/openapi.yaml index 46c66a101..833a98d3b 100644 --- a/support/doc/api/openapi.yaml +++ b/support/doc/api/openapi.yaml | |||
@@ -1344,6 +1344,35 @@ paths: | |||
1344 | type: array | 1344 | type: array |
1345 | items: | 1345 | items: |
1346 | $ref: '#/components/schemas/VideoChannel' | 1346 | $ref: '#/components/schemas/VideoChannel' |
1347 | '/accounts/{name}/ratings': | ||
1348 | get: | ||
1349 | summary: Get ratings of an account by its name | ||
1350 | security: | ||
1351 | - OAuth2: [] | ||
1352 | tags: | ||
1353 | - User | ||
1354 | parameters: | ||
1355 | - $ref: '#/components/parameters/start' | ||
1356 | - $ref: '#/components/parameters/count' | ||
1357 | - $ref: '#/components/parameters/sort' | ||
1358 | - name: rating | ||
1359 | in: query | ||
1360 | required: false | ||
1361 | description: Optionaly filter which ratings to retrieve | ||
1362 | schema: | ||
1363 | type: string | ||
1364 | enum: | ||
1365 | - like | ||
1366 | - dislike | ||
1367 | responses: | ||
1368 | '200': | ||
1369 | description: successful operation | ||
1370 | content: | ||
1371 | application/json: | ||
1372 | schema: | ||
1373 | type: array | ||
1374 | items: | ||
1375 | $ref: '#/components/schemas/VideoRating' | ||
1347 | '/videos/{id}/comment-threads': | 1376 | '/videos/{id}/comment-threads': |
1348 | get: | 1377 | get: |
1349 | summary: Get the comment threads of a video by its id | 1378 | summary: Get the comment threads of a video by its id |
@@ -2142,6 +2171,16 @@ components: | |||
2142 | required: | 2171 | required: |
2143 | - id | 2172 | - id |
2144 | - rating | 2173 | - rating |
2174 | VideoRating: | ||
2175 | properties: | ||
2176 | video: | ||
2177 | $ref: '#/components/schemas/Video' | ||
2178 | rating: | ||
2179 | type: number | ||
2180 | description: 'Rating of the video' | ||
2181 | required: | ||
2182 | - video | ||
2183 | - rating | ||
2145 | RegisterUser: | 2184 | RegisterUser: |
2146 | properties: | 2185 | properties: |
2147 | username: | 2186 | username: |