現在の日付に対して XSD の日付と時刻のデータ型を制限することは可能ですか? たとえば、日付の maxInclusive を現在の日付に設定する場合:
<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>
これがデフォルトでは不可能な場合、回避策はありますか? どんな助けでも大歓迎です。