/** * @file enum/system/person.ts * @description Defines enums for personal metadata related to contributors and researchers. */ /** * Standard gender classification for demographic and administrative metadata. */ export enum Gender { /** Identifies as male. */ MALE = 'male', /** Identifies as female. */ FEMALE = 'female', /** Identifies as non-binary or outside the traditional gender binary. */ NON_BINARY = 'nonBinary' };