<?xml version="1.0" encoding="windows-1252" ?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
            xmlns="http://www.example.org"
            targetNamespace="http://www.example.org"
            elementFormDefault="qualified">
  <xsd:element name="exampleElement" type="acount">
    <xsd:annotation>
      <xsd:documentation>
        A sample element
      </xsd:documentation>
    </xsd:annotation>
  </xsd:element>
  <xsd:complexType name="acount">
    <xsd:sequence>
      <xsd:element name="name" type="xsd:string"/>
      <xsd:element name="element2"/>
    </xsd:sequence>
  </xsd:complexType>
</xsd:schema>
