simpleType "TextQualifierType"
Namespace: |
|
Defined: |
|
Used: |
|
Simple Content Model |
enumeration of xs:string |
Simple Content Restrictions:
Enumeration: |
"singleQuote" |
- |
Text strings are identified by the use of a single quote (') at each end of the string. |
"doubleQuote" |
- |
Text strings are identified by the use of a double quote (") at each end of the string. |
"none" |
- |
Text strings are not identified as such. |
|
All Direct / Indirect Based Attributes (1):
-
Known Usage Locations
Annotation
Use for delimited files to designate the which text qualifier, if any, was used. Valid values include: singleQuote, doubleQuote, and none.
Type Definition Detail
Type Derivation Tree xs:string (restriction) TextQualifierType |
Derivation: |
restriction of xs:string |
Facets: |
enumeration: |
"singleQuote" |
- |
Text strings are identified by the use of a single quote (') at each end of the string. |
"doubleQuote" |
- |
Text strings are identified by the use of a double quote (") at each end of the string. |
"none" |
- |
Text strings are not identified as such. |
|
|
XML Source (w/o annotations (4); see within schema source)
<xs:simpleType name="TextQualifierType"> <xs:restriction base="xs:string"> <xs:enumeration value="singleQuote"/> <xs:enumeration value="doubleQuote"/> <xs:enumeration value="none"/> </xs:restriction> </xs:simpleType> |