- Date + Time data type enforcing the format: "dd/mm/yyyy HH:MM".
<xs:simpleType name="DateTimeForm"> <xs:annotation> <xs:documentation> - Date + Time data type enforcing the format: "dd/mm/yyyy HH:MM". </xs:documentation> </xs:annotation> <xs:restriction base="xs:string"> <xs:minLength value="0" /> <xs:pattern value="\d{2}/\d{2}/\d{4} (20|21|22|23|[0-1]?\d):[0-5]?\d" /> </xs:restriction> </xs:simpleType>