<xsd:complexType name="OriginHeaderType">
<xsd:sequence>
<xsd:element name="OriginId" type="IdType">
<xsd:annotation>
<xsd:documentation>Must be unique within the transmission file</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Timestamp" type="TimestampType">
<xsd:annotation>
<xsd:documentation>The time stamp at the time the origin was created</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="OriginManifest">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="ItemReference" maxOccurs="unbounded">
<xsd:complexType>
<xsd:attribute name="contentLocation" use="required">
<xsd:annotation>
<xsd:documentation>There must be a one for one match between the following three items in a transmission: the contentLocation attribute, the value of MIME Content-Location: line, and the ContentLocation</xsd:documentation>
</xsd:annotation>
<xsd:simpleType>
<xsd:restriction base="xsd:anyURI">
<xsd:pattern value="[A-Za-z0-9:.\-]{1,30}" />
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="itemCount" type="IntegerPosType" use="required">
<xsd:annotation>
<xsd:documentation>The number of items in this origin</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
|