This function constructs a tibble representation of the INDIVIDUAL_RECORD from the GEDCOM 5.5.5 specification.
INDIVIDUAL_RECORD(
xref_indi,
names = list(),
sex_value = character(),
events = list(),
attributes = list(),
child_to_family_links = list(),
spouse_to_family_links = list(),
associations = list(),
user_reference_number = character(),
automated_record_id = character(),
date_changed = CHANGE_DATE(),
notes = list(),
source_citations = list(),
multimedia_links = list()
)
An xref ID of an Individual record.
A list of PERSONAL_NAME_STRUCTURE() objects giving the names associated with this individual.
A code that indicates the sex of the individual. Either "M" (male), "F" (female), "U" (undetermined), "X" (intersex), or "N" (not recorded).
A list of INDIVIDUAL_EVENT_STRUCTURE() objects giving the events associated with this individual.
A list of INDIVIDUAL_ATTRIBUTE_STRUCTURE() objects giving the attributes associated with this individual.
A list of CHILD_TO_FAMILY_LINK() objects giving the details of families this individual is a child of.
A list of SPOUSE_TO_FAMILY_LINK() objects giving the details of families this individual is a spouse of.
A list of ASSOCIATION_STRUCTURE() objects giving the details of individuals this individual is associated with.
A user-defined number or text that the submitter uses to identify this record.
A unique record identification number assigned to the record by the source system. This number is intended to serve as a more sure means of identification of a record for reconciling differences in data between two interfacing systems.
A CHANGE_DATE() object giving the time this record was last modified. If not provided, the current date is used.
A list of NOTE_STRUCTURE() objects.
A list of SOURCE_CITATION() objects.
A list of MULTIMEDIA_LINK() objects
A tidy tibble containing an INDIVIDUAL_RECORD part of a GEDCOM file.