from marshmallow import Schema, fields # Loan Information Schema class LoanInformationSchema(Schema): loan_id = fields.Str(required=True)