https://github.com/grimen/node-document-validator-jsonschema
Validator adapter `json-schema` for `node-document` ODM for Node.js.
https://github.com/grimen/node-document-validator-jsonschema
Last synced: 3 months ago
JSON representation
Validator adapter `json-schema` for `node-document` ODM for Node.js.
- Host: GitHub
- URL: https://github.com/grimen/node-document-validator-jsonschema
- Owner: grimen
- License: mit
- Created: 2013-01-08T19:55:21.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-11-29T13:41:27.000Z (over 11 years ago)
- Last Synced: 2025-02-12T11:53:44.020Z (3 months ago)
- Language: JavaScript
- Homepage: https://npmjs.org/package/node-document-validator-jsonschema
- Size: 133 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: MIT-LICENSE
Awesome Lists containing this project
README
# NODE-DOCUMENT-VALIDATOR-JSONSCHEMA [](http://travis-ci.org/grimen/node-document-validator-jsonschema)
**Validator** adapter [json-schema](https://github.com/kriszyp/json-schema) for [node-document](https://github.com/grimen/node-document) ODM for Node.js.
## Installation
```shell
$ npm install node-document-validator-jsonschema
```## Usage
**Basic:**
```javascript
var Validator = require('node-document-validator-jsonschema');var validator = new Validator();
var data = {
foo: "foo",
bar: 123,
baz: undefined
};var schema = {
foo: {
type: "string",
minLength: 4
},
bar: {
type: "number"
},
baz: {
required: true
}
};validator.validate(data, schema, function(err, errors, valid) {
console.log("Valid: %s \nErrors:\n", valid, errors);
});
```For details; see [node-document](https://github.com/grimen/node-document).
## Test
**Local tests:**
```shell
$ make test
```## License
Released under the MIT license.
Copyright (c) [Jonas Grimfelt](http://github.com/grimen)
[](https://bitdeli.com/free "Bitdeli Badge")