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
Schema Component Representation
<xsd:schema targetNamespace="http://www.exln.com">
<xsd:include schemaLocation="c:\temp\xsd\test_included.xsd"/>
...
</xsd:schema>
top

Global Declarations

Element: Person

Name Person
Type Locally-defined complex type
Nillable no
Abstract no
XML Instance Representation
<exln:Person>
<address> ... </address> [1]
</exln:Person>
Schema Component Representation
<xsd:element name="Person">
<xsd:complexType>
<xsd:sequence>
<xsd:element ref="address"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
top