Hello,
Our team is working on the ICUdata project in the Netherlands (https://www.icudata.nl/ 1). Within ICUdata, we’re in the process of creating ETL pipelines and mapping our data model to OMOP. We’re currently working on populating the Measurements OMOP table and have encountered a strange use case:
- We’re trying to store a
transfusion_volume
measurement - As this value is retrieved from the MetaVision EHR: it is delivered as a range signal (within a range signal table) and includes both
start_timestamp
andend_timestamp
columns - As per the Athena domain standards documentation,
transfusion_volume
indeed falls within the domain of a Measurement, so this is the right table in which to store the data. - However, the OMOP Measurement table does not contain an
end_timestamp
field
We feel that simply omitting the end_timestamp
value would lead to valuable medical information being discarded and would like to avoid this.
Has a situation like this been encountered in the past and, if so, are there any recommendations?
Thanks in advance.