From http://www.w3schools.com (Copyright Refsnes Data)

XML Schema Tutorial

« W3Schools Home Next Chapter »

XML Schema

An XML Schema describes the structure of an XML document.

In this tutorial you will learn how to create XML Schemas, why XML Schemas are more powerful than DTDs, and how to use XML Schema in your application.

Start learning XML Schema now!

XML Schema Example

<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">

<xs:element name="note">
  <xs:complexType>
    <xs:sequence>
      <xs:element name="to" type="xs:string"/>
      <xs:element name="from" type="xs:string"/>
      <xs:element name="heading" type="xs:string"/>
      <xs:element name="body" type="xs:string"/>
    </xs:sequence>
  </xs:complexType>
</xs:element>

</xs:schema>


XML Schema Reference

At W3Schools you will find a complete list of valid XML Schema elements.

XML Schema Reference


« W3Schools Home Next Chapter »

From http://www.w3schools.com (Copyright Refsnes Data)