Documentation
Common Data Model (CDM)
Convert Database to CDM (ETL)
Tool Specific Documentation
Common Data Model (CDM)
Convert Database to CDM (ETL)
Tool Specific Documentation
This is an old revision of the document!
Proposal Owner: Gowtham Rao, Chris Knoll, Klaus Bonadt
Discussion: http://forums.ohdsi.org/t/proposal-for-cost-table-adjustment/1842/12
Cost table description: http://www.ohdsi.org/web/wiki/doku.php?id=documentation:cdm:cost
Proposal overview:
1. Add Person_id to Cost table
2. Add billed_datetime, paid_datetime:
Use cases:
Analytic questions:
Importance:
Consequence of doing it:
Consequences of not doing it:
3. Change structure of Cost table from current de-normalized (for cost variables) to normalized (for cost variables) Proposed structure of new table.
Field | Required | Type | Description |
---|---|---|---|
cost_id | Yes | integer | A unique identifier for each COST record. |
person_id | Yes | integer | A unique identifier for each person. |
cost_event_id | Yes | integer | A foreign key identifier to the event (e.g. Measurement, Procedure, Visit, Drug Exposure, etc) record for which cost data are recorded. |
cost_domain_id | Yes | integer | The concept representing the domain of the cost event, from which the corresponding table can be inferred that contains the entity for which cost information is recorded. |
cost_type_concept_id | Yes | integer | A foreign key identifier to a concept in the CONCEPT table for the provenance or the source of the COST data: Calculated from insurance claim information, provider revenue, calculated from cost-to-charge ratio, reported from accounting database, etc. |
currency_concept_id | Yes | integer | A foreign key identifier to the concept representing the 3-letter code used to delineate international currencies, such as USD for US Dollar. |
cost_amount_type_concept_id | Yes | integer | cost_amount_type_concept_id to represent total_charge, total_cost, total_paid, paid_by_payer, paid_by_patient, paid_patient_coinsurance, paid_patient_deductible, paid_by_primary, paid_ingredient_cost, paid_dispensing_fee, payer_plan_period_id, amount_allowed. This allows to generalize the cost table and we represent arbitrary number of cost types. We can also represent international and custom use cases.cost_amount_type_concept_id to represent total_charge, total_cost, total_paid, paid_by_payer, paid_by_patient, paid_patient_coinsurance, paid_patient_deductible, paid_by_primary, paid_ingredient_cost, paid_dispensing_fee, payer_plan_period_id, amount_allowed. This allows to generalize the cost table and we represent arbitrary number of cost types. We can also represent international and custom use cases. |
cost_amount | Yes | float | This allows to generalize the cost table and we represent arbitrary number of cost types. We can also represent international and custom use cases.The actual financial transaction amount |
billed_datetime | No | datetime | The date and time a bill was generated for a service or encounter |
paid_datetime | No | datetime | The date and time payment was received for a service or encounter |
revenue_code_concept_id | No | integer | A foreign key referring to a Standard Concept ID in the Standardized Vocabularies for Revenue codes. |
drg_concept_id | No | integer | A foreign key referring to a Standard Concept ID in the Standardized Vocabularies for DRG codes. |
revenue_code_source_value | No | string(50) | The source code for the Revenue code as it appears in the source data, stored here for reference. |
drg_source_value | No | string(50) | The source code for the 3-digit DRG source code as it appears in the source data, stored here for reference. |