<PackageReference Include="NJsonSchema" Version="0.1.5524.6071" />

ValidationError

public class ValidationError
A validation error.
namespace NJsonSchema.Validation { public class ValidationError { public ValidationErrorKind Kind { get; set; } public string Property { get; set; } public string Path { get; set; } public ValidationError(ValidationErrorKind kind, string property, string path) { Kind = kind; Property = property; Path = path; } } }