Patient type to create a patient object.
JavaScript
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Web SDK now supports Medication Orders -> Learn more
Patient type represents demographic and identification information
Patient type to create a patient object.
type Patient = {
identifier: string; // max 36 characters
kind?: string;
name: {
use: string;
family: string;
given: string[];
suffix: string[];
};
birthDate: string;
gender: "MALE" | "FEMALE" | "UNKNOWN";
};
Hide properties
Was this page helpful?
Suggestions