<?xml version="1.0" encoding="utf-16"?>
<xsd:complexType name="IREventGenType" abstract="true">
    <xsd:annotation>
        <xsd:documentation>Event report generic data type</xsd:documentation>
        <xsd:documentation>Abstract type has to be modified to be machine specific</xsd:documentation>
    </xsd:annotation>
    <xsd:complexContent>
        <xsd:extension base="IREDESType">
            <xsd:sequence>
                <xsd:element name="ReportId" type="IRtext">
                    <xsd:annotation>
                        <xsd:documentation>Report id code, to uniquely identify this log report.</xsd:documentation>
                    </xsd:annotation>
                </xsd:element>
                <xsd:element name="StartLogTime" type="xsd:dateTime">
                    <xsd:annotation>
                        <xsd:documentation>Start of the reporting period. Date and time when the first entry to this xml-set was made.</xsd:documentation>
                    </xsd:annotation>
                </xsd:element>
                <xsd:element name="EndLogTime" type="xsd:dateTime">
                    <xsd:annotation>
                        <xsd:documentation>End of the reporting period. Date and time when the last entry to this xml-set was made.</xsd:documentation>
                    </xsd:annotation>
                </xsd:element>
                <xsd:element name="Comment" type="IRtextLong" minOccurs="0" maxOccurs="8" />
                <xsd:element name="OperatorId" type="IRtextShort" minOccurs="0">
                    <xsd:annotation>
                        <xsd:documentation>Identify the operator of the machine for reference</xsd:documentation>
                    </xsd:annotation>
                </xsd:element>
            </xsd:sequence>
        </xsd:extension>
    </xsd:complexContent>
</xsd:complexType>
  |