python-jsonschema
Port variant py310
Summary Alternate implementation of JSON Schema (3.10)
Package version 4.19.1
Homepage https://github.com/python-jsonschema/jsonschema
Keywords python
Maintainer Python Automaton
License Not yet specified
Other variants v11
Ravenports Buildsheet | History
Ravensource Port Directory | History
Last modified 22 SEP 2023, 12:17:47 UTC
Port created 20 MAY 2018, 23:40:09 UTC
Subpackage Descriptions
single ========== jsonschema ========== |PyPI| |Pythons| |CI| |ReadTheDocs| |Precommit| |Zenodo| jsonschema is an implementation of the [JSON Schema] specification for Python. .. code:: python >>> from jsonschema import validate >>> # A sample schema, like what we'd get from json.load() >>> schema = { ... "type" : "object", ... "properties" : { ... "price" : {"type" : "number"}, ... "name" : {"type" : "string"}, ... }, ... } >>> # If no exception is raised by validate(), the instance is valid. >>> validate(instance={"name" : "Eggs", "price" : 34.99}, schema=schema) >>> validate( ... instance={"name" : "Eggs", "price" : "Invalid"}, schema=schema, ... ) # doctest: +IGNORE_EXCEPTION_DETAIL Traceback (most recent call last): ... ValidationError: 'Invalid' is not of type 'number' It can also be used from the command line by installing `check-jsonschema `_. Features -------- * Full support for `Draft 2020-12 `_, `Draft 2019-09 `_, [Draft 7], [Draft 6], [Draft 4] and [Draft 3] * [Lazy validation] that can iteratively report *all* validation errors. * [Programmatic querying] of which properties or items failed validation. Installation ------------ jsonschema is available on [PyPI]. You can install using [pip]: .. code:: bash $ pip install jsonschema Extras ====== Two extras are available when installing the package, both currently related to format validation: * format * ``format-nongpl`` They can be used when installing in order to include additional dependencies, e.g.: .. code:: bash $ pip install jsonschema'[format]' Be aware that the mere presence of these dependencies – or even the specification of format checks in a schema – do *not* activate format checks (as per the specification). Please read the [format validation documentation] for further details. About ----- I'm Julian Berman. jsonschema is on [GitHub]. Get in touch, via GitHub or otherwise, if you've got something to contribute, it'd be most welcome! You can also generally find me on Libera (nick: Julian) in various channels, including ``#python``. If you feel overwhelmingly grateful, you can also [sponsor me]. And for companies who appreciate jsonschema and its continued support and growth, jsonschema is also now supportable via [TideLift]. Release Information -------------------
Configuration Switches (platform-specific settings discarded)
PY310 ON Build using Python 3.10 PY311 OFF Build using Python 3.11
Package Dependencies by Type
Build (only) python-pip:single:py310
autoselect-python:single:standard
Build and Runtime python310:single:standard
Runtime (only) python-attrs:single:py310
python-jsonschema-specifications:single:py310
python-referencing:single:py310
python-rpds-py:single:py310
Download groups
main mirror://PYPIWHL/0f/bf/a84bc75f069f4f156e1c0d9892fb7325945106c6ecaad9f29d24360872af
Distribution File Information
cd5f1f9ed9444e554b38ba003af06c0a8c2868131e56bfbef0550fb450c0330e 83279 jsonschema-4.19.1-py3-none-any.whl
Ports that require python-jsonschema:py310
python-drf-spectacular:py310 OpenAPI 3 schema generation for Django REST (3.10)
python-netdoc:py310 Network documentation plugin for NetBox (3.10)
python-swagger-spec-validator:py310 Validation of Swagger specifications (3.10)