Relations Schema
AggregatedRelations Element
Relations Schema : AggregatedRelations Element

Glossary Item Box

Description

The collection of the many-to-many relations implemented with multiple one-to-many relations.
Namespace (none)

Diagram

AggregatedRelation Element Sequence AggregatedRelations Element

Overview

AggregatedRelations
The collection of the many-to-many relations implemented with multiple one-to-many relations.
Sequence
AggregatedRelation 1..∞ xs:string
The name of a one-to-many relation that is part of the aggregation.

Source

<xs:element name="AggregatedRelations" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <!--
        This element is not dependant on AssociationStorage or ReferenceStorage different types.
        one might think that it should logically appear only in AssociationStorage, but, in the future,
        there might be an aggregated relation of more than 2 relations,
        in which case no storage descriptor will be displayed at all.
        -->
  <xs:annotation>
    <xs:documentation>
                The collection of the many-to-many relations implemented with multiple one-to-many relations.
            </xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:sequence>
      <xs:element name="AggregatedRelation" type="xs:string" maxOccurs="unbounded">
        <xs:annotation>
          <xs:documentation>
                            The name of a one-to-many relation that is part of the aggregation.
                        </xs:documentation>
        </xs:annotation>
      </xs:element>
    </xs:sequence>
  </xs:complexType>
</xs:element>

See Also