openapi-generator
openapi-generator copied to clipboard
OpenAPI Generator allows generation of API client libraries (SDK generation), server stubs, documentation and configuration automatically given an OpenAPI Spec (v2, v3)
Maybe this already is possible and I just don't know how to use it. Here's my problem / idea: By default openapigen uses string for `"type": "string", "format": "date-time"` models,...
Added support for Vert.X library into Kotlin Client generator. New generator can be tested using kotlin-client generator with vertx library. Ping @jimschubert ### PR checklist - [x] Read the [contribution...
@antihax (2017/11) @grokify (2018/07) @kemokemo (2018/09) @jirikuncar (2021/01) @ph4r5h4d (2021/04) Improve error message when error returns RFC7807 model Fix #13679 ### PR checklist - [x] Read the [contribution guidelines](https://github.com/openapitools/openapi-generator/blob/master/CONTRIBUTING.md). -...
Update the DefaultGenerator to not remove server URLs that are a single `/` ### PR checklist - [x] Read the [contribution guidelines](https://github.com/openapitools/openapi-generator/blob/master/CONTRIBUTING.md). - [x] Pull Request title clearly describes the...
#### Bug Report Checklist - [X] Have you provided a full/minimal spec to reproduce the issue? - [X] Have you validated the input using an OpenAPI validator ([example](https://apidevtools.org/swagger-parser/online/))? - [X]...
#### Bug Report Checklist - [x] Have you provided a full/minimal spec to reproduce the issue? - [x] Have you validated the input using an OpenAPI validator ([example](https://apidevtools.org/swagger-parser/online/))? - [x]...
#### Bug Report Checklist - [X] Have you provided a full/minimal spec to reproduce the issue? - [X] Have you validated the input using an OpenAPI validator ([example](https://apidevtools.org/swagger-parser/online/))? - [X]...
I have to generate a client for a rest api. The openapi 3.0 file contains document_body: type: object properties: info: $ref: '#/components/schemas/UploadInfo' file: type: string format: binary I'm generating the...
The Rust-based reqwest client does not correctly handle a binary body parameter today. It creates a `PathBuf` parameter and attempts to pass that to the `RequestBuilder` `json()` method, which sends...
When I declare enums with underscore and number their name comes out incorrectly. ```yaml ExampleEnum: title: "exampleEnum" description: "Example enum" type: "string" enum: - "EXAMPLE_ENUM_1" - "EXAMPLE_ENUM_2" - "EXAMPLE_ENUM_NO_NUMBER" ```...