You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
3 weeks ago | |
---|---|---|
.github | 2 years ago | |
examples | 2 years ago | |
schemas | 2 years ago | |
.gitignore | 5 years ago | |
.jshintrc | 5 years ago | |
README.md | 2 years ago | |
index.js | 2 years ago | |
package-lock.json | 3 weeks ago | |
package.json | 3 weeks ago |
README.md
This repository/module contains JSON Schema definitions as well as examples for Kosmos data formats.
Usage
You can import these schemas to validate data in JavaScript programs. For example using npm and the tv4 JSON Schema validator:
let tv4 = require('tv4');
let schemas = require('kosmos-schemas');
let contributor = {
name: "Tyrion"
}
let result = tv4.validate(contributor, schemas['contributor']);
if (result) {
console.log('Your data is valid');
} else {
console.log('Your data is not valid:');
console.log(tv4.error);
}