Nate Silva

Results 19 comments of Nate Silva

Not sure how to do this. I’ll keep this open in case I ever get a chance to try making it async. One thing that may be happening is that,...

So right now it doesn’t use any API, it shells out to the `mate` command to set the gutter marks, and that’s slow. Can the Ruby API do that? I’m...

@koenpunt Another quick fix to try is to change `main.py` at line 176 -- change the number 10 to a much larger number. Based on what @sorbits said, I’m not...

In JSON Schema v4, the `required` attribute must be an array, and it is a property of the object definition. This was one of the main things that changed from...

JaySchema was created at a time when there were very few comprehensive options for JSON Schema. Most validators supported an older version, or only a subset of the current version....

Unfortunately the schema itself does not get validated. The original thinking was that schemas would be valid/tested so validating the schema itself would not be worth the performance hit. But...

So if you are trying to use `$ref` to pull data into the **instance** (the data being validated), that won’t work. The `$ref` keyword is only for use in schemas....

JSON-Ref and [JSON Pointer](http://tools.ietf.org/html/rfc6901) were created by some of the same folks who created JSON Schema. I believe they were created for use in schemas, but you’re right, there’s nothing...

This would require async validation. If the validation controller is made more async-aware, it could be done. I had thought about this in the context of validating an e-mail address....

We see the same issue. In Apollo Server, you can have a non-null field with a default value. The `!` only means that the field cannot be null. If a...