Capturing the Clinical Story: Notes and Flowsheets
Purpose: To learn how Epic captures the complete patient story by combining unstructured clinical narratives (notes) with structured, discrete data (flowsheets).
Two Forms of Documentation
Section titled “Two Forms of Documentation”Clinical documentation is a tale of two data types. On one side, you have unstructured notes, which capture the nuanced story, context, and thinking of a clinician. On the other, you have structured flowsheets, which record discrete, consistent measurements like vital signs and assessments. Both are essential for a complete picture of patient care.
The Clinical Narrative: Notes and Documents
Section titled “The Clinical Narrative: Notes and Documents”Clinical notes are the heart of the patient’s story. Epic’s system stores a wide variety of note types from different authors.
Each note has metadata (author, time, status) and the narrative content itself, which are stored in separate tables.
Epic also stores external documents, such as scanned records from other facilities.
Structured Data Capture: Flowsheets
Section titled “Structured Data Capture: Flowsheets”Flowsheets are used to capture discrete clinical data in a structured, template-based format. This is where you’ll find vital signs, pain scores, and other recurring assessments.
> Note: This EHI export appears to be missing vital signs data. The flowsheet structure is present, but the actual measurement values are not populated. This is a limitation of this particular data extract.
TODO: This query returns no results due to missing vital signs data in this EHI export
Flowsheets use a template system (FLOWSHEET_MEAS
) to define what can be measured, while the actual values are stored in IP_FLWSHT_MEAS
.
TODO: This query returns no results due to missing flowsheet data in this EHI export
Connecting Documentation to Encounters
Section titled “Connecting Documentation to Encounters”Both notes and flowsheet data are linked to the encounter where they were recorded, providing essential context.
TODO: This query returns no results due to missing flowsheet data in this EHI export
Key Takeaways
Section titled “Key Takeaways”- Two Documentation Types: Epic uses unstructured notes (
HNO_INFO
,HNO_NOTE_TEXT
) for narrative and structured flowsheets (IP_FLWSHT_MEAS
) for discrete data. - Note Structure: Note metadata (author, type, status) is stored in
HNO_INFO
, while the actual text is inHNO_PLAIN_TEXT
. - Flowsheet Structure: Flowsheet rows (
IP_FLOWSHEET_ROWS
) define the measurements, and the patient-specific values are stored inIP_FLWSHT_MEAS
. - External Documents: Scanned and external files are managed in
DOC_INFORMATION
. - Context is Critical: Both notes and flowsheet entries are linked to a specific encounter (
PAT_ENC_CSN_ID
), providing vital context for the documentation. - Data Quality: Flowsheet values (
FLO_CATEGORY_VALUE
) are stored as text and may require conversion for analysis.