Greg Dennis
Greg Dennis
Might be a good idea to add the release dates to the specification drafts on https://json-schema.org/specification-links.html
It seems that there could be some more clarity around how vocabularies work. Specifically: - Where are they used? - Where are they defined? - What does the boolean value...
This is a bit related to #12 and #36, except that it's the other way around. I have a repo (https://github.com/gregsdennis/json-everything), and the labeler always fails on PRs submitted by...
In light of [draft2019-09's output formatting](https://github.com/json-schema-org/json-schema-spec/pull/679), I think it might be prudent to have a set of tests that validate the output formatting. --- Maybe this can be included in...
For example, the first test in the `const` file is ```json { "description": "const validation", "schema": {"const": 2}, "tests": [ { "description": "same value is valid", "data": 2, "valid": true...
Based on a [conversation with @karenetheridge in Slack](https://json-schema.slack.com/archives/CT8QRGTK5/p1640203618119600), this is the first step toward building an implementation comparison/support site. The scripts in this PR will run a given implementation against...
Is it possible to get library API docs (the MSDN-style content) without any of the framing HTML? I want to embed docs into another website.
Currently, consensus is indicated with a simple ✔️. This is misleading when the consensus isn't "returns expected results." For example, Consensus for `$[?(@.d in [2, 3])]` is that the syntax...
I found while answering a [StackOverflow question](https://stackoverflow.com/q/68516622/878701) that there aren't any tests checking for root reference in filter expressions: ``` $.SomeFieldB[?($.SomeFieldA == 'X')].SomeFieldC ``` for the JSON value ```json {...
[Goessner's original post](https://goessner.net/articles/JsonPath/) declares that the return type (array form) could either be the found items or the JSON Paths to those items. Is there any intent to check for...