# Buildsheet autogenerated by ravenadm tool -- Do not edit. NAMEBASE= python-jsonschema VERSION= 4.18.0 KEYWORDS= python VARIANTS= py310 v11 SDESC[py310]= Alternate implementation of JSON Schema (3.10) SDESC[v11]= Alternate implementation of JSON Schema (3.11) HOMEPAGE= https://github.com/python-jsonschema/jsonschema CONTACT= Python_Automaton[python@ironwolf.systems] DOWNLOAD_GROUPS= main SITES[main]= PYPIWHL/8a/38/2c55180702a637be0fbb8aa95358213a750d25cad3e59869726a54309996 DISTFILE[1]= jsonschema-4.18.0-py3-none-any.whl:main DF_INDEX= 1 SPKGS[py310]= single SPKGS[v11]= single OPTIONS_AVAILABLE= PY310 PY311 OPTIONS_STANDARD= none VOPTS[py310]= PY310=ON PY311=OFF VOPTS[v11]= PY310=OFF PY311=ON DISTNAME= jsonschema-4.18.0.dist-info GENERATED= yes [PY310].RUN_DEPENDS_ON= python-attrs:single:py310 python-jsonschema-specifications:single:py310 python-referencing:single:py310 python-rpds-py:single:py310 [PY310].USES_ON= python:py310,wheel [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 [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] b508dd6142bd03f4c3670534c80af68cd7bbff9ea830b9cf2625d4a3c49ddf60 81450 jsonschema-4.18.0-py3-none-any.whl