XML Schema Documentation

Table of Contents

top

Schema Document Properties

Target Namespace http://www.exln.com
Element and Attribute Namespaces
  • Global element and attribute declarations belong to this schema's target namespace.
  • By default, local element declarations have no namespace.
  • By default, local attribute declarations have no namespace.
Schema Composition

Declared Namespaces

Prefix Namespace
xml http://www.w3.org/XML/1998/namespace
xsd http://www.w3.org/2001/XMLSchema
exln http://www.exln.com
state http://state.com
Schema Component Representation
<xsd:schema targetNamespace="http://www.exln.com">
<xsd:import schemaLocation="c:\temp\xsd\test_imported.xsd" namespace="http://state.com"/>
...
</xsd:schema>
top

Global Declarations

Element: address

Name address
Type Address
Nillable no
Abstract no
XML Instance Representation
<exln:address> Address </exln:address>
Schema Component Representation
<xsd:element name="address" type="Address"/>
top

Global Definitions

Complex Type: Address

Parent type: None
Direct sub-types: None
Name Address
Abstract no
XML Instance Representation
<...>
<street> ... </street> [1]
<zip> ... </zip> [1]
<state> state:State </state> [1]
</...>
Schema Component Representation
<xsd:complexType name="Address">
<xsd:sequence>
<xsd:element name="street"/>
<xsd:element name="zip"/>
<xsd:element name="state" type="state:State"/>
</xsd:sequence>
</xsd:complexType>
top