util.jsonschema: Implement 'luaPattern' - Lua variant of 'pattern'

Like 'pattern' but uses Lua patterns instead of Regular Expressions,
since only a subset of regex are also valid Lua patterns.
This commit is contained in:
Kim Alvefur 2023-04-22 12:48:51 +02:00
parent 1dad83d28e
commit 9c7c94ab73
2 changed files with 7 additions and 0 deletions

View file

@ -109,6 +109,9 @@ function complex_validate(schema, data, root)
if schema.minLength and #data < schema.minLength then
return false
end
if schema.luaPattern and not data:match(schema.luaPattern) then
return false
end
end
if type(data) == "number" then