Reporting Credit Outcomes
{
"loanHash": "0xabc123...", // Unique identifier for the loan
"outcome": "repaid", // "repaid" | "default" | "partial"
"amountUsd": 2500, // Original loan amount in USD equivalent
"timestamp": 1736100000, // Unix timestamp of outcome
"details": { // Optional enriched data
"daysLate": 0,
"recoveredAmountUsd": 2500,
"partialRecoveryPercent": 100
}
}Last updated