I would like to use a custom predicate if necessary to do things like ``` js var Mystery = schema({ even: Predicate(function (x) { return x % 2 === 0 }) }); ```