Documentation Index Fetch the complete documentation index at: https://developer.suki.ai/llms.txt
Use this file to discover all available pages before exploring further.
Overview
Patient type represents demographic and identification information. The code snippet below shows how to use the Patient type to create a patient object.
type Patient = {
identifier : string ;
kind ?: string ;
name : {
use : string ;
family : string ;
given : string [] ;
suffix : string [] ;
};
birthDate : string ;
gender : " MALE " | " FEMALE " | " UNKNOWN " ;
};
Properties
Optional - Date of birth in YYYY-MM-DD format
Optional - Patient’s gender. Use “UNKNOWN” if gender information is not available
Unique identifier for the patient
Kind of patient (e.g., “human”, “animal”)
Given names (first names)
Use of the name (e.g., “usual”, “official”, “nickname”)