Python Module - jsonschema Part 1
This article is part of a tutorial series about the Python module - jsonschema:
JSON is currently one of the mainstream data interchange formats. However, if you want to validate the format of JSON data in your program, you’ll need to spend some effort writing validation code. Fortunately, JSON Schema simplifies the process of validating JSON formats. If you’re using JSON as the data exchange format for an API, you might consider using JSON Schema for validation.
JSON Schema is a vocabulary that allows you to annotate and validate JSON documents.
Posted on Mar 20, 2018 in Python Module/Package Recommendations by Amo Chen ‐ 5 min read