A Python DSL for defining JSON schemas
Project description
Documentation | GitHub | PyPI
JSL is a Python DSL for defining JSON Schemas.
Example
import jsl class Entry(jsl.Document): name = jsl.StringField(required=True) class File(Entry): content = jsl.StringField(required=True) class Directory(Entry): content = jsl.ArrayField(jsl.OneOfField([ jsl.DocumentField(File, as_ref=True), jsl.DocumentField(jsl.RECURSIVE_REFERENCE_CONSTANT) ]), required=True)
Directory.get_schema(ordered=True) will return the following JSON schema:
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "directory": { "type": "object", "properties": { "name": {"type": "string"}, "content": { "type": "array", "items": { "oneOf": [ {"$ref": "#/definitions/file"}, {"$ref": "#/definitions/directory"} ] } } }, "required": ["name", "content"], "additionalProperties": false }, "file": { "type": "object", "properties": { "name": {"type": "string"}, "content": {"type": "string"} }, "required": ["name", "content"], "additionalProperties": false } }, "$ref": "#/definitions/directory" }
Installing
pip install jsl
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
jsl-0.2.3.tar.gz
(21.0 kB
view details)
File details
Details for the file jsl-0.2.3.tar.gz
.
File metadata
- Download URL: jsl-0.2.3.tar.gz
- Upload date:
- Size: 21.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 21e0770b171fdb94690154cb964bfa245918bca01706feffbbb8c7d4079f6fc3 |
|
MD5 | 1ae5dd207630d2ae4827c24870da9fcd |
|
BLAKE2b-256 | d1efb89ed9f21f9c4f9c7202705e84e89614cfde1bdd0318d009961846b6cf43 |