<?xml version="1.0" encoding="utf-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
	    targetNamespace="http://www.wa5znu.org/2006/04/xdif/" 
	    xmlns:contest="http://www.wa5znu.org/2006/04/xdif/"
	    elementFormDefault="qualified">

  <!-- Contest -->
  <xsd:element name="contest">
    <xsd:complexType>
      <xsd:sequence>
	<xsd:choice minOccurs="0" maxOccurs="1">
	
	  <!-- Serial Number -->
	  <xsd:element name="serial">
	    <xsd:complexType>
	      <xsd:simpleContent>
		<xsd:extension base="xsd:integer">
		  <!-- Allow foreign attributes -->
		  <xsd:anyAttribute namespace="##other" />	<!-- Allow foreign attributes -->
		</xsd:extension>
	      </xsd:simpleContent>
	    </xsd:complexType>
	  </xsd:element>

  
	  <!-- information -->
	  <xsd:element name="information">
	    <xsd:complexType>
	      <xsd:simpleContent>
		<xsd:extension base="xsd:string">
		  <!-- Allow foreign attributes -->
		  <xsd:anyAttribute namespace="##other" />	<!-- Allow foreign attributes -->
		</xsd:extension>
	      </xsd:simpleContent>
	    </xsd:complexType>
	  </xsd:element>

	</xsd:choice>
      </xsd:sequence>
      <xsd:attribute name="name" type="xsd:string" />	       <!--Contest Name-->
      <xsd:anyAttribute namespace="##other" />	<!-- Allow foreign attributes -->
    </xsd:complexType>
  </xsd:element>

</xsd:schema>


