<PackageReference Include="Newtonsoft.Json" Version="7.0.1" />

Extensions

public static class Extensions

Contains the JSON schema extension methods.

JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.
public static bool IsValid(this JToken source, JsonSchema schema)

Determines whether the JToken is valid.

JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.

public static bool IsValid(this JToken source, JsonSchema schema, out IList errorMessages)

Determines whether the JToken is valid.

JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.

public static void Validate(this JToken source, JsonSchema schema)

Validates the specified JToken.

JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.

public static void Validate(this JToken source, JsonSchema schema, ValidationEventHandler validationEventHandler)

Validates the specified JToken.

JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details.