Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | util.jsonschema: Fix "uniqueItems" prematurely declaring a match | Kim Alvefur | 2021-03-09 | 1 | -1/+0 |
| | |||||
* | util.jsonschema: Implement the "prefixItems" keyword | Kim Alvefur | 2021-03-09 | 1 | -1/+12 |
| | | | | This may have been what got me confused about "items" being an array. | ||||
* | util.jsonschema: Implement the "contains" keyword | Kim Alvefur | 2021-03-09 | 1 | -0/+13 |
| | | | | And apparently I had mistaken this for an array | ||||
* | util.jsonschema: Allow a boolean as schema | Kim Alvefur | 2021-03-09 | 1 | -0/+3 |
| | | | | | | 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. | ||||
* | util.jsonschema: Correct "items" keyword | Kim Alvefur | 2021-03-09 | 1 | -12/+4 |
| | | | | | | 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. | ||||
* | util.jsonschema: Library for JSON Schema validation | Kim Alvefur | 2021-03-06 | 1 | -0/+245 |