- Date data type enforcing the format: "dd/mm/yyyy".
<xs:simpleType name="DateForm"> <xs:annotation> <xs:documentation> - Date data type enforcing the format: "dd/mm/yyyy". </xs:documentation> </xs:annotation> <xs:restriction base="xs:string"> <xs:minLength value="0" /> <xs:pattern value="\d{2}/\d{2}/\d{4}" /> </xs:restriction> </xs:simpleType>