json-spec
json-spec copied to clipboard
Implements some tools for JSON
json-spec 0.11.0 requires importlib-metadata=5.0.0, but you have importlib-metadata 7.1.0 which is incompatible. opentelemetry-api 1.24.0 requires importlib-metadata=6.0, but you have importlib-metadata 7.1.0 which is incompatible.
Bumps [black](https://github.com/psf/black) from 22.10.0 to 24.3.0. Release notes Sourced from black's releases. 24.3.0 Highlights This release is a milestone: it fixes Black's first CVE security vulnerability. If you run Black...
I'm using json-spec with Python 3.8 and would like to the package to 0.11.0 (to get rid of `collections.abc` warnings; see also #26). Although the documentation (and the `.travis` file)...
Currently, the `README.rst` file points to a URL at the site, `py.errorist.io`, which no longer exists. According to PyPI, the documentation now resides at https://json-spec.readthedocs.io/. This PR fixes the broken...
It's no longer `json-extract`, but `jsonpointer`. And `jsonschema` - not `json-validate`.
There are a few places where importing from `collections` as opposed to `collections.abc` raises the following deprecation warning in Python3 ``` DeprecationWarning: Using or importing the ABCs from 'collections' instead...
I have just started to look at JSON Schema and the current line seems to be causing some issue with the tool. ``` "$schema": "http://json-schema.org/draft-07/schema#", ``` Error message: ``` jsonspec.validators.exceptions.CompilationError:...
I am trying to validate a file against a schema as follows: $ jsonschema -i /path/to/schema.json test.json It fails with this message: usage: jsonschema [-h] [-i INSTANCES] [-F ERROR_FORMAT] [-V...
in `__get_item__()`, when the spec portion of the uri is obtained, the ':' is not stripped. this results in a key error on line 138: `return self.data[spec]`
I was looking at validating hyper-schema documents and figured I could use the draft4 compiler since hyper-schema is just an extension. It fails however, with a maximum recursion depth exceeded...