Skip to main content

Write-Off Analysis

Track uncollectible denials with preventability analysis to reduce future losses.

Overview

Write-offs represent accepted financial losses where denials cannot be recovered. Tracking with preventability analysis helps identify root causes and prevent similar losses.

Tools Used

ToolPurpose
create_write_offWrite off uncollectible amount with preventability tracking
list_write_offsQuery write-offs with filters
get_write_off_analyticsPreventable write-off analysis

Example: Seeded Write-Off

The database contains 1 seeded write-off:

Write-OffDenialClaimAmountReasonPreventable
950e8400...001PR-1CLM-2024-001236$15below_thresholdYes

Review Write-Offs

User prompt:

Show me our write-offs and whether they were preventable.

What happens:

The list_write_offs tool retrieves write-offs:

{
"write_offs": [
{
"id": "950e8400-e29b-41d4-a716-446655440001",
"denial_id": "750e8400-e29b-41d4-a716-446655440002",
"claim_id": "650e8400-e29b-41d4-a716-446655440003",
"write_off_amount": 15.0,
"write_off_reason": "below_threshold",
"reason_notes": "Amount below $25 small-balance threshold per organization policy. Cost to pursue exceeds potential recovery.",
"approved_by": "Billing Manager",
"approval_date": "2024-01-30",
"category": "PATIENT_RESPONSIBILITY",
"is_preventable": true
}
],
"total": 1,
"total_amount": 15.0
}

Expected Response:

You have 1 write-off totaling $15:

  • CLM-2024-001236: $15 written off (below $25 threshold)
  • Reason: PR-1 patient responsibility, cost to pursue exceeds recovery
  • Approved by: Billing Manager on 1/30/2024
  • Preventable: Yes - eligibility could have been verified at registration

Write-Off Analytics

User prompt:

What's our write-off analysis?

The get_write_off_analytics tool returns:

{
"total_write_offs": 1,
"total_amount": 15.0,
"preventable_count": 1,
"preventable_amount": 15.0,
"preventable_percentage": 100,
"by_reason": {
"below_threshold": { "count": 1, "amount": 15.0 }
},
"by_category": {
"PATIENT_RESPONSIBILITY": { "count": 1, "amount": 15.0 }
},
"insights": [
"100% of write-offs ($15) are preventable",
"Top reason: below_threshold (100%)",
"Consider eligibility verification at registration"
]
}

Workflow Diagram

Write-Off Reasons

ReasonDescriptionTypically Preventable
below_thresholdAmount too small to pursueSometimes
timely_filing_expiredPast appeal deadlineYes
non_covered_serviceService not covered by planSometimes
patient_responsibilityTransferred to patient balanceSometimes
contract_adjustmentContractual write-offNo
uncollectibleUnable to collectVaries

Categories

  • ADMINISTRATIVE - Process failures (timely filing, missing info)
  • CLINICAL - Documentation issues (medical necessity)
  • FINANCIAL - Contract/coverage issues (exclusions, limits)
  • PATIENT_RESPONSIBILITY - Patient owes (deductible, copay)

Next Steps