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

Swagger Spec to Java POJOs

Results 261 swagger-parser issues
Sort by recently updated
recently updated
newest added

So yesterday I ran into a problem that threw the following error: `Unable to load " + refFormat + " ref: " + file + " path: "+parentDirectory` And it...

The use System.getenv is pulling operating system environments that are not contained to just a java JVM. This may cause SecurityManager access exceptions. Most recent commit that uses the field:...

If you try to use the converter in a modern Jakarta-packaged application you get problems with duplicate classes in swagger-core and swagger-annotations. The workaround is to exclude them and depend...

v3.1.0 min/max/Items/Length/Properties information omitted from schema when numeric (float) values are used whose value equals an integer value. Applies to: - maxItems - maxLength - maxProperties - minItems - minLength...

3.1.0 parsing of document with max/minContains removes constraint if value is a float swagger-parser version: 2.1.1 For spec: ``` openapi: 3.1.0 servers: - url: https://someserver.com/v1 info: title: openapi 3.1.0 sample...

3.1.0 parsing of schema containing dependentRequired adds values not present in spec using swagger-parser v2.1.1 when parsing a spec with this schema: ``` DependenciesWithEscapedCharacters: $schema: https://json-schema.org/draft/2020-12/schema dependentRequired: ? 'foo bar'...

In essence we would like to be able to control how the HTTP requests are sent (e.g. handle custom authentication, connection settings, outgoing proxy, timeouts, rate limiting, …). We are...

In the doc, it's written that we can use Java SPI to provide customized extension for SwaggerParserExtension. But when extensions are being read, OpenAPIV3Parser#getExtensions() always add OpenAPIV3Parser in first. So...

I'm currently using **[swagger-parser](https://github.com/swagger-api/swagger-parser)** to transform Swagger 2.0 Specification to a OpenAPI 3.0. The problem with the conversion is that it oddly add a new field (extensions) at the root...

3.1.0 spec parsing, $defs information omitted When parsing a spec like this: ``` # OAS document that uses 3.1 features: # 'null' type # type array openapi: 3.1.0 info: version:...