Showing:

Diagrams
Facets
Source
Used by
Simple Type CountryCodeType
Namespace No namespace
Diagram
Diagram
Type restriction of xs:string
Facets
minLength 2
maxLength 2
pattern [a-z]{2,2}|[A-Z]{2,2}
Used by
Source
<xs:simpleType name="CountryCodeType">
  <xs:restriction base="xs:string">
    <xs:minLength value="2"/>
    <xs:maxLength value="2"/>
    <xs:pattern value="[a-z]{2,2}|[A-Z]{2,2}"/>
  </xs:restriction>
</xs:simpleType>