Generate C++ or Python structures from JSON-Schema
Project description
JSON-Schema Codegen
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.
Python Requirements for Code Generation
These requirements should be satisfied when pip3
installing json-schema-codegen
.
- python 3.7
- jinja2
- stringcase
Installation
pip3 install json-schema-codegen
C++ Generated Code
Supported Schema Features in C++ code generation
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.
- type: string
- minLength
- maxLength
- pattern
- format=date-time (enforces ISO8601 format)
- format=uuid (enables string object to be populated with a uuid)
- type: string with enum
- type: integer
- maximum
- minimum
- exclusiveMaximum
- exclusiveMinimum
- multipleOf
- type: number
- maximum
- minimum
- exclusiveMaximum
- exclusiveMinimum
- multipleOf
- type: boolean
- type: null
- type: array
- items
- minItems
- maxItems
- type: object
- properties
- required
- allOf
- anyOf
- oneOf
References
$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.
Dependencies of the C++ generated code
- boost (boost::optional and boost::variant among others)
- rapidjson 1.1
- C++11
Usage
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')
Python Generated Code
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.
Supported schema features for generating Python code
- type: string
- minLength
- maxLength
- pattern
- enum
- type: integer
- maximum
- minimum
- exclusiveMaximum
- exclusiveMinimum
- multipleOf
- enum
- type: number
- maximum
- minimum
- exclusiveMaximum
- exclusiveMinimum
- multipleOf
- enum
- type: boolean
- type: null
- type: array
- items
- minItems
- maxItems
- type: object
- properties
- required
- allOf
- anyOf
- oneOf
- Component schemas with the
title
property.
- Component schemas with the
Example usage for generating Python code
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()))
License
GPLv2
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file json-schema-codegen-0.6.3.tar.gz
.
File metadata
- Download URL: json-schema-codegen-0.6.3.tar.gz
- Upload date:
- Size: 17.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.8.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 16ae61c1efea79e6339be56ebd1076ed046b0611136926afb047418535debe27 |
|
MD5 | efce6fdbdf7e96453b4ab2744f7f4a2b |
|
BLAKE2b-256 | 74a19aebb4a61beeab23946cad75afaacd2170aca7d936b85307f468e04ef480 |
File details
Details for the file json_schema_codegen-0.6.3-py3-none-any.whl
.
File metadata
- Download URL: json_schema_codegen-0.6.3-py3-none-any.whl
- Upload date:
- Size: 71.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.8.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cdb265ce0f6125446fa5d6c8d39975c427d0df8785107d2c325bfc46894e2122 |
|
MD5 | 0ea54ebe406648c23e6924485eb8c115 |
|
BLAKE2b-256 | 5642cdf9e9f756ac90d90233398a71caf89bdd6fcd12f6b8b6cb42b11cf6f4f4 |