swagger-parser
swagger-parser copied to clipboard
Swagger Spec to Java POJOs
SwaggerParseResults.. should show what are the warnings and errors, by some prefix or separate list like in ParseRoot.. Please help to fix.
Hi, using io.swagger.parser.v3:swagger-parser:jar:2.1.22, this spec: ``` openapi: 3.0.0 info: version: 1.0.0 title: reproducing API description: Reproduces callback-with-parameters issue paths: /mypath: get: responses: '200': description: OK callbacks: myCallbackName: $ref: '#/components/callbacks/my-callback' components:...
No logic changes. Code cleanup only.
`mvn clean verify` results in PermittedUrlsCheckerTest failure ``` UnsupportedOperation class redefinition failed: attempted to change the class NestHost, NestMembers, Record, or PermittedSubclasses attribute ``` I guess because Mockit doesnt support...
This PR is to address the $ref handling issues in callbacks and discriminator mapping objects as detailed in #2086. It does it with the following changes - Extends discriminator mapping...
This PR does the following: + OpenAPIDeserializer.java add seam allowing alternative ways to convertValues from JsonNodes. (TeaVM doesnt handler use of ObjectMapper) + OpenAPIDeserializer.java use jsr310 consistently for date processing...
When relative paths are used in discriminator mappings (anyOf) & callbacks the references are not processed. **Discriminator Mapping Ref sync issue:** ``` "requestBody": { "required": true, "content": { "application/json": {...
Hello Following fix for https://github.com/swagger-api/swagger-parser/issues/1865 the name of the schema lost the dots The name of the schema being of importance in the code generation, I think the swagger-parser should...
Fixes https://github.com/swagger-api/swagger-parser/issues/2092
We have OpenAPI 3.0.1 spec with examples on relative path, we want to generate a single API file while creating API spec artifact. Our API Looks like as specified in...