├── .gitignore ├── FHIR-omop.xml ├── README.md ├── _build.bat ├── _build.sh ├── _gencontinuous.bat ├── _gencontinuous.sh ├── _genonce.bat ├── _genonce.sh ├── _updatePublisher.bat ├── _updatePublisher.sh ├── ig.ini ├── input ├── fsh │ ├── CareSite.fsh │ ├── ConditionEra.fsh │ ├── ConditionOccurrence.fsh │ ├── Cost.fsh │ ├── Death.fsh │ ├── DeviceExposure.fsh │ ├── DoseEra.fsh │ ├── DrugEra.fsh │ ├── DrugExposure.fsh │ ├── Episode.fsh │ ├── EpisodeEvent.fsh │ ├── FactRelationship.fsh │ ├── Location.fsh │ ├── Measurement.fsh │ ├── Note.fsh │ ├── NoteNLP.fsh │ ├── Observation.fsh │ ├── ObservationPeriod.fsh │ ├── PayerPlanPeriod.fsh │ ├── Person.fsh │ ├── ProcedureOccurrence.fsh │ ├── Provider.fsh │ ├── Specimen.fsh │ ├── VisitDetail.fsh │ └── VisitOccurrence.fsh ├── ignoreWarnings.txt ├── images │ ├── Code Prioritization Framework.jpg │ ├── OHDSI_Collaborators_July2025.png │ ├── RWD Conceptual Application Diagram.png │ ├── cdm54.png │ ├── code_prioritization_framework.svg │ ├── codeable_concept_decision_tree.svg │ ├── fhir_omop_ai_diagram.svg │ ├── fhir_omop_base_pattern.svg │ ├── fhir_omop_mapping_flow (4).svg │ ├── rwd_conceptual_application.png │ └── value_as_concept_pattern.svg ├── maps │ ├── Allergy.fml │ ├── EncounterVisit.fml │ ├── ImmunizationMap.fml │ ├── Measurement.fml │ ├── Observation.fml │ ├── PersonMap.fml │ ├── Procedure.fml │ ├── condition.fml │ └── medication.fml └── pagecontent │ ├── CodeMappingBasePattern.md │ ├── CodeableConceptPattern.md │ ├── F2OGeneralIssues.md │ ├── StrategiesBestPractices.md │ ├── StructureMap-AllergyMap-intro.md │ ├── StructureMap-ConditionMap-intro.md │ ├── StructureMap-EncounterVisitMap-intro.md │ ├── StructureMap-ImmunizationMap-intro.md │ ├── StructureMap-MeasurementMap-intro.md │ ├── StructureMap-MedicationMap-intro.md │ ├── StructureMap-ObservationMap-intro.md │ ├── StructureMap-PersonMap-intro.md │ ├── StructureMap-ProcedureMap-intro.md │ ├── TerminologyServer.md │ ├── UseCases.md │ ├── ValueAsConceptPattern.md │ ├── codemappings.md │ ├── credits.md │ ├── index.md │ └── technical_artifacts.md ├── publication-request.json ├── sushi-config.yaml └── sushi-ignorewarnings.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/.gitignore -------------------------------------------------------------------------------- /FHIR-omop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/FHIR-omop.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # fhir-omop-ig 2 | -------------------------------------------------------------------------------- /_build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/_build.bat -------------------------------------------------------------------------------- /_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/_build.sh -------------------------------------------------------------------------------- /_gencontinuous.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | CALL ./_genonce.bat -watch -------------------------------------------------------------------------------- /_gencontinuous.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ./_genonce.sh -watch 3 | -------------------------------------------------------------------------------- /_genonce.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/_genonce.bat -------------------------------------------------------------------------------- /_genonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/_genonce.sh -------------------------------------------------------------------------------- /_updatePublisher.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/_updatePublisher.bat -------------------------------------------------------------------------------- /_updatePublisher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/_updatePublisher.sh -------------------------------------------------------------------------------- /ig.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/ig.ini -------------------------------------------------------------------------------- /input/fsh/CareSite.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/fsh/CareSite.fsh -------------------------------------------------------------------------------- /input/fsh/ConditionEra.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/fsh/ConditionEra.fsh -------------------------------------------------------------------------------- /input/fsh/ConditionOccurrence.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/fsh/ConditionOccurrence.fsh -------------------------------------------------------------------------------- /input/fsh/Cost.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/fsh/Cost.fsh -------------------------------------------------------------------------------- /input/fsh/Death.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/fsh/Death.fsh -------------------------------------------------------------------------------- /input/fsh/DeviceExposure.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/fsh/DeviceExposure.fsh -------------------------------------------------------------------------------- /input/fsh/DoseEra.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/fsh/DoseEra.fsh -------------------------------------------------------------------------------- /input/fsh/DrugEra.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/fsh/DrugEra.fsh -------------------------------------------------------------------------------- /input/fsh/DrugExposure.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/fsh/DrugExposure.fsh -------------------------------------------------------------------------------- /input/fsh/Episode.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/fsh/Episode.fsh -------------------------------------------------------------------------------- /input/fsh/EpisodeEvent.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/fsh/EpisodeEvent.fsh -------------------------------------------------------------------------------- /input/fsh/FactRelationship.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/fsh/FactRelationship.fsh -------------------------------------------------------------------------------- /input/fsh/Location.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/fsh/Location.fsh -------------------------------------------------------------------------------- /input/fsh/Measurement.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/fsh/Measurement.fsh -------------------------------------------------------------------------------- /input/fsh/Note.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/fsh/Note.fsh -------------------------------------------------------------------------------- /input/fsh/NoteNLP.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/fsh/NoteNLP.fsh -------------------------------------------------------------------------------- /input/fsh/Observation.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/fsh/Observation.fsh -------------------------------------------------------------------------------- /input/fsh/ObservationPeriod.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/fsh/ObservationPeriod.fsh -------------------------------------------------------------------------------- /input/fsh/PayerPlanPeriod.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/fsh/PayerPlanPeriod.fsh -------------------------------------------------------------------------------- /input/fsh/Person.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/fsh/Person.fsh -------------------------------------------------------------------------------- /input/fsh/ProcedureOccurrence.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/fsh/ProcedureOccurrence.fsh -------------------------------------------------------------------------------- /input/fsh/Provider.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/fsh/Provider.fsh -------------------------------------------------------------------------------- /input/fsh/Specimen.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/fsh/Specimen.fsh -------------------------------------------------------------------------------- /input/fsh/VisitDetail.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/fsh/VisitDetail.fsh -------------------------------------------------------------------------------- /input/fsh/VisitOccurrence.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/fsh/VisitOccurrence.fsh -------------------------------------------------------------------------------- /input/ignoreWarnings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/ignoreWarnings.txt -------------------------------------------------------------------------------- /input/images/Code Prioritization Framework.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/images/Code Prioritization Framework.jpg -------------------------------------------------------------------------------- /input/images/OHDSI_Collaborators_July2025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/images/OHDSI_Collaborators_July2025.png -------------------------------------------------------------------------------- /input/images/RWD Conceptual Application Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/images/RWD Conceptual Application Diagram.png -------------------------------------------------------------------------------- /input/images/cdm54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/images/cdm54.png -------------------------------------------------------------------------------- /input/images/code_prioritization_framework.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/images/code_prioritization_framework.svg -------------------------------------------------------------------------------- /input/images/codeable_concept_decision_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/images/codeable_concept_decision_tree.svg -------------------------------------------------------------------------------- /input/images/fhir_omop_ai_diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/images/fhir_omop_ai_diagram.svg -------------------------------------------------------------------------------- /input/images/fhir_omop_base_pattern.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/images/fhir_omop_base_pattern.svg -------------------------------------------------------------------------------- /input/images/fhir_omop_mapping_flow (4).svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/images/fhir_omop_mapping_flow (4).svg -------------------------------------------------------------------------------- /input/images/rwd_conceptual_application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/images/rwd_conceptual_application.png -------------------------------------------------------------------------------- /input/images/value_as_concept_pattern.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/images/value_as_concept_pattern.svg -------------------------------------------------------------------------------- /input/maps/Allergy.fml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/maps/Allergy.fml -------------------------------------------------------------------------------- /input/maps/EncounterVisit.fml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/maps/EncounterVisit.fml -------------------------------------------------------------------------------- /input/maps/ImmunizationMap.fml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/maps/ImmunizationMap.fml -------------------------------------------------------------------------------- /input/maps/Measurement.fml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/maps/Measurement.fml -------------------------------------------------------------------------------- /input/maps/Observation.fml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/maps/Observation.fml -------------------------------------------------------------------------------- /input/maps/PersonMap.fml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/maps/PersonMap.fml -------------------------------------------------------------------------------- /input/maps/Procedure.fml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/maps/Procedure.fml -------------------------------------------------------------------------------- /input/maps/condition.fml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/maps/condition.fml -------------------------------------------------------------------------------- /input/maps/medication.fml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/maps/medication.fml -------------------------------------------------------------------------------- /input/pagecontent/CodeMappingBasePattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/pagecontent/CodeMappingBasePattern.md -------------------------------------------------------------------------------- /input/pagecontent/CodeableConceptPattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/pagecontent/CodeableConceptPattern.md -------------------------------------------------------------------------------- /input/pagecontent/F2OGeneralIssues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/pagecontent/F2OGeneralIssues.md -------------------------------------------------------------------------------- /input/pagecontent/StrategiesBestPractices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/pagecontent/StrategiesBestPractices.md -------------------------------------------------------------------------------- /input/pagecontent/StructureMap-AllergyMap-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/pagecontent/StructureMap-AllergyMap-intro.md -------------------------------------------------------------------------------- /input/pagecontent/StructureMap-ConditionMap-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/pagecontent/StructureMap-ConditionMap-intro.md -------------------------------------------------------------------------------- /input/pagecontent/StructureMap-EncounterVisitMap-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/pagecontent/StructureMap-EncounterVisitMap-intro.md -------------------------------------------------------------------------------- /input/pagecontent/StructureMap-ImmunizationMap-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/pagecontent/StructureMap-ImmunizationMap-intro.md -------------------------------------------------------------------------------- /input/pagecontent/StructureMap-MeasurementMap-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/pagecontent/StructureMap-MeasurementMap-intro.md -------------------------------------------------------------------------------- /input/pagecontent/StructureMap-MedicationMap-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/pagecontent/StructureMap-MedicationMap-intro.md -------------------------------------------------------------------------------- /input/pagecontent/StructureMap-ObservationMap-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/pagecontent/StructureMap-ObservationMap-intro.md -------------------------------------------------------------------------------- /input/pagecontent/StructureMap-PersonMap-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/pagecontent/StructureMap-PersonMap-intro.md -------------------------------------------------------------------------------- /input/pagecontent/StructureMap-ProcedureMap-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/pagecontent/StructureMap-ProcedureMap-intro.md -------------------------------------------------------------------------------- /input/pagecontent/TerminologyServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/pagecontent/TerminologyServer.md -------------------------------------------------------------------------------- /input/pagecontent/UseCases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/pagecontent/UseCases.md -------------------------------------------------------------------------------- /input/pagecontent/ValueAsConceptPattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/pagecontent/ValueAsConceptPattern.md -------------------------------------------------------------------------------- /input/pagecontent/codemappings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/pagecontent/codemappings.md -------------------------------------------------------------------------------- /input/pagecontent/credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/pagecontent/credits.md -------------------------------------------------------------------------------- /input/pagecontent/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/pagecontent/index.md -------------------------------------------------------------------------------- /input/pagecontent/technical_artifacts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/input/pagecontent/technical_artifacts.md -------------------------------------------------------------------------------- /publication-request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/publication-request.json -------------------------------------------------------------------------------- /sushi-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HL7/fhir-omop-ig/HEAD/sushi-config.yaml -------------------------------------------------------------------------------- /sushi-ignorewarnings.txt: -------------------------------------------------------------------------------- 1 | /Inadvisable path/ --------------------------------------------------------------------------------