Description
There are several validation errors in the repository schemas that should be revised to be corrected.
For example, in repository/schema/misc/common.xsd:
<xs:attribute name="value" type="xs:boolean" use="required" default="true"/>
should be use="optional" or default should be removed.
Another one in the same schema:
<xs:attribute name="statistics" default="disabled" type="enableDisable" use="optional" />
Should be default="disable". Same for attribute trace in the same file.