I'm trying to override ref value in schema for microprofile health check API in quarkus application. I followed the below link Smallrye open api interceptor and created a custom filter which overrides OASFilter. But, the ref value is not picking the new ref value from the filter.
@Override
public APIResponse filterAPIResponse(APIResponse apiResponse) {
if (apiResponse.getRef()=="#/components/schemas/HealthCheckResponse")
{
String ref = "#components/schemas/microProfile";
apiResponse.setRef(ref);
}
return apiResponse;
}
Basically, I need to add description to each property inside a schema.
Existing schema:
HealthCheckResponse:
type: object
properties:
data:
type: object
nullable: true
name:
type: string
status:
$ref: '#/components/schemas/HealthCheckStatus'
HealthCheckStatus:
enum:
- DOWN
- UP
type: string
Expected schema change:
microProfile:
description: microprofile response
type: object
properties:
data:
description: "Information of the service. If the service is down, this holds\
\ the information of why it is failed."
type: object
name:
description: 'Service Name '
type: string
status:
description: 'Service Status '
type: string
I added the property mp.openapi.filter= custom filter name in application.properties file. Any help is greatly appreciated.
There are 2 ways that I am aware off:
You can programmatically create your own custom schema and reference it.
In this case, the Schema is created programmatically, and does not have to exist anywhere in your openapi.yaml file.
You can have a defined Static Schema in your openapi.yaml which you can reference programmatically.
In this case, the schema must exist in your openapi.yaml file, as you can see we are searching for it by doing
get()
**You update the openapi.yaml only if you want to have a Static Schema already defined.
openapi.yaml
Filter:
application.properties:
Full-Example:
https://github.com/smustafa/quarkuks-openapi-exampleobject-loading-external-files