Element Definition Child Elements
In This Topic
Graphical Representation
Summary
The <xs:element> allows you to define an element within the XML document. An element can either be defined globally i.e. as a child of the <xs:schema>, or locally within a compositor (<xs:all>, <xs:choice>, <xs:sequence>). A globally defined <xs:element> can be used as the root element within an XML document, and can also be re-used within the schema. Locally defined elements can only appear within there containing element.
There are a number of forms that an element can take.
Depending on the form a given element takes, the properties applicable to it can be greatly changed.
This topic covers the 'Data' form. Typically you can change the form that an element takes by changing the Type property.
Creating
An <xs:element> can be created by selecting a compositor (<xs:all>, <xs:choice>, <xs:sequence>) or <schema> object. Then right clicking and selecting Add Child->Element, a compositor can then be added to the new element.
Properties
Name - The name the complex type will be referred to as. This must be unique, and it's a good standard to postfix it with 'Type').
Type - The type that this element will extend or restrict - in this form this would be empty. If the type was a simple type then the form would be simpleContent, if it were a complex type then the form would be complexContent.
Abstract - Indicates that the element can not actually appear in the XML document. But can be used as a building block or substitution for other elements.
Block - Indicates that the element can not be substituted, extended or restricted - see 'Derived By' Property and Substitution Groups on <xs:element>.
Default - The default value given to the element. If the element is not specified then a parser should use this value in its place (Default and Fixed are mutually exclusive).
Final - .
Fixed - The value that the element has to take (Default and Fixed are mutually exclusive).
Form -
Id - A user defined ID to uniquely identify the entity within the schema.
Nillable - Indicates that the element in the XML document can be omitted (there are compatibility issues when using this flag and XML Data Binding, for this reason it is best avoided if possible).
Sample
The following XSD code
<xs:element name="Address">
<xs:complexType>
<xs:sequence>
<xs:element name="Line1" type="xs:string" />
<xs:element name="Line2" type="xs:string" />
<xs:element name="Postcode" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:element>
Will be represented like this
Sample XML would look like this
<?xml version="1.0" encoding="utf-16"?>
<Address>
<Line1>12 SomePlace St</Line1>
<Line2>Some Town</Line2>
<Postcode>HG27JU</Postcode>
</Address>
Inline Properties
Properties that apply to a type are shown inline at the bottom of the items container.
Values that are inherited from the base types are shown in brackets, values specifically set against the item are shown without brackets.
If a facet is not valid for a given type (typically because of its data type), then its value is shown in red.
Inline properties can be disabled in the
Options.