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:
setting
)This fundamental question dictates much of the billing process:
This choice impacts almost all further claim forms, coding, and payment rules.
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.
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.
diagnoses
)This field focuses only on the "why" – the patient's conditions that establish medical necessity for the entire claim (and often the encounter).
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
:
If the claim_type
is professional
:
diagnosis_pointer
linking this specific service line back to the diagnoses
list (e.g., pointers [1, 2]
means this service was justified by the 1st and 2nd diagnosis in the list).If the claim_type
is facility
:
diagnoses
, but specific pointers might be used by some payers.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.