ContributionsMost RecentMost LikesSolutionsRe: Swagger to Django Hello yiannis We're currently not suppoting Django for code generation. This could change ina. future but I cant share an ETA for it unfortunately. Re: Creating SDK using multiple YAML file Hello Nikhil1326 Codegen is not currently supporting multiple files yaml as input. You would need to create sdk per file. Re: How do I fix the issues of Swagger Generated code, when I run locally? Hello SWaggerMD I tested this using your input document on swagger editor. I got the error message when i pointed to a non existed endpoint. However when i send a request to: http://localhost:8080/users/1 i got a 200 code response. Re: Go Generating Server and Open API Hello, some generators have features implemented and others don't. This could be a case. or, it could be implemented in a different way you might expect. You could open a ticket on https://github.com/swagger-api/swagger-codegen-generators to report this as an issue or even creates a PR proposing a solution if you will. Re: Need help enabling OpenAPI into non-spring java project Hello anirtek I recommend you to use https://editor.swagger.io/ From there, you can work with yours open api definitions and generate code for multiples language/frameworks, no only spring. Hope that helps. Re: Java definition of Resource property with snake_case is generated to camelCase Hello, No really, Java generators are set to work with camel case, any snake case found will be converted to camel case. Currently there is not any option to work with both cases. Re: dependency to spring-plugin-core 1.2.0 Hello christopheAtMak Can you please let me know what codegen version are you using to get this output? Re: Can Swagger.io be used for normal java library? Hello ecstasy1857 Swagger is meant to work based on a OpenAPI specification. But certainly it can be used as a library, it's just up to you. Re: $ref and description/title Hello vsr that depends of what open api version are you working, for openapi version 3.0.x the reference object does not have any other fields than $ref, you can check that here . But for open api 3.1.x you can certainly add a description to the reference object as it's described here Re: Unable to access custom tag Hello, Right now, there is not a way to access Info object vendor extensions from templates. I have created a PR to fix that https://github.com/swagger-api/swagger-codegen/pull/10557 If you are using codegen as a dependency in your project, you could override method DefaultGenerator.configureSwaggerInfo for something like: protected void configureSwaggerInfo() { if (info.getVendorExtensions() != null && !info.getVendorExtensions().isEmpty()) { config.additionalProperties().put("info-extensions", info.getVendorExtensions()); } }