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

Can you fix vulnerabilities from dependencies: CVE-2022-42004 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42004 CVE-2022-42003 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-42003

Hello, parsing a OAS 3.0.0 spec in UTF-8 with this configuration : `openapi: 3.0.0` `info:` ` title: ApiWeb` ` version: 1.0.0` ` description: "Documentation de l'API élaboré par nos soins"`...

As someone who isn't familiar with slf4j, I'm having a hard time finding how to stop swagger-parser from clogging my console with warning messages during my tests. Maybe you could...

I'm using swagger parser 03, with flatten enable ``` ParseOptions parseOptions = new ParseOptions(); parseOptions.setFlatten(true); final OpenAPI openAPI = new OpenAPIV3Parser().read(openAPIFileContent, null, parseOptions); ... ``` The Received OpenAPI model contains...

Hi Currently, I'm using the swagger parser for getting parsing OpenAPI objects from my given specification. ``` SwaggerParseResult parseResult = new OpenAPIV3Parser().readContents(openAPIFileContent, null, parseOptions); if (!parseResult.getMessages().isEmpty()) { ... } ```...

This works: ```java @RestController @RequestMapping("/api") @Tag(name = "Account", description = "Account REST APIs") public class AccountResource { ... } ``` This doesn't work: ```java @RestController @RequestMapping("/api") @Tag(name = "Account") public...

We are trying to enforce some properties via `required` together with `allOf` to reuse existing definitions: ```yaml openapi: 3.0.0 info: title: Minimal OpenAPI 3.0 with required on the same allOf...

Parsing schemas with refs to other files fails with the following exception, when the jar file is run: ``` 08:35:32.381 [main] WARN io.swagger.v3.parser.OpenAPIV3Parser -- Exception while resolving: java.lang.RuntimeException: Unable to...

I have my API definition in a YAML file and I tried to use absolute references to make references to common or shared API "components" (or fragments) hosted on a...