Slide Relationship

As described in the Slide Show ID paragraphs above, there are many situations where the format needs to store an ordered list of slides, and does so by storing their slide IDs. This is implemented using two types: a list entry complex type and a list complex type:

<xsd:complexType name="CT_SlideRelationshipListEntry">
  <xsd:attribute ref="r:id" use="required"/>
</xsd:complexType>
<xsd:complexType name="CT_SlideRelationshipList">
  <xsd:sequence>
    <xsd:element name="sld" type="CT_SlideRelationshipListEntry"
      minOccurs="0" maxOccurs="unbounded"/>
  </xsd:sequence>
</xsd:complexType>