Version 3.0.1

Altered functionality

The following elements were altered in their functionality in version 3.0.1:

The schema was updated accordingly. Another bug was fixed in the schema.

<xs:element name="divesite">
    <xs:complexType>
        <xs:all>
            <xs:element name="divebase" type="divebaseType"/>
            <xs:element name="site" type="siteType"/>
        </xs:all>
    </xs:complexType>
</xs:element>
                

was replaced by

<xs:element name="divesite">
    <xs:complexType>
        <xs:sequence>
            <xs:element name="divebase" type="divebaseType" maxOccurs="unbounded" minOccurs="0"/>
            <xs:element name="site" type="siteType" maxOccurs="unbounded" minOccurs="0"/>
        </xs:sequence>
    </xs:complexType>
</xs:element>
                

so that the schema now is in accordance with the specification.

Renamed elements

The following attribute has been renamed in version 3.0.1:

  • <alarm> — attribute value was renamed into level for software-technical reasons.

The schema was updated accordingly.