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

currently, the swagger only generates correctly for Integer and Long types. I am using Short and Byte type, and they are not generated correctly. even using the **type** and **format**...

Defining grouping in swagger endpoints to reduce the challenges brought in creating a per class request models in huge system for better maintainability and for less class redundancy.

It there a preferred method to ignore / skip parameters by annotation? Swagger-jaxrs at least ignores some annotated parameters by default (e.g. `@Context`) so that auto-injected elements like UriInfo do...

Hello, I have a java application Jee not using any javax.rs annotation or Spring , I was using swagger maven plugin latest release to generate OpenAPI file. If i add...

So, Im trying to generate swagger for a Map. the Scala Map class has a property on it for Empty, which is showing up by default, so Im trying to...

Swagger correctly identifies subtypes annotated with @JsonSubTypes on Mixins but it seems to ignore a @JsonTypeInfo specified on a Mixin. ``` @Test fun `should generate polymorphic swagger based on json...

Hello, I'm currently working with V2.2.2. I use javax for some Annotations I have following schemas in my rest service: `@Content(mediaType = MediaType.APPLICATION_XML, schema = @Schema(implementation = ClassA.class)` `@Content(mediaType =...

Hello, When generating a swagger documentation for a class extending ArrayList, the schema of the class doesn't have the "items" property. It happens with this particular schema: ![arrayList](https://user-images.githubusercontent.com/631898/187388046-bb1a4f97-1c22-4854-84ac-8033988bcd6d.png) Here is...

I am having a parent class with subclasses. I am using different `@JsonView` annotations where the classes are used for request bodies and response bodies. When generating a schema from...

Feature request: Allow schemas of request bodies (or probably for all related elements) to be inline rather then always a reference to a common schema. E.g. by adding a property...