Metadata-Version: 2.4
Name: check-jsonschema
Version: 0.33.3
Summary: A jsonschema CLI and pre-commit hook
Author-email: Stephen Rosen <sirosen0@gmail.com>
Project-URL: Homepage, https://github.com/python-jsonschema/check-jsonschema
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: tomli>=2.0; python_version < "3.11"
Requires-Dist: ruamel.yaml<0.19.0,>=0.18.10
Requires-Dist: jsonschema<5.0,>=4.18.0
Requires-Dist: regress>=2024.11.1
Requires-Dist: requests<3.0
Requires-Dist: click<9,>=8
Provides-Extra: dev
Requires-Dist: pytest<9; extra == "dev"
Requires-Dist: click-type-test==1.1.0; python_version >= "3.10" and extra == "dev"
Requires-Dist: coverage<8; extra == "dev"
Requires-Dist: identify>=2.6.9; extra == "dev"
Requires-Dist: pytest-xdist<4; extra == "dev"
Requires-Dist: responses==0.25.7; extra == "dev"
Provides-Extra: docs
Requires-Dist: sphinx<9; extra == "docs"
Requires-Dist: sphinx-issues<6; extra == "docs"
Requires-Dist: furo==2025.7.19; extra == "docs"
Dynamic: license-file

[![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.33.3
  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/
