├── .gitignore ├── .gitmodules ├── README.md ├── cda ├── allergies_and_adverse_reactions │ └── Domain_Allergies_XMLExamples.xml ├── immunizations │ └── Unknown_Immunization_Status.xml ├── medications │ ├── Domain_Medications_XMLExamples.xml │ └── medication_1.xml ├── problems │ └── noKnownProblems.xml └── results │ ├── RESULT_Panel_with_Two_Ordinal_Values.xml │ ├── RESULT_Use_of_String_Value.xml │ └── RESULT_Value_Less_Than_Physical_Quantity.xml ├── fhir ├── allergies_and_adverse_reactions │ └── Domain_Allergies_XMLExamples.xml ├── immunizations │ └── Unknown_Immunization_Status.xml ├── medications │ ├── Domain_Medications_XMLExamples.xml │ ├── alogrithm.md │ └── medication_1.xml ├── problems │ └── noKnownProblems.xml └── results │ ├── RESULT_Panel_with_Two_Ordinal_Values.xml │ ├── RESULT_Use_of_String_Value.xml │ └── RESULT_Value_Less_Than_Physical_Quantity.xml └── load_cda.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *sw? 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FHIR/cda-examples-to-fhir/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FHIR/cda-examples-to-fhir/HEAD/README.md -------------------------------------------------------------------------------- /cda/allergies_and_adverse_reactions/Domain_Allergies_XMLExamples.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FHIR/cda-examples-to-fhir/HEAD/cda/allergies_and_adverse_reactions/Domain_Allergies_XMLExamples.xml -------------------------------------------------------------------------------- /cda/immunizations/Unknown_Immunization_Status.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FHIR/cda-examples-to-fhir/HEAD/cda/immunizations/Unknown_Immunization_Status.xml -------------------------------------------------------------------------------- /cda/medications/Domain_Medications_XMLExamples.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FHIR/cda-examples-to-fhir/HEAD/cda/medications/Domain_Medications_XMLExamples.xml -------------------------------------------------------------------------------- /cda/medications/medication_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FHIR/cda-examples-to-fhir/HEAD/cda/medications/medication_1.xml -------------------------------------------------------------------------------- /cda/problems/noKnownProblems.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FHIR/cda-examples-to-fhir/HEAD/cda/problems/noKnownProblems.xml -------------------------------------------------------------------------------- /cda/results/RESULT_Panel_with_Two_Ordinal_Values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FHIR/cda-examples-to-fhir/HEAD/cda/results/RESULT_Panel_with_Two_Ordinal_Values.xml -------------------------------------------------------------------------------- /cda/results/RESULT_Use_of_String_Value.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FHIR/cda-examples-to-fhir/HEAD/cda/results/RESULT_Use_of_String_Value.xml -------------------------------------------------------------------------------- /cda/results/RESULT_Value_Less_Than_Physical_Quantity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FHIR/cda-examples-to-fhir/HEAD/cda/results/RESULT_Value_Less_Than_Physical_Quantity.xml -------------------------------------------------------------------------------- /fhir/allergies_and_adverse_reactions/Domain_Allergies_XMLExamples.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fhir/immunizations/Unknown_Immunization_Status.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fhir/medications/Domain_Medications_XMLExamples.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FHIR/cda-examples-to-fhir/HEAD/fhir/medications/Domain_Medications_XMLExamples.xml -------------------------------------------------------------------------------- /fhir/medications/alogrithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FHIR/cda-examples-to-fhir/HEAD/fhir/medications/alogrithm.md -------------------------------------------------------------------------------- /fhir/medications/medication_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FHIR/cda-examples-to-fhir/HEAD/fhir/medications/medication_1.xml -------------------------------------------------------------------------------- /fhir/problems/noKnownProblems.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fhir/results/RESULT_Panel_with_Two_Ordinal_Values.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fhir/results/RESULT_Use_of_String_Value.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fhir/results/RESULT_Value_Less_Than_Physical_Quantity.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /load_cda.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FHIR/cda-examples-to-fhir/HEAD/load_cda.rb --------------------------------------------------------------------------------