The following elements were altered in their functionality in version 3.0.1:
<informationafterdive> — child element <notes> was missing in version 3.0.0.
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.
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.