Showing:

Annotations
Diagrams
Facets
Source
Used by
Simple Type NonEmptyString
Namespace No namespace
Annotations
Used as the base for most string datatypes. (Ensures that empty strings are not allowed.). Should never be implemented directly because it has no length
limits.
Diagram
Diagram
Type restriction of xs:string
Facets
minLength 1
Used by
Source
<xs:simpleType name="NonEmptyString">
  <xs:annotation>
    <xs:documentation xml:lang="en-US">Used as the base for most string datatypes. (Ensures that empty strings are not allowed.). Should never be implemented directly because it has no length limits.</xs:documentation>
  </xs:annotation>
  <xs:restriction base="xs:string">
    <xs:minLength value="1"/>
  </xs:restriction>
</xs:simpleType>