util.jsonschema: Syntax tweak to not upset syntax highlighting

That whole condition stanza was shown as angry red, I think it's
something with 'enum' being a key word in Teal.
This commit is contained in:
Kim Alvefur 2021-03-09 14:22:33 +01:00
parent 1317e78fbb
commit 44edd47ca8
2 changed files with 4 additions and 4 deletions

View file

@ -200,8 +200,8 @@ local function validate(schema : schema_t | type_e | boolean, data : any) : bool
return false return false
end end
if schema.enum ~= nil then if schema["enum"] ~= nil then
for _, v in ipairs(schema.enum) do for _, v in ipairs(schema["enum"]) do
if v == data then if v == data then
return true return true
end end

View file

@ -118,8 +118,8 @@ local function validate(schema, data)
return false return false
end end
if schema.enum ~= nil then if schema["enum"] ~= nil then
for _, v in ipairs(schema.enum) do for _, v in ipairs(schema["enum"]) do
if v == data then if v == data then
return true return true
end end