Generate C# Classes from a JSON Response

The one sentence overview Generate C# classes from a JSON response. Why bother? Why not just use var? Like everything in programming it depends. For the application I am developing I like the comfort of compile time validation along with the ability to lean on IntelliSense when I need to. What I used Visual Studio […]

How to reference a local JSON schema

One sentence summary This post will show you how to use a locally stored JSON schema to validate a JSON document. Set up In the context of this post, locally stored means the files are located somewhere on your computer. For the examples used here, both the schema and the document are in the same […]