Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
datsirul committed Jul 16, 2024
1 parent ae4214a commit 0844996
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
9 changes: 8 additions & 1 deletion framework/json/endpoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,14 @@
"operationId": "getFilteringTerms",
"responses": {
"200": {
"$ref": "./responses/beaconFilteringTermsResponse.json"
"content": {
"application/json": {
"schema": {
"$ref": "./responses/beaconFilteringTermsResponse.json"
}
}
},
"description": "Successful operation."
},
"default": {
"$ref": "./responses/beaconErrorResponse.json",
Expand Down
6 changes: 5 additions & 1 deletion framework/src/endpoints.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,11 @@ paths:
- Informational endpoints
responses:
'200':
$ref: ./responses/beaconFilteringTermsResponse.yaml
description: Successful operation.
content:
application/json:
schema:
$ref: ./responses/beaconFilteringTermsResponse.yaml
default:
description: An unsuccessful operation.
$ref: ./responses/beaconErrorResponse.yaml
Expand Down

0 comments on commit 0844996

Please sign in to comment.