├── .gitignore ├── .gitmodules ├── .travis.yml ├── Dockerfile ├── LICENSE ├── README.md ├── bin ├── allergy.py ├── clinicalnote.py ├── codes.py ├── docs.py ├── document.py ├── familyhistory.py ├── fhir.py ├── fhir_templates │ ├── allergy.xml │ ├── binary.xml │ ├── blood_pressure.xml │ ├── condition.xml │ ├── document.xml │ ├── encounter.xml │ ├── entry.xml │ ├── family_history.xml │ ├── general_observation.xml │ ├── imagingstudy.xml │ ├── immunization.xml │ ├── medication.xml │ ├── medication_dispense.xml │ ├── no_known_allergies.xml │ ├── observation.xml │ ├── patient.xml │ ├── practitioner.xml │ ├── procedure.xml │ └── smoking_status.xml ├── generate.py ├── imagingstudy.py ├── immunization.py ├── lab.py ├── med.py ├── patient.py ├── problem.py ├── procedure.py ├── refill.py ├── socialhistory.py ├── testdata.py ├── vitals.py └── vitalspatientgenerator.py ├── custom-data ├── README.md ├── argonaut-lab-data.json ├── asthma-brain-bundle.xml ├── generate.sh ├── hca-fhir-importer.json ├── heathedatainc-labs.xml ├── hspc-appointments.json ├── hspc-bilirubin-chart.json ├── nest_patient_data.json ├── raw │ ├── argonaut-lab-data │ │ └── to-fhir.py │ └── rheum-pacer-sample-data │ │ ├── Patient 1 │ │ ├── AllergyIntolerance.txt │ │ ├── Condition.txt │ │ ├── DiagnosticReport.txt │ │ ├── Encounter.txt │ │ ├── Immunization.txt │ │ ├── MedicationPrescription.txt │ │ ├── Observation.txt │ │ └── Patient.txt │ │ ├── Patient 2 │ │ ├── AllergyIntolerance.txt │ │ ├── Condition.txt │ │ ├── DiagnosticReport.txt │ │ ├── Encounter.txt │ │ ├── Immunization.txt │ │ ├── MedicationPrescription.txt │ │ ├── Observation.txt │ │ └── Patient.txt │ │ ├── deletes-001.txt │ │ ├── deletes-002.txt │ │ ├── generate-deletes.sh │ │ └── to-fhir.py └── rheum-pacer-sample-data.json ├── data ├── allergies.txt ├── clinicalnotes.txt ├── documents.txt ├── documents │ ├── 2169591 │ │ ├── note1.txt │ │ ├── note2.txt │ │ └── note3.txt │ └── 99912345 │ │ ├── IM-0001-0011.dcm │ │ ├── IM-0001-0012.dcm │ │ ├── IM-0001-0013.dcm │ │ ├── IM-0001-0021.dcm │ │ ├── IM-0001-0022.dcm │ │ ├── IM-0002-0011.dcm │ │ ├── IM-0002-0012.dcm │ │ ├── IM-0002-0013.dcm │ │ ├── IM-0002-0021.dcm │ │ ├── IM-0002-0022.dcm │ │ ├── note1.txt │ │ ├── notes6267.txt │ │ ├── photo831.jpg │ │ ├── report4521.pdf │ │ └── reportScan713.png ├── familyhistory.txt ├── imagingstudies.txt ├── immunizations.txt ├── labs.txt ├── meds.txt ├── patients.txt ├── problems.txt ├── procedures.txt ├── refills.txt ├── socialhistory.txt ├── vitals.txt └── vitals_from_i2b2_demodata.sql ├── generated-data └── .gitignore ├── maps └── short_loinc.txt ├── requirements.txt └── ri-data ├── ri-conds.txt ├── ri-meds.txt ├── ri-obs.txt ├── ri-patients.txt └── ri-sigs.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/README.md -------------------------------------------------------------------------------- /bin/allergy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/allergy.py -------------------------------------------------------------------------------- /bin/clinicalnote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/clinicalnote.py -------------------------------------------------------------------------------- /bin/codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/codes.py -------------------------------------------------------------------------------- /bin/docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/docs.py -------------------------------------------------------------------------------- /bin/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/document.py -------------------------------------------------------------------------------- /bin/familyhistory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/familyhistory.py -------------------------------------------------------------------------------- /bin/fhir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/fhir.py -------------------------------------------------------------------------------- /bin/fhir_templates/allergy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/fhir_templates/allergy.xml -------------------------------------------------------------------------------- /bin/fhir_templates/binary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/fhir_templates/binary.xml -------------------------------------------------------------------------------- /bin/fhir_templates/blood_pressure.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/fhir_templates/blood_pressure.xml -------------------------------------------------------------------------------- /bin/fhir_templates/condition.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/fhir_templates/condition.xml -------------------------------------------------------------------------------- /bin/fhir_templates/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/fhir_templates/document.xml -------------------------------------------------------------------------------- /bin/fhir_templates/encounter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/fhir_templates/encounter.xml -------------------------------------------------------------------------------- /bin/fhir_templates/entry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/fhir_templates/entry.xml -------------------------------------------------------------------------------- /bin/fhir_templates/family_history.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/fhir_templates/family_history.xml -------------------------------------------------------------------------------- /bin/fhir_templates/general_observation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/fhir_templates/general_observation.xml -------------------------------------------------------------------------------- /bin/fhir_templates/imagingstudy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/fhir_templates/imagingstudy.xml -------------------------------------------------------------------------------- /bin/fhir_templates/immunization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/fhir_templates/immunization.xml -------------------------------------------------------------------------------- /bin/fhir_templates/medication.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/fhir_templates/medication.xml -------------------------------------------------------------------------------- /bin/fhir_templates/medication_dispense.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/fhir_templates/medication_dispense.xml -------------------------------------------------------------------------------- /bin/fhir_templates/no_known_allergies.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/fhir_templates/no_known_allergies.xml -------------------------------------------------------------------------------- /bin/fhir_templates/observation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/fhir_templates/observation.xml -------------------------------------------------------------------------------- /bin/fhir_templates/patient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/fhir_templates/patient.xml -------------------------------------------------------------------------------- /bin/fhir_templates/practitioner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/fhir_templates/practitioner.xml -------------------------------------------------------------------------------- /bin/fhir_templates/procedure.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/fhir_templates/procedure.xml -------------------------------------------------------------------------------- /bin/fhir_templates/smoking_status.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/fhir_templates/smoking_status.xml -------------------------------------------------------------------------------- /bin/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/generate.py -------------------------------------------------------------------------------- /bin/imagingstudy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/imagingstudy.py -------------------------------------------------------------------------------- /bin/immunization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/immunization.py -------------------------------------------------------------------------------- /bin/lab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/lab.py -------------------------------------------------------------------------------- /bin/med.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/med.py -------------------------------------------------------------------------------- /bin/patient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/patient.py -------------------------------------------------------------------------------- /bin/problem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/problem.py -------------------------------------------------------------------------------- /bin/procedure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/procedure.py -------------------------------------------------------------------------------- /bin/refill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/refill.py -------------------------------------------------------------------------------- /bin/socialhistory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/socialhistory.py -------------------------------------------------------------------------------- /bin/testdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/testdata.py -------------------------------------------------------------------------------- /bin/vitals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/vitals.py -------------------------------------------------------------------------------- /bin/vitalspatientgenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/bin/vitalspatientgenerator.py -------------------------------------------------------------------------------- /custom-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/custom-data/README.md -------------------------------------------------------------------------------- /custom-data/argonaut-lab-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/custom-data/argonaut-lab-data.json -------------------------------------------------------------------------------- /custom-data/asthma-brain-bundle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/custom-data/asthma-brain-bundle.xml -------------------------------------------------------------------------------- /custom-data/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/custom-data/generate.sh -------------------------------------------------------------------------------- /custom-data/hca-fhir-importer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/custom-data/hca-fhir-importer.json -------------------------------------------------------------------------------- /custom-data/heathedatainc-labs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/custom-data/heathedatainc-labs.xml -------------------------------------------------------------------------------- /custom-data/hspc-appointments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/custom-data/hspc-appointments.json -------------------------------------------------------------------------------- /custom-data/hspc-bilirubin-chart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/custom-data/hspc-bilirubin-chart.json -------------------------------------------------------------------------------- /custom-data/nest_patient_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/custom-data/nest_patient_data.json -------------------------------------------------------------------------------- /custom-data/raw/argonaut-lab-data/to-fhir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/custom-data/raw/argonaut-lab-data/to-fhir.py -------------------------------------------------------------------------------- /custom-data/raw/rheum-pacer-sample-data/Patient 1/AllergyIntolerance.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/custom-data/raw/rheum-pacer-sample-data/Patient 1/AllergyIntolerance.txt -------------------------------------------------------------------------------- /custom-data/raw/rheum-pacer-sample-data/Patient 1/Condition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/custom-data/raw/rheum-pacer-sample-data/Patient 1/Condition.txt -------------------------------------------------------------------------------- /custom-data/raw/rheum-pacer-sample-data/Patient 1/DiagnosticReport.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/custom-data/raw/rheum-pacer-sample-data/Patient 1/DiagnosticReport.txt -------------------------------------------------------------------------------- /custom-data/raw/rheum-pacer-sample-data/Patient 1/Encounter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/custom-data/raw/rheum-pacer-sample-data/Patient 1/Encounter.txt -------------------------------------------------------------------------------- /custom-data/raw/rheum-pacer-sample-data/Patient 1/Immunization.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/custom-data/raw/rheum-pacer-sample-data/Patient 1/Immunization.txt -------------------------------------------------------------------------------- /custom-data/raw/rheum-pacer-sample-data/Patient 1/MedicationPrescription.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/custom-data/raw/rheum-pacer-sample-data/Patient 1/MedicationPrescription.txt -------------------------------------------------------------------------------- /custom-data/raw/rheum-pacer-sample-data/Patient 1/Observation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/custom-data/raw/rheum-pacer-sample-data/Patient 1/Observation.txt -------------------------------------------------------------------------------- /custom-data/raw/rheum-pacer-sample-data/Patient 1/Patient.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/custom-data/raw/rheum-pacer-sample-data/Patient 1/Patient.txt -------------------------------------------------------------------------------- /custom-data/raw/rheum-pacer-sample-data/Patient 2/AllergyIntolerance.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/custom-data/raw/rheum-pacer-sample-data/Patient 2/AllergyIntolerance.txt -------------------------------------------------------------------------------- /custom-data/raw/rheum-pacer-sample-data/Patient 2/Condition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/custom-data/raw/rheum-pacer-sample-data/Patient 2/Condition.txt -------------------------------------------------------------------------------- /custom-data/raw/rheum-pacer-sample-data/Patient 2/DiagnosticReport.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/custom-data/raw/rheum-pacer-sample-data/Patient 2/DiagnosticReport.txt -------------------------------------------------------------------------------- /custom-data/raw/rheum-pacer-sample-data/Patient 2/Encounter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/custom-data/raw/rheum-pacer-sample-data/Patient 2/Encounter.txt -------------------------------------------------------------------------------- /custom-data/raw/rheum-pacer-sample-data/Patient 2/Immunization.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/custom-data/raw/rheum-pacer-sample-data/Patient 2/Immunization.txt -------------------------------------------------------------------------------- /custom-data/raw/rheum-pacer-sample-data/Patient 2/MedicationPrescription.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/custom-data/raw/rheum-pacer-sample-data/Patient 2/MedicationPrescription.txt -------------------------------------------------------------------------------- /custom-data/raw/rheum-pacer-sample-data/Patient 2/Observation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/custom-data/raw/rheum-pacer-sample-data/Patient 2/Observation.txt -------------------------------------------------------------------------------- /custom-data/raw/rheum-pacer-sample-data/Patient 2/Patient.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/custom-data/raw/rheum-pacer-sample-data/Patient 2/Patient.txt -------------------------------------------------------------------------------- /custom-data/raw/rheum-pacer-sample-data/deletes-001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/custom-data/raw/rheum-pacer-sample-data/deletes-001.txt -------------------------------------------------------------------------------- /custom-data/raw/rheum-pacer-sample-data/deletes-002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/custom-data/raw/rheum-pacer-sample-data/deletes-002.txt -------------------------------------------------------------------------------- /custom-data/raw/rheum-pacer-sample-data/generate-deletes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/custom-data/raw/rheum-pacer-sample-data/generate-deletes.sh -------------------------------------------------------------------------------- /custom-data/raw/rheum-pacer-sample-data/to-fhir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/custom-data/raw/rheum-pacer-sample-data/to-fhir.py -------------------------------------------------------------------------------- /custom-data/rheum-pacer-sample-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/custom-data/rheum-pacer-sample-data.json -------------------------------------------------------------------------------- /data/allergies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/data/allergies.txt -------------------------------------------------------------------------------- /data/clinicalnotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/data/clinicalnotes.txt -------------------------------------------------------------------------------- /data/documents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/data/documents.txt -------------------------------------------------------------------------------- /data/documents/2169591/note1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/data/documents/2169591/note1.txt -------------------------------------------------------------------------------- /data/documents/2169591/note2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/data/documents/2169591/note2.txt -------------------------------------------------------------------------------- /data/documents/2169591/note3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/data/documents/2169591/note3.txt -------------------------------------------------------------------------------- /data/documents/99912345/IM-0001-0011.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/data/documents/99912345/IM-0001-0011.dcm -------------------------------------------------------------------------------- /data/documents/99912345/IM-0001-0012.dcm: -------------------------------------------------------------------------------- 1 | IM-0001-0011.dcm -------------------------------------------------------------------------------- /data/documents/99912345/IM-0001-0013.dcm: -------------------------------------------------------------------------------- 1 | IM-0001-0011.dcm -------------------------------------------------------------------------------- /data/documents/99912345/IM-0001-0021.dcm: -------------------------------------------------------------------------------- 1 | IM-0001-0011.dcm -------------------------------------------------------------------------------- /data/documents/99912345/IM-0001-0022.dcm: -------------------------------------------------------------------------------- 1 | IM-0001-0011.dcm -------------------------------------------------------------------------------- /data/documents/99912345/IM-0002-0011.dcm: -------------------------------------------------------------------------------- 1 | IM-0001-0011.dcm -------------------------------------------------------------------------------- /data/documents/99912345/IM-0002-0012.dcm: -------------------------------------------------------------------------------- 1 | IM-0001-0011.dcm -------------------------------------------------------------------------------- /data/documents/99912345/IM-0002-0013.dcm: -------------------------------------------------------------------------------- 1 | IM-0001-0011.dcm -------------------------------------------------------------------------------- /data/documents/99912345/IM-0002-0021.dcm: -------------------------------------------------------------------------------- 1 | IM-0001-0011.dcm -------------------------------------------------------------------------------- /data/documents/99912345/IM-0002-0022.dcm: -------------------------------------------------------------------------------- 1 | IM-0001-0011.dcm -------------------------------------------------------------------------------- /data/documents/99912345/note1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/data/documents/99912345/note1.txt -------------------------------------------------------------------------------- /data/documents/99912345/notes6267.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/data/documents/99912345/notes6267.txt -------------------------------------------------------------------------------- /data/documents/99912345/photo831.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/data/documents/99912345/photo831.jpg -------------------------------------------------------------------------------- /data/documents/99912345/report4521.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/data/documents/99912345/report4521.pdf -------------------------------------------------------------------------------- /data/documents/99912345/reportScan713.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/data/documents/99912345/reportScan713.png -------------------------------------------------------------------------------- /data/familyhistory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/data/familyhistory.txt -------------------------------------------------------------------------------- /data/imagingstudies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/data/imagingstudies.txt -------------------------------------------------------------------------------- /data/immunizations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/data/immunizations.txt -------------------------------------------------------------------------------- /data/labs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/data/labs.txt -------------------------------------------------------------------------------- /data/meds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/data/meds.txt -------------------------------------------------------------------------------- /data/patients.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/data/patients.txt -------------------------------------------------------------------------------- /data/problems.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/data/problems.txt -------------------------------------------------------------------------------- /data/procedures.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/data/procedures.txt -------------------------------------------------------------------------------- /data/refills.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/data/refills.txt -------------------------------------------------------------------------------- /data/socialhistory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/data/socialhistory.txt -------------------------------------------------------------------------------- /data/vitals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/data/vitals.txt -------------------------------------------------------------------------------- /data/vitals_from_i2b2_demodata.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/data/vitals_from_i2b2_demodata.sql -------------------------------------------------------------------------------- /generated-data/.gitignore: -------------------------------------------------------------------------------- 1 | *.* -------------------------------------------------------------------------------- /maps/short_loinc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/maps/short_loinc.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Jinja2==2.6 2 | -------------------------------------------------------------------------------- /ri-data/ri-conds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/ri-data/ri-conds.txt -------------------------------------------------------------------------------- /ri-data/ri-meds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/ri-data/ri-meds.txt -------------------------------------------------------------------------------- /ri-data/ri-obs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/ri-data/ri-obs.txt -------------------------------------------------------------------------------- /ri-data/ri-patients.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/ri-data/ri-patients.txt -------------------------------------------------------------------------------- /ri-data/ri-sigs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/sample-patients/HEAD/ri-data/ri-sigs.txt --------------------------------------------------------------------------------