├── .gitmodules ├── LICENSE ├── README.md ├── bench.lua ├── jsonschema ├── init.lua └── store.lua ├── ljsonschema-scm-1.rockspec └── spec ├── TODO ├── extra ├── dependencies.json ├── empty.json ├── function.lua ├── ref.json ├── sanity.json └── table.json ├── jsonschema.json └── suite.lua /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdesgats/ljsonschema/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdesgats/ljsonschema/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdesgats/ljsonschema/HEAD/README.md -------------------------------------------------------------------------------- /bench.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdesgats/ljsonschema/HEAD/bench.lua -------------------------------------------------------------------------------- /jsonschema/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdesgats/ljsonschema/HEAD/jsonschema/init.lua -------------------------------------------------------------------------------- /jsonschema/store.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdesgats/ljsonschema/HEAD/jsonschema/store.lua -------------------------------------------------------------------------------- /ljsonschema-scm-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdesgats/ljsonschema/HEAD/ljsonschema-scm-1.rockspec -------------------------------------------------------------------------------- /spec/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdesgats/ljsonschema/HEAD/spec/TODO -------------------------------------------------------------------------------- /spec/extra/dependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdesgats/ljsonschema/HEAD/spec/extra/dependencies.json -------------------------------------------------------------------------------- /spec/extra/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdesgats/ljsonschema/HEAD/spec/extra/empty.json -------------------------------------------------------------------------------- /spec/extra/function.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdesgats/ljsonschema/HEAD/spec/extra/function.lua -------------------------------------------------------------------------------- /spec/extra/ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdesgats/ljsonschema/HEAD/spec/extra/ref.json -------------------------------------------------------------------------------- /spec/extra/sanity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdesgats/ljsonschema/HEAD/spec/extra/sanity.json -------------------------------------------------------------------------------- /spec/extra/table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdesgats/ljsonschema/HEAD/spec/extra/table.json -------------------------------------------------------------------------------- /spec/jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdesgats/ljsonschema/HEAD/spec/jsonschema.json -------------------------------------------------------------------------------- /spec/suite.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdesgats/ljsonschema/HEAD/spec/suite.lua --------------------------------------------------------------------------------