-
Notifications
You must be signed in to change notification settings - Fork 1
defined_relationship
GCHQDeveloper42 edited this page Mar 27, 2023
·
3 revisions
A
relationship
that is defined by akind_of_relationship_with_signature
.
-
member_of_kind
: Amember_of
relationship type where eachdefined_relationship
is amember_of
exactly onekind_of_relationship_with_signature
. -
involves
: A meta-relationship type where theclassification
of some thing in a role is involved in a relationship.
ENTITY defined_relationship
SUBTYPE OF(relationship);
member_of_kind : SET [1:1] OF kind_of_relationship_with_signature;
involves : BAG [2:?] OF classification;
END_ENTITY;
Inheritance Graph
ENTITY defined_relationship;
ENTITY thing;
member__of : OPTIONAL SET [1:?] OF class;
ENTITY abstract_object;
ENTITY relationship;
member_of : OPTIONAL SET [1:?] OF class_of_relationship;
ENTITY defined_relationship;
member_of_kind : SET [1:1] OF kind_of_relationship_with_signature;
involves : BAG [2:?] OF classification;
END_ENTITY;