ValidationErrorKind
Enumeration of the possible error kinds.
namespace NJsonSchema.Validation
{
public enum ValidationErrorKind
{
Unknown,
StringExpected,
NumberExpected,
IntegerExpected,
BooleanExpected,
ObjectExpected,
PropertyRequired,
ArrayExpected,
NullExpected,
PatternMismatch,
StringTooShort,
StringTooLong,
NumberTooSmall,
NumberTooBig,
IntegerTooBig,
TooManyItems,
TooFewItems,
ItemsNotUnique,
DateTimeExpected,
DateExpected,
TimeExpected,
TimeSpanExpected,
UriExpected,
IpV4Expected,
IpV6Expected,
GuidExpected,
NotAnyOf,
NotAllOf,
NotOneOf,
ExcludedSchemaValidates,
NumberNotMultipleOf,
IntegerNotMultipleOf,
NotInEnumeration,
EmailExpected,
HostnameExpected,
TooManyItemsInTuple,
ArrayItemNotValid,
AdditionalItemNotValid,
AdditionalPropertiesNotValid,
NoAdditionalPropertiesAllowed,
TooManyProperties,
TooFewProperties,
Base64Expected
}
}