User data model

The following model describes the schema objects related to the user management system in OpenIAM.

Note: You should not develop processes that write directly to the schema. The schema will evolve with each release and you should use the OpenIAM API to shield your processes from these schema changes.

User data model

Table: USERS

The USERS table is the primary table to store basic user attributes. This table has relationships with other user related tables. The relationships are described below.

  • One to Many relationship with:
    • Login - Accounts that are associated with this user.
    • User_attributes - Custom attributes that a user object may have
    • Auth_state - A user can have more than 1 active session based on authentication policy
    • User_Note
    • User_identity_Ans - This table refers to teh
Column NameData TypeDescriptionNote
USER_IDVARCHAR(32)Unique identifier for the user.Primary Key
FIRST_NAMEVARCHAR(100)First name of the user.
LAST_NAMEVARCHAR(100)Last name of the user.
MIDDLE_INITVARCHAR(50)Middle initial of the user.
TYPE_IDVARCHAR(32)Foreign key referencing METADATA_TYPE.TYPE_ID for user type.
CLASSIFICATIONVARCHAR(100)Classification of the user (e.g., Employee, Contractor).
TITLEVARCHAR(100)Job title of the user.
MAIL_CODEVARCHAR(100)Internal mail code for the user.
COST_CENTERVARCHAR(100)Cost center for financial tracking.
STATUSVARCHAR(40)Current status of the user (e.g., Active, Inactive).
SECONDARY_STATUSVARCHAR(40)Additional status information.
BIRTHDATEDATETIMEDate of birth of the user.
SEXCHAR(1)Gender of the user (M or F).
CREATE_DATEDATETIMETimestamp of user creation.
CREATED_BYVARCHAR(32)User ID of the creator of this record.
LAST_UPDATEDATETIMELast modification timestamp.
LAST_UPDATED_BYVARCHAR(32)User ID of the last person who updated the record.
PREFIXVARCHAR(4)Name prefix (e.g., Mr., Dr.).
SUFFIXVARCHAR(20)Name suffix (e.g., Jr., Sr.).
USER_TYPE_INDVARCHAR(20)Indicator for user type.
EMPLOYEE_IDVARCHAR(100)Employee number or HR system reference.
EMPLOYEE_TYPEVARCHAR(32)Foreign key referencing METADATA_TYPE.TYPE_ID for employment type.
LOCATION_CDVARCHAR(50)Location code assigned to the user.
LOCATION_NAMEVARCHAR(100)Name of the assigned location.
COMPANY_OWNER_IDVARCHAR(32)ID of the company owning this user account.
JOB_CODEVARCHAR(32)Foreign key referencing METADATA_TYPE.TYPE_ID for job classification.
ALTERNATE_IDVARCHAR(32)Alternate user identifier.Used for Out-of-Office
START_DATEDATEDate when the user started employment.
LAST_DATEDATEDate when the user ended employment.
MAIDEN_NAMEVARCHAR(40)User's maiden name.
NICKNAMEVARCHAR(100)User's preferred nickname.
PASSWORD_THEMEVARCHAR(20)Password policy theme assigned to the user.Deprecated
USER_OWNER_IDVARCHAR(32)ID of the user owner.Deprecated
DATE_PASSWORD_CHANGEDDATETIMETimestamp of the last password change.
DATE_CHALLENGE_RESP_CHANGEDDATETIMETimestamp of the last challenge-response question update.
SYSTEM_FLAGVARCHAR(1)System flag indicator.
DATE_IT_POLICY_APPROVEDTIMESTAMPTimestamp when the IT policy was last accepted.
CLAIM_DATEDATEDate when the user account was claimed.Deprecated
LASTNAME_PREFIXVARCHAR(10)Prefix used for sorting last names.
SUB_TYPE_IDVARCHAR(32)Foreign key referencing METADATA_TYPE.TYPE_ID for sub-type classification.
PARTNER_NAMEVARCHAR(60)Name of a business or external partner associated with the user.
PREFIX_PARTNER_NAMEVARCHAR(10)Prefix for the partner's name.
ALTERNATE_START_DATEDATETIMEAlternate start date for employment.
ALTERNATE_END_DATEDATETIMEAlternate end date for employment.
SECRET_WORDVARCHAR(255)User's secret word for authentication.
SECRET_FAIL_COUNTINT(3)Counter for failed secret word attempts.
POSITION_STATUSVARCHAR(40)Status of the user's position.Used in position change workflow
PREVIOUS_POSITIONVARCHAR(100)User's previous position title.Used in position change workflow
IS_VISIBLECHAR(1)Indicates if the user is visible (Y or N).
CERT_DELEGATE_END_DATEDATETIMEEnd date for delegated certification tasks.Used in access certification
CERT_DELEGATE_START_DATEDATETIMEStart date for delegated certification tasks.Used in access certification
CERT_DELEGATE_IDVARCHAR(32)Foreign key linking to USERS.USER_ID, identifying the delegate.
GRAPH_IDVARCHAR(100)Identifier used for graphical representation of relationships.
USER_HANDLEBLOBBinary handle of the user (e.g., biometric data).
CONVERSION_DATEDATETIMETimestamp of the user's last conversion (e.g., status change).

Relationships

  • One-to-Many: A User can have multiple Login Records → Referenced by LOGIN.USER_ID
  • One-to-Many: A User can have multiple User Attributes → Referenced by USER_ATTRIBUTES.USER_ID
  • One-to-Many: A User can belong to multiple Groups → Referenced by USER_GRP.USER_ID
  • One-to-Many: A User can have multiple Roles → Referenced by USER_ROLE.USER_ID
  • Many-to-Many: Users can have relationships with other users → Managed through USER_TO_USER_MEMBERSHIP
  • Self-referencing relationship: User_owner_id references the users tables. This attribute has been deprecated and will be dropped in the next major rel

Table: LOGIN

Purpose: Stores authentication credentials, including linked accounts.

Column NameData TypeDescriptionNotes
LOGINVARCHAR(220)The unique login identifier for the user in a specific managed system.Primary Key
MANAGED_SYS_IDVARCHAR(32)Foreign key referencing MANAGED_SYS.MANAGED_SYS_ID, indicating the managed system.Primary Key
IDENTITY_TYPEVARCHAR(20)Type of identity associated with the login (e.g., Primary, Service Account).
USER_IDVARCHAR(32)Foreign key referencing USERS.USER_ID, identifying the associated user.Foreign Key to Users.USER_ID
PASSWORDVARCHAR(255)Encrypted password for the user.
PWD_CHANGEDDATETIMETimestamp of the last password change.
PWD_EXPDATETIMETimestamp indicating when the password will expire.
GRACE_PERIODDATETIMEEnd date for the grace period before login restrictions apply.
CREATE_DATEDATETIMETimestamp when the login was created.
CREATED_BYVARCHAR(32)User ID of the person who created the login record.
AUTH_FAIL_COUNTINT(11)Number of failed authentication attempts.
LAST_AUTH_ATTEMPTDATETIMETimestamp of the last authentication attempt.
LAST_LOGINDATETIMETimestamp of the last successful login.
LAST_LOGIN_IPVARCHAR(60)IP address of the last successful login.
PREV_LOGINDATETIMETimestamp of the previous successful login.
PREV_LOGIN_IPVARCHAR(60)IP address of the previous login.
PWD_CHANGE_COUNTINT(11)Number of times the password has been changed.
PSWD_RESET_TOKENVARCHAR(80)Password reset token for account recovery.
PSWD_RESET_TOKEN_EXPDATETIMEExpiration timestamp of the password reset token.
LOGIN_IDVARCHAR(32)Unique identifier for the login record.
LAST_UPDATETIMESTAMPTimestamp of the last modification.
LOWERCASE_LOGINVARCHAR(220)Lowercase version of the login ID for uniqueness enforcement.
PROV_STATUSVARCHAR(20)Provisioning status of the login (e.g., Active, Pending).
CHALLENGE_RESPONSE_FAIL_COUNTINT(11)Number of failed challenge-response attempts.
SMS_RESET_TOKENVARCHAR(10)Temporary SMS-based reset token.
SMS_RESET_TOKEN_EXPDATETIMEExpiration timestamp of the SMS reset token.
SMS_CODE_EXPIRATIONTIMESTAMPExpiration timestamp for the SMS code.
TOPT_ACTIVECHAR(1)Indicates if Time-based One-Time Password (TOTP) authentication is enabled (Y or N).
IS_ACTIVECHAR(1)Indicates if the login is active (Y or N).
FIRST_TIME_LOGINCHAR(1)Indicates if the login is the first-time login (Y or N).
RESET_PWDVARCHAR(32)Identifier for reset password tracking.
LAST_OTP_ACCESSDATETIMETimestamp of the last OTP authentication.
OTP_FAIL_COUNTINT(11)Number of failed OTP attempts.
OTP_ACTIVECHAR(1)Indicates if OTP authentication is enabled (Y or N).
STATUSVARCHAR(20)Status of the login (e.g., Active, Suspended).
LOCK_MARKERVARCHAR(20)Lock status of the login (NOT_LOCKED, LOCKED).
AUTH_TYPEVARCHAR(255)Authentication type used for the login (e.g., LDAP, SAML).

Relationships

  • Many-to-One: A Login Record is linked to one User → References USERS.USER_ID
  • Many-to-One: A Login Record is linked to an external Managed System → References MANAGED_SYS.MANAGED_SYS_ID
  • On to Many: A Login Records can have many LOGIN_ATTRIBUTEs - References LOGIN_ATTRIBUTES.LOGIN_ID

Table: USER_ATTRIBUTES

Purpose: Stores custom attributes for users.

Column NameData TypeDescription
IDVARCHAR(32)Unique identifier for the user attribute record.
USER_IDVARCHAR(32)Foreign key linking to USERS.USER_ID, representing the user to whom the attribute belongs.
METADATA_IDVARCHAR(32)Foreign key linking to METADATA_ELEMENT.METADATA_ID, defining the type of attribute.
NAMEVARCHAR(100)Name of the attribute (e.g., Department, Skill, Certification).

Relationships

  • Many-to-One: A User Attribute is linked to one User → References Users.USER_ID

Table: LOGIN_ATTRIBUTE

Purpose: Stores additional attributes associated with logins.

Column NameData TypeDescription
LOGIN_ATTR_IDVARCHAR(32)Unique identifier for the login attribute record.
NAMEVARCHAR(100)Name of the attribute (e.g., Role, Permission Level).
VALUEVARCHAR(4000)Value of the attribute.
METADATA_IDVARCHAR(20)Foreign key referencing METADATA_ELEMENT.METADATA_ID, defining metadata properties.
LOGIN_IDVARCHAR(32)Foreign key referencing LOGIN.LOGIN_ID, linking the attribute to a login.

Relationships: • One-to-one: A Login Attribute is linked to one LOGIN_ATTRIBUTE_VALUES → References LOGIN_ATTRIBUTE_VALUES.LOGIN_ATTRIBUTE_ID


Table: LOGIN_ATTRIBUTE_VALUES

Purpose: Stores a large (text) value assigned to a LOGIN_ATTRIBUTEs.

Column NameData TypeDescription
LOGIN_ATTRIBUTE_IDVARCHAR(32)Foreign key referencing LOGIN_ATTRIBUTES.ID, linking the value to an attribute.
ATTR_VALUETEXTValue associated with the attribute.

Relationships: • One-to-One: A Login Attribute Value is linked to a Login Attribute → References LOGIN_ATTRIBUTES.LOGIN_ATTR_ID


Table: USER_ATTRIBUTE_VALUES

Purpose: tores a large (text) value assigned to a USER_ATTRIBUTES.

Column NameData TypeDescription
USER_ATTRIBUTE_IDVARCHAR(32)Foreign key linking to USER_ATTRIBUTES.ID, representing the specific user attribute.
ATTR_VALUETEXTValue assigned to the attribute (e.g., "Engineering", "Python Certified").

Relationships:

  • One-to-One: A User Attribute Value is linked to a USER_ATTRIBUTES → References USER_ATTRIBUTES.ID

Table: USER_AFFILIATION

Purpose: Tracks a user’s affiliation with a company or organization.

Column NameData TypeDescription
COMPANY_IDVARCHAR(32)Foreign key referencing COMPANY.COMPANY_ID, identifying the affiliated company.
USER_IDVARCHAR(32)Foreign key referencing USERS.USER_ID, identifying the associated user.
CREATE_DATEDATETIMETimestamp when the affiliation was created.
METADATA_TYPE_IDVARCHAR(32)Foreign key referencing METADATA_TYPE.TYPE_ID, defining the type of affiliation.
MEMBERSHIP_IDVARCHAR(32)Unique identifier for the user’s membership in the company.
START_DATEDATETIMEStart date of the user's affiliation.
END_DATEDATETIMEEnd date of the user's affiliation.
DESCRIPTIONVARCHAR(255)Additional details about the affiliation.
EDGE_IDVARCHAR(40)Identifier used for graphical representation of relationships.

Relationships:

  • Many-to-One: A User Affiliation is linked to a User → References USERS.USER_ID
  • Many-to-One: A User Affiliation is linked to a Company → References COMPANY.COMPANY_ID

Table: USER_AFFILIATION_RIGHTS

Purpose: Manages access rights associated with user affiliations.

Column NameData TypeDescription
MEMBERSHIP_IDVARCHAR(32)Foreign key referencing USER_AFFILIATION.MEMBERSHIP_ID, linking the rights to a specific affiliation.
ACCESS_RIGHT_IDVARCHAR(32)Foreign key referencing ACCESS_RIGHTS.ACCESS_RIGHT_ID, defining specific access rights granted.
EDGE_IDVARCHAR(40)Identifier used for graphical representation of relationships.

Relationships:

  • Many-to-One: A User Affiliation Right is linked to a User Affiliation → References USER_AFFILIATION

Table: USER_AUTH_PARAM

Purpose: Stores authentication parameters for a user.

Column NameData TypeDescription
PARAM_IDVARCHAR(32)Unique identifier for the authentication parameter.
USER_IDVARCHAR(32)Foreign key linking to USERS.USER_ID, identifying the associated user.
TYPEVARCHAR(50)Type of authentication parameter (e.g., OTP, security key).
PARAM_VALUEVARCHAR(255)Value of the authentication parameter.
CONFIRMEDCHAR(1)Indicates whether the parameter is confirmed (Y or N).
CONFIRMED_TYPEVARCHAR(25)Type of confirmation (e.g., email, phone verification).

Relationships:

  • Many-to-One: A User Authentication Parameter is linked to a User → References USERS.USER_ID

Table: USER_ROLE

Purpose: Maps users to roles. Cross reference table.

Column NameData TypeDescription
USER_IDVARCHAR(32)Foreign key linking to USERS.USER_ID, identifying the user.
ROLE_IDVARCHAR(32)Foreign key linking to ROLE.ROLE_ID, identifying the assigned role.
MEMBERSHIP_IDVARCHAR(32)Unique identifier for the user's role membership.
START_DATEDATETIMEStart date of the user's role assignment.
END_DATEDATETIMEEnd date of the user's role assignment.
DESCRIPTIONVARCHAR(255)Additional details about the role assignment.
EDGE_IDVARCHAR(40)Identifier used for graphical representation of relationships.
STATUSVARCHAR(15)Status of the role assignment (default: NOT_REMINDED).

Relationships

  • Many-to-One: A User can have multiple Roles → References USERS.USER_ID
  • Many-to-One: A Role can be assigned to multiple Users → References ROLE.ROLE_ID

Table: USER_GRP

Purpose: Associates users with groups. Cross reference table.

Column NameData TypeDescription
USER_IDVARCHAR(32)Foreign key linking to USERS.USER_ID, identifying the user.
GRP_IDVARCHAR(32)Foreign key linking to GRP.GRP_ID, identifying the group.
MEMBERSHIP_IDVARCHAR(32)Unique identifier for the user-group membership.
START_DATEDATETIMEStart date of the user's group membership.
END_DATEDATETIMEEnd date of the user's group membership.
DESCRIPTIONVARCHAR(255)Additional details about the membership.
EDGE_IDVARCHAR(40)Identifier used for graphical representation of relationships.
STATUSVARCHAR(15)Status of the membership (default: NOT_REMINDED).

Relationships

  • Many-to-One: A User can have multiple Groups → References USERS.USER_ID
  • Many-to-One: A Group can be assigned to multiple Users → References GROUP.GRP_ID

Table: USER_GRP_MEMBERSHIP_RIGHTS

Purpose: Defines access rights within a group.

Column NameData TypeDescription
MEMBERSHIP_IDVARCHAR(32)Foreign key linking to USER_GRP.MEMBERSHIP_ID, identifying the user’s group membership.
ACCESS_RIGHT_IDVARCHAR(32)Foreign key linking to ACCESS_RIGHTS.ACCESS_RIGHT_ID, defining specific access rights.
EDGE_IDVARCHAR(40)Identifier used for graphical representation of relationships.

Relationships:

  • Many-to-One: A User Group Membership Right is linked to a User Group → References USER_GRP

Table: USER_IDENTITY_ANS

Purpose: Stores answers to user security questions.

Column NameData TypeDescription
IDENTITY_ANS_IDVARCHAR(32)Unique identifier for the user’s identity answer.
IDENTITY_QUESTION_IDVARCHAR(32)Foreign key linking to IDENTITY_QUESTION.IDENTITY_QUESTION_ID, identifying the security question.
USER_IDVARCHAR(32)Foreign key linking to USERS.USER_ID, identifying the user.
QUESTION_ANSWERVARCHAR(2000)User’s answer to the security question.
IS_ENCRYPTEDVARCHAR(1)Indicates whether the answer is encrypted (Y or N).
QUESTION_TEXTVARCHAR(2000)The actual security question text (if stored with the answer).

Relationships:

  • Many-to-One: A User Identity Answer is linked to a User → References USERS.USER_ID

Table: USER_IT_POLICY_HISTORY

Purpose: Tracks IT policy acceptance history.

Column NameData TypeDescription
IDVARCHAR(32)Unique identifier for the IT policy history record.
USER_IDVARCHAR(32)Foreign key linking to USERS.USER_ID, identifying the user.
VERSION_IDVARCHAR(32)Foreign key linking to IT_POLICY_VERSION.VERSION_ID, identifying the version of the policy.
SUBMIT_DATETIMESTAMPTimestamp when the user accepted or submitted the policy.
ACCEPTEDCHAR(1)Indicates whether the policy was accepted (Y or N).
NAMEVARCHAR(128)Name of the policy version.
CONTENT_PROVIDER_IDVARCHAR(32)Foreign key linking to CONTENT_PROVIDER.CONTENT_PROVIDER_ID, identifying the provider of the policy content.

Relationships:

  • Many-to-One: A User IT Policy History is linked to a User → References USERS.USER_ID

Table: USER_KEY

Column NameData TypeDescription
USER_KEY_IDVARCHAR(32)Unique identifier for the user's key record.
USER_IDVARCHAR(32)Foreign key linking to USERS.USER_ID, identifying the user.
NAMEVARCHAR(40)Name of the key (e.g., SSH Key, API Key).
KEY_VALUEVARCHAR(2048)Actual value of the stored key.

Table: USER_NOTE

Column NameData TypeDescription
USER_NOTE_IDVARCHAR(32)Unique identifier for the user note record.
USER_IDVARCHAR(32)Foreign key linking to USERS.USER_ID, identifying the user.
NOTE_TYPEVARCHAR(20)Type of note (e.g., General, Compliance, Warning).
DESCRIPTIONVARCHAR(2000)Detailed description of the note.
CREATE_DATEDATETIMETimestamp when the note was created.
CREATED_BYVARCHAR(20)Identifier of the user who created the note.

Table: USER_RES_MEMBERSHIP_RIGHTS

Column NameData TypeDescription
MEMBERSHIP_IDVARCHAR(32)Foreign key linking to RESOURCE_USER.MEMBERSHIP_ID, identifying the user’s membership to a resource.
ACCESS_RIGHT_IDVARCHAR(32)Foreign key linking to ACCESS_RIGHTS.ACCESS_RIGHT_ID, defining specific access rights.
EDGE_IDVARCHAR(40)Identifier used for graphical representation of relationships.

Table: USER_ROLE_MEMBERSHIP_RIGHTS

Column NameData TypeDescription
MEMBERSHIP_IDVARCHAR(32)Foreign key linking to USER_ROLE.MEMBERSHIP_ID, identifying the user’s role membership.
ACCESS_RIGHT_IDVARCHAR(32)Foreign key linking to ACCESS_RIGHTS.ACCESS_RIGHT_ID, defining specific access rights.
EDGE_IDVARCHAR(40)Identifier used for graphical representation of relationships.

Table: USER_TO_USER_MEMBERSHIP

Purpose: Defines user-to-user relationships. This table is used to supported the Related user functionality. Example, a User can have a primary account and an admin account.

Column NameData TypeDescription
MEMBERSHIP_IDVARCHAR(32)Unique identifier for the user-to-user membership.
PRIMARY_USER_IDVARCHAR(32)Foreign key linking to USERS.USER_ID, identifying the primary user.
RELATED_USER_IDVARCHAR(32)Foreign key linking to USERS.USER_ID, identifying the related user.
TYPE_IDVARCHAR(32)Foreign key linking to METADATA_TYPE.TYPE_ID, defining the relationship type.
DESCRIPTIONVARCHAR(255)Additional details about the user-to-user membership.

Relationships

  • Many-to-Many: Users can have relationships with multiple users → References Users.USER_ID

Table: ADDRESS

Column NameData TypeDescription
ADDRESS_IDVARCHAR(32)Unique identifier for the address.
NAMEVARCHAR(100)Name associated with the address (e.g., Home, Work).
COUNTRYVARCHAR(100)Country of the address.
BLDG_NUMVARCHAR(100)Building number.
STREET_DIRECTIONVARCHAR(20)Street direction (e.g., N, S, E, W).
SUITEVARCHAR(20)Suite or apartment number.
ADDRESS1 - ADDRESS7VARCHAR(400)Additional address lines for extended addresses.
CITYVARCHAR(100)City of the address.
STATEVARCHAR(100)State or province.
POSTAL_CDVARCHAR(100)Postal or ZIP code.
IS_DEFAULTCHAR(1)Indicates if this is the default address (Y or N).
DESCRIPTIONVARCHAR(100)Additional description.
ACTIVECHAR(1)Indicates if the address is active (Y or N).
PARENT_IDVARCHAR(32)Foreign key linking to USERS.USER_ID, identifying the user.
LAST_UPDATETIMESTAMPTimestamp of last modification.
CREATE_DATETIMESTAMPTimestamp of creation.
TYPE_IDVARCHAR(32)Foreign key linking to METADATA_TYPE.TYPE_ID, defining the address type.
COPY_FROM_LOCATION_IDVARCHAR(32)If copied from another location, references that location.
PUBLISHEDCHAR(1)Indicates if the address is published (Y or N).

Table: AUTH_STATE

Column NameData TypeDescription
USER_IDVARCHAR(32)Foreign key linking to USERS.USER_ID, identifying the user.
AUTH_STATEDECIMAL(5,1)Authentication state of the user.
LAST_LOGINDATETIMETimestamp of the last login.
IP_ADDRESSVARCHAR(30)IP address of the last login.
SESSION_IDVARCHAR(32)Unique session identifier.
CONTENT_PROVIDER_IDVARCHAR(32)Foreign key linking to CONTENT_PROVIDER.CONTENT_PROVIDER_ID, identifying the content provider.
IS_NEW_FLAGSINT(5)Flags for additional authentication-related data.

Table: AUTH_STATE_AUTH_PARAM_XREF

Column NameData TypeDescription
XREF_IDVARCHAR(32)Unique identifier for the cross-reference record.
USER_IDVARCHAR(32)Foreign key linking to USERS.USER_ID, identifying the user.
SESSION_IDVARCHAR(32)Foreign key linking to AUTH_STATE.SESSION_ID, identifying the session.
PARAM_IDVARCHAR(32)Foreign key linking to USER_AUTH_PARAM.PARAM_ID, identifying the authentication parameter.

Table: ADDRESS

Purpose: Stores physical address information associated with users.

Column NameData TypeDescription
ADDRESS_IDVARCHAR(32)Unique identifier for the address.
NAMEVARCHAR(100)Name associated with the address (e.g., Home, Work).
COUNTRYVARCHAR(100)Country of the address.
BLDG_NUMVARCHAR(100)Building number.
STREET_DIRECTIONVARCHAR(20)Street direction (e.g., N, S, E, W).
SUITEVARCHAR(20)Suite or apartment number.
ADDRESS1 - ADDRESS7VARCHAR(400)Additional address lines for extended addresses.
CITYVARCHAR(100)City of the address.
STATEVARCHAR(100)State or province.
POSTAL_CDVARCHAR(100)Postal or ZIP code.
IS_DEFAULTCHAR(1)Indicates if this is the default address (Y or N).
DESCRIPTIONVARCHAR(100)Additional description.
ACTIVECHAR(1)Indicates if the address is active (Y or N).
PARENT_IDVARCHAR(32)Foreign key linking to USERS.USER_ID, identifying the user.
LAST_UPDATETIMESTAMPTimestamp of last modification.
CREATE_DATETIMESTAMPTimestamp of creation.
TYPE_IDVARCHAR(32)Foreign key linking to METADATA_TYPE.TYPE_ID, defining the address type.
COPY_FROM_LOCATION_IDVARCHAR(32)If copied from another location, references that location.
PUBLISHEDCHAR(1)Indicates if the address is published (Y or N).

Relationships:

Many-to-One: An Address is associated with a User based on PARENT_ID. A user can have amy Addresses.

Table: EMAIL_ADDRESS

Purpose: Stores email addresses associated with users.

Column NameData TypeDescription
EMAIL_IDVARCHAR(32)Unique identifier for the email record.
NAMEVARCHAR(100)Name associated with the email (e.g., Personal, Work).
DESCRIPTIONVARCHAR(100)Additional description.
EMAIL_ADDRESSVARCHAR(320)The actual email address.
IS_DEFAULTCHAR(1)Indicates if this is the default email (Y or N).
ACTIVECHAR(1)Indicates if the email is active (Y or N).
PARENT_IDVARCHAR(32)Foreign key linking to USERS.USER_ID, identifying the user.
LAST_UPDATETIMESTAMPTimestamp of last modification.
CREATE_DATETIMESTAMPTimestamp of creation.
TYPE_IDVARCHAR(32)Foreign key linking to METADATA_TYPE.TYPE_ID, defining the email type.
PUBLISHEDCHAR(1)Indicates if the email is published (Y or N).

Relationships:

  • Many-to-One: An Email Address is associated with a User based on PARENT_ID

Table: PHONE

Purpose: Stores phone number information associated with users

Column NameData TypeDescription
PHONE_IDVARCHAR(32)Unique identifier for the phone record.
NAMEVARCHAR(40)Name associated with the phone (e.g., Mobile, Office).
AREA_CDVARCHAR(20)Area code of the phone number.
COUNTRY_CDVARCHAR(20)Country code of the phone number.
DESCRIPTIONVARCHAR(100)Additional description.
PHONE_NBRVARCHAR(50)The actual phone number.
PHONE_EXTVARCHAR(20)Extension number (if applicable).
IS_DEFAULTCHAR(1)Indicates if this is the default phone (Y or N).
ACTIVECHAR(1)Indicates if the phone number is active (Y or N).
PARENT_IDVARCHAR(32)Foreign key linking to USERS.USER_ID, identifying the user.
LAST_UPDATETIMESTAMPTimestamp of last modification.
CREATE_DATETIMESTAMPTimestamp of creation.
TYPE_IDVARCHAR(32)Foreign key linking to METADATA_TYPE.TYPE_ID, defining the phone type.
PUBLISHEDCHAR(1)Indicates if the phone is published (Y or N).
IS_FOR_SMSCHAR(1)Indicates if the phone number is used for SMS communication (Y or N).

Relationships:

  • Many-to-One: A Phone record is associated with a User based on PARENT_ID

Table: COMPANY

Purpose: Stores information about companies or organizations.

Column NameData TypeDescription
COMPANY_IDVARCHAR(32)Unique identifier for the company.
COMPANY_NAMEVARCHAR(200)Full name of the company.
LST_UPDATEDATETIMELast update timestamp.
LST_UPDATED_BYVARCHAR(32)User who last updated the record.
PARENT_IDVARCHAR(32)Foreign key linking to the parent company.
STATUSVARCHAR(20)Current status of the company.
CREATE_DATEDATETIMEDate when the company was created.
CREATED_BYVARCHAR(32)User who created the company record.
ALIASVARCHAR(200)Alias or alternative name for the company.
DESCRIPTIONVARCHAR(512)Detailed description of the company.
DOMAIN_NAMEVARCHAR(250)Domain name associated with the company.
LDAP_STRVARCHAR(255)LDAP string for directory integrations.
CLASSIFICATIONVARCHAR(40)Classification of the company.
ORG_TYPE_IDVARCHAR(32)Foreign key linking to ORGANIZATION_TYPE.ORG_TYPE_ID.
IS_SELECTABLECHAR(1)Determines if the company is selectable (Y or N).
TYPE_IDVARCHAR(32)Foreign key linking to METADATA_TYPE.TYPE_ID.
POLICY_IDVARCHAR(32)Foreign key linking to POLICY.POLICY_ID.
CERTIFIER_IDVARCHAR(32)Foreign key linking to USERS.USER_ID, identifying the certifier.

Relationships:

  • One-to-Many: A Company can have multiple Users affiliated with it → Referenced by USER_AFFILIATION.COMPANY_ID.
  • One-to-Many: A Company can have multiple Company Attributes → Referenced by COMPANY_ATTRIBUTE.COMPANY_ID.
  • One-to-Many: A Company can have multiple Company Memberships → Referenced by COMPANY_TO_COMPANY_MEMBERSHIP.COMPANY_ID.
  • Many-to-One: A Company can belong to a parent company → Self-referencing COMPANY.PARENT_ID.

Table: COMPANY_ATTRIBUTE

Purpose: Stores custom attributes that can be assigned to companies.

Column NameData TypeDescription
COMPANY_ATTR_IDVARCHAR(32)Unique identifier for the company attribute.
COMPANY_IDVARCHAR(32)Foreign key linking to COMPANY.COMPANY_ID.
NAMEVARCHAR(100)Name of the attribute.
METADATA_IDVARCHAR(32)Foreign key linking to METADATA_ELEMENT.METADATA_ID.

Relationships:

  • Many-to-One: A Company Attribute is linked to a Company → References COMPANY.COMPANY_ID.
  • One-to-Many: A Company Attribute can have multiple Company Attribute Values → Referenced by COMPANY_ATTRIBUTE_VALUES.ATTR_ID.

Table: COMPANY_ATTRIBUTE_VALUES

Purpose: Stores values assigned to company attributes.

Column NameData TypeDescription
COMPANY_ATTRIBUTE_IDVARCHAR(32)Foreign key linking to COMPANY_ATTRIBUTE.COMPANY_ATTR_ID.
ATTR_VALUETEXTValue of the company attribute.

Relationships:

  • Many-to-One: A Company Attribute Value is linked to a Company Attribute → References COMPANY_ATTRIBUTE.COMPANY_ATTR_ID.

Table: COMPANY_TO_COMPANY_MEMBERSHIP

Purpose: Defines relationships between companies, such as parent-subsidiary relationships.

Column NameData TypeDescription
COMPANY_IDVARCHAR(32)Foreign key linking to COMPANY.COMPANY_ID, identifying the parent company.
MEMBER_COMPANY_IDVARCHAR(32)Foreign key linking to COMPANY.COMPANY_ID, identifying the subsidiary or member company.
CREATE_DATETIMESTAMPTimestamp of membership creation.
UPDATE_DATETIMESTAMPTimestamp of last membership update.
CREATED_BYVARCHAR(32)User who created the membership.
UPDATED_BYVARCHAR(32)User who last updated the membership.
MEMBERSHIP_IDVARCHAR(32)Unique identifier for the membership.
START_DATEDATETIMEStart date of the membership.
END_DATEDATETIMEEnd date of the membership.
DESCRIPTIONVARCHAR(255)Additional details about the membership.
EDGE_IDVARCHAR(40)Identifier used for graphical representation.

Relationships:

  • Many-to-Many: A Company can be a parent to multiple companies → References COMPANY.COMPANY_ID as COMPANY_ID and MEMBER_COMPANY_ID.
  • Many-to-One: A Company Membership is linked to a Parent Company → References COMPANY.COMPANY_ID as COMPANY_ID.
  • Many-to-One: A Company Membership is linked to a Subsidiary Company → References COMPANY.COMPANY_ID as MEMBER_COMPANY_ID.