-
Notifications
You must be signed in to change notification settings - Fork 95
Closed
Labels
Description
Strict flag. If set, throw error if found not defined properties.
Example
let schema = {
$strict: true,
name: { type: "string" }
}
v.validate({
name: "John"
}, schema);
// Valid
v.validate({
name: "John",
age: 30,
}, schema);
// Error because 'age' property is not allowed.p0vidl0 and ngraef