JSPM

  • Created
  • Published
  • Downloads 2692
  • Score
    100M100P100Q127160F
  • License AGPL-3.0

The CLI for working with JSON Schema. Covers formatting, linting, testing, and much more for both local development and CI/CD pipelines

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@sourcemeta/jsonschema) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    JSON Schema

    The command-line tool for working with JSON Schema, the world most popular schema language. It is a comprehensive solution for maintaining repositories of schemas and ensuring their quality, both during local development and when running on CI/CD pipelines. For example:

    • Ensure your schemas are valid
    • Unit test your schemas against valid and invalid instances
    • Enforce consistent indentation and keyword ordering in your schema files
    • Detect and fix common JSON Schema anti-patterns
    • Inline external references for conveniently distributing your schemas

    Check out the documentation to learn more


    [!TIP] Do you want to level up your JSON Schema skills? Check out learnjsonschema.com, our growing JSON Schema documentation website, and our O'Reilly book Unifying Business, Data, and Code: Designing Data Products with JSON Schema.

    Version support

    We aim to fully support every version of JSON Schema and combinations between them.

    Dialect Support
    JSON Schema 2020-12 Full
    JSON Schema 2019-09 Full
    JSON Schema Draft 7 Full
    JSON Schema Draft 6 Full
    JSON Schema Draft 4 Full
    JSON Schema Draft 3 Partial (except validate, test, and metaschema)
    JSON Schema Draft 2 Partial (except validate, test, and metaschema)
    JSON Schema Draft 1 Partial (except validate, test, and metaschema)
    JSON Schema Draft 0 Partial (except validate, test, and metaschema)

    What our users are saying

    Amazing product. Very useful for formatting and bundling my schemas, plus it surfaced various referencing issues. 10 out of 10!

    @alombarte, co-founder of the KrakenD API Gateway.

    Usage

    The functionality provided by the JSON Schema CLI is divided into commands. The following pages describe each command in detail. Additionally, running the JSON Schema CLI without passing a command will print convenient reference documentation:

    Note that YAML is supported in most commands!


    If you are looking for more of a tutorial and overview of what the CLI is capable of, take a look at the Applying software engineering practices to JSON Schemas talk from the 2024 JSON Schema Conference. It covers advise on ontology design, linting, unit testing, CI/CD integration, and more:

    JSON Schema Conference 2024 - Applying software engineering practices to JSON Schemas

    Installation

    The JSON Schema CLI is written using C++ and CMake, and supports macOS, Windows, and GNU/Linux.

    From Homebrew

    brew install sourcemeta/apps/jsonschema

    From GitHub Actions

    - uses: sourcemeta/jsonschema@vX.Y.Z

    Where X.Y.Z is replaced with the desired version. For example:

    - uses: sourcemeta/jsonschema@v7.0.2
    # Then use as usual
    - run: jsonschema fmt path/to/schemas --check

    From NPM

    npm install --global @sourcemeta/jsonschema

    From GitHub Releases

    We publish precompiled binaries for every supported platform to GitHub Releases, including a continuous that is updated on every commit from the main branch.

    For convenience, we also provide a POSIX shell script capable of installing the latest pre-built binaries, which you can run as follows:

    /bin/sh -c "$(curl -fsSL https://raw.githubusercontent.com/sourcemeta/jsonschema/main/install -H "Cache-Control: no-cache, no-store, must-revalidate")"

    From Dockerfile

    You can compile the JSON Schema CLI inside a container and run it with Docker as follows:

    docker build -t jsonschema .

    Then, you run the JSON Schema CLI by mounting the desired directory as /workspace as follows:

    docker run --interactive --volume "$PWD:/workspace" jsonschema lint --verbose myschema.json
    
    # You can optionally add this to your .alias (or similar) file:
    # alias jsonschema="docker run --interactive --volume \"$PWD:/workspace\" jsonschema"

    [!WARNING] Make sure to NOT allocate a pseudo-TTY when running the CLI through Docker (i.e. the --tty/-t option) as it might result in line ending incompatibilities between the container and host, which will affect formatting. Plus a TTY is not required for running a tool like the JSON Schema CLI.

    Building from source

    git clone https://github.com/sourcemeta/jsonschema
    cd jsonschema
    cmake -S . -B ./build -DCMAKE_BUILD_TYPE:STRING=Release
    cmake --build ./build --config Release --parallel 4
    cmake --install ./build --prefix <prefix> \
      --config Release --verbose --component sourcemeta_jsonschema

    Where <prefix> can be any destination prefix of your choosing, such as /opt or /usr/local.

    Coming Soon

    This project is under heavy development, and we have a lot of cool things in the oven. In the mean-time, star the project to show your support!

    Feature Description Status
    Upgrading/Downgrading Convert a JSON Schema into a later or older dialect Not started

    Contributors

    License

    This project is governed by the AGPL-3.0 copyleft license.