How to combine static OpenAPI content with dynamic content from annotations?
We are using Quarkus 3.12.3 with io.quarkus:quarkus-smallrye-openapi to generate OpenAPI document at both build time and runtime, we also use the swagger-ui properties to include the Swagger UI with our application.
Using ‘org.eclipse.microprofile.openapi’ how to hide Paths/Services?
We are using org.eclipse.microprofile.openapi in a JAX-RS application and we have applied the @Schema(hidden = true) annotations both at the class level and at the Path/service level but the services are not hidden in the generated OpenAPI file so they are visible in the Swagger UI. How can we make them not be included in the OpenAPI file?