swagger-scala-module
swagger-scala-module copied to clipboard
Swagger support for scala
Welcome to [WhiteSource for GitHub.com](https://github.com/apps/whitesource-for-github-com)! This is an onboarding PR to help you understand and configure settings before WhiteSource starts scanning your repository for security vulnerabilities. :vertical_traffic_light: WhiteSource for GitHub.com...
I have a partial implementation ( https://github.com/swagger-api/swagger-scala-module/compare/develop...pjfanning:swagger-core-2.0.0?expand=1 ) The issues are: * fixing the `required` setting for schema properties (API change in swagger-core 2.0.0; you need to set a list...
Hi, When I have something like this: > case class Test(quantity:Int, quantityOpt:Option[Int]) The swagger model will have this properties: ```` properties: quantity: type: integer format: int32 quantityOpt: type: object ````...
Traits do not seem to be picked up automatically. If I have the following: ```scala sealed trait Foo(x: Int) case class Bar(x: Int) extends Foo ``` the generated Swagger definition...
``` sealed abstract class Status(val id: String) { def self: Status = this } case object New extends Status("new") case object Processed extends Status("processed") ``` Using this kind of constructions...