Showing:

Annotations
Diagrams
Facets
Source
Used by
Simple Type ShortFormalName
Namespace No namespace
Annotations
Used when names are intended to be non-empty, short and without "weird" characters
Diagram
Diagram
Type restriction of xs:NMTOKEN
Facets
maxLength 80
pattern (\c+) & ([A-Za-z]+([A-Za-z0-9,.,\-,_])*)
Used by
Source
<xs:simpleType name="ShortFormalName">
  <xs:annotation>
    <xs:documentation xml:lang="en-US">Used when names are intended to be non-empty, short and without "weird" characters</xs:documentation>
  </xs:annotation>
  <xs:restriction base="xs:NMTOKEN">
    <!--
            <xs:pattern value="[A-Za-z,0-9,ä,ö,ü,ß,Ä,Ö,Ü,ó,ï,é,\.,_,\-]{1,80}"/>
            -->
    <xs:pattern value="[A-Za-z]+([A-Za-z0-9,.,\-,_])*"/>
    <xs:maxLength value="80"/>
  </xs:restriction>
</xs:simpleType>