Jacob Brunson

Results 3 issues of Jacob Brunson

I think this is suppose to be a string.

If an array schema directly contains an object schema as its items, then it won't always codegen. This doesn't work: ``` type: array items: type: object properties: foo: type: integer...

According to the JSON-Schema spec, an `anyOf` schema combinator enforces **one or more** of the specified schemas. Currently, in this project `anyOf` allows for **zero or more**. The consequence for...