About
JSONSchema Spec with object-oriented paths
Key features
Traverse elements like paths
Access spec on demand with separate dereferencing accessor layer
Installation
pip install jsonschema-spec
Alternatively you can download the code and install from the repository:
pip install -e git+https://github.com/p1c2u/jsonschema-spec.git#egg=jsonschema_spec
Usage
>>> from jsonschema_spec import Spec
>>> d = {
... "properties": {
... "info": {
... "$ref": "#/$defs/Info",
... },
... },
... "$defs": {
... "Info": {
... "properties": {
... "title": {
... "$ref": "http://example.com",
... },
... "version": {
... "type": "string",
... "default": "1.0",
... },
... },
... },
... },
... }
>>> spec = Spec.from_dict(d)
>>> # Stat keys
>>> "properties" in spec
True
>>> # Concatenate paths with /
>>> info_spec = spec / "properties" / "info"
>>> # Stat keys with implicit dereferencing
>>> "properties" in info_spec
True
>>> # Concatenate paths with implicit dereferencing
>>> version_spec = info_spec / "properties" / "version"
>>> # Open content with implicit dereferencing
>>> with version_spec.open() as version:
... print(version)
{'type': 'string', 'default': '1.0'}
License
Copyright (c) 2017-2022, Artur Maciag, All rights reserved. Apache-2.0
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
jsonschema_spec-0.1.5.tar.gz
(10.3 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file jsonschema_spec-0.1.5.tar.gz.
File metadata
- Download URL: jsonschema_spec-0.1.5.tar.gz
- Upload date:
- Size: 10.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
poetry/1.5.1 CPython/3.11.3 Linux/5.15.0-1038-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
57c5a029f9b5aa2e49f0b5fe3c3fbbb735d815a35783635a537b10782c59168c
|
|
| MD5 |
fdca6e7d45d2f1e8026cd5c035104a8c
|
|
| BLAKE2b-256 |
8ecc49a706aca5cfe53ada092dbbb08fcc8dcf221dfb388e3d7a67506b528953
|
File details
Details for the file jsonschema_spec-0.1.5-py3-none-any.whl.
File metadata
- Download URL: jsonschema_spec-0.1.5-py3-none-any.whl
- Upload date:
- Size: 12.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
poetry/1.5.1 CPython/3.11.3 Linux/5.15.0-1038-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b2631b04aff2b1dbb46247627d34db3181056d57a720f4fd4aaaa6b5b51d750
|
|
| MD5 |
df38bc618f984a167048c82e6274b345
|
|
| BLAKE2b-256 |
f50fca68b7096777d8c501624a6bbcf42b06f126d060109098e0071e2a8e1f6d
|