<xs:element name="SUB.DOC">
<xs:annotation>
<xs:documentation>This element is used to mark up the information about subordinate document in the print production file. The information are: - the title - the start page - the end page - the length the attribute ORDER is to give information about the rank compared to all documents subordinates</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element ref="SHORT.TITLE"/>
<xs:element ref="START.PAGE"/>
<xs:element ref="END.PAGE"/>
<xs:element ref="LENGTH"/>
<xs:element ref="COMMENTS" minOccurs="0"/>
</xs:sequence>
<xs:attribute name="ORDER" use="required">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:pattern value="\d{1,4}(/\d{1,4})"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:complexType>
</xs:element> |