Skip to main content
Encounter type represents a clinical encounter with patient information. The code snippet below shows how to use the Encounter type to create an encounter object.
JavaScript
type Encounter = {
  identifier?: string; // optional; max 36 characters
  patient: Patient;
};

Properties

Last modified on May 22, 2026