Grunt json-schema validation task
npm install grunt-json-schema> Grunt json-schema validation task
~0.4.0If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
``shell`
npm install grunt-json-schema --save-dev
One the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
`js`
grunt.loadNpmTasks('grunt-json-schema');
to the data object passed into grunt.initConfig().`js
grunt.initConfig({
json_schema: {
test: {
options: {
// json-schema specific options go here
},
files: {
// Schema to file mapping goes here
}
}
}
})
`$3
For configurable options see the documentation of json-schema.
$3
#### Default Options
In this example the files at
path1/input.json and path2/*.json are validated with the path/schema.json file. You can define as much schemas to file mappings as you want.`js
grunt.initConfig({
json_schema: {
test: {
options: {},
files: {
'path/schema.json': ['path1/input.json', 'path2/*.json']
}
}
}
})
`#### Custom Options
You can define custom
options that are given to the [json-schema] validator.`js
grunt.initConfig({
json_schema: {
test: {
options: {
validateFormatsStrict: true
},
files: {
'path/schema.json': ['path1/input.json', 'path2/*.json']
}
}
}
})
``