XML Schema complexContent Element
Complete XML Schema Reference
Definition and Usage
The complexContent element defines extensions or restrictions on a complex
type that contains mixed content or elements only.
Element Information
- Parent elements: complexType
Syntax
<complexContent
id=ID
mixed=true|false
any attributes
>
(annotation?,(restriction|extension))
</complexContent>
|
(The ? sign declares that the element can occur zero or one time
inside the complexContent element)
| Attribute |
Description |
| id |
Optional. Specifies a unique ID for the element |
| mixed |
Optional. Specifies whether character data is allowed to
appear between the child elements of this complexType element. Default is
false |
| any attributes |
Optional. Specifies any other attributes with non-schema
namespace |
Example 1
The following example has a complex type, "fullpersoninfo", that
derives from another complex type, "personinfo", by extending the
inherited type with three additional elements (address, city and country):
<xs:element name="employee" type="fullpersoninfo"/>
<xs:complexType name="personinfo">
<xs:sequence>
<xs:element name="firstname" type="xs:string"/>
<xs:element name="lastname" type="xs:string"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="fullpersoninfo">
<xs:complexContent>
<xs:extension base="personinfo">
<xs:sequence>
<xs:element name="address" type="xs:string"/>
<xs:element name="city" type="xs:string"/>
<xs:element name="country" type="xs:string"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
|
In the example above the "employee" element must contain, in sequence, the
following elements: "firstname", "lastname", "address", "city", and "country".
Complete XML Schema Reference
Click here to design a Stunning Flash Website for Free
Wix is a revolutionary web design tool that provides anyone with the possibility to create professional and beautiful websites for free.
With e-commerce features, search engine visibility and many more professional tools, Wix is the ultimate solution for creating a spectacular site while saving tons of money.
 |
W3Schools' Online Certification Program
The perfect solution for professionals who need to balance work, family, and career building.
More than 4500 certificates already issued!
|
The HTML Certificate documents your knowledge of HTML, XHTML, and CSS.
The JavaScript Certificate documents your knowledge of JavaScript and HTML DOM.
The XML Certificate documents your knowledge of XML, XML DOM and XSLT.
The ASP Certificate documents your knowledge of ASP, SQL, and ADO.
The PHP Certificate documents your knowledge of PHP and SQL (MySQL).
|