Showing:

Diagrams
Facets
Source
Simple Type EANType
Namespace No namespace
Diagram
Diagram
Type restriction of xs:string
Facets
minLength 8
maxLength 18
pattern \d+
Source
<xs:simpleType name="EANType">
  <xs:restriction base="xs:string">
    <xs:minLength value="8"/>
    <xs:maxLength value="18"/>
    <xs:pattern value="\d+"/>
  </xs:restriction>
</xs:simpleType>