I need to define a custom type date with some restriction. Currently i have:
<xs:simpleType name="validdatetype">
<xs:restriction base="xs:date"/>
<xs:minInclusive value="1900-01-01"/>
</xs:restriction>
</xs:simpleType>
But when i try to open with some browser i get:
"Opening and ending tag mismatch: simpleType line 0 and restriction"
What am i doing wrong and how can i solve this? Thanks in advance and excuse my poor english!