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
Release files for jsl 0.2.4
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| jsl-0.2.4.tar.gz | 21.0 kB | Details |
Release files / jsl-0.2.4.tar.gz
| Download URL | jsl-0.2.4.tar.gz |
|---|---|
| Size | 21.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
222621116b6ff508f12b2d9e17a576d08d618b06c0845b1867b000a90424c19d
|
|
BLAKE2b-256 checksum How to use checksums |
c16347d4bc4e4bfae29e00ff9256b52dfbf945b409804cfadf95714c113b8efb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |