swagger-codegen icon indicating copy to clipboard operation
swagger-codegen copied to clipboard

swagger-codegen contains a template-driven engine to generate documentation, API clients and server stubs in different languages by parsing your OpenAPI / Swagger definition.

Results 498 swagger-codegen issues
Sort by recently updated
recently updated
newest added

The codegen server stub , creates the 'connect' middleware . Is there a way to create express middleware. Express is more popular . If yes, howto . If no, can...

help wanted
Server: Nodejs
General: Suggestion

##### Description If a inherited model has properties that has a pattern defined a parameter is added twice to the derived class constructor ##### Swagger-codegen version 3.0.35 ##### Swagger declaration...

##### Description For Swift clients and a given Swagger JSON/Yaml (e.g. PetStore) the Security Definitions seem to get ignored when the request builder methods get generated. ##### Swagger-codegen version v....

Hello! Trying to add @JsonIgnoreProperties(ignoreUnknown = true) annotation to all the generated model classes. Trying to accomplish by adding the configuration property: ignoreUnknownJacksonAnnotation But it seems that it simply gets...

##### Description Invalid code is generated by swagger `swaggerCodegen("io.swagger.codegen.v3:swagger-codegen-cli:3.0.35")` ##### Swagger-codegen version `3.0.35` ##### Swagger declaration file content or url Having a schema ```yaml components: schemas: Test: properties: on: type:...

## WS-2017-3805 - High Severity Vulnerability Vulnerable Library - json-20140107.jar JSON is a light-weight, language independent, data interchange format. See http://www.JSON.org/ The files in this package implement JSON encoders/decoders in...

security vulnerability

##### Description What is the status of C++, Rust, Objective-C, PowerShell and some other languages listed as **supported** in the current [README.md](https://github.com/swagger-api/swagger-codegen/blob/4a445fc0d6cf85f0e6b1aaf060681ca1ad833232/README.md) but actually not supported by the currently latest...

##### Description Endpoint parameters of style deepObject dont have description in generated page. E.g. in declaration file: ``` "parameters": [ { "name": "deepObject_parameter", "in": "query", "description": "Decription of deepObject parameter",...

##### Description Schema attributes with enum options e.g. ``` "type": { "enum": [ "option1", "option2" ], "type": "string" } ``` generate following html element: ![image](https://user-images.githubusercontent.com/49717194/190625805-24d6a1eb-3b3b-4fba-947e-4d1deacbfe0e.png) However, if parent attribute is...

Assume we have API return model in C# public class ApiResult { public T Result; public bool Success; } and returning `ApiResult` object instance to client so we have swagger...