-
Notifications
You must be signed in to change notification settings - Fork 1
ownership
GCHQDeveloper42 edited this page Mar 27, 2023
·
3 revisions
An
association
that consists_of anowner
and anasset
where theowner
owns theasset
.
-
ending
: Anending
relationship type where an ownership has asending
not more than oneending_of_ownership
. -
beginning
: Abeginning
relationship type where an ownership has asbeginning
exactly onebeginning_of_ownership
. -
consists_of_participant
: Aconsists_of_participant
relationship type where anownership
consists_of_participant
exactly oneowner
. -
consists_of_participant_
: Aconsists_of_participant
relationship type where anownership
associationconsists_of_participant
exactly oneasset
.
ENTITY ownership
SUBTYPE OF(association);
SELF\spatio_temporal_extent.ending : OPTIONAL ending_of_ownership;
SELF\spatio_temporal_extent.beginning : beginning_of_ownership;
INVERSE
SELF\association.consists_of_participant : SET [1:1] OF owner FOR participant_in;
consists_of_participant_ : SET [1:1] OF asset FOR participant_in;
END_ENTITY;
Inheritance Graph
ENTITY ownership;
ENTITY thing;
member__of : OPTIONAL SET [1:?] OF class;
ENTITY spatio_temporal_extent;
part__of : OPTIONAL SET [1:?] OF spatio_temporal_extent;
part_of_possible_world : SET [1:?] OF possible_world;
temporal__part_of : OPTIONAL SET [1:?] OF spatio_temporal_extent;
aggregated_into : OPTIONAL SET [1:?] OF spatio_temporal_extent;
INVERSE
consists__of : SET OF spatio_temporal_extent FOR part__of;
ENTITY state;
ENTITY individual;
ENTITY thing;
member__of : OPTIONAL SET [1:?] OF class;
ENTITY spatio_temporal_extent;
part__of : OPTIONAL SET [1:?] OF spatio_temporal_extent;
part_of_possible_world : SET [1:?] OF possible_world;
temporal__part_of : OPTIONAL SET [1:?] OF spatio_temporal_extent;
aggregated_into : OPTIONAL SET [1:?] OF spatio_temporal_extent;
INVERSE
consists__of : SET OF spatio_temporal_extent FOR part__of;
ENTITY state;
ENTITY state_of_association;
temporal_part_of : OPTIONAL SET [1:?] OF association;
member_of : OPTIONAL SET [1:?] OF class_of_state_of_association;
ENTITY association;
member_of : OPTIONAL SET [1:?] OF class_of_association;
member_of_kind : SET [1:?] OF kind_of_association;
ENTITY ownership;
ending : OPTIONAL ending_of_ownership;
beginning : beginning_of_ownership;
INVERSE
consists_of_participant : SET [1:1] OF owner FOR participant_in;
consists_of_participant_ : SET [1:1] OF asset FOR participant_in;
END_ENTITY;