sourcemeta-jsonschema 11.8.2__tar.gz → 11.9.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of sourcemeta-jsonschema might be problematic. Click here for more details.
- {sourcemeta_jsonschema-11.8.2/sourcemeta_jsonschema.egg-info → sourcemeta_jsonschema-11.9.0}/PKG-INFO +1 -1
- {sourcemeta_jsonschema-11.8.2 → sourcemeta_jsonschema-11.9.0}/README.md +6 -2
- {sourcemeta_jsonschema-11.8.2 → sourcemeta_jsonschema-11.9.0}/setup.py +1 -1
- {sourcemeta_jsonschema-11.8.2 → sourcemeta_jsonschema-11.9.0}/sourcemeta_jsonschema/jsonschema-darwin-arm64 +0 -0
- {sourcemeta_jsonschema-11.8.2 → sourcemeta_jsonschema-11.9.0}/sourcemeta_jsonschema/jsonschema-darwin-x86_64 +0 -0
- sourcemeta_jsonschema-11.9.0/sourcemeta_jsonschema/jsonschema-linux-arm64 +0 -0
- {sourcemeta_jsonschema-11.8.2 → sourcemeta_jsonschema-11.9.0}/sourcemeta_jsonschema/jsonschema-linux-x86_64 +0 -0
- sourcemeta_jsonschema-11.9.0/sourcemeta_jsonschema/jsonschema-windows-x86_64.exe +0 -0
- {sourcemeta_jsonschema-11.8.2 → sourcemeta_jsonschema-11.9.0/sourcemeta_jsonschema.egg-info}/PKG-INFO +1 -1
- sourcemeta_jsonschema-11.8.2/sourcemeta_jsonschema/jsonschema-linux-arm64 +0 -0
- sourcemeta_jsonschema-11.8.2/sourcemeta_jsonschema/jsonschema-windows-x86_64.exe +0 -0
- {sourcemeta_jsonschema-11.8.2 → sourcemeta_jsonschema-11.9.0}/MANIFEST.in +0 -0
- {sourcemeta_jsonschema-11.8.2 → sourcemeta_jsonschema-11.9.0}/setup.cfg +0 -0
- {sourcemeta_jsonschema-11.8.2 → sourcemeta_jsonschema-11.9.0}/sourcemeta_jsonschema/__init__.py +0 -0
- {sourcemeta_jsonschema-11.8.2 → sourcemeta_jsonschema-11.9.0}/sourcemeta_jsonschema/__main__.py +0 -0
- {sourcemeta_jsonschema-11.8.2 → sourcemeta_jsonschema-11.9.0}/sourcemeta_jsonschema.egg-info/SOURCES.txt +0 -0
- {sourcemeta_jsonschema-11.8.2 → sourcemeta_jsonschema-11.9.0}/sourcemeta_jsonschema.egg-info/dependency_links.txt +0 -0
- {sourcemeta_jsonschema-11.8.2 → sourcemeta_jsonschema-11.9.0}/sourcemeta_jsonschema.egg-info/entry_points.txt +0 -0
- {sourcemeta_jsonschema-11.8.2 → sourcemeta_jsonschema-11.9.0}/sourcemeta_jsonschema.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sourcemeta_jsonschema
|
|
3
|
-
Version: 11.
|
|
3
|
+
Version: 11.9.0
|
|
4
4
|
Summary: The CLI for working with JSON Schema. Covers formatting, linting, testing, and much more for both local development and CI/CD pipelines
|
|
5
5
|
Home-page: https://github.com/sourcemeta/jsonschema
|
|
6
6
|
Author: Sourcemeta
|
|
@@ -67,7 +67,7 @@ Usage
|
|
|
67
67
|
-----
|
|
68
68
|
|
|
69
69
|
The functionality provided by the JSON Schema CLI is divided into commands. The
|
|
70
|
-
following pages describe each
|
|
70
|
+
following pages describe each feature in detail. Additionally, running the JSON
|
|
71
71
|
Schema CLI without passing a command will print convenient reference
|
|
72
72
|
documentation:
|
|
73
73
|
|
|
@@ -83,6 +83,10 @@ documentation:
|
|
|
83
83
|
- [`jsonschema encode`](./docs/encode.markdown) (for binary compression)
|
|
84
84
|
- [`jsonschema decode`](./docs/decode.markdown)
|
|
85
85
|
|
|
86
|
+
> See [`jsonschema.json`](./docs/configuration.markdown) for an _experimental_
|
|
87
|
+
manifest for describing JSON Schema data models inspired by NPM's
|
|
88
|
+
`package.json`.
|
|
89
|
+
|
|
86
90
|
Note that YAML is supported in most commands!
|
|
87
91
|
|
|
88
92
|
We also support a growing amount of [`pre-commit`](https://pre-commit.com)
|
|
@@ -126,7 +130,7 @@ Where `X.Y.Z` is replaced with the desired version. For example:
|
|
|
126
130
|
uses: actions/checkout@v4
|
|
127
131
|
|
|
128
132
|
- name: Install the JSON Schema CLI
|
|
129
|
-
uses: sourcemeta/jsonschema@v11.
|
|
133
|
+
uses: sourcemeta/jsonschema@v11.9.0
|
|
130
134
|
|
|
131
135
|
# Then use as usual
|
|
132
136
|
- run: jsonschema fmt path/to/schemas --check
|
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name = "sourcemeta_jsonschema",
|
|
5
|
-
version = "11.
|
|
5
|
+
version = "11.9.0",
|
|
6
6
|
description = "The CLI for working with JSON Schema. Covers formatting, linting, testing, and much more for both local development and CI/CD pipelines",
|
|
7
7
|
author = "Sourcemeta",
|
|
8
8
|
author_email = "hello@sourcemeta.com",
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sourcemeta_jsonschema
|
|
3
|
-
Version: 11.
|
|
3
|
+
Version: 11.9.0
|
|
4
4
|
Summary: The CLI for working with JSON Schema. Covers formatting, linting, testing, and much more for both local development and CI/CD pipelines
|
|
5
5
|
Home-page: https://github.com/sourcemeta/jsonschema
|
|
6
6
|
Author: Sourcemeta
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
{sourcemeta_jsonschema-11.8.2 → sourcemeta_jsonschema-11.9.0}/sourcemeta_jsonschema/__init__.py
RENAMED
|
File without changes
|
{sourcemeta_jsonschema-11.8.2 → sourcemeta_jsonschema-11.9.0}/sourcemeta_jsonschema/__main__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|