Convert OpenAPI 3.0 to Swagger 2.0

87.4k Views Asked by At

Is there a generator to convert OpenAPI 3.0 to Swagger 2.0?

Mashery, an API gateway, requires Swagger 2.0 format on input to open endpoint.

3

There are 3 best solutions below

1
Helen On BEST ANSWER

Keep in mind that OAS3→OAS2 convertion is lossy in general, because OAS3 has features that did not exist in OAS2 (such as multiple servers, oneOf/anyOf, different schemas per media type, objects in query string parameters, cookie parameters, and others).

1
niek tuytel On

I needed version 2.0 for Power Automate.

When you are building some Azure Functions, try to create them in Visual Studio and enable any checkbox that is named Swagger not OpenAPI.

Now the API of your Azure Function contains the swagger.json that you can set into Power Automate Custom Connector.

0
electrobabe On

There is also an abandoned GitHub project https://github.com/kongchen/swagger-maven-plugin that is quite useful. We forked this project and adapted it to our needs (we have to use Google Endpoints which requires OAS 2.0)!