I am trying to resolve a JSON schema from a URL. I can use JSchemaPreloadedResolver
from the Newtonsoft.Json.Schema
library to do this but I must not use this library. Is there any other alternative for this? Perhaps in NJsonSchema
or any other library?
Asked
Active
Viewed 187 times
0

0009laH
- 1,960
- 13
- 27

Piyush Sardana
- 1,748
- 4
- 19
- 33
-
https://github.com/RicoSuter/NJsonSchema can work with schemas and is MIT license – Christian Sauer Sep 17 '19 at 08:20
-
I have actually mentioned that already in my question. I am looking for functionality similar to JSchemaPreLoadedResolver in other libraries. I couldn't find the exact in NJsonSchema – Piyush Sardana Sep 17 '19 at 08:46
-
1https://github.com/RicoSuter/NJsonSchema/blob/master/src/NJsonSchema/JsonReferenceResolver.cs – Rico Suter Sep 26 '19 at 06:00
-
thanks, used it and works easy. – Piyush Sardana Sep 26 '19 at 15:19