-
Notifications
You must be signed in to change notification settings - Fork 1
spatio_temporal_extent
GCHQDeveloper42 edited this page Mar 27, 2023
·
5 revisions
A
thing
that exists in time and space.
-
part__of
: Anaggregated_into
relationship type where aspatio_temporal_extent
may be part of another and the whole has emergent properties and is more than just the sum of its parts.- Note: This relationship has the same meaning but is a different representation of the
composition
entity type.
- Note: This relationship has the same meaning but is a different representation of the
-
beginning
: Apart_of
relationship type where aspatio_temporal_extent
has exactly oneevent
that is itsbeginning
. -
ending
: Apart_of
relationship type where aspatio_temporal_extent
has exactly oneevent
that is itsending
. -
part_of_possible_world
: Apart_of
relationship type where aspatio_temporal_extent
may bepart_of
one or morepossible_world
.- Note: The relationship is optional because a
possible_world
is notpart_of
any otherspatio_temporal_extent
.
- Note: The relationship is optional because a
-
member_of
: Amember_of
relationship type where aspatio_temporal_extent
is amember_of
aclass_of_spatio_temporal_extent
. -
temporal__part_of
: Apart_of
relationship type where aspatio_temporal_extent
may be a temporal part of one or more otherspatio_temporal_extent
.- Note: this is
temporal_composition
represented as a relationship instead of an entity type.
- Note: this is
-
aggregated_into
: A relationship type where aspatio_temporal_extent
may be aggregated into one or more others.- Note: This has the same meaning as, but different representation to, the
aggregation
entity type.
- Note: This has the same meaning as, but different representation to, the
-
consists__of
: A relationship type where aspatio_temporal_extent
may consist of one or more others.- Note: This is the inverse of
part__of
.
- Note: This is the inverse of
ENTITY spatio_temporal_extent
SUBTYPE OF(thing);
part__of : OPTIONAL SET [1:?] OF spatio_temporal_extent;
beginning : OPTIONAL event;
ending : OPTIONAL event;
part_of_possible_world : SET [1:?] OF possible_world;
member_of : OPTIONAL SET [1:?] OF class_of_spatio_temporal_extent;
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;
END_ENTITY;
Inheritance Graph
ENTITY spatio_temporal_extent;
ENTITY thing;
member__of : OPTIONAL SET [1:?] OF class;
ENTITY spatio_temporal_extent;
part__of : OPTIONAL SET [1:?] OF spatio_temporal_extent;
beginning : OPTIONAL event;
ending : OPTIONAL event;
part_of_possible_world : SET [1:?] OF possible_world;
member_of : OPTIONAL SET [1:?] OF class_of_spatio_temporal_extent;
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;
END_ENTITY;