Stream: implementers
Topic: Billing data in Encounter
Varvara (May 22 2018 at 10:30):
Hi, @Paul Knapp ,
Is there any smart way to include billing data, such as coverage or self-pay option, into a patient encounter?
We have at least two projects where we need this, because billing information can be different for each visit. In our case, we extended Encounter resource with a reference to a particular patient coverage or self-pay option, but considering this will be an often case, could you suggest more convenient way to do that?
Has anyone had a similar issue?
Paul Knapp (May 22 2018 at 12:07):
@Varvara Hi: Can you give me a bit more of the use case as it isn't clear to me why the coverage would be different on different visits. (Clearly coverage can change over time, and different coverages may be applicable depending upon the circumstance such as work related injury or an auto accident, but typically features of the charge and encounter such as date would be used by your system to triage through the coverages (which are normally referenced by Account) to determine both which coverages are applicable and the coordination of benefit order if there are multiple coverages which may be applicable.).
Please also check with the Patient Administration work group as they own encounter and may be able to better advise you on your use case and what extension is appropriate.
Varvara (May 24 2018 at 10:46):
Thank you, @Paul Knapp , I will confirm with PA group for sure.
our conclusion that billing data has a connection to a particular visit was based on several use cases:
1. Even if a patient has coverage, it's not applicable for some services/visits (such as cosmetic services/visits)
2. Patient may use self pay option any time even with the active coverage, for example, if there is no referral (and the plan requires referral) or coverage is temporary inactive/ provider is out-of-network.
3. Claim submission and adjudication may take a long time, during which patient plan could be changed, so new visits will be associated with a new coverage, but the old visits are still refer to the old one. It seems that for such cases we would need to create a new Account for a patient, or are we missing something here?
Paul Knapp (May 24 2018 at 11:44):
Hi @Varvara Typically the Account would hold, reference, the list of coverages and the item being changed would indicate, I expect, whether it was selfpay. If self pay then it would be gathered with other selfpay items, run through the grouper/pricer/billing black box and emerge as zero or more things to be billed directly to the individual. If insured then the items would be gathered and run through the grouper/pricer/billing black box and emerge as zero or more things to be sent as claims in an iterative fashion against the list of applicable coverages, in the coordination of benefit order, and only for those coverages which were in force on the date of service until the list of coverages was exhausted or the receivable is accounted for. Any balance remaining after the insurance claiming would then be billed to the patient, their guarantors, etc.
While there are any number of ways to design a financial system, typically the designs I have build and seen do not list the applicable coverages on each encounter , rather they filter the list of available coverages based on nature of event, event date or service date etc. to derive the suite of coverages to claim against.
What you may need in the encounter is a code to indicate: selfpay; auto accident related; work accident related; Property/Casualty accident related (home, office etc); none of the above. This would aid in the processing determinations.
Lloyd McKenzie (May 24 2018 at 14:17):
I think @Varvara is correct with planning to have a separate account for each Encounter - or at least for each Encounter where payment information has changed. A single code isn't going to allow the patient the flexibility of choosing to exclude a particular coverage from payment, for example. Or to indicate whether they want to use patient-directed funding within their insurance plan to cover a particular service or not. Setting up an account specifically for a particular set of services would allow this to be tracked.
Brian Postlethwaite (Jun 25 2018 at 10:12):
@Simone Heckmann, @Cooper Thompson your thoughts on this?
Paul Knapp (Jul 11 2018 at 11:59):
@Varvara You typically wouldn't created a new account just because your coverage changed. The coverage which is applicable is based on the active period of the coverage and the date of service.
You may have a few accounts if you want to manage further which coverages are to be used for example you could choose to flag a charge as being work or accident related to support the downstream systems to select the correct coverages, eg. Workers Compensation, or you could have an additional account which also has the Workers Compensation coverage listed.
Also you might set up a selfpay account but you wouldn't normally set up one per charge card or encounter. In fact often the patient funding is handed by putting a credit on the account which is used to clear the self pay changes or when it is known that certain changes are not insurable they remain in the account and the patient, or responsible parties, settle the account later.
Last updated: Apr 12 2022 at 19:14 UTC