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.
🚀 New Form Filling SDK is out! Refer to the Release notes for details.
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