I will recommend the term “weak object” from ER modeling.
Some modelers conceptualize an object consisting of entities and relationships among objects. This leads to the modeling of essential relations (ER Modeling). An attribute can be bound to an entity or relationship, and the values stored in the database are instances of the attributes.
If you are doing an ER simulation, there is a kind of object called a “weak object”. Part of the identity of a weak entity is the identity of a stronger entity to which the weak belongs.
An example is an order in an order processing system. Orders consist of line items, and each line item contains a product identifier, unit price, and quantity. But line items do not have an identification number for all orders. Instead, a position is indicated by {position number, order number}. In other words, a position cannot exist if it is not part of the same order. Item number 1 is the first item in the order in which it belongs, but you need both numbers to identify the item.
Easily turn an ER model into a relational model. It’s also easy for people who are experts in data, but don’t know anything about databases to get used to the ER-model of the data that they understand.
There are other modelers who strongly object to the need for ER modeling. I am not one of them.
Walter mitty
source share