marshmallow-jsonschema icon indicating copy to clipboard operation
marshmallow-jsonschema copied to clipboard

JSON Schema Draft v7 (http://json-schema.org/) formatting with marshmallow

Results 67 marshmallow-jsonschema issues
Sort by recently updated
recently updated
newest added

checking if the default value is callable is not sufficient, as one can provide a default value that is not callable nor serializable, `uuid.uuid4()` for example. this change enables providing...

of resulting json schema, where schemas are placed

Currently the title of each field is taken from the attribute name, but there is no mechanism to use metadata to customize the title without modifying the actual Marshmallow serialization.

I have a schema with a Union of other object types. Is this possible with this package and json schema? ``` unsupported field type ```

This fixes #169. Detailed changes: * Introduce distinction between Enums imports from `marshmallow_enum` and `marshmallow.fields` (the latter are refered to as "marshmallow native" Enums) * Add function to find out...

to have a stable order of the imports, regardless of individual IDE settings. https://pycqa.github.io/isort/