Hello, @Christian_Reich .
I am developing a converter from v 5.2 to v.4. I have a question about condition_status_source_value / condition_status_concept_id. Should we store this information for v4? Release Notes for v5.2.0 ( https://github.com/OHDSI/CommonDataModel/issues/84 ) states that to store this information in v5.0-v.5.1, the observation table created records containing condition_status and used fact_relationship to connect with condition_occurrence. Thus, for v4, we see several solutions to this problem:
1 version: Create records with
v4.observation.observation_concept_id= v5.2.condtion_occurrence.condition_status_concept_id, v4.observation.person_id=v5.2.condition_occurrence.person_id
v4.observation.date=v5.2.condition_occurrence.condtion_start_date,
v4.observation.provider_id=v5.2.condition_occurrence.provider_id, v4.observation.visit_occurrence_id=v5.2.visit_occurrence_id, v4.observation_source_value=v5.2.condition_occurrence.condition_status_source_value,
v4.observation.relevant_condition_concept_id=v5.2.condition_occurrence.condition_concept_id
in Observation table
2 version: Because most of the v5.2.condtion_occurrence.condition_status_concept_id have concept_class = Qualification value ', the next fill option will be when:
v5.2.condtion_occurrence.condition_status_concept_id=v4.observation.value_as_concept_id,
v4.observation.observation_concept_id=0, v4.observation.person_id=v5.2.condition_occurrence.person_id
v4.observation.date=v5.2.condition_occurrence.condtion_start_date,
v4.observation.provider_id=v5.2.condition_occurrence.provider_id,
v4.observation.value_as_concept_id=v5.2.condtion_occurrence.condition_status_concept_id
v4.observation.value_as_string= v5.2.condition_occurrence.condition_status_source_value
v4.observation.visit_occurrence_id=v5.2.visit_occurrence_id,
v4.observation_source_value=NULL,
v4.observation.relevant_condition_concept_id=v5.2.condition_occurrence.condition_concept_id
But, unfortunately, we are not sure how much we need to add this information to v4 and thus dilute the main data in the Observation table with the large number of rows which are already present in condition_occurrence in order to preserve this information. And if we decide to transfer this data to v4, could you please tell me which observation_type_concept_id should we use in this case? What do you think about it? Thank you for any of your thoughts.