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

`@Valid` annotation is only needed for objects, where the cascading validation is required. For standard Java types and enums it is useless. Moreover, when those annotations are there for those...

Enhancement: General
Server: Java

### Description We use Maven openAPI generator plugin version **7.6.0** with following settings: ```xml org.openapitools openapi-generator-maven-plugin 7.6.0 generate ${project.basedir}/API.yml ${project.basedir} spring true true false true false target/generated-sources/api com.company.product.service.controller com.company.product.service.dto java8...

Issue: Bug

#### Bug Report Checklist As of python 3.11, a generate model class `class MyType(str, Enum)` should be replaced by `class MyType(StrEnum)` Quite annoying, more info https://blog.pecar.me/python-enum

Issue: Bug

### Is your feature request related to a problem? Please describe. When publishing the compiled package to NPM the `dist` folder is ignored because of the `.gitignore` file. ### Describe...

Enhancement: Feature

The PHP client does not correctly identify multipart/form-data requests without files. See https://github.com/OpenAPITools/openapi-generator/issues/5536#issuecomment-2182344467 for details. This PR fixes this bug. Related: https://github.com/OpenAPITools/openapi-generator/issues/5536 ### PR checklist - [x] Read the [contribution...

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

Hi folks, ##### Description having on openapi file that contains array-types as "root type" which are then translated into List-parameters of methods in java classes, the "line type" of the...

##### Description A free-form object field in a model can be hard to distinguish from other types in the mustache template. Making this an explicit property would be helpful #####...

Enhancement: General

##### Description When generating clients with the posted api definition, the .Net Client has a generated Serialize helper function for the Cartype: `localVarRequestOptions.FormParameters.Add("cartype", MyCusomWebapiClient.Client.ClientUtils.Serialize(cartype)); // form parameter ` instead of...

Issue: Bug

### Is your feature request related to a problem? Please describe. The **enumPropertyNaming** config option is not supported by the Spring server generator, and all enum properties are generated in...

Enhancement: Feature