A simple type element can also be declared as:
<xs:element name="Element_Name">
<xs:simpleType>
...
...
</xs:simpleType>
where Element_Name indicates the name of an element. Note that this declaration does not contain the type keyword, which indicates the data type specified for the element. This declaration is commonly used to specify restrictions for the element data types. |
|