aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2023-03-26 15:19:14 +0200
committerKim Alvefur <zash@zash.se>2023-03-26 15:19:14 +0200
commit4bc62438dbabb8fbe7ff3c4eca69c30cc04dd8bd (patch)
tree0dfeba809d89b5bac9928b784e8e1872f32ea16e /util
parent5427c2472d1b6ddd57b01eaafe90a0bc4f09ffaa (diff)
downloadprosody-4bc62438dbabb8fbe7ff3c4eca69c30cc04dd8bd.tar.gz
prosody-4bc62438dbabb8fbe7ff3c4eca69c30cc04dd8bd.zip
util.jsonschema: Implement 'dependentRequired'
If this field exists, then these fields must also exist.
Diffstat (limited to 'util')
-rw-r--r--util/jsonschema.lua12
1 files changed, 12 insertions, 0 deletions
diff --git a/util/jsonschema.lua b/util/jsonschema.lua
index be0b72fd..1c4dcfbd 100644
--- a/util/jsonschema.lua
+++ b/util/jsonschema.lua
@@ -206,6 +206,18 @@ function complex_validate(schema, data, root)
end
end
+ if schema.dependentRequired then
+ for k, reqs in pairs(schema.dependentRequired) do
+ if data[k] ~= nil then
+ for _, req in ipairs(reqs) do
+ if data[req] == nil then
+ return false
+ end
+ end
+ end
+ end
+ end
+
if schema.propertyNames ~= nil then
for k in pairs(data) do
if not validate(schema.propertyNames, k, root) then