"""Marshmallow Schema for input validation of Network Participant.""" from marshmallow import Schema, fields class UpdateNetworkParticipantSchema(Schema): """Class for updating network participant. Note: data_key is used to do snake->camel case conversion since neo4j convention is to use camelCased keys """ name = fields.String(required=False)