I have an entity: Participants
. One of the attributes for participants
is Interest
. There are 4 valid values (db
, ia
, hit
, other
). If 'other
' is chosen I need to be able to capture that description and I can't seem to figure out what the best way to do that would be?
I would have a validation rule for Participant Interest
that will have the above 4 values. Can I place a description in the entity (see below) though I know that most of the responses will be one of the first three or should I create a separate entity that will capture other and has an identifying relationship with Participant
?
Participant
Participant ID
Participant First Name
Participant Last Name
Participant Interest {db, ia, hit, other}
Participant Other Interest Description
Other
Other Description
I'm looking for what is allowed as well as what would be best practice as I have several entities with similar format.