You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But I need the OpenAPI processor to find the schema from the Java resources instead: resource://my-schema.json.
What's the best way to re-route the the schema refs to the resources using Smallrye OpenAPI 4. It would need to also handle the $ref properties inside the schemas themselves that have URLs. My guess was to utilize OASFilter? Unless there is a better way.
The text was updated successfully, but these errors were encountered:
Hi @mikethecalamity , is your goal to have the remote URLs references in the output but also include the contents of the schema JSON files in the main OpenAPI? Or do you want a single doc result without any references?
The annotations on my REST resources define the schema references with URLs like this:
But I need the OpenAPI processor to find the schema from the Java resources instead:
resource://my-schema.json
.What's the best way to re-route the the schema refs to the resources using Smallrye OpenAPI 4. It would need to also handle the
$ref
properties inside the schemas themselves that have URLs. My guess was to utilizeOASFilter
? Unless there is a better way.The text was updated successfully, but these errors were encountered: