Kim Alvefur
e03fe2ebe3
util.jsonschema: Return basic structured validation response
2023-12-02 21:45:38 +01:00
Kim Alvefur
597f3c7f0a
util.jsonschema: Remove wrapper function
...
This was to silence some Teal warning that seems to have gone away.
2023-06-17 17:19:40 +02:00
Kim Alvefur
f0242ae57c
util.jsonschema: Silence Teal warnings about utf8 library
...
Teal worries that we redefine the global.
Also that the fallback was missing type information.
2023-06-17 17:17:44 +02:00
Kim Alvefur
c8b5d7e99a
util.jsonschema: Silence Teal warnings about counting items in tables
...
Teal thinks that these are key-value maps which are always of length
zero, but that is not the case.
2023-06-17 17:12:54 +02:00
Kim Alvefur
693ac009db
util.jsonschema: Fix UTF-8ness of 'minLength' and 'maxLength'
2023-04-23 10:42:07 +02:00
Kim Alvefur
3621b8ce91
util.jsonschema: Implement 'minContains' and 'maxContains'
2023-04-23 10:26:43 +02:00
Kim Alvefur
9c7c94ab73
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.
2023-04-22 12:48:51 +02:00
Kim Alvefur
1dad83d28e
util.jsonschema: Implement 'luaPatternProperties' as Lua variant of 'patternProperties'
...
Previous version of this patch used 'patternProperties' but that would
only work with simpler ECMA-262 regular expressions are also valid Lua
patterns.
2023-04-22 12:14:29 +02:00
Kim Alvefur
8c9ffa25eb
util.jsonschema: Implement 'dependentSchemas'
...
If this object key exists then this schema must validate against the
current object. Seems useful.
2023-03-26 15:20:07 +02:00
Kim Alvefur
4bc62438db
util.jsonschema: Implement 'dependentRequired'
...
If this field exists, then these fields must also exist.
2023-03-26 15:19:14 +02:00
Kim Alvefur
43531740f9
util: Prefix module imports with prosody namespace
2023-03-17 16:23:16 +01:00
Kim Alvefur
bca11bfc73
util.jsonschema: Use same integer/float logic on Lua 5.2 and 5.3
...
Fixes test case type.json:0:1 covering treatment of 1.0 as an integer
according to the JSON definition
2022-10-09 15:42:25 +02:00
Kim Alvefur
060dc12013
util.jsonschema: Fix Lua 5.2 integer compat
...
math.type() is unavailable before Lua 5.3 so this should use the compat
function added at the top
2022-10-09 15:38:36 +02:00
Kim Alvefur
e700edc50f
util.jsonschema: Fix validation to not assume presence of "type" field
...
MattJ reported a curious issue where validation did not work as
expected. Primarily that the "type" field was expected to be mandatory,
and thus leaving it out would result in no checks being performed.
This was likely caused by misreading during initial development.
Spent some time testing against
https://github.com/json-schema-org/JSON-Schema-Test-Suite.git and
discovered a multitude of issues, far too many to bother splitting into
separate commits.
More than half of them fail. Many because of features not implemented,
which have been marked NYI. For example, some require deep comparisons
e.g. when objects or arrays are present in enums fields.
Some because of quirks with how Lua differs from JavaScript, e.g. no
distinct array or object types. Tests involving fractional floating
point numbers. We're definitely not going to follow references to remote
resources. Or deal with UTF-16 sillyness. One test asserted that 1.0 is
an integer, where Lua 5.3+ will disagree.
2022-07-08 14:38:23 +02:00
Kim Alvefur
6a9efa5a52
util.jsonschema: Lua <5.3 compat here too
2022-05-09 22:39:05 +02:00
Kim Alvefur
cd091bf95c
util.jsonschema: Add support for $ref pointers
2021-12-29 16:57:35 +01:00
Kim Alvefur
c1706af956
util.jsonschema: Rename types for improved readability
2021-03-18 23:57:03 +01:00
Kim Alvefur
6db9456d88
util.jsonschema: Restructure "type" keyword handling
...
More in line with the other tests
2021-03-09 14:31:11 +01:00
Kim Alvefur
44edd47ca8
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.
2021-03-09 14:22:33 +01:00
Kim Alvefur
1317e78fbb
util.jsonschema: Implement "propertyNames"
...
This is a bit special in Lua as tables are not limited to string keys
2021-03-09 02:43:50 +01:00
Kim Alvefur
d8303be145
util.jsonschema: Restructure handling of "properties" and "additionalProperties"
...
This is a bit cleaner, I think
2021-03-09 02:41:47 +01:00
Kim Alvefur
ae40825925
util.jsonschema: Fix "uniqueItems" prematurely declaring a match
2021-03-09 02:38:51 +01:00
Kim Alvefur
da85d37bcb
util.jsonschema: Implement the "prefixItems" keyword
...
This may have been what got me confused about "items" being an array.
2021-03-09 02:36:08 +01:00
Kim Alvefur
ce4040e109
util.jsonschema: Implement the "contains" keyword
...
And apparently I had mistaken this for an array
2021-03-09 02:35:00 +01:00
Kim Alvefur
5a44c4a32b
util.jsonschema: Allow a boolean as schema
...
Apparently a schema must be either an object or a boolean. Not sure
where I got this string shortcut from, but I think I will keep it as it
is very convenient.
2021-03-09 02:33:28 +01:00
Kim Alvefur
6a7346ac8e
util.jsonschema: Correct "items" keyword
...
Upon re-reading the JSON Schema spec, I found that 'items' wasn't a
union of an array of schemas or a single schema, not sure where I got
that from.
2021-03-09 02:26:05 +01:00
Kim Alvefur
02da1378f8
util.jsonschema: Library for JSON Schema validation
2021-03-06 21:07:53 +01:00