UNPKG

435 BJavaScriptView Raw
1var Ajv = require('ajv');
2var ajv = Ajv({allErrors: true});
3
4var schema = {
5 "properties": {
6 "foo": { "type": "string" },
7 "bar": { "type": "number", "maximum": 3 }
8 }
9};
10
11var validate = ajv.compile(schema);
12
13test({"foo": "abc", "bar": 2});
14test({"foo": 2, "bar": 4});
15
16function test(data) {
17 var valid = validate(data);
18 if (valid) console.log('Valid!');
19 else console.log('Invalid: ' + ajv.errorsText(validate.errors));
20}
\No newline at end of file