-
Notifications
You must be signed in to change notification settings - Fork 1
classification
GCHQDeveloper42 edited this page Mar 27, 2023
·
3 revisions
A
relationship
where athing
is a member of aclass
.
Note: This entity type is replicated as the member__of
relationship.
-
classifier
: A relationship type where aclassification
has exactly oneclassifier
. -
member
: A relationship type where aclassification
has exactly onemember
.
ENTITY classification
SUBTYPE OF(relationship);
classifier : class;
member : thing;
END_ENTITY;
Inheritance Graph
ENTITY classification;
ENTITY thing;
member__of : OPTIONAL SET [1:?] OF class;
ENTITY abstract_object;
ENTITY relationship;
member_of : OPTIONAL SET [1:?] OF class_of_relationship;
ENTITY classification;
classifier : class;
member : thing;
END_ENTITY;