Dear Members,
When I validate the XML file
(here you can see a little part of it)
<account>
<CustomerNumber>4999</CustomerNumber>
<VAT>BE0463855575</VAT>
<Name>AFFRESH</Name>
<Street>WALLETJE</Street>
<HouseNumber>1</HouseNumber>
<ZipCode>5800</ZipCode>
<Locality>HAL</Locality>
<Activity>Food</Activity>
</account>
I receive an error saying the HouseNumber doesn't match the pattern: "^[A-Z,a-z,0-9,/,-., ]{0,10}$"
little part of the XSD:
<xs:simpleType name="houseNumberType">
<xs:restriction base="xs:string">
<xsattern value="^[A-Z,a-z,0-9,/,-., ]{0,10}$" />
</xs:restriction>
</xs:simpleType>
Does somebody know how I can make my xml valid?
Thanks!
When I validate the XML file
(here you can see a little part of it)
<account>
<CustomerNumber>4999</CustomerNumber>
<VAT>BE0463855575</VAT>
<Name>AFFRESH</Name>
<Street>WALLETJE</Street>
<HouseNumber>1</HouseNumber>
<ZipCode>5800</ZipCode>
<Locality>HAL</Locality>
<Activity>Food</Activity>
</account>
I receive an error saying the HouseNumber doesn't match the pattern: "^[A-Z,a-z,0-9,/,-., ]{0,10}$"
little part of the XSD:
<xs:simpleType name="houseNumberType">
<xs:restriction base="xs:string">
<xsattern value="^[A-Z,a-z,0-9,/,-., ]{0,10}$" />
</xs:restriction>
</xs:simpleType>
Does somebody know how I can make my xml valid?
Thanks!