/** * @name FamilyHistoryStatus * @description A code that identifies the status of the family history record. * @description partial | completed | entered-in-error | health-unknown * @see FamilyHistoryStatus * @version R4 * @author Roberto Araneda Espinoza */ export type FamilyHistoryStatusType = 'partial' | 'completed' | 'entered-in-error' | 'health-unknown';