├── .github └── workflows │ ├── release.yaml │ ├── rename-wheels.py │ ├── test.yaml │ └── upload-deno-assets.js ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── Makefile ├── README.md ├── VERSION ├── bindings ├── ruby │ ├── .gitignore │ ├── Gemfile │ ├── Rakefile │ ├── lib │ │ ├── sqlite_jsonschema.rb │ │ ├── version.rb │ │ └── version.rb.tmpl │ └── sqlite_jsonschema.gemspec └── sqlite-utils │ ├── .gitignore │ ├── README.md │ ├── pyproject.toml │ ├── pyproject.toml.tmpl │ └── sqlite_utils_sqlite_jsonschema │ ├── __init__.py │ ├── version.py │ └── version.py.tmpl ├── deno ├── README.md ├── README.md.tmpl ├── deno.json ├── deno.json.tmpl ├── deno.lock ├── mod.ts └── test.ts ├── docs.md ├── npm ├── .gitignore ├── README.md ├── platform-package.README.md.tmpl ├── platform-package.package.json.tmpl ├── sqlite-jsonschema-darwin-arm64 │ ├── .gitignore │ ├── README.md │ ├── lib │ │ └── .gitkeep │ └── package.json ├── sqlite-jsonschema-darwin-x64 │ ├── .gitignore │ ├── README.md │ ├── lib │ │ └── .gitkeep │ └── package.json ├── sqlite-jsonschema-linux-x64 │ ├── .gitignore │ ├── README.md │ ├── lib │ │ └── .gitkeep │ └── package.json ├── sqlite-jsonschema-windows-x64 │ ├── .gitignore │ ├── README.md │ ├── lib │ │ └── .gitkeep │ └── package.json └── sqlite-jsonschema │ ├── README.md │ ├── package.json │ ├── package.json.tmpl │ ├── src │ └── index.js │ └── test.js ├── python ├── .gitignore ├── README.md ├── datasette_sqlite_jsonschema │ ├── README.md │ ├── datasette_sqlite_jsonschema │ │ ├── __init__.py │ │ └── version.py │ ├── setup.py │ └── tests │ │ └── test_sqlite_jsonschema.py └── sqlite_jsonschema │ ├── README.md │ ├── noop.c │ ├── setup.py │ └── sqlite_jsonschema │ ├── __init__.py │ └── version.py ├── scripts ├── deno_generate_package.sh ├── npm_generate_platform_packages.sh ├── publish_release.sh └── site_generate.sh ├── site ├── _config.ts ├── _data.yaml ├── _includes │ ├── base.njk │ └── navbar.njk ├── _sql.ts ├── deno.json ├── deno.lock ├── examples.md ├── index.md ├── reference.md ├── reference.md.tmpl ├── static │ ├── github-mark-white.svg │ ├── github-mark.svg │ ├── pico.min.css │ ├── script.js │ └── style.css └── usage │ ├── datasette.md │ ├── deno.md │ ├── hljs.md │ ├── loadable.md │ ├── node.md │ ├── python.md │ ├── source.md │ └── sqlite3.md ├── src ├── jsonschema.rs └── lib.rs └── tests ├── test-loadable.py └── test-python.py /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/rename-wheels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/.github/workflows/rename-wheels.py -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.github/workflows/upload-deno-assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/.github/workflows/upload-deno-assets.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.2.3 -------------------------------------------------------------------------------- /bindings/ruby/.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | -------------------------------------------------------------------------------- /bindings/ruby/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/bindings/ruby/Gemfile -------------------------------------------------------------------------------- /bindings/ruby/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/bindings/ruby/Rakefile -------------------------------------------------------------------------------- /bindings/ruby/lib/sqlite_jsonschema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/bindings/ruby/lib/sqlite_jsonschema.rb -------------------------------------------------------------------------------- /bindings/ruby/lib/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/bindings/ruby/lib/version.rb -------------------------------------------------------------------------------- /bindings/ruby/lib/version.rb.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/bindings/ruby/lib/version.rb.tmpl -------------------------------------------------------------------------------- /bindings/ruby/sqlite_jsonschema.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/bindings/ruby/sqlite_jsonschema.gemspec -------------------------------------------------------------------------------- /bindings/sqlite-utils/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/bindings/sqlite-utils/.gitignore -------------------------------------------------------------------------------- /bindings/sqlite-utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/bindings/sqlite-utils/README.md -------------------------------------------------------------------------------- /bindings/sqlite-utils/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/bindings/sqlite-utils/pyproject.toml -------------------------------------------------------------------------------- /bindings/sqlite-utils/pyproject.toml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/bindings/sqlite-utils/pyproject.toml.tmpl -------------------------------------------------------------------------------- /bindings/sqlite-utils/sqlite_utils_sqlite_jsonschema/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/bindings/sqlite-utils/sqlite_utils_sqlite_jsonschema/__init__.py -------------------------------------------------------------------------------- /bindings/sqlite-utils/sqlite_utils_sqlite_jsonschema/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/bindings/sqlite-utils/sqlite_utils_sqlite_jsonschema/version.py -------------------------------------------------------------------------------- /bindings/sqlite-utils/sqlite_utils_sqlite_jsonschema/version.py.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/bindings/sqlite-utils/sqlite_utils_sqlite_jsonschema/version.py.tmpl -------------------------------------------------------------------------------- /deno/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/deno/README.md -------------------------------------------------------------------------------- /deno/README.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/deno/README.md.tmpl -------------------------------------------------------------------------------- /deno/deno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/deno/deno.json -------------------------------------------------------------------------------- /deno/deno.json.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/deno/deno.json.tmpl -------------------------------------------------------------------------------- /deno/deno.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/deno/deno.lock -------------------------------------------------------------------------------- /deno/mod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/deno/mod.ts -------------------------------------------------------------------------------- /deno/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/deno/test.ts -------------------------------------------------------------------------------- /docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/docs.md -------------------------------------------------------------------------------- /npm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/npm/.gitignore -------------------------------------------------------------------------------- /npm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/npm/README.md -------------------------------------------------------------------------------- /npm/platform-package.README.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/npm/platform-package.README.md.tmpl -------------------------------------------------------------------------------- /npm/platform-package.package.json.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/npm/platform-package.package.json.tmpl -------------------------------------------------------------------------------- /npm/sqlite-jsonschema-darwin-arm64/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/npm/sqlite-jsonschema-darwin-arm64/.gitignore -------------------------------------------------------------------------------- /npm/sqlite-jsonschema-darwin-arm64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/npm/sqlite-jsonschema-darwin-arm64/README.md -------------------------------------------------------------------------------- /npm/sqlite-jsonschema-darwin-arm64/lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /npm/sqlite-jsonschema-darwin-arm64/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/npm/sqlite-jsonschema-darwin-arm64/package.json -------------------------------------------------------------------------------- /npm/sqlite-jsonschema-darwin-x64/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/npm/sqlite-jsonschema-darwin-x64/.gitignore -------------------------------------------------------------------------------- /npm/sqlite-jsonschema-darwin-x64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/npm/sqlite-jsonschema-darwin-x64/README.md -------------------------------------------------------------------------------- /npm/sqlite-jsonschema-darwin-x64/lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /npm/sqlite-jsonschema-darwin-x64/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/npm/sqlite-jsonschema-darwin-x64/package.json -------------------------------------------------------------------------------- /npm/sqlite-jsonschema-linux-x64/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/npm/sqlite-jsonschema-linux-x64/.gitignore -------------------------------------------------------------------------------- /npm/sqlite-jsonschema-linux-x64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/npm/sqlite-jsonschema-linux-x64/README.md -------------------------------------------------------------------------------- /npm/sqlite-jsonschema-linux-x64/lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /npm/sqlite-jsonschema-linux-x64/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/npm/sqlite-jsonschema-linux-x64/package.json -------------------------------------------------------------------------------- /npm/sqlite-jsonschema-windows-x64/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/npm/sqlite-jsonschema-windows-x64/.gitignore -------------------------------------------------------------------------------- /npm/sqlite-jsonschema-windows-x64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/npm/sqlite-jsonschema-windows-x64/README.md -------------------------------------------------------------------------------- /npm/sqlite-jsonschema-windows-x64/lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /npm/sqlite-jsonschema-windows-x64/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/npm/sqlite-jsonschema-windows-x64/package.json -------------------------------------------------------------------------------- /npm/sqlite-jsonschema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/npm/sqlite-jsonschema/README.md -------------------------------------------------------------------------------- /npm/sqlite-jsonschema/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/npm/sqlite-jsonschema/package.json -------------------------------------------------------------------------------- /npm/sqlite-jsonschema/package.json.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/npm/sqlite-jsonschema/package.json.tmpl -------------------------------------------------------------------------------- /npm/sqlite-jsonschema/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/npm/sqlite-jsonschema/src/index.js -------------------------------------------------------------------------------- /npm/sqlite-jsonschema/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/npm/sqlite-jsonschema/test.js -------------------------------------------------------------------------------- /python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/python/.gitignore -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/python/README.md -------------------------------------------------------------------------------- /python/datasette_sqlite_jsonschema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/python/datasette_sqlite_jsonschema/README.md -------------------------------------------------------------------------------- /python/datasette_sqlite_jsonschema/datasette_sqlite_jsonschema/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/python/datasette_sqlite_jsonschema/datasette_sqlite_jsonschema/__init__.py -------------------------------------------------------------------------------- /python/datasette_sqlite_jsonschema/datasette_sqlite_jsonschema/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/python/datasette_sqlite_jsonschema/datasette_sqlite_jsonschema/version.py -------------------------------------------------------------------------------- /python/datasette_sqlite_jsonschema/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/python/datasette_sqlite_jsonschema/setup.py -------------------------------------------------------------------------------- /python/datasette_sqlite_jsonschema/tests/test_sqlite_jsonschema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/python/datasette_sqlite_jsonschema/tests/test_sqlite_jsonschema.py -------------------------------------------------------------------------------- /python/sqlite_jsonschema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/python/sqlite_jsonschema/README.md -------------------------------------------------------------------------------- /python/sqlite_jsonschema/noop.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/sqlite_jsonschema/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/python/sqlite_jsonschema/setup.py -------------------------------------------------------------------------------- /python/sqlite_jsonschema/sqlite_jsonschema/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/python/sqlite_jsonschema/sqlite_jsonschema/__init__.py -------------------------------------------------------------------------------- /python/sqlite_jsonschema/sqlite_jsonschema/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/python/sqlite_jsonschema/sqlite_jsonschema/version.py -------------------------------------------------------------------------------- /scripts/deno_generate_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/scripts/deno_generate_package.sh -------------------------------------------------------------------------------- /scripts/npm_generate_platform_packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/scripts/npm_generate_platform_packages.sh -------------------------------------------------------------------------------- /scripts/publish_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/scripts/publish_release.sh -------------------------------------------------------------------------------- /scripts/site_generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/scripts/site_generate.sh -------------------------------------------------------------------------------- /site/_config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/site/_config.ts -------------------------------------------------------------------------------- /site/_data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/site/_data.yaml -------------------------------------------------------------------------------- /site/_includes/base.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/site/_includes/base.njk -------------------------------------------------------------------------------- /site/_includes/navbar.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/site/_includes/navbar.njk -------------------------------------------------------------------------------- /site/_sql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/site/_sql.ts -------------------------------------------------------------------------------- /site/deno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/site/deno.json -------------------------------------------------------------------------------- /site/deno.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/site/deno.lock -------------------------------------------------------------------------------- /site/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/site/examples.md -------------------------------------------------------------------------------- /site/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/site/index.md -------------------------------------------------------------------------------- /site/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/site/reference.md -------------------------------------------------------------------------------- /site/reference.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/site/reference.md.tmpl -------------------------------------------------------------------------------- /site/static/github-mark-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/site/static/github-mark-white.svg -------------------------------------------------------------------------------- /site/static/github-mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/site/static/github-mark.svg -------------------------------------------------------------------------------- /site/static/pico.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/site/static/pico.min.css -------------------------------------------------------------------------------- /site/static/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/site/static/script.js -------------------------------------------------------------------------------- /site/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/site/static/style.css -------------------------------------------------------------------------------- /site/usage/datasette.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/site/usage/datasette.md -------------------------------------------------------------------------------- /site/usage/deno.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/site/usage/deno.md -------------------------------------------------------------------------------- /site/usage/hljs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/site/usage/hljs.md -------------------------------------------------------------------------------- /site/usage/loadable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/site/usage/loadable.md -------------------------------------------------------------------------------- /site/usage/node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/site/usage/node.md -------------------------------------------------------------------------------- /site/usage/python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/site/usage/python.md -------------------------------------------------------------------------------- /site/usage/source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/site/usage/source.md -------------------------------------------------------------------------------- /site/usage/sqlite3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/site/usage/sqlite3.md -------------------------------------------------------------------------------- /src/jsonschema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/src/jsonschema.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/test-loadable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/tests/test-loadable.py -------------------------------------------------------------------------------- /tests/test-python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/sqlite-jsonschema/HEAD/tests/test-python.py --------------------------------------------------------------------------------