Metadata-Version: 2.1
Name: jsonschema-default
Version: 1.0.2
Summary: Create default objects from a JSON schema
Home-page: https://github.com/mnboos/jsonschema-default
Author: Martin Boos
Author-email: mboos@outlook.com
Maintainer: Martin Boos
Maintainer-email: mboos@outlook.com
Requires-Python: >=3.7,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Dist: xeger (>=0.3.5,<0.4.0)
Project-URL: Repository, https://github.com/mnboos/jsonschema-default
Description-Content-Type: text/markdown

# jsonschema-instance

A Python package that creates default objects from a JSON schema.

## Note
This is not a validator. Inputs should be valid JSON schemas. For Python you can use the [jsonschema](https://github.com/Julian/jsonschema) package to validate schemas.

## Installation
```
pip install jsonschema-default
```

## Usage
```python
import jsonschema_default

default_obj = jsonschema_default.create_from("<schema>")
```
