Greg Dennis
Greg Dennis
While writing Section 10 on output, I was implementing the formatting in my library, Manatee.Json. In that library, I don't collect annotations in the same way as described in the...
@Relequestual requested that some things be automated. One of those things included ensuring that an issue be associated with PRs. This is the issue associated with the PR that adds...
Nice library. I'd like to play with it a bit, but don't have VS 2015 to build it.
In `Cos.CosProc()` should ``` if (n == 2) { if (Mod(k, 2) == 1) return 0; } ``` be ``` if (n == 2) { if (Mod(k, 4) == 1)...
Resolves some conversations with @handrews in the JSON Schema Slack workspace. Change summary: - instances are now referenced using either plain or relative JSON Pointers - schema data is now...
This is an experimental implementation of https://github.com/json-schema-org/json-schema-spec/pull/1249. This change actually forced some other improvements that I'd like to pull into the library, but I'll leave them here for now.
**Environment** - Nuget Package: JsonPath.Net **Can this library make doing something simpler?** Creating a path using Linq expressions should be a thing. ```c# var path = JsonPath.From(x => x.store.book.[1].author); ```...
I've started a [discussion](https://github.com/orgs/json-schema-org/discussions/192) amongst the JSON Schema team (you're welcome to weigh in as well) around deprecation of older versions of the specification. The logic is that by only...
I am considering submitting this project to the [.Net Foundation](https://dotnetfoundation.org/). - [Benefits of joining](https://dotnetfoundation.org/projects/why-join) - [Submission process](https://dotnetfoundation.org/projects/submit) Currently I'm trying to find someone to chat with to find out if...
@NN--- requested C# code generation from a JSON Schema in #103.