def simple_schema(): class InstanceSchema(Schema): key = fields.String() value = fields.Integer(default=0) return InstanceSchema()