XML Schema - simple type definition - Example 2

Content restriction using a regular expression

<xs:simpleType name="isbnType"> 
  <xs:restriction base="xs:string"> <xs:pattern value="[0-9]{10}"/> </xs:restriction> 
</xs:simpleType>