JsonSchemaDateAttribute
Annotation to mark a property or class as string type with format 'date'.
namespace NJsonSchema.Annotations
{
public class JsonSchemaDateAttribute : JsonSchemaAttribute
{
public JsonSchemaDateAttribute()
: base(JsonObjectType.String)
{
base.Format = "date";
}
}
}