Loan Account Summary

This data model captures the essential details found on a loan account statement. It includes information about the lender, the statement period, and the currency used. It details the loan's ownership structure and lists the account holders. Key financial information such as the starting and ending balances for the period, the original loan amount, interest rates, and any accrued interest or fees during the statement period are included. Additionally, it covers payment details like the next due date and amount, the status of the loan payments, year-to-date totals for interest, principal, and fees paid, and information about the loan's maturity date and any collateral involved.

Field nameTypeDescription
financial_institution_namestringName of the financial institution providing the loan (lender/noteholder).
statement_period_start_datestringThe first day covered by the statement (YYYY-MM-DD).
statement_period_end_datestringThe last day covered by the statement (YYYY-MM-DD).
account_currencystringThe currency of the loan account, represented by a 3-digit ISO code.
ownership_typestringHow the account is legally owned. Values: individual, joint_wros, joint_tic, trust, custodial_utma, custodial_ugma, fiduciary_guardian.
holdersarrayList of individuals or entities who own the loan account.
      holder_namestringThe name of an individual or entity holding the account.
      holder_typestringThe classification of the account holder (e.g., Primary, Secondary).
starting_balance_periodnumberThe outstanding principal amount at the beginning of the statement period.
ending_balance_periodnumberThe outstanding principal amount at the end of the statement period.
account_typestringThe category of the loan. Values: mortgage, vehicle_loan, personal_loan, student_loan, home_equity_loan, other_loan.
original_loan_amountnumberThe initial principal amount borrowed when the loan was first taken out.
origination_datestringThe date the loan agreement was finalized and funds were disbursed (YYYY-MM-DD).
interest_ratenumberThe percentage rate charged on the loan principal.
interest_rate_typestringIndicates if the interest rate is fixed or can change. Values: fixed, variable.
interest_accrued_periodnumberThe amount of interest added to the loan balance during the statement period.
fees_charged_periodnumberThe total amount of fees applied to the account during the statement period.
payment_due_datestringThe date the next loan payment is required (YYYY-MM-DD).
payment_due_amountnumberThe amount scheduled to be paid on the next payment due date.
loan_payment_statusstringThe current standing of the loan's repayment. Values: in_repayment, deferment, forbearance, grace_period, default, paid_off, unknown.
last_payment_amountnumberThe amount of the most recent payment received for the loan.
maturity_datestringThe date when the loan is scheduled to be fully repaid (YYYY-MM-DD).
servicerstringName of the company managing the loan account, if different from the lender.
interest_paid_ytdnumberThe cumulative amount of interest paid since the start of the calendar year.
principal_paid_ytdnumberThe cumulative amount of principal paid since the start of the calendar year.
fees_paid_ytdnumberThe cumulative amount of fees paid since the start of the calendar year.
collateral_descriptionstringA description of the asset(s) securing the loan (e.g., property address, vehicle VIN).

Field Notes

  • Dates: All date fields (statement_period_start_date, statement_period_end_date, origination_date, payment_due_date, maturity_date) should be in YYYY-MM-DD format.
  • account_currency: This field represents the 3-digit ISO currency code (e.g., USD, CAD, EUR). If not found in the document, it defaults to USD.
  • ownership_type: Expected values include individual, joint_wros (Joint Tenants with Right of Survivorship), joint_tic (Joint Tenants in Common), trust, custodial_utma (Uniform Transfers to Minors Act), custodial_ugma (Uniform Gifts to Minors Act), fiduciary_guardian.
  • account_type: Expected values include mortgage, vehicle_loan, personal_loan, student_loan, home_equity_loan, other_loan.
  • interest_rate_type: Expected values are fixed or variable.
  • loan_payment_status: Expected values include in_repayment, deferment, forbearance, grace_period, default, paid_off, unknown.
  • Numbers: Numeric fields like balances, amounts, and rates should be extracted with up to two decimal places.