util.jsonschema: Implement 'dependentSchemas'

If this object key exists then this schema must validate against the
current object.  Seems useful.
This commit is contained in:
Kim Alvefur 2023-03-26 15:20:07 +02:00
parent 4bc62438db
commit 8c9ffa25eb
3 changed files with 18 additions and 1 deletions

View file

@ -19,7 +19,7 @@ local skip = {
["const.json:9"] = "deepcompare", ["const.json:9"] = "deepcompare",
["contains.json:0:5"] = "distinguishing objects from arrays", ["contains.json:0:5"] = "distinguishing objects from arrays",
["defs.json"] = "need built-in meta-schema", ["defs.json"] = "need built-in meta-schema",
["dependentSchemas.json"] = "NYI", ["dependentSchemas.json:2:2"] = "NYI", -- minProperties
["dynamicRef.json"] = "NYI", ["dynamicRef.json"] = "NYI",
["enum.json:1:3"] = "deepcompare", ["enum.json:1:3"] = "deepcompare",
["id.json"] = "NYI", ["id.json"] = "NYI",

View file

@ -71,6 +71,7 @@ local record json_schema_object
additionalProperties: schema_t additionalProperties: schema_t
patternProperties: schema_t -- NYI patternProperties: schema_t -- NYI
propertyNames : schema_t propertyNames : schema_t
dependentSchemas : { string : schema_t }
-- xml -- xml
record xml_t record xml_t
@ -333,6 +334,14 @@ function complex_validate (schema : json_schema_object, data : any, root : json_
end end
end end
if schema.dependentSchemas then
for k, sub in pairs(schema.dependentSchemas) do
if data[k] ~= nil and not validate(sub, data, root) then
return false
end
end
end
if schema.uniqueItems then if schema.uniqueItems then
-- only works for scalars, would need to deep-compare for objects/arrays/tables -- only works for scalars, would need to deep-compare for objects/arrays/tables
local values : { any : boolean } = {} local values : { any : boolean } = {}

View file

@ -244,6 +244,14 @@ function complex_validate(schema, data, root)
end end
end end
if schema.dependentSchemas then
for k, sub in pairs(schema.dependentSchemas) do
if data[k] ~= nil and not validate(sub, data, root) then
return false
end
end
end
if schema.uniqueItems then if schema.uniqueItems then
local values = {} local values = {}