openapi-generator icon indicating copy to clipboard operation
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)

Results 1209 openapi-generator issues
Sort by recently updated
recently updated
newest added

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,...

Enhancement: Feature

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...

Client: Kotlin
Enhancement: New generator

@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). -...

Client: Go
Enhancement: General

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]...

Issue: Bug

#### 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]...

Issue: Bug

#### 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]...

Client: Rust
Issue: Bug

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...

Issue: Bug

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...

Client: Rust
Issue: Bug

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" ```...

Issue: Bug