I want to validate input date to ensure it does not occur in the past. Something like this... ``` javascript var schema = Joi.date().min(function() { return moment().utc().toDate(); }); ``` Is there already a way to achieve this?