diff options
author | Kim Alvefur <zash@zash.se> | 2021-03-09 02:41:47 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2021-03-09 02:41:47 +0100 |
commit | d8303be1456b03c623abc004b415add47318b234 (patch) | |
tree | a0cb29d807a10c82be82606a7e24d767bdb3d6d6 /util/jsonschema.lua | |
parent | ae408259256bfcf6a0f2daabc84241a25286ba45 (diff) | |
download | prosody-d8303be1456b03c623abc004b415add47318b234.tar.gz prosody-d8303be1456b03c623abc004b415add47318b234.zip |
util.jsonschema: Restructure handling of "properties" and "additionalProperties"
This is a bit cleaner, I think
Diffstat (limited to 'util/jsonschema.lua')
-rw-r--r-- | util/jsonschema.lua | 30 |
1 files changed, 8 insertions, 22 deletions
diff --git a/util/jsonschema.lua b/util/jsonschema.lua index 170b3dd8..5ba33900 100644 --- a/util/jsonschema.lua +++ b/util/jsonschema.lua @@ -156,31 +156,17 @@ type_validators.table = function(schema, data) end if schema.properties then - for k, s in pairs(schema.properties) do - if data[k] ~= nil then - if not validate(s, data[k]) then - return false - end - end - end - end - - if schema.additionalProperties then + local additional = schema.additionalProperties or true for k, v in pairs(data) do - if type(k) == "string" then - if not (schema.properties and schema.properties[k]) then - if not validate(schema.additionalProperties, v) then - return false - end - end + local s = schema.properties[k] or additional + if not validate(s, v) then + return false end end - elseif schema.properties then - for k in pairs(data) do - if type(k) == "string" then - if schema.properties[k] == nil then - return false - end + elseif schema.additionalProperties then + for k, v in pairs(data) do + if not validate(schema.additionalProperties, v) then + return false end end end |