genson


Namegenson JSON
Version 1.2.2 PyPI version JSON
download
home_pagehttps://github.com/wolverdude/genson/
SummaryGenSON is a powerful, user-friendly JSON Schema generator.
upload_time2020-08-19 17:04:45
maintainer
docs_urlNone
authorJon Wolverton
requires_python
licenseMIT
keywords json schema json-schema jsonschema object generate generator builder merge draft 7 validate validation
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            GenSON
======

**GenSON** is a powerful, user-friendly `JSON Schema`_ generator built in Python.

.. note::
    This is *not* the Python equivalent of the `Java Genson library`_. If you are coming from Java and need to create JSON objects in Python, you want `Python's builtin json library`_.)

GenSON's core function is to take JSON objects and generate schemas that describe them, but it is unique in its ability to *merge* schemas. It was originally built to describe the common structure of a large number of JSON objects, and it uses its merging ability to generate a single schema from any number of JSON objects and/or schemas.

GenSON's schema builder follows these three rules:

1. *Every* object it is given must validate under the generated schema.
2. *Any* object that is valid under *any* schema it is given must also validate under the generated schema. (there is one glaring exception to this, detailed `below`_)
3. The generated schema should be as strict as possible given the first 2 rules.


JSON Schema Implementation
--------------------------

**GenSON** is compatible with JSON Schema Draft 6 and above.

It is important to note that GenSON uses only a subset of JSON Schema's capabilities. This is mainly because it doesn't know the specifics of your data model, and it tries to avoid guessing them. Its purpose is to generate the basic structure so that you can skip the boilerplate and focus on the details of the schema.

Currently, GenSON only deals with these keywords:

* ``"$schema"``
* ``"type"``
* ``"items"``
* ``"properties"``
* ``"patternProperties"``
* ``"required"``
* ``"anyOf"``

You should be aware that this limited vocabulary could cause GenSON to violate rules 1 and 2. If you feed it schemas with advanced keywords, it will just blindly pass them on to the final schema. Note that ``"$ref"`` and ``id`` are also not supported, so GenSON will not dereference linked nodes when building a schema.


Installation
------------

.. code-block:: bash

    $ pip install genson


CLI Tool
--------

The package includes a ``genson`` executable that allows you to access this functionality from the command line. For usage info, run with ``--help``:

.. code-block:: bash

    $ genson --help

.. code-block::

    usage: genson [-h] [--version] [-d DELIM] [-e ENCODING] [-i SPACES]
                  [-s SCHEMA] [-$ SCHEMA_URI]
                  ...

    Generate one, unified JSON Schema from one or more JSON objects and/or JSON
    Schemas. Compatible with JSON-Schema Draft 4 and above.

    positional arguments:
      object                Files containing JSON objects (defaults to stdin if no
                            arguments are passed).

    optional arguments:
      -h, --help            Show this help message and exit.
      --version             Show version number and exit.
      -d DELIM, --delimiter DELIM
                            Set a delimiter. Use this option if the input files
                            contain multiple JSON objects/schemas. You can pass
                            any string. A few cases ('newline', 'tab', 'space')
                            will get converted to a whitespace character. If this
                            option is omitted, the parser will try to auto-detect
                            boundaries.
      -e ENCODING, --encoding ENCODING
                            Use ENCODING instead of the default system encoding
                            when reading files. ENCODING must be a valid codec
                            name or alias.
      -i SPACES, --indent SPACES
                            Pretty-print the output, indenting SPACES spaces.
      -s SCHEMA, --schema SCHEMA
                            File containing a JSON Schema (can be specified
                            multiple times to merge schemas).
      -$ SCHEMA_URI, --schema-uri SCHEMA_URI
                            The value of the '$schema' keyword (defaults to
                            'http://json-schema.org/schema#' or can be specified
                            in a schema with the -s option). If 'NULL' is passed,
                            the "$schema" keyword will not be included in the
                            result.

.. note::
    The ``--encoding`` option is only available in Python 3.

GenSON Python API
-----------------

``SchemaBuilder`` is the basic schema generator class. ``SchemaBuilder`` instances can be loaded up with existing schemas and objects before being serialized.

.. code-block:: python

    >>> from genson import SchemaBuilder

    >>> builder = SchemaBuilder()
    >>> builder.add_schema({"type": "object", "properties": {}})
    >>> builder.add_object({"hi": "there"})
    >>> builder.add_object({"hi": 5})

    >>> builder.to_schema()
    {'$schema': 'http://json-schema.org/schema#',
     'type': 'object',
     'properties': {
        'hi': {'type': ['integer', 'string']}},
        'required': ['hi']}

    >>> print(builder.to_json(indent=2))
    {
      "$schema": "http://json-schema.org/schema#",
      "type": "object",
      "properties": {
        "hi": {
          "type": [
            "integer",
            "string"
          ]
        }
      },
      "required": [
        "hi"
      ]
    }

``SchemaBuilder`` API
+++++++++++++++++++++

``__init__(schema_uri=None)``
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

:param schema_uri: value of the ``$schema`` keyword. If not given, it will use the value of the first available ``$schema`` keyword on an added schema or else the default: ``'http://json-schema.org/schema#'``. A value of ``False`` or ``None`` will direct GenSON to leave out the ``"$schema"`` keyword.

``add_schema(schema)``
^^^^^^^^^^^^^^^^^^^^^^

Merge in a JSON schema. This can be a ``dict`` or another ``SchemaBuilder`` object.

:param schema: a JSON Schema

.. note::
    There is no schema validation. If you pass in a bad schema,
    you might get back a bad schema.

``add_object(obj)``
^^^^^^^^^^^^^^^^^^^

Modify the schema to accommodate an object.

:param obj: any object or scalar that can be serialized in JSON

``to_schema()``
^^^^^^^^^^^^^^^

Generate a schema based on previous inputs.

:rtype: ``dict``

``to_json()``
^^^^^^^^^^^^^

Generate a schema and convert it directly to serialized JSON.

:rtype: ``str``

``__eq__(other)``
^^^^^^^^^^^^^^^^^

Check for equality with another ``SchemaBuilder`` object.

:param other: another ``SchemaBuilder`` object. Other types are accepted, but will always return ``False``

SchemaBuilder object interaction
++++++++++++++++++++++++++++++++

``SchemaBuilder`` objects can also interact with each other:

* You can pass one schema directly to another to merge them.
* You can compare schema equality directly.

.. code-block:: python

    >>> from genson import SchemaBuilder

    >>> b1 = SchemaBuilder()
    >>> b1.add_schema({"type": "object", "properties": {
    ...   "hi": {"type": "string"}}})
    >>> b2 = SchemaBuilder()
    >>> b2.add_schema({"type": "object", "properties": {
    ...   "hi": {"type": "integer"}}})
    >>> b1 == b2
    False

    >>> b1.add_schema(b2)
    >>> b2.add_schema(b1)
    >>> b1 == b2
    True
    >>> b1.to_schema()
    {'$schema': 'http://json-schema.org/schema#',
     'type': 'object',
     'properties': {'hi': {'type': ['integer', 'string']}}}


Seed Schemas
------------

There are several cases where multiple valid schemas could be generated from the same object. GenSON makes a default choice in all these ambiguous cases, but if you want it to choose differently, you can tell it what to do using a *seed schema*.

Seeding Arrays
++++++++++++++

For example, suppose you have a simple array with two items:

.. code-block:: python

    ['one', 1]

There are always two ways for GenSON to interpret any array: List and Tuple. Lists have one schema for every item, whereas Tuples have a different schema for every array position. This is analogous to the (now deprecated) ``merge_arrays`` option from version 0. You can read more about JSON Schema `array validation here`_.

List Validation
^^^^^^^^^^^^^^^

.. code-block:: json

    {
      "type": "array",
      "items": {"type": ["integer", "string"]}
    }

Tuple Validation
^^^^^^^^^^^^^^^^

.. code-block:: json

    {
      "type": "array",
      "items": [{"type": "integer"}, {"type": "string"}]
    }

By default, GenSON always interprets arrays using list validation, but you can tell it to use tuple validation by seeding it with a schema.

.. code-block:: python

    >>> from genson import SchemaBuilder

    >>> builder = SchemaBuilder()
    >>> builder.add_object(['one', 1])
    >>> builder.to_schema()
    {'$schema': 'http://json-schema.org/schema#',
     'type': 'array',
     'items': {'type': ['integer', 'string']}}

    >>> builder = SchemaBuilder()
    >>> seed_schema = {'type': 'array', 'items': []}
    >>> builder.add_schema(seed_schema)
    >>> builder.add_object(['one', 1])
    >>> builder.to_schema()
    {'$schema': 'http://json-schema.org/schema#',
     'type': 'array',
     'items': [{'type': 'string'}, {'type': 'integer'}]}

Note that in this case, the seed schema is actually invalid. You can't have an empty array as the value for an ``items`` keyword. But GenSON is a generator, not a validator, so you can fudge a little. GenSON will modify the generated schema so that it is valid, provided that there aren't invalid keywords beyond the ones it knows about.

Seeding patternProperties
+++++++++++++++++++++++++

Support for patternProperties_ is new in version 1; however, since GenSON's default behavior is to only use ``properties``, this powerful keyword can only be utilized with seed schemas. You will need to supply an ``object`` schema with a ``patternProperties`` object whose keys are RegEx strings. Again, you can fudge here and set the values to null instead of creating valid subschemas.

.. code-block:: python

    >>> from genson import SchemaBuilder

    >>> builder = SchemaBuilder()
    >>> builder.add_schema({'type': 'object', 'patternProperties': {r'^\d+$': None}})
    >>> builder.add_object({'1': 1, '2': 2, '3': 3})
    >>> builder.to_schema()
    {'$schema': 'http://json-schema.org/schema#', 'type': 'object', 'patternProperties':  {'^\\d+$': {'type': 'integer'}}}

There are a few gotchas you should be aware of here:

* GenSON is written in Python, so it uses the `Python flavor of RegEx`_.
* GenSON still prefers ``properties`` to ``patternProperties`` if a property already exists that matches one of your patterns, the normal property will be updated, *not* the pattern property.
* If a key matches multiple patterns, there is *no guarantee* of which one will be updated.
* The patternProperties_ docs themselves have some more useful pointers that can save you time.

Typeless Schemas
++++++++++++++++

In version 0, GenSON did not accept a schema without a type, but in order to be flexible in the support of seed schemas, support was added for version 1. However, GenSON violates rule #2 in its handling of typeless schemas. Any object will validate under an empty schema, but GenSON incorporates typeless schemas into the first-available typed schema, and since typed schemas are stricter than typless ones, objects that would validate under an added schema will not validate under the result.


Customizing ``SchemaBuilder``
-----------------------------

You can extend the ``SchemaBuilder`` class to add in your own logic (e.g. recording ``minimum`` and ``maximum`` for a number). In order to do this, you need to:

1. Create a custom ``SchemaStrategy`` class.
2. Create a ``SchemaBuilder`` subclass that includes your custom ``SchemaStrategy`` class(es).
3. Use your custom ``SchemaBuilder`` just like you would the stock ``SchemaBuilder``.

``SchemaStrategy`` Classes
++++++++++++++++++++++++++

GenSON uses the Strategy Pattern to parse, update, and serialize different kinds of schemas that behave in different ways. There are several ``SchemaStrategy`` classes that roughly correspond to different schema types. GenSON maps each node in an object or schema to an instance of one of these classes. Each instance stores the current schema state and updates or returns it when required.

You can modify the specific ways these classes work by extending them. You can inherit from any existing ``SchemaStrategy`` class, though ``SchemaStrategy`` and ``TypedSchemaStrategy`` are the most useful base classes. You should call ``super`` and pass along all arguments when overriding any instance methods.

The documentation below explains the public API and what you need to extend and override at a high level. Feel free to explore `the code`_ to see more, but know that the public API is documented here, and anything else you depend on could be subject to change. All ``SchemaStrategy`` subclasses maintain the public API though, so you can extend any of them in this way.

``SchemaStrategy`` API
++++++++++++++++++++++

[class constant] ``KEYWORDS``
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

This should be a tuple listing all of the JSON-schema keywords that this strategy knows how to handle. Any keywords encountered in added schemas will be be naively passed on to the generated schema unless they are in this list (or you override that behavior in ``to_schema``).

When adding keywords to a new ``SchemaStrategy``, it's best to splat the parent class's ``KEYWORDS`` into the new tuple.

[class method] ``match_schema(cls, schema)``
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Return ``true`` if this strategy should be used to handle the passed-in schema.

:param schema: a JSON Schema in ``dict`` form
:rtype: ``bool``

[class method] ``match_object(cls, obj)``
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Return ``true`` if this strategy should be used to handle the passed-in object.

:param obj: any object or scalar that can be serialized in JSON
:rtype: ``bool``

``__init__(self, node_class)``
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Override this method if you need to initialize an instance variable.

:param node_class: This param is not part of the public API. Pass it along to ``super``.

``add_schema(self, schema)``
^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Override this to modify how a schema is parsed and stored.

:param schema: a JSON Schema in ``dict`` form

``add_object(self, obj)``
^^^^^^^^^^^^^^^^^^^^^^^^^

Override this to change the way a schemas are inferred from objects.

:param obj: any object or scalar that can be serialized in JSON

``to_schema(self)``
^^^^^^^^^^^^^^^^^^^

Override this method to customize how a schema object is constructed from the inputs. It is suggested that you invoke ``super`` as the basis for the return value, but it is not required.

:rtype: ``dict``

.. note::
    There is no schema validation. If you return a bad schema from this method,
    ``SchemaBuilder`` will output a bad schema.

``__eq__(self, other)``
^^^^^^^^^^^^^^^^^^^^^^^

When checking for ``SchemaBuilder`` equality, strategies are matched using ``__eq__``. The default implementation uses a simple ``__dict__`` equality check.

Override this method if you need to override that behavior. This may be useful if you add instance variables that aren't relevant to whether two SchemaStrategies are considered equal.

:rtype: ``bool``



``TypedSchemaStrategy`` API
+++++++++++++++++++++++++++

This is an abstract schema strategy for making simple schemas that only deal with the ``type`` keyword, but you can extend it to add more functionality. Subclasses must define the following two class constants, but you get the entire ``SchemaStrategy`` interface for free.

[class constant] ``JS_TYPE``
^^^^^^^^^^^^^^^^^^^^^^^^^^^^

This will be the value of the ``type`` keyword in the generated schema. It is also used to match any added schemas.


[class constant] ``PYTHON_TYPE``
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

This is a Python type or tuple of types that will be matched against an added object using ``isinstance``.

Extending ``SchemaBuilder``
+++++++++++++++++++++++++++

Once you have extended ``SchemaStrategy`` types, you'll need to create a ``SchemaBuilder`` class that uses them, since the default ``SchemaBuilder`` only incorporates the default strategies. To do this, extend the ``SchemaBuilder`` class and define one of these two constants inside it:

[class constant] ``EXTRA_STRATEGIES``
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

This is the standard (and suggested) way to add strategies. Set it to a tuple of all your new strategies, and they will be added to the existing list of strategies to check. This preserves all the existing functionality.

Note that order matters. GenSON checks the list in order, so the first strategy has priority over the second and so on. All ``EXTRA_STRATEGIES`` have priority over the default strategies.

[class constant] ``STRATEGIES``
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

This clobbers the existing list of strategies and completely replaces it. Set it to a tuple just like for ``EXTRA_STRATEGIES``, but note that if any object or schema gets added that your exhaustive list of strategies doesn't know how to handle, you'll get an error. You should avoid doing this unless you're extending most or all existing strategies in some way.

Example: ``MinNumber``
++++++++++++++++++++++

Here's some example code creating a number strategy that tracks the `minimum number`_ seen and includes it in the output schema.

.. note::
    This example is written in Python 3.3+. Custom strategies also work in Python 2.7, but you need different syntax (``super`` arguments & no splatting ``KEYWORDS``).

.. code-block:: python

    from genson import SchemaBuilder
    from genson.schema.strategies import Number

    class MinNumber(Number):
        # add 'minimum' to list of keywords
        KEYWORDS = (*Number.KEYWORDS, 'minimum')

        # create a new instance variable
        def __init__(self, node_class):
            super().__init__(node_class)
            self.min = None

        # capture 'minimum's from schemas
        def add_schema(self, schema):
            super().add_schema(schema)
            if self.min is None:
                self.min = schema.get('minimum')
            elif 'minimum' in schema:
                self.min = min(self.min, schema['minimum'])

        # adjust minimum based on the data
        def add_object(self, obj):
            super().add_object(obj)
            self.min = obj if self.min is None else min(self.min, obj)

        # include 'minimum' in the output
        def to_schema(self):
            schema = super().to_schema()
            schema['minimum'] = self.min
            return schema

    # new SchemaBuilder class that uses the MinNumber strategy in addition
    # to the existing strategies. Both MinNumber and Number are active, but
    # MinNumber has priority, so it effectively replaces Number.
    class MinNumberSchemaBuilder(SchemaBuilder):
        """ all number nodes include minimum """
        EXTRA_STRATEGIES = (MinNumber,)

    # this class *ONLY* has the MinNumber strategy. Any object that is not
    # a number will cause an error.
    class ExclusiveMinNumberSchemaBuilder(SchemaBuilder):
        """ all number nodes include minimum, and only handles number """
        STRATEGIES = (MinNumber,)

Now that we have the MinNumberSchemaBuilder class, let's see how it works.

.. code-block:: python

    >>> builder = MinNumberSchemaBuilder()
    >>> builder.add_object(5)
    >>> builder.add_object(7)
    >>> builder.to_schema()
    {'$schema': 'http://json-schema.org/schema#', 'type': 'integer', 'minimum': 5}
    >>> builder.add_object(-2)
    >>> builder.to_schema()
    {'$schema': 'http://json-schema.org/schema#', 'type': 'integer', 'minimum': -2}
    >>> builder.add_schema({'$schema': 'http://json-schema.org/schema#', 'type': 'integer', 'minimum': -7})
    >>> builder.to_schema()
    {'$schema': 'http://json-schema.org/schema#', 'type': 'integer', 'minimum': -7}

Note that the exclusive builder is much more particular.

.. code-block:: python

    >>> builder = MinNumberSchemaBuilder()
    >>> picky_builder = ExclusiveMinNumberSchemaBuilder()
    >>> picky_builder.add_object(5)
    >>> picky_builder.to_schema()
    {'$schema': 'http://json-schema.org/schema#', 'type': 'integer', 'minimum': 5}
    >>> builder.add_object(None) # this is fine
    >>> picky_builder.add_object(None) # this fails
    genson.schema.node.SchemaGenerationError: Could not find matching schema type for object: None


Compatibility
-------------

GenSON has been tested and verified under the following Python versions:

* Python 2.7.13
* Python 3.3.5
* Python 3.4.5
* Python 3.5.4
* Python 3.6.2
* Python 3.7.3
* Python 3.8.2


Contributing
------------

When contributing, please follow these steps:

1. Clone the repo and make your changes.
2. Make sure your code has test cases written against it.
3. Make sure all the tests pass.
4. Lint your code with `Flake8`_.
5. Ensure the docs are accurate.
6. Add your name to the list of contributers.
7. Submit a Pull Request.

Tests
+++++

Tests are written in ``unittest``. You can run them all easily with the included executable ``bin/test.py``.

.. code-block:: bash

    $ bin/test.py

You can also invoke individual test suites:

.. code-block:: bash

    $ bin/test.py --test-suite test.test_gen_single


Potential Future Features
+++++++++++++++++++++++++

The following are extra features under consideration.

* recognize every validation keyword and ignore any that don't apply
* option to set error level
* custom serializer plugins
* logical support for more keywords:

  * ``enum``
  * ``minimum``/``maximum``
  * ``minLength``/``maxLength``
  * ``minItems``/``maxItems``
  * ``minProperties``/``maxProperties``
  * ``additionalItems``
  * ``additionalProperties``
  * ``format`` & ``pattern``
  * ``$ref`` & ``id``

.. _JSON Schema: http://json-schema.org/
.. _Java Genson library: https://owlike.github.io/genson/
.. _`Python's builtin json library`: https://docs.python.org/library/json.html
.. _below: #typeless-schemas
.. _array validation here: https://spacetelescope.github.io/understanding-json-schema/reference/array.html#items
.. _patternProperties: https://spacetelescope.github.io/understanding-json-schema/reference/object.html#pattern-properties
.. _Python flavor of RegEx: https://docs.python.org/3.6/library/re.html
.. _the code: https://github.com/wolverdude/GenSON/tree/master/genson/schema/strategies
.. _minimum number: https://json-schema.org/understanding-json-schema/reference/numeric.html#range
.. _Flake8: https://pypi.python.org/pypi/flake8


History
=======

1.2.2
-----

* add ``__version__`` attr to module & ``--version`` option to CLI tool
* add ``--encoding`` option to CLI tool that overrides default file encoding (fixes #47)

1.2.1
-----

* expose ``SchemaStrategy.__eq__()`` for extension
* add support for Python 3.8
* update Trove classifiers
* **Bugfix**: ``SchemaBuilder.__eq__()`` wasn't matching the ``$schema`` keyword correctly
* **Bugfix**: only activate empty ``required`` option when ``required`` is actualy empty


1.2.0
-----

* ``SchemaStrategies`` are now extendable, enabling custom ``SchemaBuilder`` classes.
* optimize ``__eq__`` logic

1.1.0
-----

* add support for Python 3.7
* drop support for Python 3.3
* drop support for JSON-Schema Draft 4 (because it doesn't allow empty ``required`` arrays)
* **Bugfix**: preserve empty ``required`` arrays (fixes #25)
* **Bugfix**: handle nested ``anyOf`` keywords (fixes #35)

1.0.2
-----

* add support for ``long`` integers in Python 2.7
* update test-skipping decorator to use standard version requirement strings

1.0.1
-----

* **Bugfix**: seeding an object schema with a ``"required"`` keyword caused an error
* **Docs**: fix mislabeled method

1.0.0
-----

This version was a total overhaul. The main change was to split Schema into three separate classes, making it simpler to add more complicated functionality by having different generator types to handle the different schema types.

1. ``SchemaNode`` to manage the tree structure
2. ``SchemaGenerator`` for the schema generation logic
3. ``SchemaBuilder`` to manage the public API

Interface Changes
+++++++++++++++++

* ``SchemaBuilder`` is the new ``Schema``
* ``to_dict()`` is now called ``to_schema()``

To make the transition easier, there is still a ``Schema`` class that wraps ``SchemaBuilder`` with a backwards-compatibility layer, but you will trigger a ``PendingDeprecationWarning`` if you use it.

Seed Schemas
++++++++++++

The ``merge_arrays`` option has been removed in favor of seed schemas. You can now seed specific nodes as list or tuple instead of setting a global option for every node in the schema tree.

You can also now seed object nodes with ``patternProperties``, which was a highly requested feature.

Other Changes
+++++++++++++

* include ``"$schema"`` keyword
* accept schemas without ``"type"`` keyword
* use ``"anyOf"`` keyword to help combine schemas
* add ``SchemaGenerationError`` for better error handling
* empty ``"properties"`` and ``"items"`` are not included in generated schemas
* ``genson`` executable

  * new ``--schema-uri`` option
  * auto-detect object boundaries by default

0.2.3
-----
* **Docs**: add installation instructions

0.2.2
-----
* **Docs**: Python 3.6 is now explicitly tested and listed as compatible.

0.2.1
-----
* **Bugfix**: ``add_schema`` failed when adding list-style array schemas
* **Bugfix**: typo in readme

0.2.0
-----

* **Bugfix**: Options were not propagated down to subschemas.
* **Bugfix**: Empty arrays resulted in invalid schemas because it still included an ``items`` property.
* **Bugfix**: ``items`` was being set to a list even when ``merge_arrays`` was set to ``True``. This resulted in overly permissive schemas because ``items`` are matched optionally by default.
* **Improvement**: Positional Array Matching - In order to be more consistent with the way JSON Schema works, the alternate to ``merge_arrays`` is no longer never to merge list items, but instead to merge them based on their position in the list.
* **Improvement**: Schema Incompatibility Warning - A schema incompatibility used to cause a fatal error with a nondescript warning. The message has been improved and it has been reduced to a warning.

0.1.0 (2014-11-29)
------------------

* Initial release


Credits
=======

**GenSON** is written and maintained by `Jon Wolverton <https://github.com/wolverdude>`_.


Contributors
------------

- `Brad Sokol <https://github.com/bradsokol>`_
- `David Kay <https://github.com/davek2>`_
- `Heiho1 <https://github.com/heiho1>`_
- `YehudaCorsia <https://github.com/YehudaCorsia>`_
            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/wolverdude/genson/",
    "name": "genson",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "json,schema,json-schema,jsonschema,object,generate,generator,builder,merge,draft 7,validate,validation",
    "author": "Jon Wolverton",
    "author_email": "wolverton.jr@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/e1/71/fbd2f1ad9695c92ad756b91f5a570f809c4959d3bd82266788cf222e5c5c/genson-1.2.2.tar.gz",
    "platform": "",
    "description": "GenSON\n======\n\n**GenSON** is a powerful, user-friendly `JSON Schema`_ generator built in Python.\n\n.. note::\n    This is *not* the Python equivalent of the `Java Genson library`_. If you are coming from Java and need to create JSON objects in Python, you want `Python's builtin json library`_.)\n\nGenSON's core function is to take JSON objects and generate schemas that describe them, but it is unique in its ability to *merge* schemas. It was originally built to describe the common structure of a large number of JSON objects, and it uses its merging ability to generate a single schema from any number of JSON objects and/or schemas.\n\nGenSON's schema builder follows these three rules:\n\n1. *Every* object it is given must validate under the generated schema.\n2. *Any* object that is valid under *any* schema it is given must also validate under the generated schema. (there is one glaring exception to this, detailed `below`_)\n3. The generated schema should be as strict as possible given the first 2 rules.\n\n\nJSON Schema Implementation\n--------------------------\n\n**GenSON** is compatible with JSON Schema Draft 6 and above.\n\nIt is important to note that GenSON uses only a subset of JSON Schema's capabilities. This is mainly because it doesn't know the specifics of your data model, and it tries to avoid guessing them. Its purpose is to generate the basic structure so that you can skip the boilerplate and focus on the details of the schema.\n\nCurrently, GenSON only deals with these keywords:\n\n* ``\"$schema\"``\n* ``\"type\"``\n* ``\"items\"``\n* ``\"properties\"``\n* ``\"patternProperties\"``\n* ``\"required\"``\n* ``\"anyOf\"``\n\nYou should be aware that this limited vocabulary could cause GenSON to violate rules 1 and 2. If you feed it schemas with advanced keywords, it will just blindly pass them on to the final schema. Note that ``\"$ref\"`` and ``id`` are also not supported, so GenSON will not dereference linked nodes when building a schema.\n\n\nInstallation\n------------\n\n.. code-block:: bash\n\n    $ pip install genson\n\n\nCLI Tool\n--------\n\nThe package includes a ``genson`` executable that allows you to access this functionality from the command line. For usage info, run with ``--help``:\n\n.. code-block:: bash\n\n    $ genson --help\n\n.. code-block::\n\n    usage: genson [-h] [--version] [-d DELIM] [-e ENCODING] [-i SPACES]\n                  [-s SCHEMA] [-$ SCHEMA_URI]\n                  ...\n\n    Generate one, unified JSON Schema from one or more JSON objects and/or JSON\n    Schemas. Compatible with JSON-Schema Draft 4 and above.\n\n    positional arguments:\n      object                Files containing JSON objects (defaults to stdin if no\n                            arguments are passed).\n\n    optional arguments:\n      -h, --help            Show this help message and exit.\n      --version             Show version number and exit.\n      -d DELIM, --delimiter DELIM\n                            Set a delimiter. Use this option if the input files\n                            contain multiple JSON objects/schemas. You can pass\n                            any string. A few cases ('newline', 'tab', 'space')\n                            will get converted to a whitespace character. If this\n                            option is omitted, the parser will try to auto-detect\n                            boundaries.\n      -e ENCODING, --encoding ENCODING\n                            Use ENCODING instead of the default system encoding\n                            when reading files. ENCODING must be a valid codec\n                            name or alias.\n      -i SPACES, --indent SPACES\n                            Pretty-print the output, indenting SPACES spaces.\n      -s SCHEMA, --schema SCHEMA\n                            File containing a JSON Schema (can be specified\n                            multiple times to merge schemas).\n      -$ SCHEMA_URI, --schema-uri SCHEMA_URI\n                            The value of the '$schema' keyword (defaults to\n                            'http://json-schema.org/schema#' or can be specified\n                            in a schema with the -s option). If 'NULL' is passed,\n                            the \"$schema\" keyword will not be included in the\n                            result.\n\n.. note::\n    The ``--encoding`` option is only available in Python 3.\n\nGenSON Python API\n-----------------\n\n``SchemaBuilder`` is the basic schema generator class. ``SchemaBuilder`` instances can be loaded up with existing schemas and objects before being serialized.\n\n.. code-block:: python\n\n    >>> from genson import SchemaBuilder\n\n    >>> builder = SchemaBuilder()\n    >>> builder.add_schema({\"type\": \"object\", \"properties\": {}})\n    >>> builder.add_object({\"hi\": \"there\"})\n    >>> builder.add_object({\"hi\": 5})\n\n    >>> builder.to_schema()\n    {'$schema': 'http://json-schema.org/schema#',\n     'type': 'object',\n     'properties': {\n        'hi': {'type': ['integer', 'string']}},\n        'required': ['hi']}\n\n    >>> print(builder.to_json(indent=2))\n    {\n      \"$schema\": \"http://json-schema.org/schema#\",\n      \"type\": \"object\",\n      \"properties\": {\n        \"hi\": {\n          \"type\": [\n            \"integer\",\n            \"string\"\n          ]\n        }\n      },\n      \"required\": [\n        \"hi\"\n      ]\n    }\n\n``SchemaBuilder`` API\n+++++++++++++++++++++\n\n``__init__(schema_uri=None)``\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n:param schema_uri: value of the ``$schema`` keyword. If not given, it will use the value of the first available ``$schema`` keyword on an added schema or else the default: ``'http://json-schema.org/schema#'``. A value of ``False`` or ``None`` will direct GenSON to leave out the ``\"$schema\"`` keyword.\n\n``add_schema(schema)``\n^^^^^^^^^^^^^^^^^^^^^^\n\nMerge in a JSON schema. This can be a ``dict`` or another ``SchemaBuilder`` object.\n\n:param schema: a JSON Schema\n\n.. note::\n    There is no schema validation. If you pass in a bad schema,\n    you might get back a bad schema.\n\n``add_object(obj)``\n^^^^^^^^^^^^^^^^^^^\n\nModify the schema to accommodate an object.\n\n:param obj: any object or scalar that can be serialized in JSON\n\n``to_schema()``\n^^^^^^^^^^^^^^^\n\nGenerate a schema based on previous inputs.\n\n:rtype: ``dict``\n\n``to_json()``\n^^^^^^^^^^^^^\n\nGenerate a schema and convert it directly to serialized JSON.\n\n:rtype: ``str``\n\n``__eq__(other)``\n^^^^^^^^^^^^^^^^^\n\nCheck for equality with another ``SchemaBuilder`` object.\n\n:param other: another ``SchemaBuilder`` object. Other types are accepted, but will always return ``False``\n\nSchemaBuilder object interaction\n++++++++++++++++++++++++++++++++\n\n``SchemaBuilder`` objects can also interact with each other:\n\n* You can pass one schema directly to another to merge them.\n* You can compare schema equality directly.\n\n.. code-block:: python\n\n    >>> from genson import SchemaBuilder\n\n    >>> b1 = SchemaBuilder()\n    >>> b1.add_schema({\"type\": \"object\", \"properties\": {\n    ...   \"hi\": {\"type\": \"string\"}}})\n    >>> b2 = SchemaBuilder()\n    >>> b2.add_schema({\"type\": \"object\", \"properties\": {\n    ...   \"hi\": {\"type\": \"integer\"}}})\n    >>> b1 == b2\n    False\n\n    >>> b1.add_schema(b2)\n    >>> b2.add_schema(b1)\n    >>> b1 == b2\n    True\n    >>> b1.to_schema()\n    {'$schema': 'http://json-schema.org/schema#',\n     'type': 'object',\n     'properties': {'hi': {'type': ['integer', 'string']}}}\n\n\nSeed Schemas\n------------\n\nThere are several cases where multiple valid schemas could be generated from the same object. GenSON makes a default choice in all these ambiguous cases, but if you want it to choose differently, you can tell it what to do using a *seed schema*.\n\nSeeding Arrays\n++++++++++++++\n\nFor example, suppose you have a simple array with two items:\n\n.. code-block:: python\n\n    ['one', 1]\n\nThere are always two ways for GenSON to interpret any array: List and Tuple. Lists have one schema for every item, whereas Tuples have a different schema for every array position. This is analogous to the (now deprecated) ``merge_arrays`` option from version 0. You can read more about JSON Schema `array validation here`_.\n\nList Validation\n^^^^^^^^^^^^^^^\n\n.. code-block:: json\n\n    {\n      \"type\": \"array\",\n      \"items\": {\"type\": [\"integer\", \"string\"]}\n    }\n\nTuple Validation\n^^^^^^^^^^^^^^^^\n\n.. code-block:: json\n\n    {\n      \"type\": \"array\",\n      \"items\": [{\"type\": \"integer\"}, {\"type\": \"string\"}]\n    }\n\nBy default, GenSON always interprets arrays using list validation, but you can tell it to use tuple validation by seeding it with a schema.\n\n.. code-block:: python\n\n    >>> from genson import SchemaBuilder\n\n    >>> builder = SchemaBuilder()\n    >>> builder.add_object(['one', 1])\n    >>> builder.to_schema()\n    {'$schema': 'http://json-schema.org/schema#',\n     'type': 'array',\n     'items': {'type': ['integer', 'string']}}\n\n    >>> builder = SchemaBuilder()\n    >>> seed_schema = {'type': 'array', 'items': []}\n    >>> builder.add_schema(seed_schema)\n    >>> builder.add_object(['one', 1])\n    >>> builder.to_schema()\n    {'$schema': 'http://json-schema.org/schema#',\n     'type': 'array',\n     'items': [{'type': 'string'}, {'type': 'integer'}]}\n\nNote that in this case, the seed schema is actually invalid. You can't have an empty array as the value for an ``items`` keyword. But GenSON is a generator, not a validator, so you can fudge a little. GenSON will modify the generated schema so that it is valid, provided that there aren't invalid keywords beyond the ones it knows about.\n\nSeeding patternProperties\n+++++++++++++++++++++++++\n\nSupport for patternProperties_ is new in version 1; however, since GenSON's default behavior is to only use ``properties``, this powerful keyword can only be utilized with seed schemas. You will need to supply an ``object`` schema with a ``patternProperties`` object whose keys are RegEx strings. Again, you can fudge here and set the values to null instead of creating valid subschemas.\n\n.. code-block:: python\n\n    >>> from genson import SchemaBuilder\n\n    >>> builder = SchemaBuilder()\n    >>> builder.add_schema({'type': 'object', 'patternProperties': {r'^\\d+$': None}})\n    >>> builder.add_object({'1': 1, '2': 2, '3': 3})\n    >>> builder.to_schema()\n    {'$schema': 'http://json-schema.org/schema#', 'type': 'object', 'patternProperties':  {'^\\\\d+$': {'type': 'integer'}}}\n\nThere are a few gotchas you should be aware of here:\n\n* GenSON is written in Python, so it uses the `Python flavor of RegEx`_.\n* GenSON still prefers ``properties`` to ``patternProperties`` if a property already exists that matches one of your patterns, the normal property will be updated, *not* the pattern property.\n* If a key matches multiple patterns, there is *no guarantee* of which one will be updated.\n* The patternProperties_ docs themselves have some more useful pointers that can save you time.\n\nTypeless Schemas\n++++++++++++++++\n\nIn version 0, GenSON did not accept a schema without a type, but in order to be flexible in the support of seed schemas, support was added for version 1. However, GenSON violates rule #2 in its handling of typeless schemas. Any object will validate under an empty schema, but GenSON incorporates typeless schemas into the first-available typed schema, and since typed schemas are stricter than typless ones, objects that would validate under an added schema will not validate under the result.\n\n\nCustomizing ``SchemaBuilder``\n-----------------------------\n\nYou can extend the ``SchemaBuilder`` class to add in your own logic (e.g. recording ``minimum`` and ``maximum`` for a number). In order to do this, you need to:\n\n1. Create a custom ``SchemaStrategy`` class.\n2. Create a ``SchemaBuilder`` subclass that includes your custom ``SchemaStrategy`` class(es).\n3. Use your custom ``SchemaBuilder`` just like you would the stock ``SchemaBuilder``.\n\n``SchemaStrategy`` Classes\n++++++++++++++++++++++++++\n\nGenSON uses the Strategy Pattern to parse, update, and serialize different kinds of schemas that behave in different ways. There are several ``SchemaStrategy`` classes that roughly correspond to different schema types. GenSON maps each node in an object or schema to an instance of one of these classes. Each instance stores the current schema state and updates or returns it when required.\n\nYou can modify the specific ways these classes work by extending them. You can inherit from any existing ``SchemaStrategy`` class, though ``SchemaStrategy`` and ``TypedSchemaStrategy`` are the most useful base classes. You should call ``super`` and pass along all arguments when overriding any instance methods.\n\nThe documentation below explains the public API and what you need to extend and override at a high level. Feel free to explore `the code`_ to see more, but know that the public API is documented here, and anything else you depend on could be subject to change. All ``SchemaStrategy`` subclasses maintain the public API though, so you can extend any of them in this way.\n\n``SchemaStrategy`` API\n++++++++++++++++++++++\n\n[class constant] ``KEYWORDS``\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nThis should be a tuple listing all of the JSON-schema keywords that this strategy knows how to handle. Any keywords encountered in added schemas will be be naively passed on to the generated schema unless they are in this list (or you override that behavior in ``to_schema``).\n\nWhen adding keywords to a new ``SchemaStrategy``, it's best to splat the parent class's ``KEYWORDS`` into the new tuple.\n\n[class method] ``match_schema(cls, schema)``\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nReturn ``true`` if this strategy should be used to handle the passed-in schema.\n\n:param schema: a JSON Schema in ``dict`` form\n:rtype: ``bool``\n\n[class method] ``match_object(cls, obj)``\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nReturn ``true`` if this strategy should be used to handle the passed-in object.\n\n:param obj: any object or scalar that can be serialized in JSON\n:rtype: ``bool``\n\n``__init__(self, node_class)``\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nOverride this method if you need to initialize an instance variable.\n\n:param node_class: This param is not part of the public API. Pass it along to ``super``.\n\n``add_schema(self, schema)``\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nOverride this to modify how a schema is parsed and stored.\n\n:param schema: a JSON Schema in ``dict`` form\n\n``add_object(self, obj)``\n^^^^^^^^^^^^^^^^^^^^^^^^^\n\nOverride this to change the way a schemas are inferred from objects.\n\n:param obj: any object or scalar that can be serialized in JSON\n\n``to_schema(self)``\n^^^^^^^^^^^^^^^^^^^\n\nOverride this method to customize how a schema object is constructed from the inputs. It is suggested that you invoke ``super`` as the basis for the return value, but it is not required.\n\n:rtype: ``dict``\n\n.. note::\n    There is no schema validation. If you return a bad schema from this method,\n    ``SchemaBuilder`` will output a bad schema.\n\n``__eq__(self, other)``\n^^^^^^^^^^^^^^^^^^^^^^^\n\nWhen checking for ``SchemaBuilder`` equality, strategies are matched using ``__eq__``. The default implementation uses a simple ``__dict__`` equality check.\n\nOverride this method if you need to override that behavior. This may be useful if you add instance variables that aren't relevant to whether two SchemaStrategies are considered equal.\n\n:rtype: ``bool``\n\n\n\n``TypedSchemaStrategy`` API\n+++++++++++++++++++++++++++\n\nThis is an abstract schema strategy for making simple schemas that only deal with the ``type`` keyword, but you can extend it to add more functionality. Subclasses must define the following two class constants, but you get the entire ``SchemaStrategy`` interface for free.\n\n[class constant] ``JS_TYPE``\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nThis will be the value of the ``type`` keyword in the generated schema. It is also used to match any added schemas.\n\n\n[class constant] ``PYTHON_TYPE``\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nThis is a Python type or tuple of types that will be matched against an added object using ``isinstance``.\n\nExtending ``SchemaBuilder``\n+++++++++++++++++++++++++++\n\nOnce you have extended ``SchemaStrategy`` types, you'll need to create a ``SchemaBuilder`` class that uses them, since the default ``SchemaBuilder`` only incorporates the default strategies. To do this, extend the ``SchemaBuilder`` class and define one of these two constants inside it:\n\n[class constant] ``EXTRA_STRATEGIES``\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nThis is the standard (and suggested) way to add strategies. Set it to a tuple of all your new strategies, and they will be added to the existing list of strategies to check. This preserves all the existing functionality.\n\nNote that order matters. GenSON checks the list in order, so the first strategy has priority over the second and so on. All ``EXTRA_STRATEGIES`` have priority over the default strategies.\n\n[class constant] ``STRATEGIES``\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nThis clobbers the existing list of strategies and completely replaces it. Set it to a tuple just like for ``EXTRA_STRATEGIES``, but note that if any object or schema gets added that your exhaustive list of strategies doesn't know how to handle, you'll get an error. You should avoid doing this unless you're extending most or all existing strategies in some way.\n\nExample: ``MinNumber``\n++++++++++++++++++++++\n\nHere's some example code creating a number strategy that tracks the `minimum number`_ seen and includes it in the output schema.\n\n.. note::\n    This example is written in Python 3.3+. Custom strategies also work in Python 2.7, but you need different syntax (``super`` arguments & no splatting ``KEYWORDS``).\n\n.. code-block:: python\n\n    from genson import SchemaBuilder\n    from genson.schema.strategies import Number\n\n    class MinNumber(Number):\n        # add 'minimum' to list of keywords\n        KEYWORDS = (*Number.KEYWORDS, 'minimum')\n\n        # create a new instance variable\n        def __init__(self, node_class):\n            super().__init__(node_class)\n            self.min = None\n\n        # capture 'minimum's from schemas\n        def add_schema(self, schema):\n            super().add_schema(schema)\n            if self.min is None:\n                self.min = schema.get('minimum')\n            elif 'minimum' in schema:\n                self.min = min(self.min, schema['minimum'])\n\n        # adjust minimum based on the data\n        def add_object(self, obj):\n            super().add_object(obj)\n            self.min = obj if self.min is None else min(self.min, obj)\n\n        # include 'minimum' in the output\n        def to_schema(self):\n            schema = super().to_schema()\n            schema['minimum'] = self.min\n            return schema\n\n    # new SchemaBuilder class that uses the MinNumber strategy in addition\n    # to the existing strategies. Both MinNumber and Number are active, but\n    # MinNumber has priority, so it effectively replaces Number.\n    class MinNumberSchemaBuilder(SchemaBuilder):\n        \"\"\" all number nodes include minimum \"\"\"\n        EXTRA_STRATEGIES = (MinNumber,)\n\n    # this class *ONLY* has the MinNumber strategy. Any object that is not\n    # a number will cause an error.\n    class ExclusiveMinNumberSchemaBuilder(SchemaBuilder):\n        \"\"\" all number nodes include minimum, and only handles number \"\"\"\n        STRATEGIES = (MinNumber,)\n\nNow that we have the MinNumberSchemaBuilder class, let's see how it works.\n\n.. code-block:: python\n\n    >>> builder = MinNumberSchemaBuilder()\n    >>> builder.add_object(5)\n    >>> builder.add_object(7)\n    >>> builder.to_schema()\n    {'$schema': 'http://json-schema.org/schema#', 'type': 'integer', 'minimum': 5}\n    >>> builder.add_object(-2)\n    >>> builder.to_schema()\n    {'$schema': 'http://json-schema.org/schema#', 'type': 'integer', 'minimum': -2}\n    >>> builder.add_schema({'$schema': 'http://json-schema.org/schema#', 'type': 'integer', 'minimum': -7})\n    >>> builder.to_schema()\n    {'$schema': 'http://json-schema.org/schema#', 'type': 'integer', 'minimum': -7}\n\nNote that the exclusive builder is much more particular.\n\n.. code-block:: python\n\n    >>> builder = MinNumberSchemaBuilder()\n    >>> picky_builder = ExclusiveMinNumberSchemaBuilder()\n    >>> picky_builder.add_object(5)\n    >>> picky_builder.to_schema()\n    {'$schema': 'http://json-schema.org/schema#', 'type': 'integer', 'minimum': 5}\n    >>> builder.add_object(None) # this is fine\n    >>> picky_builder.add_object(None) # this fails\n    genson.schema.node.SchemaGenerationError: Could not find matching schema type for object: None\n\n\nCompatibility\n-------------\n\nGenSON has been tested and verified under the following Python versions:\n\n* Python 2.7.13\n* Python 3.3.5\n* Python 3.4.5\n* Python 3.5.4\n* Python 3.6.2\n* Python 3.7.3\n* Python 3.8.2\n\n\nContributing\n------------\n\nWhen contributing, please follow these steps:\n\n1. Clone the repo and make your changes.\n2. Make sure your code has test cases written against it.\n3. Make sure all the tests pass.\n4. Lint your code with `Flake8`_.\n5. Ensure the docs are accurate.\n6. Add your name to the list of contributers.\n7. Submit a Pull Request.\n\nTests\n+++++\n\nTests are written in ``unittest``. You can run them all easily with the included executable ``bin/test.py``.\n\n.. code-block:: bash\n\n    $ bin/test.py\n\nYou can also invoke individual test suites:\n\n.. code-block:: bash\n\n    $ bin/test.py --test-suite test.test_gen_single\n\n\nPotential Future Features\n+++++++++++++++++++++++++\n\nThe following are extra features under consideration.\n\n* recognize every validation keyword and ignore any that don't apply\n* option to set error level\n* custom serializer plugins\n* logical support for more keywords:\n\n  * ``enum``\n  * ``minimum``/``maximum``\n  * ``minLength``/``maxLength``\n  * ``minItems``/``maxItems``\n  * ``minProperties``/``maxProperties``\n  * ``additionalItems``\n  * ``additionalProperties``\n  * ``format`` & ``pattern``\n  * ``$ref`` & ``id``\n\n.. _JSON Schema: http://json-schema.org/\n.. _Java Genson library: https://owlike.github.io/genson/\n.. _`Python's builtin json library`: https://docs.python.org/library/json.html\n.. _below: #typeless-schemas\n.. _array validation here: https://spacetelescope.github.io/understanding-json-schema/reference/array.html#items\n.. _patternProperties: https://spacetelescope.github.io/understanding-json-schema/reference/object.html#pattern-properties\n.. _Python flavor of RegEx: https://docs.python.org/3.6/library/re.html\n.. _the code: https://github.com/wolverdude/GenSON/tree/master/genson/schema/strategies\n.. _minimum number: https://json-schema.org/understanding-json-schema/reference/numeric.html#range\n.. _Flake8: https://pypi.python.org/pypi/flake8\n\n\nHistory\n=======\n\n1.2.2\n-----\n\n* add ``__version__`` attr to module & ``--version`` option to CLI tool\n* add ``--encoding`` option to CLI tool that overrides default file encoding (fixes #47)\n\n1.2.1\n-----\n\n* expose ``SchemaStrategy.__eq__()`` for extension\n* add support for Python 3.8\n* update Trove classifiers\n* **Bugfix**: ``SchemaBuilder.__eq__()`` wasn't matching the ``$schema`` keyword correctly\n* **Bugfix**: only activate empty ``required`` option when ``required`` is actualy empty\n\n\n1.2.0\n-----\n\n* ``SchemaStrategies`` are now extendable, enabling custom ``SchemaBuilder`` classes.\n* optimize ``__eq__`` logic\n\n1.1.0\n-----\n\n* add support for Python 3.7\n* drop support for Python 3.3\n* drop support for JSON-Schema Draft 4 (because it doesn't allow empty ``required`` arrays)\n* **Bugfix**: preserve empty ``required`` arrays (fixes #25)\n* **Bugfix**: handle nested ``anyOf`` keywords (fixes #35)\n\n1.0.2\n-----\n\n* add support for ``long`` integers in Python 2.7\n* update test-skipping decorator to use standard version requirement strings\n\n1.0.1\n-----\n\n* **Bugfix**: seeding an object schema with a ``\"required\"`` keyword caused an error\n* **Docs**: fix mislabeled method\n\n1.0.0\n-----\n\nThis version was a total overhaul. The main change was to split Schema into three separate classes, making it simpler to add more complicated functionality by having different generator types to handle the different schema types.\n\n1. ``SchemaNode`` to manage the tree structure\n2. ``SchemaGenerator`` for the schema generation logic\n3. ``SchemaBuilder`` to manage the public API\n\nInterface Changes\n+++++++++++++++++\n\n* ``SchemaBuilder`` is the new ``Schema``\n* ``to_dict()`` is now called ``to_schema()``\n\nTo make the transition easier, there is still a ``Schema`` class that wraps ``SchemaBuilder`` with a backwards-compatibility layer, but you will trigger a ``PendingDeprecationWarning`` if you use it.\n\nSeed Schemas\n++++++++++++\n\nThe ``merge_arrays`` option has been removed in favor of seed schemas. You can now seed specific nodes as list or tuple instead of setting a global option for every node in the schema tree.\n\nYou can also now seed object nodes with ``patternProperties``, which was a highly requested feature.\n\nOther Changes\n+++++++++++++\n\n* include ``\"$schema\"`` keyword\n* accept schemas without ``\"type\"`` keyword\n* use ``\"anyOf\"`` keyword to help combine schemas\n* add ``SchemaGenerationError`` for better error handling\n* empty ``\"properties\"`` and ``\"items\"`` are not included in generated schemas\n* ``genson`` executable\n\n  * new ``--schema-uri`` option\n  * auto-detect object boundaries by default\n\n0.2.3\n-----\n* **Docs**: add installation instructions\n\n0.2.2\n-----\n* **Docs**: Python 3.6 is now explicitly tested and listed as compatible.\n\n0.2.1\n-----\n* **Bugfix**: ``add_schema`` failed when adding list-style array schemas\n* **Bugfix**: typo in readme\n\n0.2.0\n-----\n\n* **Bugfix**: Options were not propagated down to subschemas.\n* **Bugfix**: Empty arrays resulted in invalid schemas because it still included an ``items`` property.\n* **Bugfix**: ``items`` was being set to a list even when ``merge_arrays`` was set to ``True``. This resulted in overly permissive schemas because ``items`` are matched optionally by default.\n* **Improvement**: Positional Array Matching - In order to be more consistent with the way JSON Schema works, the alternate to ``merge_arrays`` is no longer never to merge list items, but instead to merge them based on their position in the list.\n* **Improvement**: Schema Incompatibility Warning - A schema incompatibility used to cause a fatal error with a nondescript warning. The message has been improved and it has been reduced to a warning.\n\n0.1.0 (2014-11-29)\n------------------\n\n* Initial release\n\n\nCredits\n=======\n\n**GenSON** is written and maintained by `Jon Wolverton <https://github.com/wolverdude>`_.\n\n\nContributors\n------------\n\n- `Brad Sokol <https://github.com/bradsokol>`_\n- `David Kay <https://github.com/davek2>`_\n- `Heiho1 <https://github.com/heiho1>`_\n- `YehudaCorsia <https://github.com/YehudaCorsia>`_",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "GenSON is a powerful, user-friendly JSON Schema generator.",
    "version": "1.2.2",
    "split_keywords": [
        "json",
        "schema",
        "json-schema",
        "jsonschema",
        "object",
        "generate",
        "generator",
        "builder",
        "merge",
        "draft 7",
        "validate",
        "validation"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "3626a48522e62db30b676745666875e5",
                "sha256": "8caf69aa10af7aee0e1a1351d1d06801f4696e005f06cedef438635384346a16"
            },
            "downloads": -1,
            "filename": "genson-1.2.2.tar.gz",
            "has_sig": false,
            "md5_digest": "3626a48522e62db30b676745666875e5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 34387,
            "upload_time": "2020-08-19T17:04:45",
            "upload_time_iso_8601": "2020-08-19T17:04:45.090787Z",
            "url": "https://files.pythonhosted.org/packages/e1/71/fbd2f1ad9695c92ad756b91f5a570f809c4959d3bd82266788cf222e5c5c/genson-1.2.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2020-08-19 17:04:45",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "wolverdude",
    "github_project": "genson",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": false,
    "tox": true,
    "lcname": "genson"
}
        
Elapsed time: 0.01485s