Is it possible to have restricts of the XSD date and time data types for the current date? For example, if you want to set the maxInclusive of a date to the current date:
<xs:element name="DateOfBirths" type="birthsDate"/>
<xs:simpleType name="birthsDate">
<xs:restriction base="xs:date">
<xs:minInclusive value="1920-01-01"/>
<xs:maxInclusive value="current-date()" fixed="true"/>
</xs:restriction>
</xs:simpleType>
If this is not possible per default, does a workaround exist? Any help would be appreciated.