This python library consumes JSON-Schema and generates C++ or Python code. It generates structures to hold the values defined in the schema, restricting the values according to the schema.
These requirements should be satisfied when pip3
installing json-schema-codegen
.
pip3 install json-schema-codegen
A C++ class is generated for each schema node according to the schema's type
property. Schemas without a type
property, with the exception of combining operators *Of
, are not supported.
$ref
references are supported for array items, object properties, allOf, anyOf, and oneOf. However, the caller must provide a "resolver" class which translates the reference into a class name and namespace.
See example_usage.py for a more elaborate example on generating C++ code.
import jsonschemacodegen.cpp as cpp
simpleResolver = cpp.SimpleResolver()
output_dir = "/tmp"
generator = cpp.GeneratorFromSchema(src_output_dir=output_dir,
header_output_dir=output_dir,
resolver=simpleResolver,
namespace=[],
src_usings=[])
sampleSchema = {"type": "string"}
generator.Generate(sampleSchema, 'Example', 'example')
A Python3 class is generated for each schema node; the class encapsulating the data described by the schema. The class accepts in its constructor python primative data types that match the format described the the schema. Each class has a Serializable
method which returns data in a format that can be serialized.
JSON (de-)serialization does not happen in the actual class. This allows for flexibility to use other line-formats, for example, YAML.
title
property.For a more elaborate example, see example_python.py
from jsonschemacodegen import python as pygen
import json
with open('schema.json') as fp:
generator = pygen.GeneratorFromSchema('output_dir')
generator.Generate(json.load(fp), 'Example', 'example')
This example will create the file output_dir/example.py
containing the Python3 class Example
and nested classes as required.
Using the generated code looks like this:
import example
import json
jsonText = '["an example string in an array"]'
obj = example.Example(json.loads(jsonText))
print(json.dumps(obj, default=lambda x: x.Serializable()))
GPLv2