diff --git a/framework/json/endpoints.json b/framework/json/endpoints.json index e394ad28..c5d7faf6 100644 --- a/framework/json/endpoints.json +++ b/framework/json/endpoints.json @@ -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", diff --git a/framework/src/endpoints.yaml b/framework/src/endpoints.yaml index 9e26e10e..0df8cc69 100644 --- a/framework/src/endpoints.yaml +++ b/framework/src/endpoints.yaml @@ -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