A Grunt Task for validating JSON files using JSV.
# Add the module to your project
npm install grunt-jsv --save-dev
// Load the module in your Gruntfile
grunt.loadNpmTasks('grunt-jsv');
Of course, you'll need to be using Grunt
// Configure the task by providing schemas with JSON files to validate
grunt.config.init({
// ...
jsv: {
validate: {
files: {
'schema/your-schema.json': ['json/*.json']
}
}
}
// ...
});
# Run the task
grunt jsv
JSV includes support upto draft v3 of the JSON Schema specification. This plugin will not work with new changes and functionality introduced in draft v4 and beyond.
Copyright (c) 2014 Jahed Ahmed
Licensed under the MIT license.