util.jsonschema: Implement 'dependentSchemas'

If this object key exists then this schema must validate against the
current object.  Seems useful.
This commit is contained in:
Kim Alvefur 2023-03-26 15:20:07 +02:00
parent 4bc62438db
commit 8c9ffa25eb
3 changed files with 18 additions and 1 deletions

View file

@ -244,6 +244,14 @@ function complex_validate(schema, data, root)
end
end
if schema.dependentSchemas then
for k, sub in pairs(schema.dependentSchemas) do
if data[k] ~= nil and not validate(sub, data, root) then
return false
end
end
end
if schema.uniqueItems then
local values = {}