swagger-core
swagger-core copied to clipboard
Examples and server integrations for generating the Swagger API Specification, which enables easy access to your REST API
I have a dataclass that is used as a field in complex request and response bodies. The class uses `JsonFormat` to have custom serialisation: ``` @JsonFormat(shape = JsonFormat.Shape.OBJECT) public enum...
Hello, I have these fields in Java object  however, when i look at generated apidocs, the additional information is missing  When i change them to Boolean object, it...
I am using swagger.core.v3 in version 2.0.2 to generate openAPI 3.0 definition files and I am having trouble to disable "security" for a particular endpoint. I have global securitySchemes and...
We have over 200 APIs on Jersey (Non-Spring tech stack). We have integrated swagger and are now writing annotations. The entities/pojos returned by our APIs are all wrapped inside a...
Version: swagger core 2.0.8, (openapi 3) I am following the [Swagger 2.0 Annotation docs](https://github.com/swagger-api/swagger-core/wiki/Swagger-2.X---Annotations#parameter) , but I am unable to view example value for body in swagger UI. `public Response...
i want to generate openapi.json with swagger-maven-plugin,but i found the file is empty like this,so how can i resolve it?  
I'm trying to set a default value for one of my query params, but the Parameter annotation doesn't have defaultValue. I tried using the prop schema and pass the value...
When the second letter of the attribute `name `of my entity class is capitalized, swagger will interpret my letter as lowercase. At this time, I use the `name `attribute of...
Wrote description of problem here: https://github.com/zalando/problem/issues/319#issuecomment-1116008030 > This is because the implementation used by the problem-detail library, has StatusType in the POJO, and registers a Jackson-Module to the ObjectMapper, that...
Hi, is it possible to declare a map, which values are list of string. I have a project which uses open api 3.0.1 and **swagger-codegen-generators** 1.0.29 and I want to...