Showing:

Diagrams
Facets
Source
Used by
Simple Type DateType
Namespace No namespace
Diagram
Diagram
Type restriction of xs:string
Facets
minLength 10
maxLength 16
pattern \d{4,}-\d\d-\d\d((\+|-)\d\d:\d\d|Z)?
Used by
Source
<xs:simpleType name="DateType">
  <xs:restriction base="xs:string">
    <xs:minLength value="10"/>
    <xs:maxLength value="16"/>
    <xs:pattern value="\d{4,}-\d\d-\d\d((\+|-)\d\d:\d\d|Z)?"/>
  </xs:restriction>
</xs:simpleType>