We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am getting a RecursionError trying to generate swagger with this schema:
class ZipStructureRowSchema(Schema): name = fields.String(required=True) sub_rows = fields.List( fields.Nested("ZipStructureRowSchema"), load_from="subRows", dump_to="subRows" ) class ZipPreviewResponseSchema(Schema): preview = fields.List(fields.Nested(ZipStructureRowSchema))
As far as I can tell, this is valid according to Marshmallow. Thank you!
The text was updated successfully, but these errors were encountered:
This is the older version of the schema, we have tried migrating away from load_from and dump_to to data_key.
load_from
dump_to
data_key
Sorry, something went wrong.
No branches or pull requests
I am getting a RecursionError trying to generate swagger with this schema:
As far as I can tell, this is valid according to Marshmallow. Thank you!
The text was updated successfully, but these errors were encountered: