refs/refs/fhir-to-omop-demo/demo/translate/map/Organization.jq
lines 15–15 23 lines · jq 1# 2# Maps FHIR R4 Organization to OMOPCDM 5.4 care_site. 3# 4include "fhir"; 6def synthea_id: 7 .identifier[0].value 8;11Organization |12[13 "care_site", # TABLE14 .id, # care_site_id15 .name, # care_site_name16 null, # place_of_service_concept_id17 null, # location_id - comes from FHIR Location18 synthea_id, # care_site_source_value19 null # place_of_service_source_value20]21|22@tsv