-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Doubly nested list schema generates null title #87
Comments
Actually, it might be a problem in Raised an issue under marhsmallow core repo: marshmallow-code/marshmallow#1355 |
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 it in 2.0 bc it will not be backwards compatible... Then, their maintainer added:
What do you think? @fuhrysteve |
How about this: completely skip Created a PR |
Singly nested schema list like:
Works just fine:
But if you add another level of nestness, it will start generating
null
values for titles which doesn't conform to JSON Schema specifications. To reproduce:Will yield:
The text was updated successfully, but these errors were encountered: