mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.jsonschema: Implement 'minContains' and 'maxContains'
This commit is contained in:
parent
d78a32f136
commit
3621b8ce91
3 changed files with 8 additions and 12 deletions
|
@ -305,14 +305,13 @@ function complex_validate(schema, data, root)
|
|||
end
|
||||
|
||||
if schema.contains ~= nil then
|
||||
local found = false
|
||||
local found = 0
|
||||
for i = 1, #data do
|
||||
if validate(schema.contains, data[i], root) then
|
||||
found = true
|
||||
break
|
||||
found = found + 1
|
||||
end
|
||||
end
|
||||
if not found then
|
||||
if found < (schema.minContains or 1) or found > (schema.maxContains or math.huge) then
|
||||
return false
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue