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

Examples and server integrations for generating the Swagger API Specification, which enables easy access to your REST API

Results 365 swagger-core issues
Sort by recently updated
recently updated
newest added

Schema generation for object array is broken in OpenAPI 3.1. Create a class with an object array field and resolve the schema for it: ```java private Object[] objectArray; ``` Set...

I updated my application to support java 21. In that, all the javax.servlet.* imports were changed to jakarta. After this, I started seeing this error in swagger: `Failed to load...

this PR fixes two issues within swagger in our project we have multiple member enums with the same name, for example: ``` class SomeObject{ public enum Type { TypeValue1, TypeValue2;...

Fixes regression from https://github.com/swagger-api/swagger-core/issues/3998 The same needs to be done for fields so that fields in inherited classes are also found. But this can be done in another pull request....

my project like this: my-maven-multi-module-project/ │ ├── parent-project/ │ └── pom.xml │ ├── module1/ │ └── pom.xml │ └── module2/ └── pom.xml parent-project/pom.xml configure swagger-maven-plugin-jakarta: ` io.swagger.core.v3 swagger-maven-plugin-jakarta ${swagger.version} swagger...