VaporToOpenAPI icon indicating copy to clipboard operation
VaporToOpenAPI copied to clipboard

OpenAPI specification generator for Vapor based Swift projects.

Results 6 VaporToOpenAPI issues
Sort by recently updated
recently updated
newest added

We have a number of Vapor apps that we've started adding docs to using VaporToOpenAPI. Building in Xcode works as expected, as does building on Gitlab CI. However, when trying...

Hello, I encountered following problem. I have following DTO: ```swift struct GetStudentDTO: Content { var id: UUID var courseOfStudy: String var email: String } ``` And following route: ```swift student.get("me",...

bug

So I'm playing around with this library that seems fantastic but the only issue is when you run the your backend there is no swagger website being generated only the...

question

Hi, thanks for the awesome package! I was trying to look into the code and figure out where the encoding is happening but did not figure out the precise place....

Hi, I have an enum that looks like the one below. The package correctly generates it as a schema and uses the $ref in the enclosing struct. However, in the...

I have a `Content` object that includes a date, that I encode as an ISO 8601 string on output: ``` struct Info: Content { let id: UUID let createdDate: Date...