Popular recipes tagged "jsonschema"http://code.activestate.com/recipes/tags/jsonschema/2015-12-06T21:23:48-08:00ActiveState Code RecipesValidate data easily with JSON Schema (Python)
2015-12-06T21:23:48-08:00Vasudev Ramhttp://code.activestate.com/recipes/users/4173351/http://code.activestate.com/recipes/579135-validate-data-easily-with-json-schema/
<p style="color: grey">
Python
recipe 579135
by <a href="/recipes/users/4173351/">Vasudev Ram</a>
(<a href="/recipes/tags/data/">data</a>, <a href="/recipes/tags/json/">json</a>, <a href="/recipes/tags/jsonschema/">jsonschema</a>, <a href="/recipes/tags/python/">python</a>, <a href="/recipes/tags/python2/">python2</a>).
</p>
<p>This recipe shows how to use the jsonschema Python library, which implements the JSON Schema specification, to easily validate your Python data. It sends good output to stdout and bad output to stderr, for demo purposes.</p>
<p>jsonschema Python library: <a href="https://pypi.python.org/pypi/jsonschema" rel="nofollow">https://pypi.python.org/pypi/jsonschema</a></p>
<p>JSON Schema: <a href="http://json-schema.org/" rel="nofollow">http://json-schema.org/</a></p>