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

Hi, I'm trying to update `io.swagger.core.v3:swagger-gradle-plugin` from `2.2.26` to `2.2.27`. As soon as I try this the build start to fail with the following error message ``` [2024-12-18T07:29:08.690Z] at org.gradle.api.internal.artifacts.configurations.DefaultConfiguration.preventIllegalMutation(DefaultConfiguration.java:1493)...

Bug
P1

Hello I would like to use io.swagger.core.v3:swagger-maven-plugin with Java17 to generate OpenApi yaml file version 3.X for spring services ( spring annotation for endpoints like @RequestMapping, @RestController ) Does this...

When updating our project from 2.2.26 to anything newer we get this (quite extensive :)) exception in the gradle plugin: ``` * Where: Build file '/work/workspaces/deployment/deployment/bhive/build.gradle' line: 2 * What...

Bug
P1

I was wondering if the following is possible: I have a Name object being reused in different objects: ``` import io.swagger.v3.oas.annotations.media.Schema; @Schema(type = "string", example = "Henrik") public class Name...

It is now possible to specify the name of any component using an annotation, except for RequestBody and ApiResponse. The name of the components is required not only for the...

Sorry if I've missed something in the docs, but our apps use a bootstrapped HTTP servlet to configure OpenAPI using JAX-RS and when we upgraded to Swagger 2.2.24 the servlet...

Related: #3904 I have these classes: ```java @Schema(name = "Color", type = "string", pattern = Color.REGEXP, description = "A CSS color hex code.") public record Color( @JsonValue @Pattern(regexp = REGEXP)...

### Summary I'm using annotations in a Spring Boot project to generate the OpenAPI documentation. In the resulting yaml, some descriptions and examples are written as strings, wrapped in quotes,...

Add annotations to support x-enum-descriptions and x-enum-varnames. More information here: https://openapi-generator.tech/docs/templating/#enum **Example** This java code: ``` public enum SignType { SIGNTYPE_PADES("PAdES"), SIGNTYPE_XADES("XAdES"), SIGNTYPE_CADES("CAdES"); public final String value; SignType(String value){ this.value...

Hi, I use jax-rs to create my api. It runs on weblogic server. when I use openapi.configuration.resourcePackages param with corresponding packages as param value works perfectly. However, when I use...