0.0.5 • Published 10 years ago
sdmp-container-validator v0.0.5
sdmp-container-validator
Validate a JSON object as an SDMP container.
install
Install the normal npm way:
npm install sdmp-container-validatoruse it
Use it like this:
var container = {
sdmp: {
version: '0.13',
schemas: [ 'message' ]
},
message: 'Hello world!'
}
var validator = require('sdmp-container-validator')
var result = validator(container)
// assert result.isValid is trueIf your container references a schema other than the core schemas, you'll need to include them as a key/value map:
var container = {
sdmp: {
version: '0.13',
schemas: [ 'sdmp://GlvAreTo...' ]
},
hello: 'world'
}
var schemas = {
'sdmp://GlvAreTo...': { /* a valid JSON schema object */ }
}
var validator = require('sdmp-container-validator')
var result = validator(container, schemas)
// assert result.isValid is trueIn particular, this module does not handle external schema references, so if your schema references another schema, you will need to include it in the map. (See the tests for more details.)
api: validator(jsonObject[, schemaMap])
jsonObject (object, required)
This is the SDMP container to be validated.
schemaMap (object, optional)
If the container to be validated contains references
to a non-core schema, that schema will be accessed
by this object. The map key is the URI referenced,
while the value is the JSON schema.
return: (object)
The returned object has the following possible properties:
isValidboolean: The container is valid, all schemas have been resolved and validated.schemastring: If a schema fails validation, this will be the schema URI which failed.schemaNotFoundboolean: A schema URI was not found in theschemaMapobject.
license
Published and released under the Very Open License.
<3