JSON Schema Proxy for validation any object on read and write
Ivan Asmer db15f42980 readme fixes | 3 년 전 | |
---|---|---|
.gitignore | 3 년 전 | |
README.md | 3 년 전 | |
index.js | 3 년 전 | |
package-lock.json | 3 년 전 | |
package.json | 3 년 전 |
const jsonSchemaProxy = require('json-schema-proxy')
const proxiedObject = jsonSchemaProxy(objectToProxy, inputJsonSchema, outputJsonSchema)
proxiedObject.foo = 'some value'
will cause exception in case of failed inSchema validation. Object remains untouched
let variable = proxiedObject.foo
will give undefined in case of failed outSchema validation.
outSchema
can be omitted if you don't need output validation.
outSchema
filters wrong fields or additionalProperties
not listed in outSchema