├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── lib └── resty │ └── jsonschema │ └── compiler.lua ├── spec └── extra │ ├── README.md │ ├── dependencies.json │ ├── empty.json │ ├── sanity.json │ └── table.json ├── t └── test.lua └── util └── lua-releng /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianchaijz/lua-resty-jsonschema/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianchaijz/lua-resty-jsonschema/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianchaijz/lua-resty-jsonschema/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianchaijz/lua-resty-jsonschema/HEAD/README.md -------------------------------------------------------------------------------- /lib/resty/jsonschema/compiler.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianchaijz/lua-resty-jsonschema/HEAD/lib/resty/jsonschema/compiler.lua -------------------------------------------------------------------------------- /spec/extra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianchaijz/lua-resty-jsonschema/HEAD/spec/extra/README.md -------------------------------------------------------------------------------- /spec/extra/dependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianchaijz/lua-resty-jsonschema/HEAD/spec/extra/dependencies.json -------------------------------------------------------------------------------- /spec/extra/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianchaijz/lua-resty-jsonschema/HEAD/spec/extra/empty.json -------------------------------------------------------------------------------- /spec/extra/sanity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianchaijz/lua-resty-jsonschema/HEAD/spec/extra/sanity.json -------------------------------------------------------------------------------- /spec/extra/table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianchaijz/lua-resty-jsonschema/HEAD/spec/extra/table.json -------------------------------------------------------------------------------- /t/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianchaijz/lua-resty-jsonschema/HEAD/t/test.lua -------------------------------------------------------------------------------- /util/lua-releng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianchaijz/lua-resty-jsonschema/HEAD/util/lua-releng --------------------------------------------------------------------------------