OpenAPI parser
OpenAPI 3.2 support
added support for OpenAPI 3.2
Overlay 1.0 support
OpenApiResult
has a new apply()
method to apply an Overlay document.
/**
* Apply an OpenAPI overlay to the OpenAPI document. The result document has to be parsed to navigate its OpenAPI
* model. The document should be bundled before applying an overlay.
*
* @param overlay the overlay document
* @return a raw copy of the OpenAPI document with the applied overlay.
*/
@Experimental
Map<String, @Nullable Object> apply(OverlayResult overlay);
see usage