Skip to main content
.. image:: https://drone.io/bitbucket.org/eodolphi/json-hyper-schema/status.png
:target: https://drone.io/bitbucket.org/eodolphi/json-hyper-schema/latest


JSON Hyper Schema
=============

Implementation of json schema draft 03

http://tools.ietf.org/html/draft-zyp-json-schema-03

Installation
------------

$ pip install json_hyper_schema

Usage
------------

JSON Hyper Schema makes it possible to validate arbitrary json objects against a json schema.

>>> form json_hyper_schema import Schema

>>> schema = Schema(
{
'properties': {
'a': {'type': 'string', 'enum': ['a', 'b']},
'b': {
'type': 'array',
'items': {
'properties': {
'b': {'type': 'string', 'enum': ['c', 'd']},
'c': {'uuid': True}
}
}
},
'c': {'default': 'blabla'}
},
'links': [
{
'href': '/id/{a}',
'rel': 'self'
}]
})

>>> schema.validate({'a': 'b', 'b': [{'b': 'c'}, {'b': 'd'}]})

If the data is not valid against the schema a `json_schema.ValidationError` will be raised. This will contain a dictionary of errors. The keys of the dictionary are `json_pointer.Pointer` pointers to the invalid field

Release history Release notifications | RSS feed

This release

0.4.1 This release

0.4

1 release file

0.3

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page