jsonschema icon indicating copy to clipboard operation
jsonschema copied to clipboard

Pure Lua JSON schema validator for Lua/LuaJIT

Results 21 jsonschema issues
Sort by recently updated
recently updated
newest added

I am reading a schema from open api specification file which contains internal schema references like "$ref": "#/components/schemas/decimal" but when I try to generate validator with jsonschema.generate_validator, it gives me...

I'm using a validator to check my schemas against JSON Schema Draft-07 schema (http://json-schema.org/draft-07/schema), and found that validation method incorrectly applies `default` to validated table. Reproduction: ```lua local cjson =...

Hello! I hope you are doing well! We are a security research team. Our tool automatically detected a vulnerability in this repository. We want to disclose it responsibly. GitHub has...

Hello, I want to use jsonschema in my TCC project, but I'm having some problems When I run the command `sudo luarocks install jsonschema` I get the following error ```...

Hello, I want to use jsonschema in my TCC project, but I'm having some problems When I run the command `sudo luarocks install jsonschema` I get the following error ```...

Hi, I was testing a jsonschema that can be simplified to: ``` { "type": "object", "properties": { "_actions": { "$ref": "#/components/schemas/Actions" } }, "components": { "schemas": { "Actions": { "type":...

I found a bug when using boolean fields in my JSON Schema. My partial JSON Schema which I use to detect the error was the following: ```json ... "bool_param":{ "oneOf":[{...