mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
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:
parent
4bc62438db
commit
8c9ffa25eb
3 changed files with 18 additions and 1 deletions
|
@ -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 = {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue