XML Schema Documentation

Table of Contents

top

Schema Document Properties

Target Namespace http://state.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.

Declared Namespaces

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

Global Definitions

Complex Type: State

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