Skip to content

kind_of_relationship_with_signature

GCHQDeveloper42 edited this page Mar 27, 2023 · 5 revisions

Kind of Relationship with Signature

A class_of_relationship that is a subset of defined_relationship type where the classifications involved in each defined_relationship have as classifiers the roles specified by the kind_of_relationship_with_signature.

Attributes

  • roles: The roles that must be filled by members of a kind_of_relationship_with_signature.

Subtypes

EXPRESS Specification

Diagram 3

Schema

ENTITY kind_of_relationship_with_signature
  SUBTYPE OF(class_of_relationship);
    roles : BAG [2:?] OF class;
END_ENTITY;
Inheritance Graph

ENTITY kind_of_relationship_with_signature;
  ENTITY thing;
    member__of            : OPTIONAL SET [1:?] OF class;
  ENTITY abstract_object;
  ENTITY class;
    member_of             : OPTIONAL SET [1:?] OF class_of_class;
    has_superclass        : OPTIONAL SET [1:?] OF class;
  ENTITY class_of_abstract_object;
  ENTITY class_of_relationship;
  ENTITY kind_of_relationship_with_signature;
    roles                 : BAG [2:?] OF class;
END_ENTITY;
Clone this wiki locally