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

NJsonSchema.Validation.FormatValidators.IFormatValidator

public interface IFormatValidator
Provides a method to verify if value is of valid format.
namespace NJsonSchema.Validation.FormatValidators { public interface IFormatValidator { ValidationErrorKind ValidationErrorKind { get; } string Format { get; } bool IsValid(string value, JTokenType tokenType); } }