Clinical Resources
Encounters
Overview
The Encounters page captures details about patient interactions with healthcare providers, including office visits, hospital admissions, telehealth sessions, and specialty consultations. Tracking encounters is essential for documenting care, supporting billing, and enabling clinical decision-making across the patient’s care continuum.
Clinical Data in Source Documents
Encounter information is often recorded in sections such as Progress Notes, Visit Summaries, Admission/Discharge Notes, or Telehealth Reports. The data may appear as:
- Unstructured narrative text describing the reason for visit, visit type, and provider specialty.
- Tables or structured sections indicating admission and discharge dates, encounter type, and facility information.
- Embedded metadata in C-CDAs containing standardized fields for date of service, encounter type, and identifiers.
Due to variability in source documents, encounter data can be fragmented across multiple sections, requiring careful extraction to ensure completeness.
JSON Output
The platform extracts encounter information into a standardized JSON structure, capturing key details of the patient visit:
- Encounter ID: Unique identifier for the encounter within the organization.
- Start Page / End Page: Document pages where the encounter is recorded.
- Note Type: Type of clinical note associated with the encounter (e.g., progress note, discharge summary).
- Date of Service: Date when the encounter occurred.
- Admission / Discharge Dates: Applicable for inpatient visits to track duration of stay.
- Telehealth Encounter: Boolean indicating how the visit was conducted.
truemeans a telehealth (virtual) visit;falsemeans an in-person, face to face visit. - Visit Type: Classification of the encounter, such as in-person (face to face), telehealth, outpatient, or inpatient.
- Facility Name: Name of the healthcare facility where the encounter took place.
- Specialty: Provider or service specialty involved in the encounter.
- Reason for Visit: Clinical rationale or follow-up description for the patient visit.
This structured format enables consistent record-keeping, facilitates analytics, and allows encounters to be integrated into broader EHR workflows.
FHIR Output
Extracted encounter data is mapped to the FHIR Encounter resource for interoperability. Key mappings include:
- Encounter ID → Encounter.identifier.value – Uniquely identifies the encounter within the organization.
- Status → Encounter.status – Indicates the completion status of the encounter (e.g., completed).
- Visit Type / Class → Encounter.class.code – Categorizes the encounter as outpatient, inpatient, or other types.
- Note Type / Specialty → Encounter.type.text – Captures the documentation type and clinical specialty.
- Date of Service / Admission / Discharge → Encounter.period.start / period.end – Provides temporal context for the encounter.
- Patient Reference → Encounter.subject – Links the encounter to the associated patient.
- Provider / Participant → Encounter.participant.actor – Associates the encounter with attending clinicians or care team members.
- Reason for Visit → Encounter.reasonCode.text – Documents the clinical rationale for the encounter.
- Telehealth / Virtual Services → Encounter.virtualService.channelType.text – Indicates virtual participation, including session metadata.
- Facility / Location → Encounter.location.location.display – Captures the site or clinic of the encounter.
This mapping ensures that encounter data is accurately represented, standardized, and interoperable, supporting clinical workflows, reporting, and analytics across healthcare systems.