Metadata-Version: 2.1
Name: check-jsonschema
Version: 0.28.0
Summary: A jsonschema CLI and pre-commit hook
Home-page: https://github.com/python-jsonschema/check-jsonschema
Author: Stephen Rosen
Author-email: sirosen@uchicago.edu
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: ruamel.yaml ==0.18.5
Requires-Dist: jsonschema <5.0,>=4.18.0
Requires-Dist: regress >=0.4.0
Requires-Dist: requests <3.0
Requires-Dist: click <9,>=8
Requires-Dist: tomli >=2.0 ; python_version < "3.11"
Requires-Dist: importlib-resources >=1.4.0 ; python_version < "3.9"
Provides-Extra: dev
Requires-Dist: pytest <9 ; extra == 'dev'
Requires-Dist: coverage <8 ; extra == 'dev'
Requires-Dist: pytest-xdist <4 ; extra == 'dev'
Requires-Dist: responses ==0.24.1 ; extra == 'dev'
Requires-Dist: click-type-test ==0.0.7 ; (python_version >= "3.10") and extra == 'dev'
Provides-Extra: docs
Requires-Dist: sphinx <8 ; extra == 'docs'
Requires-Dist: sphinx-issues <5 ; extra == 'docs'
Requires-Dist: furo ==2024.1.29 ; extra == 'docs'

[![pypi version](https://img.shields.io/pypi/v/check-jsonschema.svg)](https://pypi.org/project/check-jsonschema/)
[![supported pythons](https://img.shields.io/pypi/pyversions/check-jsonschema.svg)](https://pypi.org/project/check-jsonschema/)
[![build](https://github.com/python-jsonschema/check-jsonschema/actions/workflows/build.yaml/badge.svg)](https://github.com/python-jsonschema/check-jsonschema/actions/workflows/build.yaml)
[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/python-jsonschema/check-jsonschema/main.svg)](https://results.pre-commit.ci/latest/github/python-jsonschema/check-jsonschema/main)
[![readthedocs documentation](https://readthedocs.org/projects/check-jsonschema/badge/?version=stable&style=flat)](https://check-jsonschema.readthedocs.io/en/stable)


# check-jsonschema

A JSON Schema CLI and [pre-commit](https://pre-commit.com/) hook built on [jsonschema](https://github.com/python-jsonschema/jsonschema/).
The schema may be specified as a local or remote (HTTP or HTTPS) file.

Remote files are automatically downloaded and cached if possible.

## Usage

`check-jsonschema` can be installed and run as a CLI tool, or via pre-commit.

### Example pre-commit config

The following configuration uses `check-jsonschema` to validate Github Workflow
files.

```yaml
- repo: https://github.com/python-jsonschema/check-jsonschema
  rev: 0.28.0
  hooks:
    - id: check-github-workflows
      args: ["--verbose"]
```

### Installing and Running as a CLI Tool

Install with `pipx` or `brew`:

    pipx install check-jsonschema

or

    brew install check-jsonschema

Then run, as in

    check-jsonschema --schemafile schema.json instance.json

## Documentation

Full documentation can be found at https://check-jsonschema.readthedocs.io/
