aboutsummaryrefslogtreecommitdiffstats
path: root/teal-src/util
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2021-03-09 02:35:00 +0100
committerKim Alvefur <zash@zash.se>2021-03-09 02:35:00 +0100
commitce4040e1091705d94bb46c59dcd0cc16edde702e (patch)
treeae9d2c4737407a200f19ca3ee8e2148d3148b8e8 /teal-src/util
parent5a44c4a32b928ac44e5e6f6b028310b9c78faf87 (diff)
downloadprosody-ce4040e1091705d94bb46c59dcd0cc16edde702e.tar.gz
prosody-ce4040e1091705d94bb46c59dcd0cc16edde702e.zip
util.jsonschema: Implement the "contains" keyword
And apparently I had mistaken this for an array
Diffstat (limited to 'teal-src/util')
-rw-r--r--teal-src/util/jsonschema.tl15
1 files changed, 14 insertions, 1 deletions
diff --git a/teal-src/util/jsonschema.tl b/teal-src/util/jsonschema.tl
index d2390f7e..3f5b0f26 100644
--- a/teal-src/util/jsonschema.tl
+++ b/teal-src/util/jsonschema.tl
@@ -38,7 +38,7 @@ local record schema_t
-- arrays
items : schema_t
- contains : { schema_t }
+ contains : schema_t
maxItems : number
minItems : number
uniqueItems : boolean
@@ -285,6 +285,19 @@ type_validators.table = function (schema : schema_t, data : any) : boolean
end
end
+ if schema.contains then
+ local found = false
+ for i = 1, #data do
+ if validate(schema.contains, data[i]) then
+ found = true
+ break
+ end
+ end
+ if not found then
+ return false
+ end
+ end
+
return true
end
return false