Skip to main content

Structural and type validation of JSON objects

Project description

JVAL - JSON Validation Language - Python Module

pip install jval

JVAL allows for structural and type validation of JSON objects. This project defines the JVAL specification and presents a sample implementation in Python.

Features

JVAL...

  • is isomorphic to JSON. This means that it takes the same amount of lines to define a schema as it does to define a JSON object that complies with such schema, no matter how complex you decide to make it.
  • supports nested type definitions and optional fields with default values.
  • produces descriptive error messages that point to the exact location of the problem.
  • will, not only notify you of errors in the JSON object but also in the schema itself, helping you write and understand your schemas.
  • can be configured to discard extra fields in the JSON object instead of raising an error if they are present. This enables the usage of JVAL for filtering as well as validation.
  • takes specs written in JSON, making syntax highlighting, autocompletion, and formatting available in your favorite text editor out of the box.

A JVAL Schema Example

{
    "version": "1.0",
    # Expect a "version" key with a value of "1.0"

    "*name": "<str>",
    # Expect a "name" key with a value of type string

    "?compression": "7zip",
    # Optional "compression" key. Must have a value of "7zip" if present.

    "?*dependencies": ["<str>"],
    # Optional "dependencies" key. Must be a list of strings if present.

    "?_visibility": "private",
    # Optional "visibility" key. Assume a default value of "private" if not present.
    # Must be a value of type string if present. (Infers type from default value).

    "*addresses": [
    # Type requirements can be as complex or simple as you need them to be.
        {
            "*street": "<str>",
            "*number": "<int>",
            "?*complement": "<str>",
        },
    ],
}

A schema like the one above is passed to the validator along with a JSON object to validate.

The function will return the validated data, adding any default values that are missing from the input JSON object. If the object does not comply with the schema, it will raise an exception that includes the exact location of the error.

Usage

After installing the package with pip install jval you can either use it as a command line tool or import it in your Python code as a module.

Command-line usage

usage: jval [-h] [--drop-extra-keys] json_path jval_path

Validate JSON data against a JVAL schema.

Positional arguments:
  json_path          Path to the JSON file to validate
  jval_path          Path to the JVAL schema file

Options:
  -h, --help         Show this help message and exit
  --drop-extra-keys  Drop extra keys in the JSON data that are not defined in the JVAL schema

Python module usage

from jval import validate

schema = {
    "*name": "<str>",
    "?*age": "<int>",
    "?_has_pets": False,
    "?*properties": [
        {
            "*name": "<str>",
            "*address": "<str>"
        }
    ]
}

data = {
    "name": "Alice",
    "properties": [
        {
            "name": "Long Island Apartment",
            "address": "1234 Long Island St."
        }
    ]
}

validated_data = validate(data, schema)
print(validated_data)

Output:

{
    "name": "Alice",
    "has_pets": False,
    "properties": [
        {
            "name": "Long Island Apartment",
            "address": "1234 Long Island St."
        }
    ]
}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jval-1.0.4.tar.gz (12.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

jval-1.0.4-py3-none-any.whl (14.4 kB view details)

Uploaded Python 3

File details

Details for the file jval-1.0.4.tar.gz.

File metadata

  • Download URL: jval-1.0.4.tar.gz
  • Upload date:
  • Size: 12.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.3 CPython/3.13.5 Windows/11

File hashes

Hashes for jval-1.0.4.tar.gz
Algorithm Hash digest
SHA256 3e04789134b93c9b5a6d88f3c8ead96981b1fbce60fb56edec71d12784d463e2
MD5 cf9acb397e51678fa6ea794e14e1d32f
BLAKE2b-256 1c0b7ca2bc61bb7c8fba145e94074c9c860283b4875da3231673d66b8e6df492

See more details on using hashes here.

File details

Details for the file jval-1.0.4-py3-none-any.whl.

File metadata

  • Download URL: jval-1.0.4-py3-none-any.whl
  • Upload date:
  • Size: 14.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.3 CPython/3.13.5 Windows/11

File hashes

Hashes for jval-1.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 41f210099a30092c7e62cee90f02cfe42ce20e4e82c56e014d125ba03940b054
MD5 7a71bfd5e095d970d356d3ff8884d185
BLAKE2b-256 9735bf4aa52552b5e3b504c32d286d2e9fd9fa602dc07e3b273e92caabb19488

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page