Daniyar Yeralin
Daniyar Yeralin
Any updates on this feature?
The build is failing because `tox` is installing `marshmallow-jsonschema==0.7.0` that does not contain recently merged change from #86 After a new version is released, the build is supposed to pass.
Hmmm even after a new release, the build is still failing... I also added an extra test case, but the coveralls are still -1.8% :(
Actually, it might be a problem in `marshmallow` package, when I try to resolve: `test_schema.fields['test'].container.container.name` it returns `None` (on doubly nested schema) vs. when I call `test_schema.fields['test'].container.name`, it returns `test`...
Ok, after the investigation of this issue under the marshmallow core repo, it was discovered that this bug was fixed in 3.0, but not in 2.0! And they can't fix...
How about this: completely skip `title` (since it is not required by JSON Schema specification) if either `field.attribute` or `field.name` are `None`? Created a PR
I created a custom class that inherits from `JSONSchema` and overrides the method: ``` class CustomJsonSchema(JSONSchema): def _get_default_mapping(self, obj): mapping = super()._get_default_mapping(obj) mapping.update( { fields.CustomDict: dict, } ) return mapping...
@AllanDaemon My example is for simple mappings like `str`, `dict`, `list`, etc. For more complex, yes, you need to do smth similar to `_from_nested_schema`. It gets called in this block:...
Any update on this?
Hey @ask any ideas on this? I'm also trying to integrate faust as a module to my aiohttp server. Tried using `aioeventlet` according to FAQ, but now it throws: ```...