Relations Schema
StorageDescriptor Element
Relations Schema > Relation Element : StorageDescriptor Element

Glossary Item Box

Description

A collection of descriptions of the data models of the relations. The model does not reflect physical storage.
Namespace (none)

Diagram

ReferenceStorage Element AssociationStorage Element Choice StorageDescriptor Element

Overview

StorageDescriptor
A collection of descriptions of the data models of the relations. The model does not reflect physical storage.
Choice
AssociationStorage
A description of the data model of a 1-to-1 or 1-to-many association.
ReferenceStorage
A description of the data model of a one-to-many relation.

Source

<xs:element name="StorageDescriptor" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>
                            A collection of descriptions of the data models of the relations. The model does not reflect
                            physical storage.
                        </xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:choice>
      <xs:element ref="AssociationStorage">
        <xs:annotation>
          <xs:documentation>
                                        A description of the data model of a many-to-many relation.
                                    </xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element ref="ReferenceStorage">
        <xs:annotation>
          <xs:documentation>
                                        A description of the data model of a one-to-many relation.
                                    </xs:documentation>
        </xs:annotation>
      </xs:element>
    </xs:choice>
  </xs:complexType>
</xs:element>

See Also