diff options
author | Kim Alvefur <zash@zash.se> | 2021-03-09 02:26:05 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2021-03-09 02:26:05 +0100 |
commit | 6a7346ac8e06ff00ba016141ccda99b4af83347e (patch) | |
tree | 0986d20a1b5293e1b8b51da08589bcfb00bf95bb /teal-src | |
parent | 07889f274dfb3dbb17988688701602cc43291941 (diff) | |
download | prosody-6a7346ac8e06ff00ba016141ccda99b4af83347e.tar.gz prosody-6a7346ac8e06ff00ba016141ccda99b4af83347e.zip |
util.jsonschema: Correct "items" keyword
Upon re-reading the JSON Schema spec, I found that 'items' wasn't a
union of an array of schemas or a single schema, not sure where I got
that from.
Diffstat (limited to 'teal-src')
-rw-r--r-- | teal-src/util/jsonschema.tl | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/teal-src/util/jsonschema.tl b/teal-src/util/jsonschema.tl index 13537e0a..c6347de6 100644 --- a/teal-src/util/jsonschema.tl +++ b/teal-src/util/jsonschema.tl @@ -37,7 +37,7 @@ local record schema_t format : string -- arrays - items : { schema_t } | schema_t + items : schema_t contains : { schema_t } maxItems : number minItems : number @@ -274,20 +274,12 @@ type_validators.table = function (schema : schema_t, data : any) : boolean return true end - local item_schemas = schema.items as {schema_t} - if item_schemas and item_schemas[1] == nil then - local item_schema = item_schemas as schema_t - for i, v in pairs(data) do - if i is number then - if not validate(item_schema, v) then - return false - end + if schema.items then + for i = 1, #data do + if not validate(schema.items, data[i]) then + return false end end - elseif item_schemas and item_schemas[1] ~= nil then - for i, s in ipairs(item_schemas) do - validate(s, data[i]) - end end return true |