Skip to main content
Fee, tax, and deduction lines reduce the gross approved loan amount down to netToMemberCents, the figure the payees must distribute. The multi-payee SUM invariant is checked against that net, not against the gross.

Gross to net

The gross is the approved loan amount from the most recent APPROVED adjudication decision. Each fee line is computed (percentage and per-thousand lines against the gross, a FLAT_CENTS line as a fixed amount), GCT is applied to the taxable lines, and only the lines treated as DEDUCT reduce the cash the member receives. The flow runs in order:
  1. Start from the gross approved amount.
  2. Compute each fee line. Percentage, per-thousand, and STAMP_DUTY_FORMULA lines are computed against the gross; a FLAT_CENTS line is a fixed amount.
  3. Add GCT to every taxable line.
  4. Subtract the non-waived DEDUCT lines, each including its GCT.
  5. Arrive at the net to member.
When you add a payee, the sum of all payee amounts must equal the net to member exactly. If deductions ever exceed the gross, scheduling is refused with a NET_NEGATIVE error.

How a fee amount is computed

The calcKind field decides how a line’s amount is worked out. There are four kinds.
calcKindHow the amount is computed
FLAT_CENTSA fixed amount in cents.
PERCENT_BPSA percentage of the gross, in basis points. 200 bps is 2.00%.
PER_THOUSANDA rate per J$1,000 of the gross.
STAMP_DUTY_FORMULAThe Jamaica stamp/mortgage duty formula.

How a line is treated

The treatment field decides whether a line reduces the disbursed cash. There are three treatments.
treatmentEffect on net to member
DEDUCTReduces the net the member receives.
PAID_SEPARATELYThe member settles it out of band. Does not reduce the net.
CAPITALIZEAdded to principal. None of the seeded Jamaica defaults use it.

Who a line is owed to

The remitTo field records who the fee, tax, or deduction is owed to. There are seven values.
remitToRecipient
CUThe credit union.
TAJTax Administration Jamaica.
GOVERNMENTA government office.
INSURERAn insurer.
ATTORNEYAn attorney.
LENDERAnother lender.
OTHERAnyone else.

GCT

Each fee line carries a taxable flag. GCT applies only to lines flagged taxable. Financial-service and insurance-service fees are GCT-exempt, so a processing fee is not taxable. Legal and valuation fees are taxable and carry GCT. The workspace default GCT rate is gctRateBps, which defaults to 1500, that is 15%, the Jamaica standard. It is stored on the workspace configuration. A Disbursement officer can override the GCT rate for a single disbursement. The override is passed per schedule and clamped to the range 0 to 10000 basis points. When omitted, the workspace default applies. This covers a special rate or a zero-rated case without changing the workspace default.

The two fee tables

Fees live in two places: an editable per-workspace catalogue, and an immutable snapshot on each instruction.
TableWhat it is
TenantFeeScheduleItemThe editable per-workspace fee/tax catalogue. Officers read these as defaults per loan type, and your Administrator edits them.
DisbursementFeeThe immutable applied line on a DisbursementInstruction, captured at schedule time. Never deleted.
The catalogue is the configurable source. The snapshot is the legal record of exactly what was charged on a specific disbursement.

Seeded Jamaica defaults

A workspace created through the demo seed gets ten Jamaica fee items spread across the loan types. The defaults are starting points; your Administrator edits them.
CodeLabelLoan typeCalcTreatmentRemit toTaxable
PROCESSINGProcessing feeUnsecured2.00%DEDUCTCUNo
PROCESSINGProcessing feeCash-secured1.00%DEDUCTCUNo
PROCESSINGProcessing feeAuto2.00%DEDUCTCUNo
TITLE_LIENTitle / lien registrationAutoJ$5,000DEDUCTGOVERNMENTNo
INSURANCE_COMPComprehensive insurance (1st premium)Autoper quotePAID_SEPARATELYINSURERNo
PROCESSINGProcessing feeMortgage1.00%DEDUCTCUNo
LEGALLegal feeMortgage1.50%PAID_SEPARATELYATTORNEYYes
STAMP_DUTYStamp / mortgage dutyMortgageformulaPAID_SEPARATELYGOVERNMENTNo
VALUATIONValuation / appraisalMortgageJ$35,000PAID_SEPARATELYOTHERYes
REGISTRATIONTitle registrationMortgageJ$5,000PAID_SEPARATELYGOVERNMENTNo

What an officer can change

A Disbursement officer can add, edit, and waive fee lines at schedule time. Every change is audited.
  • Add a custom line that is not in the schedule.
  • Edit a schedule line for this loan.
  • Waive a line, with a reason of at least 3 characters, so it does not reduce the net.
Each snapshot line records its source: SCHEDULE for a line drawn from the catalogue, MANUAL for a custom line the officer added. An instruction carries at most 20 fee lines. The audit events are exact:
  • disbursement.fees.applied records the full fee, GCT, and net breakdown for the instruction.
  • disbursement.fee.waived records each waived line and its reason.
Both fire inside scheduleDisbursement. The tenant.fee_schedule.updated event is registered for catalogue edits, but no in-app catalogue editor ships yet, so catalogue changes are made out of band and that event is not emitted today.