]> gerrit.simantics Code Review - simantics/district.git/blob - org.simantics.maps.server/node/node-v4.8.0-win-x64/node_modules/npm/node_modules/request/node_modules/har-validator/node_modules/is-my-json-valid/example.js
Adding integrated tile server
[simantics/district.git] / org.simantics.maps.server / node / node-v4.8.0-win-x64 / node_modules / npm / node_modules / request / node_modules / har-validator / node_modules / is-my-json-valid / example.js
1 var validator = require('./')
2
3 var validate = validator({
4   type: 'object',
5   properties: {
6     hello: {
7       required: true,
8       type: 'string'
9     }
10   }
11 })
12
13 console.log('should be valid', validate({hello: 'world'}))
14 console.log('should not be valid', validate({}))
15
16 // get the last error message by checking validate.error
17 // the following will print "data.hello is required"
18 console.log('the errors were:', validate.errors)