I am using json-schema and wanting to only allow properties that are declared in this file to pass validation. For instance if a user passes a \"name\" property in their jso
FYI - it looks like v5 of the standard will describe a "ban unknown properties" validation mode.
So instead of making this requirement part of the format (which as Chris Pitman says in the comments, damages future extensibility), you can simply instruct your validator to flag unknown properties as errors. So, it's like a super-strict validation mode which is useful for dev.
Some validators already support this (e.g. tv4):
var result = tv4.validateMultiple(data, schema, checkRecursive, banUnknownProperties);
With this tool, checkRecursive
should be used if your data might have circular references, and banUnknownProperties
will do exactly what you want, without having to use "additionalProperties":false
.