awacke1's picture
Update app.py
6c76acd
raw
history blame
10.1 kB
import streamlit as st
st.markdown("""
# FHIR Map to CCD
| CCD Templates | Emoji | FHIR Resources |
|---------------|-------|----------------|
| Patient Demographics | πŸ₯ | [Patient](https://www.hl7.org/fhir/patient.html) |
| Encounters | πŸ‘©β€βš•οΈ | [Encounter](https://www.hl7.org/fhir/encounter.html) |
| Procedures | πŸš‘ | [Procedure](https://www.hl7.org/fhir/procedure.html) |
| Laboratory Results | πŸ”¬ | [Observation](https://www.hl7.org/fhir/observation.html) |
| Vital Signs | πŸ“ˆ | [Observation](https://www.hl7.org/fhir/observation.html) |
| Clinical Notes | πŸ“ | [ClinicalImpression](https://www.hl7.org/fhir/clinicalimpression.html), [Composition](https://www.hl7.org/fhir/composition.html) |
| Medications | πŸ’Š | [MedicationStatement](https://www.hl7.org/fhir/medicationstatement.html), [MedicationRequest](https://www.hl7.org/fhir/medicationrequest.html) |
| Immunizations | πŸ“… | [Immunization](https://www.hl7.org/fhir/immunization.html) |
# Example CCD Documents for Standard Templates
## 1. πŸ₯ Patient Demographics
| Attribute | Description |
|-----------|-------------|
| Patient ID | Unique identifier for the patient |
| Name | Full name of the patient |
| Date of Birth | Birth date of the patient |
| Sex | Gender of the patient |
| Address | Residential address of the patient |
## 2. πŸ’Š Medications
| Attribute | Description |
|-----------|-------------|
| Medication Name | Name of the medication |
| Dosage | Dosage of the medication |
| Frequency | How often the medication is taken |
| Start Date | When the medication was started |
| End Date | When the medication was stopped |
## 3. πŸ‘©β€βš•οΈ Encounters
| Attribute | Description |
|-----------|-------------|
| Encounter ID | Unique identifier for the encounter |
| Encounter Type | Type of encounter (e.g., office visit, hospitalization) |
| Start Date/Time | When the encounter began |
| End Date/Time | When the encounter ended |
| Encounter Provider | Healthcare provider during the encounter |
## 4. πŸ”¬ Laboratory Results
| Attribute | Description |
|-----------|-------------|
| Test Name | Name of the lab test |
| Date/Time | When the lab test was performed |
| Result | Result of the lab test |
| Normal Range | Normal range for the lab test result |
## 5. πŸš‘ Procedures
| Attribute | Description |
|-----------|-------------|
| Procedure Name | Name of the procedure |
| Date/Time | When the procedure was performed |
| Performing Provider | Healthcare provider who performed the procedure |
## 6. πŸ“… Immunizations
| Attribute | Description |
|-----------|-------------|
| Vaccine Name | Name of the vaccine |
| Administration Date | When the vaccine was administered |
| Administering Provider | Healthcare provider who administered the vaccine |
## 7. πŸ“ˆ Vital Signs
| Attribute | Description |
|-----------|-------------|
| Vital Sign Type | Type of vital sign (e.g., blood pressure, temperature) |
| Date/Time | When the vital sign was measured |
| Value | Value of the vital sign |
| Unit | Unit of the vital sign value |
## 8. πŸ“ Clinical Notes
| Attribute | Description |
|-----------|-------------|
| Note Type | Type of clinical note (e.g., progress note, discharge summary) |
| Note Date | When the note was written |
| Note Author | Healthcare provider who wrote the note |
| Note Content | Content of the note |
# Example Messages for inputs of ADT, ORM, SIU, EDI, Procedures, Observations
## ADT (Admit/Discharge/Transfer) messages
| Patient ID | Name | Admission Date/Time | Discharge Date/Time | Clinical Encounter |
|------------|------|---------------------|---------------------|--------------------|
| 001 | John Doe | 2023-05-01 10:00 | 2023-05-10 10:00 | Heart Surgery |
## ORM (Order Entry) messages
| Order ID | Order Date/Time | Order Status | Relevant Clinical Data |
|----------|-----------------|--------------|------------------------|
| 1001 | 2023-05-01 11:00 | Completed | Lab Test: Blood Sugar Level |
## SIU (Scheduling Information Update) messages
| Patient Name | Appointment Date/Time | Provider Name | Relevant Clinical Information |
|--------------|-----------------------|---------------|-------------------------------|
| John Doe | 2023-05-15 10:00 | Dr. Smith | Follow-up: Heart Surgery |
## EDI (Electronic Data Interchange)
| Patient Information | Clinical Data | Billing Information |
|---------------------|---------------|---------------------|
| John Doe, Male, 55 | Heart Surgery | $5000 |
## Procedures
| Procedure Type | Date/Time of Procedure | Relevant Clinical Data or Reports |
|----------------|------------------------|-----------------------------------|
| Heart Surgery | 2023-05-01 12:00 | Surgery Successful |
## Observations
| Observation Type | Date/Time of Observation | Relevant Clinical Data or Reports |
|------------------|--------------------------|-----------------------------------|
| Blood Pressure | 2023-05-10 09:00 | 120/80 mmHg |
# πŸ₯ CCD (Consolidated Clinical Document Architecture) πŸ“„
The CCD is a document standard developed by Health Level Seven International (HL7) for the exchange of clinical information. πŸ”„ It is a universally accepted format for sharing clinical data across different electronic health record (EHR) systems. 🌐
## πŸ“š CCD Standard Templates πŸ“‹
The CCD standard includes templates for different types of clinical documents, like:
- πŸ“€ Discharge summaries
- πŸ—’οΈ Progress notes
- πŸ“„ Clinical summaries
These templates are based on existing document standards like the Continuity of Care Record (CCR). βœ…
## πŸ”„ Translation to CCD Format πŸ—‚οΈ
To translate different healthcare documents to the CCD format, follow these guidelines:
1. **ADT (Admit/Discharge/Transfer) messages** πŸ₯
- Patient registration, admission, transfer, and discharge
- Include patient demographic information, admission and discharge date/time, and clinical encounter information
2. **ORM (Order Entry) messages** πŸ’Š
- Contains requests for labs, procedures, or medication
- Include the order request, order date/time, order status, and any relevant clinical data
3. **SIU (Scheduling Information Update) messages** πŸ“†
- Used for scheduling appointments and updating appointment status
- Include the patient name, appointment date/time, provider name, and any relevant clinical information
4. **EDI (Electronic Data Interchange)** πŸ’»
- A standardized format for transmitting healthcare data
- Include patient information, clinical data, and billing information
5. **Procedures** πŸš‘
- Any procedures or surgeries performed on a patient
- Include the procedure type, date/time of the procedure, and any relevant clinical data or reports
6. **Observations** πŸ”¬
- Any relevant clinical observations or measurements
- Include the observation type, date/time of the observation, and any relevant clinical data or reports
In summary, the CCD is a standardized format for exchanging clinical information. To translate different healthcare documents to the CCD format, follow the guidelines above. ✨
Describe this as a markdown outline along with at least one emoji per sentence to indicate the theme.
Show as markdown code outline and table with example for each record type (minimal short example but show every code type and code value plus description for clinical terminology or terminology used for documentation and billing. The CCD (Consolidated Clinical Document Architecture) is a document standard developed by Health Level Seven International (HL7) for the exchange of clinical information between healthcare providers, patients, and other stakeholders. It is designed to be a universally accepted format for sharing clinical data across different electronic health record (EHR) systems.
The CCD standard includes a set of templates for different types of clinical documents, such as discharge summaries, progress notes, and clinical summaries. These templates are based on existing document standards like the Continuity of Care Record (CCR), but with updates and improvements.
To translate different healthcare documents to the CCD format, you need to follow certain guidelines:
1. ADT (Admit/Discharge/Transfer) messages: These are used for patient registration, admission, transfer, and discharge. To translate ADT messages to the CCD format, you need to include patient demographic information, admission and discharge date/time, and clinical encounter information.
2. ORM (Order Entry) messages: These messages contain requests for labs, procedures, or medication. When translating ORM messages to the CCD format, include the order request, order date/time, order status, and any relevant clinical data such as lab results.
3. SIU (Scheduling Information Update) messages: These messages are used for scheduling appointments and updating appointment status. To translate SIU messages to the CCD format, include the patient name, appointment date/time, provider name, and any relevant clinical information.
4. EDI (Electronic Data Interchange): This is a standardized format for transmitting healthcare data. To translate EDI messages to the CCD format, include patient information, clinical data, and billing information.
5. Procedures: This includes any procedures or surgeries performed on a patient. To translate procedures to the CCD format, include the procedure type, date/time of the procedure, and any relevant clinical data or reports.
6. Observations: This includes any relevant clinical observations or measurements, such as blood pressure, temperature, or lab results. To translate observations to the CCD format, include the observation type, date/time of the observation, and any relevant clinical data or reports.
In summary, the CCD is a standardized format for exchanging clinical information between healthcare systems. To translate different healthcare documents to the CCD format, you need to follow the guidelines for including patient information, clinical data, and any relevant reports or observations.
""")