<xs:element name="OJ.INFO">
<xs:annotation>
<xs:documentation>This element is to mark up all information concerning the OJ in the Offer refusal: - the collection of the OJ - the year - the number of the OJ if it is known - the publication date if it is known The attribute Extra or Daily gives information about the type of the OJ.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element ref="COLL"/>
<xs:element ref="YEAR" minOccurs="0"/>
<xs:element ref="NO.OJ" minOccurs="0"/>
<xs:element ref="PUBLICATION.DATE" minOccurs="0"/>
</xs:sequence>
<xs:attribute name="TYPE" use="required">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="DAILY"/>
<xs:enumeration value="EXTRA"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:complexType>
</xs:element> |