NJsonSchema.Validation.ValidationError
A validation error.
namespace NJsonSchema.Validation
{
public class ValidationError
{
public ValidationErrorKind Kind { get; }
public string Property { get; }
public string Path { get; }
public bool HasLineInfo { get; }
public int LineNumber { get; }
public int LinePosition { get; }
public JsonSchema Schema { get; }
public JToken Token { get; }
public ValidationError(ValidationErrorKind errorKind, string propertyName, string propertyPath, JToken token, JsonSchema schema);
}
}