XSD-Verschiedenes-Datentyp
- Vorherige Seite XSD-Nummer
- Nächste Seite XSD-Zusammenfassung
Other miscellaneous data types include logical, base64Binary, hexadecimal, floating point, double precision, anyURI, anyURI, and NOTATION.
Boolean Data Type
Logical data types are used to specify true or false values.
Here is an example of a logical declaration in a scheme:
<xs:attribute name="disabled" type="xs:boolean"/>
The elements in the document should look something like this:
<prize disabled="true">999</prize>
Note:Valid boolean values are true, false, 1 (representing true), and 0 (representing false).
Binary Data Types
Binary data types are used to express data in binary form.
We can use two types of binary data:
- base64Binary (Binary data encoded in Base64)
- hexBinary (Binary data encoded in hexadecimal)
Here is an example of a hexBinary declaration in a scheme:
<xs:element name="blobsrc" type="xs:hexBinary"/>
AnyURI Data Type
The anyURI data type is used to specify URI.
Here is an example of an anyURI declaration in a scheme:
<xs:attribute name="src" type="xs:anyURI"/>
The elements in the document should look something like this:
<pic src="http://www.codew3c.com/images/smiley.gif" />
Note:If a URI contains spaces, replace them with %20.
Miscellaneous Data Types
Name | Beschreibung |
---|---|
anyURI | |
base64Binary | |
boolean | |
double | |
float | |
hexBinary | |
NOTATION | |
QName |
Beschränkungen für verschiedene Datentypen (Restriction)
Beschränkungen, die mit verschiedenen Datentypen verwendet werden können:
- enumeration (boolsche Datentypen können diese Beschränkung nicht verwenden*)
- length (boolsche Datentypen können diese Beschränkung nicht verwenden)
- maxLength (boolsche Datentypen können diese Beschränkung nicht verwenden)
- minLength (boolsche Datentypen können diese Beschränkung nicht verwenden)
- pattern
- whiteSpace
*Übersetzeranmerkung:Beschränkung bezieht sich auf constraint.
- Vorherige Seite XSD-Nummer
- Nächste Seite XSD-Zusammenfassung