Please visit our sponsors !
XSD Complex Empty Elements
An empty complex element can contain attributes; but it cannot have any content between the opening and closing tags.
Define Complex Types for Empty Elements
An empty XML
element:
<product prodid="1345" />
|
The "product" element above has no content at all. To define a type
with no content, we must define a type that allows only elements in its content,
but we do not actually declare any elements, like this:
<xs:element name="product">
<xs:complexType>
<xs:complexContent>
<xs:restriction base="xs:integer">
<xs:attribute name="prodid" type="xs:positiveInteger"/>
</xs:restriction>
</xs:complexContent>
</xs:complexType>
</xs:element>
|
In the example above, we define a complexType having complexContent, i.e.
only elements. The complexContent element signals that we intend to restrict or
extend the content model of a complex type, and the restriction of integer
declares one attribute but does not introduce any element content.
However, it is possible to declare the product element more compactly, like
this:
<xs:element name="product">
<xs:complexType>
<xs:attribute name="prodid" type="xs:positiveInteger"/>
</xs:complexType>
</xs:element>
|
Or you can give the complexType element a name, and let the "product" element
have a type attribute that refers to the name of the complexType (if you use
this method, several elements can refer to the same complex type):
<xs:element name="product" type="prodtype"/>
<xs:complexType name="prodtype">
<xs:attribute name="prodid" type="xs:positiveInteger"/>
</xs:complexType>
|
Jump to: Top of Page
or HOME or
Printer friendly page
Search W3Schools:
What Others Say About Us
Does the world know about us? Check out these places:
Dogpile
Alta Vista
MSN
Google
Excite
Lycos
Yahoo
Ask Jeeves
We Help You For Free. You Can Help Us!
W3Schools is for training only. We do not warrant its correctness or its fitness for use.
The risk of using it remains entirely with the user. While using this site, you agree to have read and accepted our
terms of use and
privacy policy.
Copyright 1999-2002 by Refsnes Data. All Rights Reserved
|