neft
Version:
Universal Platform
32 lines (22 loc) • 716 B
Markdown
> [Wiki](Home) ▸ [[API Reference|API-Reference]] ▸ [[Schema|Schema-API]] ▸ **Optional Validator**
# Optional Validator
Marks the property as optional.
An `undefined` and a `null` values are omitted.
```javascript
var schema = new Schema({
name: {
optional: true,
type: 'string'
},
text: {
type: 'string'
}
});
console.log(schema.validate({name: 'Max', text: 'Hello!'}));
// true
console.log(schema.validate({text: 'Hello!'}));
// true
console.log(utils.catchError(schema.validate, schema, [{name: 'Max'}])+'');
// "SchemaError: Required property text not found"
```
> [`Source`](/Neft-io/neft/blob/8a7d1218650a3ad43d88cdbda24dae5a72a732ea/src/schema/validators/optional.litcoffee)