I came across a legacy XSD that has a bunch of lines like...
<xs:element minOccurs="1"
maxOccurs="1"
default="true"
name="Ready" type="xs:boolean" />
...where minOccurs and maxOccurrs both equal 1, AND there is a default value. Is there any benefit to having the default attribute here since the XML doc is required to contain some value any way?