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

Hi, we noticed that on the fields in our schemas that use fields.Raw, a string jsonschema type is returned and we expected an object type, is this expected or should...

`fields.Integer` should produce a JSON schema with `"type": "integer"` as per https://json-schema.org/understanding-json-schema/reference/numeric.html?highlight=integer#integer . However, a schema with `"type": "number", "format": "integer"` is produced. The `number` docs do not mention `integer`...

Hey @fuhrysteve, I've noticed that the field from above is not included in the list of the supported field types in your library. This looks like a pretty straight-forward contribution...

Hi everyone, We are using marshmallow-jsonschema to generate a JSON schema for [json-editor](https://github.com/json-editor/json-editor). I noticed that the recently introduced `props_ordered` argument does not work for nested schemas. Extended Test Case:...

Hi everyone, Thank @fuhrysteve for this awesome lib. As using the lib, I find out that schema with `partial loading` does not parse correctly to JSON schema. It still has...

Hi, I provided support for enum fields (using marshmallow-enum lib). It is compatible with JsonSchema v7. Best regards, Adam K

Addresses #87 Because of lack of support of doubly (or more) nested schemas, some `title`s get rendered as `null` which breaks JSON schema validation. This PR simply skips `title` if...

Hi! I would like to potentially package marshmallow-jsonschema for Arch Linux. However, I see, that [the versions released on pypi.org](https://pypi.org/project/marshmallow-jsonschema/#history) don't correlate with any tags in this repository. To circumvent...

Sorry, this is a question, rather than an issue, but is there support for jsonschema's per-field "description" property?