Decoding the Healthcare Claim

In this article, we'll break down the structure of a claim submitted by a healthcare provider to an insurer for reimbursement. We aim for a clear data structure suitable for understanding and for those who are technically versed to adapt for API design.

Note that the format of a claim may change depending on the insurer it is submitted to — for simplicity's sake, we'll constrain this study to the most general case: a claim submitted to Medicare.

From a high level, each claim originates from a single patient encounter. We'll assume that you already have background info about the patient and the provider(s). From there, the structure of a specific claim (remembering one encounter might generate multiple claims) depends on these key elements:

1. Where Did the Encounter Happen? (setting)

This fundamental question dictates much of the billing process:

This choice impacts almost all further claim forms, coding, and payment rules.

2. Who is Paying? (payer)

Identifying the primary insurer sets the rules of engagement:

Payer rules (like Medicare's) dictate required codes, formats, and reimbursement logic. We focus on Medicare.

3. What Type of Claim is This? (claim_type)

This clarifies who is billing for what aspect of the care during the encounter. A single encounter often generates both types of claims.

This distinction is vital as it determines the specific codes used for services and how payment is calculated.

4. What Diagnoses Justify the Care? (diagnoses)

This field focuses only on the "why" – the patient's conditions that establish medical necessity for the entire claim (and often the encounter).

5. What Specific Services/Procedures Were Rendered on this Claim? (services_rendered)

This new, crucial field details the "what" – the specific line items being billed on this particular claim. The content and coding depend heavily on the claim_type and setting:

Regarding Bundles (APC/MS-DRG)

These are payment methodologies applied mostly to Facility Claims:

They represent the payment calculation based on the services/diagnoses reported, not a distinct claim type itself. They primarily bundle facility costs.