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

As discussed in #162, our builds gets more and more complex and takes to long on small hardware. If we switch to gradle: * Build time will be improved (gradle...

General: Discussion

### Is your feature request related to a problem? Please describe. Currently java generator (as well as some other generators) has x-field-extra-annotation feature, which allows to annotate Java fileds for...

Enhancement: Feature

### Is your feature request related to a problem? Please describe. We have services in two places that include the same domain objects We want to generate all the domain...

Enhancement: Feature

A spec like this: ``` openapi: 3.0.3 info: title: api spec version: 1.0.0 servers: - url: /v3 components: schemas: $ref: './definitions/_index.yaml' ... ``` Results in validation error(s): ``` xception in...

Issue: Bug

hi, i try to generate client in java for https://gitlab.com/gitlab-org/gitlab/-/raw/master/doc/api/openapi/openapi.yaml using java -jar openapi-generator-cli-7.3.0.jar generate -i openapi.yaml -g java --additional-properties=library=native,annotationLibrary=none the problem is that private-token is not included anywhere so...

Enhancement: Feature

#### Bug Report Checklist - [ ] 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/))? -...

Issue: Bug

So, what happend to us was that we had a particular problem with a file upload. We created the server side as well as the client side with OpenAPI generators...

Issue: Bug
Server: Kotlin

### Is your feature request related to a problem? Please describe. We are using the [Java generator](https://openapi-generator.tech/docs/generators/java) in order to access other REST resources. The generated code also produces JUnit...

Enhancement: Feature

### Is your feature request related to a problem? Please describe. hi, everyone, i'm using openapi-generator for generate TS services and models I m using Symfony 4 with Doctrine and...

Enhancement: Feature

Currently Kotlin multiplatform didn't support Polymorphic Serializer. I have implemented the polymorphic support by using JsonContentPolymorphicSerializer from kotlinx.serialization You can check the sample : `samples/client/petstore/kotlin-multiplatform-polymorphic` ``` internal object AnimalSerializer :...

Client: Kotlin
Enhancement: General