<?xml version="1.0" encoding="utf-8"?>
<xs:schema 
	xmlns:xs="http://www.w3.org/2001/XMLSchema" 
	xmlns:jd="https://lms.juno.co.uk/" 
	attributeFormDefault="unqualified" 
	elementFormDefault="unqualified" 
	targetNamespace="https://lms.juno.co.uk/" 
	version="1.2" 
	xml:lang="EN">
  <xs:element name="jddImport">
    <xs:annotation>
      <xs:documentation>Juno Digital Import Schema</xs:documentation>
    </xs:annotation>
    <xs:complexType>
      <xs:sequence>
        <xs:element maxOccurs="unbounded" name="release" type="jd:ReleaseType" />
      </xs:sequence>
      <xs:attribute name="DistributorUsername" type="jd:string"/>
    </xs:complexType>
  </xs:element>
  <xs:complexType name="ReleaseType">
    <xs:sequence>
      <xs:element name="DeliveryType" nillable="true" type="jd:DeliveryType" />
      <xs:element name="LabelName" nillable="false" type="jd:string" />
      <xs:element name="TitleCatalogueNumber" nillable="true" type="jd:string" />
      <xs:element name="TitleName" type="jd:string" />
      <xs:element name="TitleArtistName" type="jd:string" />
      <xs:element name="TitleUPC" nillable="true" type="jd:string" />
      <xs:element name="TitlePhysicallyReleased" type="xs:boolean" />
      <xs:element name="TitleReleaseInformation" nillable="true" type="xs:string" />
      <xs:element name="TitleFirstGenreId" minOccurs="0" nillable="true" type="jd:GenreIdType" />
      <xs:element name="TitleSecondGenreId" minOccurs="0" nillable="true" type="jd:GenreIdType" />
      <xs:element name="TitleThirdGenreId" minOccurs="0" nillable="true" type="jd:GenreIdType" />
      <xs:element name="TitleType" type="jd:TitleType" />
      <xs:element name="TitleTerritory" nillable="true" type="jd:TitleTerritoryType" />
      <xs:element name="TitleCopyright" minOccurs="0" nillable="true" type="xs:string" />
      <xs:element name="TitleProduction" minOccurs="0" nillable="true" type="xs:string" />
      <xs:element minOccurs="0" name="YourRef" nillable="true" type="jd:string">
        <xs:annotation>
          <xs:documentation>This is a unique reference that you can use to identify this release on our system</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="BackCover" minOccurs="0" type="jd:Cover" />      
      <xs:element name="FrontCover" type="jd:Cover" />
      <xs:element name="ReleaseDate" type="xs:date" />
      <xs:element name="ReleaseDateOnJuno" type="xs:date" minOccurs="0" >
		<xs:annotation>
          	<xs:documentation>Set this field to before ReleaseDate to set a time period when the release is exclusively available on JunoDownload.  Separator for date is '-' and the format is yyyy-mm-dd</xs:documentation>
		</xs:annotation>
	  </xs:element> 	
	  <xs:element name="ReleasePriceCode" minOccurs="0" nillable="true" type="xs:string" />
      <xs:element minOccurs="0" maxOccurs="3" name="ReleaseFormatPricing" type="jd:RFP" />
      <xs:element name="Tracks" type="jd:Tracks" />
    </xs:sequence>
    <xs:attribute name="LabelReferenceCode" type="jd:string" use="required">
 	  <xs:annotation>
		<xs:documentation>Formerly "LabelDigitalGUID", this field should be a unique reference to the label that this release is released on</xs:documentation>
	  </xs:annotation>
	</xs:attribute>	
  </xs:complexType>
  <xs:complexType name="Cover">
    <xs:all>
      <xs:element name="ImageFile" type="jd:ImageFile" minOccurs="0"/>
    </xs:all>
  </xs:complexType>
  <xs:complexType name="ImageFile">
    <xs:all>
      <xs:element name="FileInfo" type="jd:FileInfo" />
    </xs:all>
  </xs:complexType>
  <xs:complexType name="AudioFile">
    <xs:all>
      <xs:element name="FileInfo" type="jd:FileInfo" />
      <xs:element minOccurs="0" name="Duration" type="jd:integer">
		<xs:annotation>
          	<xs:documentation>The duration of the audio file in seconds</xs:documentation>
		</xs:annotation>
	  </xs:element>
    </xs:all>
  </xs:complexType>
  <xs:complexType name="TrackComposers">
  	<xs:sequence>
      <xs:element name="TrackComposer" minOccurs="0" maxOccurs="10" type="jd:string"/>
	</xs:sequence>
  </xs:complexType>
  <xs:complexType name="FileInfo">
    <xs:sequence>
      <xs:element name="FileName" type="jd:string" />
      <xs:element minOccurs="0" nillable="true" name="FileSize" type="jd:integer" />
      <xs:element minOccurs="0" name="Checksum">
        <xs:complexType mixed="true">
          <xs:attribute name="type" use="required">
            <xs:simpleType>
              <xs:restriction base="jd:string">
                <xs:enumeration value="md5" />
                <xs:enumeration value="sha1" />
                <xs:enumeration value="crc32" />
              </xs:restriction>
            </xs:simpleType>
          </xs:attribute>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
  </xs:complexType>
  <xs:complexType name="RFP">
    <xs:sequence>
      <xs:element name="Format" type="jd:DigitalFormat" />
      <xs:element default="0.00" name="ReleasePrice" nillable="true" type="xs:float" />
    </xs:sequence>
  </xs:complexType>
  <xs:complexType name="TitleTerritoryType">
    <xs:sequence>
      <xs:element maxOccurs="unbounded" minOccurs="0" default="ALL" name="CountryCode" type="jd:CountryCodeType" />
    </xs:sequence>
  </xs:complexType>
  <xs:complexType name="CountryCodeType">
    <xs:simpleContent>
      <xs:extension base="jd:CountryCodes">
        <xs:attribute default="incl" name="Restriction" type="jd:RestrictionType" />
      </xs:extension>
    </xs:simpleContent>
  </xs:complexType>
  <xs:simpleType name="DeliveryType">
    <xs:restriction base="jd:string">
      <xs:enumeration value="insert">
        <xs:annotation>
          <xs:documentation>Default value.  Inserts a new release.</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="update">
        <xs:annotation>
          <xs:documentation>Updates the audio/image files (if new ones have been uploaded) and metadata for a release that is already in the system</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="delete">
        <xs:annotation>
          <xs:documentation>Takes a release off the website</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="RestrictionType">
    <xs:restriction base="xs:string">
      <xs:enumeration value="excl">
        <xs:annotation>
          <xs:documentation>Exclusive - label not licenced to sell in these countries</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="incl">
        <xs:annotation>
          <xs:documentation>Inclusive - label licenced to sell in these countries</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:complexType name="Tracks">
    <xs:sequence>
      <xs:element maxOccurs="unbounded" name="Track">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="TrackTitle" type="jd:string" />
            <xs:element name="TrackMixTitle" nillable="true" type="jd:string" />
            <xs:element name="TrackArtistName" nillable="true" type="jd:string" />
            <xs:element name="TrackNumber" type="jd:integer" />
            <xs:element name="TrackIndividualSale" type="xs:boolean" />
            <xs:element name="TrackGenreId" minOccurs="0" type="jd:GenreIdType" />
			<xs:element name="AudioFile" type="jd:AudioFile" />            
            <xs:element name="TrackPublisher" minOccurs="0" nillable="true" type="jd:string" />
            <xs:element name="TrackComposers" minOccurs="0" nillable="true" type="jd:TrackComposers"/>
            <xs:element name="TrackMCPSCode" minOccurs="0" nillable="true" type="jd:string" />
            <xs:element name="TrackISRCCode" minOccurs="0" nillable="true" type="jd:string" />
            <xs:element minOccurs="0" name="TrackYourRef" nillable="true" type="jd:string">
              <xs:annotation>
                <xs:documentation>This is a unique reference that you can use to identify this track on our system</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element minOccurs="0" name="TrackPreviewStartTime" nillable="true" type="jd:integer">
              <xs:annotation>
                <xs:documentation>Optional: The time in seconds into the track that the preview will be at</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element minOccurs="0" default="90" name="TrackPreviewLength" nillable="true" type="jd:integer">
              <xs:annotation>
                <xs:documentation>Optional: The length of time the track preview will play for</xs:documentation>
              </xs:annotation>
            </xs:element>
            <xs:element name="TrackPriceCode" minOccurs="0" nillable="true" type="xs:string" />
            <xs:element minOccurs="0" maxOccurs="3" name="TrackFormatPricing" type="jd:TFP" />
          </xs:sequence>
        </xs:complexType>
        <xs:key name="UniqTrackNumber">
          <xs:selector xpath="." />
          <xs:field xpath="TrackNumber" />
        </xs:key>
      </xs:element>
    </xs:sequence>
  </xs:complexType>
  <xs:complexType name="TFP">
    <xs:sequence>
      <xs:element name="Format" type="jd:DigitalFormat" />
      <xs:element default="0.00" name="TrackPrice" nillable="true" type="xs:float" />
    </xs:sequence>
  </xs:complexType>
  <xs:simpleType name="string">
    <xs:restriction base="xs:string">
      <xs:maxLength value="255" />
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="TitleType">
    <xs:restriction base="jd:string">
      <xs:enumeration value="1">
        <xs:annotation>
          <xs:documentation>Album</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="2">
        <xs:annotation>
          <xs:documentation>Single</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="DigitalFormat">
    <xs:restriction base="jd:string">
      <xs:enumeration value="192">
        <xs:annotation>
          <xs:documentation>192 kbps</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="320">
        <xs:annotation>
          <xs:documentation>320 kbps</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="wav">
        <xs:annotation>
          <xs:documentation>wav</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="date">
    <xs:restriction base="xs:date">
      <xs:pattern value="\p{Nd}{4}-\p{Nd}{2}-\p{Nd}{2}" />
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="integer">
    <xs:restriction base="xs:integer">
      <xs:minInclusive value="1" />
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="GenreIdType">
    <xs:annotation>
      <xs:documentation>List of GenreIds </xs:documentation>
    </xs:annotation>
    <xs:restriction base="jd:string">
      <xs:enumeration value="">
        <xs:annotation>
          <xs:documentation>Unknown</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="05|01">
        <xs:annotation>
          <xs:documentation>Downtempo - Experimental/Electronic</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="05|02">
        <xs:annotation>
          <xs:documentation>Downtempo - Vocal/Lounge/Dub</xs:documentation>
      	</xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="06|02">
        <xs:annotation>
          <xs:documentation>Drum &amp; Bass</xs:documentation>
        </xs:annotation>
      </xs:enumeration> 
      <xs:enumeration value="08|01">
        <xs:annotation>
          <xs:documentation>UK Hardcore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>         
      <xs:enumeration value="08|02">
        <xs:annotation>
          <xs:documentation>Gabba</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="08|03">
        <xs:annotation>
          <xs:documentation>Hardstyle</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="12|03">
        <xs:annotation>
          <xs:documentation>Techno</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="14|01">
        <xs:annotation>
          <xs:documentation>Uplifting/Progressive Trance</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="14|02">
        <xs:annotation>
          <xs:documentation>Hard Trance</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="14|03">
        <xs:annotation>
          <xs:documentation>Psychedelic Trance/Goa Trance</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="14|04">
        <xs:annotation>
          <xs:documentation>Pop Trance</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15|01">
        <xs:annotation>
          <xs:documentation>Hard House</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15|03">
        <xs:annotation>
          <xs:documentation>Progressive House</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15|04">
        <xs:annotation>
          <xs:documentation>Funky/Vocal/Disco/Club House</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15|05">
        <xs:annotation>
          <xs:documentation>Scouse/Bouncy House</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15|06">
        <xs:annotation>
          <xs:documentation>Minimal/Tech House</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15|08">
        <xs:annotation>
          <xs:documentation>Electro house/electroclash</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="15|09">
        <xs:annotation>
          <xs:documentation>Deep House</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16|02">
        <xs:annotation>
          <xs:documentation>4/4 Garage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16|03">
        <xs:annotation>
          <xs:documentation>Grime/Dubstep</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="16|04">
        <xs:annotation>
          <xs:documentation>Speed Garage</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17|01">
        <xs:annotation>
          <xs:documentation>Hip Hop/R&amp;B</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17|03">
        <xs:annotation>
          <xs:documentation>Funk/Rare Groove/Disco/Reissues</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="17|04">
        <xs:annotation>
          <xs:documentation>Broken Beat/Nu Jazz</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19|99">
        <xs:annotation>
          <xs:documentation>Reggae/Ska</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19|02">
        <xs:annotation>
          <xs:documentation>Dancehall/Ragga/Reggaeton/Hiphop Remixes</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19|03">
        <xs:annotation>
          <xs:documentation>Reggae Classics/Oldies/Ska</xs:documentation>
        </xs:annotation>
      </xs:enumeration>      
      <xs:enumeration value="19|04">
        <xs:annotation>
          <xs:documentation>Roots/One Drop/Lovers Rock</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="19|05">
        <xs:annotation>
          <xs:documentation>Dub</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="22|01">
        <xs:annotation>
          <xs:documentation>DJ Tools/Acappellas/Scratch Records</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="24|01">
        <xs:annotation>
          <xs:documentation>Euro/Pop Dance</xs:documentation>
        </xs:annotation>
      </xs:enumeration>      
      <xs:enumeration value="26|01">
        <xs:annotation>
          <xs:documentation>Disco/Nu Disco/Re-Edits</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="28|01">
        <xs:annotation>
          <xs:documentation>Rock/Indie</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30|01">
        <xs:annotation>
          <xs:documentation>Breakbeat</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="30|02">
        <xs:annotation>
          <xs:documentation>Electro</xs:documentation>
        </xs:annotation>
      </xs:enumeration>      
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="CountryCodes">
    <xs:annotation>
      <xs:documentation>List of country codes </xs:documentation>
    </xs:annotation>
    <xs:restriction base="jd:string">
      <xs:enumeration value="ALL">
        <xs:annotation>
          <xs:documentation>ALL or Worldwide rights</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AF">
        <xs:annotation>
          <xs:documentation>Afghanistan (Islamic St.)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AL">
        <xs:annotation>
          <xs:documentation>Albania</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DZ">
        <xs:annotation>
          <xs:documentation>Algeria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AS">
        <xs:annotation>
          <xs:documentation>American Samoa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AD">
        <xs:annotation>
          <xs:documentation>Andorra</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AO">
        <xs:annotation>
          <xs:documentation>Angola (Republic of)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AI">
        <xs:annotation>
          <xs:documentation>Anguilla</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AG">
        <xs:annotation>
          <xs:documentation>Antigua and Barbuda</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AR">
        <xs:annotation>
          <xs:documentation>Argentina</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AM">
        <xs:annotation>
          <xs:documentation>Armenia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AW">
        <xs:annotation>
          <xs:documentation>Aruba</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AU">
        <xs:annotation>
          <xs:documentation>Australia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AT">
        <xs:annotation>
          <xs:documentation>Austria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AZ">
        <xs:annotation>
          <xs:documentation>Azerbaijan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BS">
        <xs:annotation>
          <xs:documentation>Bahamas</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BH">
        <xs:annotation>
          <xs:documentation>Bahrain</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BD">
        <xs:annotation>
          <xs:documentation>Bangladesh</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BB">
        <xs:annotation>
          <xs:documentation>Barbados</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BY">
        <xs:annotation>
          <xs:documentation>Belarus</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BE">
        <xs:annotation>
          <xs:documentation>Belgium</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BZ">
        <xs:annotation>
          <xs:documentation>Belize</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BJ">
        <xs:annotation>
          <xs:documentation>Benin</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BM">
        <xs:annotation>
          <xs:documentation>Bermuda</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BT">
        <xs:annotation>
          <xs:documentation>Bhutan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BO">
        <xs:annotation>
          <xs:documentation>Bolivia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BA">
        <xs:annotation>
          <xs:documentation>Bosnia-Herzegovina</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BW">
        <xs:annotation>
          <xs:documentation>Botswana</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BR">
        <xs:annotation>
          <xs:documentation>Brazil</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BN">
        <xs:annotation>
          <xs:documentation>Brunei Darussalam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BG">
        <xs:annotation>
          <xs:documentation>Bulgaria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BF">
        <xs:annotation>
          <xs:documentation>Burkina Faso</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="BI">
        <xs:annotation>
          <xs:documentation>Burundi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KH">
        <xs:annotation>
          <xs:documentation>Cambodia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CM">
        <xs:annotation>
          <xs:documentation>Cameroon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CA">
        <xs:annotation>
          <xs:documentation>Canada</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CV">
        <xs:annotation>
          <xs:documentation>Cape Verde</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KY">
        <xs:annotation>
          <xs:documentation>Cayman Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CF">
        <xs:annotation>
          <xs:documentation>Central African Rep.</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TD">
        <xs:annotation>
          <xs:documentation>Chad</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CL">
        <xs:annotation>
          <xs:documentation>Chile</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CN">
        <xs:annotation>
          <xs:documentation>China</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CO">
        <xs:annotation>
          <xs:documentation>Colombia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CG">
        <xs:annotation>
          <xs:documentation>Congo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CK">
        <xs:annotation>
          <xs:documentation>Cook Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CR">
        <xs:annotation>
          <xs:documentation>Costa Rica</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HR">
        <xs:annotation>
          <xs:documentation>Croatia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CY">
        <xs:annotation>
          <xs:documentation>Cyprus</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CZ">
        <xs:annotation>
          <xs:documentation>Czech Republic</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DK">
        <xs:annotation>
          <xs:documentation>Denmark</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DJ">
        <xs:annotation>
          <xs:documentation>Djibouti</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DM">
        <xs:annotation>
          <xs:documentation>Dominica</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DO">
        <xs:annotation>
          <xs:documentation>Dominican Republic</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TL">
        <xs:annotation>
          <xs:documentation>East Timor</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EC">
        <xs:annotation>
          <xs:documentation>Ecuador</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EG">
        <xs:annotation>
          <xs:documentation>Egypt</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SV">
        <xs:annotation>
          <xs:documentation>El Salvador</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GQ">
        <xs:annotation>
          <xs:documentation>Equatorial Guinea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ER">
        <xs:annotation>
          <xs:documentation>Eritrea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="EE">
        <xs:annotation>
          <xs:documentation>Estonia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ET">
        <xs:annotation>
          <xs:documentation>Ethiopia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FO">
        <xs:annotation>
          <xs:documentation>Faroe Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FJ">
        <xs:annotation>
          <xs:documentation>Fiji</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FI">
        <xs:annotation>
          <xs:documentation>Finland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FR">
        <xs:annotation>
          <xs:documentation>France</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GF">
        <xs:annotation>
          <xs:documentation>Guiana (Fr.)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GA">
        <xs:annotation>
          <xs:documentation>Gabon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GM">
        <xs:annotation>
          <xs:documentation>Gambia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GE">
        <xs:annotation>
          <xs:documentation>Georgia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="DE">
        <xs:annotation>
          <xs:documentation>Germany</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GH">
        <xs:annotation>
          <xs:documentation>Ghana</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GI">
        <xs:annotation>
          <xs:documentation>Gibraltar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GR">
        <xs:annotation>
          <xs:documentation>Greece</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GL">
        <xs:annotation>
          <xs:documentation>Greenland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GD">
        <xs:annotation>
          <xs:documentation>Grenada</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GP">
        <xs:annotation>
          <xs:documentation>Guadeloupe (Fr.)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GU">
        <xs:annotation>
          <xs:documentation>Guam (US)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GT">
        <xs:annotation>
          <xs:documentation>Guatemala</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GN">
        <xs:annotation>
          <xs:documentation>Guinea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GW">
        <xs:annotation>
          <xs:documentation>Guinea Bissau</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GY">
        <xs:annotation>
          <xs:documentation>Guyana</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HT">
        <xs:annotation>
          <xs:documentation>Haiti</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HN">
        <xs:annotation>
          <xs:documentation>Honduras</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HK">
        <xs:annotation>
          <xs:documentation>Hong Kong</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="HU">
        <xs:annotation>
          <xs:documentation>Hungary</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IS">
        <xs:annotation>
          <xs:documentation>Iceland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IN">
        <xs:annotation>
          <xs:documentation>India</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ID">
        <xs:annotation>
          <xs:documentation>Indonesia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IQ">
        <xs:annotation>
          <xs:documentation>Iraq</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IE">
        <xs:annotation>
          <xs:documentation>Irish Republic</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IL">
        <xs:annotation>
          <xs:documentation>Israel</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IT">
        <xs:annotation>
          <xs:documentation>Italy</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CI">
        <xs:annotation>
          <xs:documentation>Ivory Coast</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="JM">
        <xs:annotation>
          <xs:documentation>Jamaica</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="JP">
        <xs:annotation>
          <xs:documentation>Japan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="JO">
        <xs:annotation>
          <xs:documentation>Jordan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KZ">
        <xs:annotation>
          <xs:documentation>Kazakhstan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KE">
        <xs:annotation>
          <xs:documentation>Kenya</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KR">
        <xs:annotation>
          <xs:documentation>South Korea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KW">
        <xs:annotation>
          <xs:documentation>Kuwait</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KG">
        <xs:annotation>
          <xs:documentation>Kyrgyz Republic</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LA">
        <xs:annotation>
          <xs:documentation>Laos</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LV">
        <xs:annotation>
          <xs:documentation>Latvia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LB">
        <xs:annotation>
          <xs:documentation>Lebanon</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LS">
        <xs:annotation>
          <xs:documentation>Lesotho</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LR">
        <xs:annotation>
          <xs:documentation>Liberia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LI">
        <xs:annotation>
          <xs:documentation>Liechtenstein</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LT">
        <xs:annotation>
          <xs:documentation>Lithuania</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LU">
        <xs:annotation>
          <xs:documentation>Luxembourg</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MO">
        <xs:annotation>
          <xs:documentation>Macau</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MK">
        <xs:annotation>
          <xs:documentation>Macedonia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MG">
        <xs:annotation>
          <xs:documentation>Madagascar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MW">
        <xs:annotation>
          <xs:documentation>Malawi</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MY">
        <xs:annotation>
          <xs:documentation>Malaysia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MV">
        <xs:annotation>
          <xs:documentation>Maldives</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ML">
        <xs:annotation>
          <xs:documentation>Mali</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MT">
        <xs:annotation>
          <xs:documentation>Malta</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MH">
        <xs:annotation>
          <xs:documentation>Marshall Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MQ">
        <xs:annotation>
          <xs:documentation>Martinique (Fr.)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MR">
        <xs:annotation>
          <xs:documentation>Mauritania</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MU">
        <xs:annotation>
          <xs:documentation>Mauritius</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MX">
        <xs:annotation>
          <xs:documentation>Mexico</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FM">
        <xs:annotation>
          <xs:documentation>Micronesia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MD">
        <xs:annotation>
          <xs:documentation>Moldova</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MC">
        <xs:annotation>
          <xs:documentation>Monaco</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MN">
        <xs:annotation>
          <xs:documentation>Mongolia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MS">
        <xs:annotation>
          <xs:documentation>Montserrat</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MA">
        <xs:annotation>
          <xs:documentation>Morocco</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MZ">
        <xs:annotation>
          <xs:documentation>Mozambique</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="MM">
        <xs:annotation>
          <xs:documentation>Myanmar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NA">
        <xs:annotation>
          <xs:documentation>Namibia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NP">
        <xs:annotation>
          <xs:documentation>Nepal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AN">
        <xs:annotation>
          <xs:documentation>Netherland Antilles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NL">
        <xs:annotation>
          <xs:documentation>Netherlands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NC">
        <xs:annotation>
          <xs:documentation>New Caledonia (Fr.)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NZ">
        <xs:annotation>
          <xs:documentation>New Zealand</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NI">
        <xs:annotation>
          <xs:documentation>Nicaragua</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NE">
        <xs:annotation>
          <xs:documentation>Niger</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NG">
        <xs:annotation>
          <xs:documentation>Nigeria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="NO">
        <xs:annotation>
          <xs:documentation>Norway</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="OM">
        <xs:annotation>
          <xs:documentation>Oman</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PK">
        <xs:annotation>
          <xs:documentation>Pakistan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PW">
        <xs:annotation>
          <xs:documentation>Palau</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PA">
        <xs:annotation>
          <xs:documentation>Panama</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PG">
        <xs:annotation>
          <xs:documentation>Papua New Guinea</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PY">
        <xs:annotation>
          <xs:documentation>Paraguay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PE">
        <xs:annotation>
          <xs:documentation>Peru</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PH">
        <xs:annotation>
          <xs:documentation>Philippines</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PL">
        <xs:annotation>
          <xs:documentation>Poland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PF">
        <xs:annotation>
          <xs:documentation>Polynesia (Fr.)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="PT">
        <xs:annotation>
          <xs:documentation>Portugal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="QA">
        <xs:annotation>
          <xs:documentation>Qatar</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RE">
        <xs:annotation>
          <xs:documentation>Reunion (Fr.)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RO">
        <xs:annotation>
          <xs:documentation>Romania</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RU">
        <xs:annotation>
          <xs:documentation>Russian Federation</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="RW">
        <xs:annotation>
          <xs:documentation>Rwanda</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LC">
        <xs:annotation>
          <xs:documentation>Saint Lucia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SM">
        <xs:annotation>
          <xs:documentation>San Marino</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SA">
        <xs:annotation>
          <xs:documentation>Saudi Arabia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SN">
        <xs:annotation>
          <xs:documentation>Senegal</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SC">
        <xs:annotation>
          <xs:documentation>Seychelles</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SL">
        <xs:annotation>
          <xs:documentation>Sierra Leone</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SG">
        <xs:annotation>
          <xs:documentation>Singapore</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SK">
        <xs:annotation>
          <xs:documentation>Slovakia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SI">
        <xs:annotation>
          <xs:documentation>Slovenia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ZA">
        <xs:annotation>
          <xs:documentation>South Africa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ES">
        <xs:annotation>
          <xs:documentation>Spain</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="LK">
        <xs:annotation>
          <xs:documentation>Sri Lanka</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="KN">
        <xs:annotation>
          <xs:documentation>St.Kitts Nevis Anguilla</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VC">
        <xs:annotation>
          <xs:documentation>St.Vincent &amp; Grenadines</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SR">
        <xs:annotation>
          <xs:documentation>Suriname</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SZ">
        <xs:annotation>
          <xs:documentation>Swaziland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SE">
        <xs:annotation>
          <xs:documentation>Sweden</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CH">
        <xs:annotation>
          <xs:documentation>Switzerland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="SY">
        <xs:annotation>
          <xs:documentation>Syria</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TW">
        <xs:annotation>
          <xs:documentation>Taiwan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TZ">
        <xs:annotation>
          <xs:documentation>Tanzania</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TH">
        <xs:annotation>
          <xs:documentation>Thailand</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TG">
        <xs:annotation>
          <xs:documentation>Togo</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TO">
        <xs:annotation>
          <xs:documentation>Tonga</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TT">
        <xs:annotation>
          <xs:documentation>Trinidad &amp; Tobago</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TN">
        <xs:annotation>
          <xs:documentation>Tunisia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TR">
        <xs:annotation>
          <xs:documentation>Turkey</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TM">
        <xs:annotation>
          <xs:documentation>Turkmenistan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="TC">
        <xs:annotation>
          <xs:documentation>Turks &amp; Caicos Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UG">
        <xs:annotation>
          <xs:documentation>Uganda</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UA">
        <xs:annotation>
          <xs:documentation>Ukraine</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="AE">
        <xs:annotation>
          <xs:documentation>Utd Arab Emirates</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="GB">
        <xs:annotation>
          <xs:documentation>United Kingdom</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="US">
        <xs:annotation>
          <xs:documentation>USA</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UY">
        <xs:annotation>
          <xs:documentation>Uruguay</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="UZ">
        <xs:annotation>
          <xs:documentation>Uzbekistan</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VU">
        <xs:annotation>
          <xs:documentation>Vanuatu</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VA">
        <xs:annotation>
          <xs:documentation>Vatican City State</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VE">
        <xs:annotation>
          <xs:documentation>Venezuela</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VN">
        <xs:annotation>
          <xs:documentation>Vietnam</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VG">
        <xs:annotation>
          <xs:documentation>Virgin Islands (British)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="VI">
        <xs:annotation>
          <xs:documentation>Virgin Islands (US)</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WF">
        <xs:annotation>
          <xs:documentation>Wallis &amp; Futuna Islands</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="WS">
        <xs:annotation>
          <xs:documentation>Western Samoa</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="YE">
        <xs:annotation>
          <xs:documentation>Yemen</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ZM">
        <xs:annotation>
          <xs:documentation>Zambia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="ZW">
        <xs:annotation>
          <xs:documentation>Zimbabwe</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="FR">
        <xs:annotation>
          <xs:documentation>Corsica</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="IE">
        <xs:annotation>
          <xs:documentation>Northern Ireland</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
      <xs:enumeration value="CS">
        <xs:annotation>
          <xs:documentation>Serbia</xs:documentation>
        </xs:annotation>
      </xs:enumeration>
    </xs:restriction>
  </xs:simpleType>

</xs:schema>