Newtonsoft.Json.Schema 4.0.1

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved

Requires NuGet 2.12 or higher.

dotnet add package Newtonsoft.Json.Schema --version 4.0.1
NuGet\Install-Package Newtonsoft.Json.Schema -Version 4.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Newtonsoft.Json.Schema" Version="4.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Newtonsoft.Json.Schema --version 4.0.1
#r "nuget: Newtonsoft.Json.Schema, 4.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Newtonsoft.Json.Schema as a Cake Addin
#addin nuget:?package=Newtonsoft.Json.Schema&version=4.0.1

// Install Newtonsoft.Json.Schema as a Cake Tool
#tool nuget:?package=Newtonsoft.Json.Schema&version=4.0.1

Logo Json.NET Schema

NuGet version (Newtonsoft.Json.Schema) Build status

Json.NET Schema is a powerful, complete and easy to use JSON Schema framework for .NET

Validate JSON

JSchema schema = JSchema.Parse(@"{
  'type': 'object',
  'properties': {
    'name': {'type':'string'},
    'roles': {'type': 'array'}
  }
}");

JObject user = JObject.Parse(@"{
  'name': 'Arnie Admin',
  'roles': ['Developer', 'Administrator']
}");

bool valid = user.IsValid(schema);
// true

Generate Schemas

JSchemaGenerator generator = new JSchemaGenerator();
JSchema schema = generator.Generate(typeof(Account));
// {
//   "type": "object",
//   "properties": {
//     "email": { "type": "string", "format": "email" }
//   },
//   "required": [ "email" ]
// }

public class Account
{
    [EmailAddress]
    [JsonProperty("email", Required = Required.Always)]
    public string Email;
}

Validate Deserialization

JSchema schema = JSchema.Parse(@"{
  'type': 'array',
  'item': {'type':'string'}
}");
JsonTextReader reader = new JsonTextReader(new StringReader(@"[
  'Developer',
  'Administrator'
]"));

JSchemaValidatingReader validatingReader = new JSchemaValidatingReader(reader);
validatingReader.Schema = schema;

JsonSerializer serializer = new JsonSerializer();
List<string> roles = serializer.Deserialize<List<string>>(validatingReader);
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net35 is compatible.  net40 is compatible.  net403 was computed.  net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (189)

Showing the top 5 NuGet packages that depend on Newtonsoft.Json.Schema:

Package Downloads
RestAssured

Package Description

Hochfrequenz.BO4Enet

Package Description

CyberEye.Constant.Lib

Package chứa các constant và enum

JUST.NETCore

This a cool library in .NET Core which enables you to transform a JSON document into another JSON document using JSON transformations using JSON path. This is the JSON equivalent of XSLT. Test project can be found at https://github.com/WorkMaze/JUST.net

DotNetStac

Terradue .Net library for working with any SpatioTemporal Asset Catalog

GitHub repositories (41)

Showing the top 5 popular GitHub repositories that depend on Newtonsoft.Json.Schema:

Repository Stars
mRemoteNG/mRemoteNG
mRemoteNG is the next generation of mRemote, open source, tabbed, multi-protocol, remote connections manager.
btcpayserver/btcpayserver
Accept Bitcoin payments. Free, open-source & self-hosted, Bitcoin payment processor.
dotnet/corert
This repo contains CoreRT, an experimental .NET Core runtime optimized for AOT (ahead of time compilation) scenarios, with the accompanying compiler toolchain.
OpenTabletDriver/OpenTabletDriver
Open source, cross-platform, user-mode tablet driver
microsoft/AdaptiveCards
A new way for developers to exchange card content in a common and consistent way.
Version Downloads Last updated
4.0.1 22,345 6/8/2024
3.0.16 140,275 5/6/2024
3.0.15 3,956,912 4/29/2023
3.0.14 15,558,338 2/21/2021
3.0.13 9,676,307 1/27/2020
3.0.12 7,437 1/27/2020
3.0.11 3,887,546 4/22/2019
3.0.10 11,253,515 3/23/2018
3.0.9 107,167 3/2/2018
3.0.8 21,973 3/2/2018
3.0.7 63,521 2/21/2018
3.0.6 47,057 2/17/2018
3.0.5 688,932 1/12/2018
3.0.4 316,972 9/28/2017
3.0.3 805,682 8/13/2017
3.0.2 408,885 7/7/2017
3.0.1 542,646 6/5/2017
2.0.13 199,192 5/28/2017
2.0.12 16,741 5/19/2017
2.0.11 103,943 4/12/2017
2.0.10 728,598 3/28/2017
2.0.9 30,404 3/21/2017
2.0.8 343,348 12/18/2016
2.0.7 200,901 10/16/2016
2.0.6 115,726 9/3/2016
2.0.5 13,943 8/26/2016
2.0.4 88,501 7/17/2016
2.0.3 26,965 7/5/2016
2.0.2 331,656 1/9/2016
2.0.1 15,772 12/29/2015
1.0.11 310,178 8/29/2015
1.0.10 7,073 8/16/2015
1.0.9 42,623 6/27/2015
1.0.8 132,543 2/25/2015
1.0.7 2,305 2/22/2015
1.0.6 2,260 2/15/2015
1.0.5 2,116 2/7/2015
1.0.4 22,580 1/29/2015
1.0.3 1,981 1/25/2015
1.0.2 2,085 1/23/2015
1.0.1 13,384 1/20/2015