util.jsonschema: Restructure "type" keyword handling

More in line with the other tests
This commit is contained in:
Kim Alvefur 2021-03-09 14:31:11 +01:00
parent 44edd47ca8
commit 6db9456d88
2 changed files with 20 additions and 18 deletions

View file

@ -110,10 +110,6 @@ local function validate(schema, data)
end
end
if not simple_validate(schema.type, data) then
return false
end
if schema.const ~= nil and schema.const ~= data then
return false
end
@ -127,12 +123,17 @@ local function validate(schema, data)
return false
end
local validator = type_validators[schema.type]
if not validator then
return true
end
if schema.type then
if not simple_validate(schema.type, data) then
return false
end
return validator(schema, data)
local validator = type_validators[schema.type]
if validator then
return validator(schema, data)
end
end
return true
end
end