Project

Profile

Help

Bug #6057 » simple.xsd

Khalil Rahmouni, 2023-06-01 18:43

 
<?xml version="1.0" encoding="ISO-8859-1" ?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.example.org/simple">

<xsd:simpleType name="PhoneNumber">
<xsd:restriction base="xsd:string">
<xsd:whiteSpace value="collapse"/>
<xsd:minLength value="1"/>
<xsd:maxLength value="10"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>
(4-4/4)