Json Schema validation without NewtonSoft or NJsonSchema

Viewed 444

There is a good way to schema validation without using the library from Newtonsoft? The new library is awesome but paid. And NJsonSchema uses the paid library from NewtonSoft. I would like to know if there is an out-of-the-box in C# or a good free alternative.

2 Answers

You can stay with NJsonSchema, because it only uses Json.Net, which is free but not Json.NET Schema, which isn't free.

Related