UNPKG

structured-jayschema-errors

Version:

Return jayschema error messages with the same structure as the validated data

23 lines 432 B
module.exports = { data: { c: 'foo' }, schema: { "type": "object", "anyOf": [ {"required": ["a"]}, {"required": ["b"]} ], "properties": { "a": { "type": "string" }, "b": { "type": "string" }, "c": { "type": "string" } } } };