If we focus this discussion to claims data I would say this should be the general consensus (among payers) - definitely a US medical claims weighted opinion. I have no clue about Germany. We discussed this when the CDM WG arbitrated this very topic, when I had proposed the visit_detail table.
Not really. This was something @ericaVoss and I discussed at the 2017 OHDSI symposium. Then at the CDM WG meeting in October and Novemeber, we discussed this same topic, and we all agreed that 'if you dont know what you are doing - you can mess up". Remember @Patrick_Ryan saying something similar with respect to using data about conditions or procedures - if you dont have clinical knowledge, you cant do meaningful analysis; if you dont have health economics knowledge, you cant do meaningful analysis.
Let’s focus on data representation ETL use-case and later an analytic use case. The below would be a common and generalizable scenario A person has a 3 night inpatient stay in a University hospital for appendicitis. The sequence of events are
- Ambulance ride to emergency room of the hospital. Day 1. Seen by ER physician.
- The emergency room admission, stabilization and transfer/admission to hospital. Day 1. Seen by admitting physician.
- Hospital takes him to operating room – appendicetomy. Seen by Surgeon. Day 1.
- Transfer to Intensive care unit. Seen by Surgeon, ICU doctor, admitting physician, Infectious Disease Physician. Day 1 and Day 2.
- Transfer to step-down unit Day 2. Seen by Rehab team including physical therapist, admitting physician, Infectious Disease Doctor.
- Transfer to Floor Day 3. Admitting physician, Infectious Disease Doctor.
- Discharge to home Day 4 morning. Discharged by admitting physician.
How is this billed? Lets keep this simple, and tolerate some lack of precision to ensure simplicity. There will be two types of claims and there will many billed claims.In US, the two main types of claims are
- Professional claims 5010 X222 or CMS 1500 - Billed by a human like the physician or nurse practitioner or physical therapist.
- Institutional Facility claims 5010 X223 or CMS 1450 (see page 9 to 14, and 18). Billed by the organization - generally the hospital.
The number of bills are dependent on number of legal billable entities the person encountered during the 3 night stay. If the ER and Hospital are two different legal entities, then there will be two institutional claims. Generally, in the case above – there will be one Institutional Facility claim because most University hospitals will have their own ER’s. Each clinician who saw the person will file their own claim. Infact there may be a different claim for each day (sometimes each encounter ) the clinician had with the patient during the stay. So, the surgeon may have two claims - one for the surgery and second for the ICU visit. The ER physician would have only one claim. The Admitting physician probably 4 claims. The dates for each of these claims may be different e.g. the Infectious disease physicians first date of service is actually day 2. Ambulance would be a professional claim by itself.
The two claim types above, will have their own header (summary), and detail (line) in a parent-child hierarchy. The line is the detail. For Institutional claim, the details like the ER, OR, ICU, Rehab, Floor etc are identified by Revenue code. The detail of the professional claims would have EnM CPT codes like http://www.ohdsi.org/web/atlas/#/concept/2514424
I am sorry - can you elaborate?
How are the costs linked to the claims? Charges are filed by the providers. Allowed, Paid, Coinsurance, Copay, etc. are determined by the payer. So the charge has no relation to contract, allowed/paid/coinsurance/copay are dependent on the contractual relationship between payer and provider. Charges are ‘free for all’ – charges may come at header level or line level. e.g. a hospital may charge for the entire stay, or may charge for each of the ER, ICU, OR, Rehab, Floor etc. The contractually determined costs are attached to the claim by the payer thru the process of adjudication. Pre-adjudicated claims may not have this cost information.
Adjudication depends on what the contract says. If the contract is a pure traditional fee-for-service, every line item will be adjudicated based on contracted rates and the sum goes to the summary/header. If there is no contract, then the payer may use some form of average rates or usual-and-customary rates. Newer payment methods are changing it. DRG is one form of global payment, where the entire care may be covered by one DRG like http://www.ohdsi.org/web/atlas/#/concept/38001158 . In this case, adjudication may happen at the header-level and not the line level.
So, yes to @Mark_Danese comment below. It add’s up
– but you need to know how the adjudication of the claim happened. The adjudication depends on benefit design and contractual relationship – OMOP CDM does not capture those pieces of information, and these types of information are not available. I have tried to address some of those in the recently accepted payer_plan_period . If we really need to balance line records to header records, you have to know benefit design of the health plan. The plan_concept_id, plan_source_value and plan_source_concept_id is our first step towards that.
These are classic payer business intelligence use cases. They are analytic use cases, not data modeling/ETL/data representation use case as above. They are easy to do – with the below steps.
- Build a cohort.
- Thru temporal association - find the records in cost table for the person in the cohort.
- Limit the records in costs table based on the cost_concept_id – do we want allowed, paid, charged, coinsurance – they are all concept_id in the proposed concept list and used to populate cost_concept_id
- If we want aggregate by total cost – then use concept_class = ‘Total’ and if we want to aggregate by component cost – then use concept_class ‘Component’ from the same concept_id
- Decide if you want to aggregate person level or cohort level. Do you want to aggregate temporally? All of thee are nicely supported by Feature Extraction 2 of @schuemie
- If you want to subset the cost table by some condition, or procedure or other – use the cost_event_id and cost_event_table_concept_id as proposed here Use the concept hierarchy.
- Use temporal for cumulative costs
- To estimate the effects of covariate – use featureextraction 2 and plp package.
- To calculate annualize cost – calculate the timeinccohort and costs using feature extraction 2 – and then divide (total cost/total days)*30 to get per person per month cost, or *365 to get per person per year cost!
- Cost specific of utilization – easy – same – subset cost records by linking them to drug, visit etc.