Created
December 18, 2018 12:51
-
-
Save mvantellingen/71a1a2f53a94b0fbc3eb95714a194a4f to your computer and use it in GitHub Desktop.
Code Blog #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class AttributeDefinitionDraftSchema(marshmallow.Schema): | |
type = helpers.Discriminator( | |
discriminator_field=("name", "name"), | |
discriminator_schemas={ | |
"boolean": "AttributeBooleanTypeSchema", | |
"datetime": "AttributeDateTimeTypeSchema", | |
}, | |
unknown=marshmallow.EXCLUDE, | |
allow_none=True | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment