# Buildsheet autogenerated by ravenadm tool -- Do not edit. NAMEBASE= python-jsonschema VERSION= 4.21.1 KEYWORDS= python VARIANTS= v11 v12 SDESC[v11]= Alternate implementation of JSON Schema (3.11) SDESC[v12]= Alternate implementation of JSON Schema (3.12) HOMEPAGE= https://github.com/python-jsonschema/jsonschema CONTACT= Python_Automaton[python@ironwolf.systems] DOWNLOAD_GROUPS= main SITES[main]= PYPIWHL/39/9d/b035d024c62c85f2e2d4806a59ca7b8520307f34e0932fbc8cc75fe7b2d9 DISTFILE[1]= jsonschema-4.21.1-py3-none-any.whl:main DF_INDEX= 1 SPKGS[v11]= single SPKGS[v12]= single OPTIONS_AVAILABLE= PY311 PY312 OPTIONS_STANDARD= none VOPTS[v11]= PY311=ON PY312=OFF VOPTS[v12]= PY311=OFF PY312=ON DISTNAME= jsonschema-4.21.1.dist-info GENERATED= yes [PY311].RUN_DEPENDS_ON= python-attrs:single:v11 python-jsonschema-specifications:single:v11 python-referencing:single:v11 python-rpds-py:single:v11 [PY311].USES_ON= python:v11,wheel [PY312].RUN_DEPENDS_ON= python-attrs:single:v12 python-jsonschema-specifications:single:v12 python-referencing:single:v12 python-rpds-py:single:v12 [PY312].USES_ON= python:v12,wheel [FILE:2758:descriptions/desc.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 ------------------- [FILE:113:distinfo] 7996507afae316306f9e2290407761157c6f78002dcf7419acb99822143d1c6f 85527 jsonschema-4.21.1-py3-none-any.whl