SwagGen
SwagGen copied to clipboard
OpenAPI/Swagger 3.0 Parser and Swift code generator
Hi, please rerun/fix 4.7.0 release on brew
We have an OpenAPI v3 JSON that has media types of `application/json;charset=UTF8`. These are ignored by SwagGen when processing request bodies as it's explicitly looking for `application/json` or variations thereof...
Add NullCodable support
If you take the following array: `[ {"id": 1, "name" : "test", "tags" : ["tag1", "tag2"]}, {"id":2, "name":"test2", "tags":null}]` it fails on decode with the error: _**Expected to decode Array...
It would be great to use this without xcode, or to be more exact to run it in docker, like the official swagger codegen? Having xcode as a dependency really...
Very minor bug, just filing it so I remember to make a PR after the holidays! I'm using SwagGen on Linux, and it doesn't run out of the box because...
Hey 👋 I've recently spent some time fighting with SwagGen because it would enter a recursion when attempting to parse a given json spec. After much debugging, I narrowed down...
## Description If we pass `/Specs/PetstoreTest/spec.yml` through the online validator a https://editor.swagger.io, it throws these validation errors: Same goes for `/Specs/Rocket/spec.yml` (there're tens of errors on this one, they wouldn't...
Two valid specifications (verified by swagger.io online validator): ``` openapi: 3.0.0 info: version: 1.0.0 title: Swagger Petstore tags: - name: pet description: Everything about your Pets paths: /pet: post: tags:...
Hey 👋 I've found an issue where code like this: ```js /** * This is a multiline * comment. */ public myProperty: MyClass[]; ``` Gets translated into this swagger json:...