Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions openapi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

<!-- TODO(a.garipov): Reformat in accordance with the KeepAChangelog spec. -->

## v0.107.76: API changes

### Documentation fix for the `reason` query parameter in 'GET /control/querylog'

- The `reason` query parameter documentation has been updated to reflect that this parameter is an array.

## v0.107.75: API changes

### New `reason` query parameter in 'GET /control/querylog'
Expand Down
7 changes: 5 additions & 2 deletions openapi/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -243,11 +243,14 @@
- 'name': 'reason'
'in': 'query'
'description': >
Filter by response filtering reason
Filter by response filtering reason. Multiple reasons can be
provided.

NOTE: This parameter cannot be used with 'response_status' parameter.
'schema':
'$ref': '#/components/schemas/FilteringReason'
'type': 'array'
'items':
'$ref': '#/components/schemas/FilteringReason'
'responses':
'200':
'description': 'OK.'
Expand Down
Loading