<?xml version="1.0" encoding="UTF-8"?>
<!-- edited with XMLSpy v2007 rel. 3 sp1 (http://www.altova.com) by OFFICE INTERNATIONAL DE L'EAU (OFFICE INTERNATIONAL DE L'EAU) --><!-- edited with XMLSPY v5 rel. 4 U (http://www.xmlspy.com) by Yvonne Gordon-Walker (WRc plc) --><!--16072012 : modifications apportées pour tenter de générer le document de spécification via l'outil GRC SANDRE -->
<xs:schema xmlns="http://water.eionet.europa.eu/schemas/dir200060ec/wfdcommon" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:cct="http://xml.sandre.eaufrance.fr/Composants/1" xmlns:dc="http://purl.org/dc/elements/1.1/" targetNamespace="http://water.eionet.europa.eu/schemas/dir200060ec/wfdcommon" elementFormDefault="qualified" attributeFormDefault="unqualified">
    <xs:import namespace="http://xml.sandre.eaufrance.fr/Composants/1" schemaLocation="../../composantstypes.xsd"/>
    <xs:complexType name="CountryCode">
        <xs:annotation>
            <xs:documentation>Unique 2 character ISO Code for the EU Member States</xs:documentation>
        </xs:annotation>
        <xs:simpleContent>
            <xs:extension base="cct:TextType"/>
        </xs:simpleContent>
    </xs:complexType>
    <xs:simpleType name="FeatureUniqueCodeType">
        <xs:annotation>
            <xs:documentation>Type for unique code within the Member State for the feature</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:minLength value="1"/>
            <xs:maxLength value="40"/>
            <xs:whiteSpace value="collapse"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="FeatureUniqueEUCodeType">
        <xs:annotation>
            <xs:documentation>Type for EU code, allows up to 42 characters (unique code within MS prefixed with country ISO 2 character code</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:maxLength value="42"/>
            <xs:minLength value="3"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="String100Type">
        <xs:annotation>
            <xs:documentation>String of up to 100 characters</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:minLength value="1"/>
            <xs:maxLength value="100"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="String50Type">
        <xs:annotation>
            <xs:documentation>String of up to 50 characters</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:minLength value="1"/>
            <xs:maxLength value="50"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="String1000Type">
        <xs:annotation>
            <xs:documentation>String of up to 1000 characters</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:minLength value="1"/>
            <xs:maxLength value="1000"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="String500Type">
        <xs:annotation>
            <xs:documentation>String of up to 500 characters</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:minLength value="1"/>
            <xs:maxLength value="500"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:complexType name="ParameterStructure">
        <xs:annotation>
            <xs:documentation>Structure to define parameters</xs:documentation>
        </xs:annotation>
        <xs:sequence>
            <xs:element name="PARAMETER_CD" type="String250Type">
                <xs:annotation>
                    <xs:documentation>Name or code of the parameter</xs:documentation>
                </xs:annotation>
            </xs:element>
            <xs:element name="MEASURED_AS" type="String250Type" minOccurs="0">
                <xs:annotation>
                    <xs:documentation>How the parameter is measured</xs:documentation>
                </xs:annotation>
            </xs:element>
            <xs:element name="FREQUENCY" type="NumberNonNegativeIntegerType" minOccurs="0">
                <xs:annotation>
                    <xs:documentation>Frequency at which the parameter is measured</xs:documentation>
                </xs:annotation>
            </xs:element>
            <xs:element name="CYCLE" type="NumberNonNegativeIntegerType" minOccurs="0">
                <xs:annotation>
                    <xs:documentation>Monitoring cycle for this parameter. Use 0 to indicate  that the parameter is only measured once</xs:documentation>
                </xs:annotation>
            </xs:element>
        </xs:sequence>
    </xs:complexType>
    <xs:simpleType name="String250Type">
        <xs:annotation>
            <xs:documentation>String of up to 250 characters</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:minLength value="1"/>
            <xs:maxLength value="250"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="NumberExceptionType">
        <xs:annotation>
            <xs:documentation>Numerical codes for data exceptions: -9999=Unknown, -8888=Yet to be measured, -7777=Not Applicable</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="-9999"/>
            <xs:enumeration value="-8888"/>
            <xs:enumeration value="-7777"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="NumberDecimalBaseType">
        <xs:restriction base="xs:decimal">
            <xs:minInclusive value="0"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="NumberDecimalType">
        <xs:annotation>
            <xs:documentation>Decimal with options for exceptions. -9999=Unknown, -8888=Yet to be measured, -7777=Not Applicable.</xs:documentation>
        </xs:annotation>
        <xs:union memberTypes="NumberDecimalBaseType NumberExceptionType"/>
    </xs:simpleType>
    <xs:simpleType name="NumberPercentageBaseType">
        <xs:annotation>
            <xs:documentation>Percentage with 3 decimal places</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:decimal">
            <xs:minInclusive value="0"/>
            <xs:maxInclusive value="100"/>
            <xs:fractionDigits value="3"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="NumberPercentageType">
        <xs:annotation>
            <xs:documentation>Percentage with option for exceptions</xs:documentation>
        </xs:annotation>
        <xs:union memberTypes="NumberPercentageBaseType NumberExceptionType"/>
    </xs:simpleType>
    <xs:simpleType name="NumberNonNegativeIntegerType">
        <xs:annotation>
            <xs:documentation>Non-negative integer with option for exceptions</xs:documentation>
        </xs:annotation>
        <xs:union memberTypes="xs:nonNegativeInteger NumberExceptionType"/>
    </xs:simpleType>
    <xs:simpleType name="YesNoCode">
        <xs:annotation>
            <xs:documentation>Yes/No Code: Yes=Y; No=N</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="Y"/>
            <xs:enumeration value="N"/>
            <xs:enumeration value=""/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="YesNoUnknownCode">
        <xs:annotation>
            <xs:documentation>For Yes, No or Unknown:
			Y=Yes;
			N=No;
			U=Unknown			
			</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="Y"/>
            <xs:enumeration value="N"/>
            <xs:enumeration value="U"/>
            <xs:enumeration value="NA"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="CoordinateType">
        <xs:annotation>
            <xs:documentation>Format Decimal degrees (-)dd.ddddd</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:pattern value="\-{0,1}[0-9]{1,2}\.[0-9]{1,5}"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="ScaleType">
        <xs:annotation>
            <xs:documentation>Format for Scale: 1:nnnnnnnn</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:pattern value="1:[0-9]{1,8}"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="SWCategoryCode">
        <xs:annotation>
            <xs:documentation>SurfaceWater Categories:
				CW =Coastal Water;
				LW =Lake;
				RW =River;
				TW =Transitional water</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="CW"/>
            <xs:enumeration value="LW"/>
            <xs:enumeration value="RW"/>
            <xs:enumeration value="TW"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="String2000Type">
        <xs:annotation>
            <xs:documentation>Type to enter string of 1 to 2000 characters</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:maxLength value="2000"/>
            <xs:minLength value="1"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="DataConfidentialityClassificationCode">
        <xs:annotation>
            <xs:documentation>Codes for data security classification:
				001 = Unclassified - available for general circulation
				003 = Confidential - available for EC reporting only
			</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="001"/>
            <xs:enumeration value="003"/>
        </xs:restriction>
    </xs:simpleType>
	<!--
	 Article 8  TYPE DEFINITIONS
	 These type definitions have been defined to support Article 8 reporting and include River, Lake, Transitional and Coast QECodes
	 -->
    <xs:simpleType name="QECode">
        <xs:annotation>
            <xs:documentation>Complete list of QEs and codes as reported for Article 8 monitoring programmes.

QE1 Biological quality elements (e.g. those indicated in WFD Annex V) are determined
QE1-1 Composition, abundance and biomass of phytoplankton
QE1-2 Composition and abundance of other aquatic flora  (e.g. angiosperms, macrophytes, phytobenthos and macroalgae)
QE1-2-1 Composition and abundance of macroalgae
QE1-2-2 Composition and abundance of angiosperms
QE1-2-3 Composition and abundance of macropyhtes
QE1-2-4 Composition and abundance of phytobenthos
QE1-3 Composition, abundance and diversity of benthic invertebrate fauna
QE1-4 Composition, abundance and age structure of fish
QE1-5 Other non-mandatory species (e.g. zooplankton)

QE2 Hydromorphological quality elements (e.g. those indicated in WFD, Annex V) are determined
QE2-1 Hydrological regime rivers – hydrological parameters (e.g. those indicated by Annex 5) are determined
QE2-1-1 Quantity and dynamics of water flow
QE2-1-2 Connection to groundwater bodies
QE2-2 River continuity
QE2-3 Morphological conditions rivers - morphological parameters (e.g. those indicated by Annex 5) are determined
QE2-3-1 River depth and width variation
QE2-3-2 Structure and substrate of the river bed
QE2-3-3 Structure of the riparian zone
QE2-4 Hydrological regime lakes – hydrological parameters (e.g. those indicated by Annex 5) are determined
QE2-4-1 Quantity and dynamics of water flow
QE2-4-2 Residence time
QE2-4-3 Connection to groundwater bodies
QE2-5 Morphological conditions lakes morphological parameters (e.g. those indicated by Annex 5) are determined
QE2-5-1 Lake depth variation
QE2-5-2 Quantity, structure and substrate of the lake bed
QE2-5-3 Structure of the lake shore
QE2-6 Morphological conditions transitional and coastal waters – morphological parameters (e.g. those indicated by Annex 5) are determined
QE2-6-1 Depth variation
QE2-6-2 Quantity, structure and substrate of the bed
QE2-6-3 Structure of the intertidal zone
QE2-7 Tidal regime transitional waters – tidal parameters (e.g. those indicated by Annex 5) are determined
QE2-7-1 Freshwater flow
QE2-7-2 Wave exposure
QE2-8 Tidal regime coastal waters – tidal parameters (e.g. those indicated by Annex 5) are determined
QE2-8-1 Direction of dominant currents
QE2-8-2 Wave exposure

QE3 Chemical and physico-chemical quality elements (e.g. those indicated in WFD, Annex V) are determined
QE3-1 General parameters – parameters (e.g. those indicated by Annex 5) are determined
QE3-1-1 Transparency
QE3-1-2 Thermal Conditions
QE3-1-3 Oxygenation conditions
QE3-1-4 Salinity
QE3-1-5 Acidification status
QE3-1-6 Nutrient conditions
QE3-2 Priority Substances (as indicated in Annex 10) are determined
QE3-3 Non-priority specific pollutants (as indicated in Annex 8/9) are determined
QE3-4 Other pollutants (e.g. other pollutants not covered by Annex 8,9 and 10) are determined
</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="QE1 Biological"/>
            <xs:enumeration value="QE1-1 Phytoplankton"/>
            <xs:enumeration value="QE1-2 Other aquatic flora"/>
            <xs:enumeration value="QE1-2-1 Macroalgae"/>
            <xs:enumeration value="QE1-2-2 Angiosperms"/>
            <xs:enumeration value="QE1-2-3 Macrophytes"/>
            <xs:enumeration value="QE1-2-4 Phytobenthos"/>
            <xs:enumeration value="QE1-3 Benthic invertebrates"/>
            <xs:enumeration value="QE1-4 Fish"/>
            <xs:enumeration value="QE1-5 Other species"/>
            <xs:enumeration value="QE2 Hydromorphological QEs"/>
            <xs:enumeration value="QE2-1 Hydrological regime - rivers"/>
            <xs:enumeration value="QE2-1-1 Water flow"/>
            <xs:enumeration value="QE2-1-2 Connection to groundwater bodies"/>
            <xs:enumeration value="QE2-2 River continuity"/>
            <xs:enumeration value="QE2-3 Morphological conditions - rivers"/>
            <xs:enumeration value="QE2-3-1 River depth and width variation"/>
            <xs:enumeration value="QE2-3-2 Structure and substrate of river bed"/>
            <xs:enumeration value="QE2-3-3 Structure of riparian zone"/>
            <xs:enumeration value="QE2-4 Hydrological regime - lakes"/>
            <xs:enumeration value="QE2-4-1 Water flow"/>
            <xs:enumeration value="QE2-4-2 Residence time"/>
            <xs:enumeration value="QE2-4-3 Connection to groundwater bodies"/>
            <xs:enumeration value="QE2-5 Morphological conditions - lakes"/>
            <xs:enumeration value="QE2-5-1 Lake depth variation"/>
            <xs:enumeration value="QE2-5-2 Lake bed"/>
            <xs:enumeration value="QE2-5-3 Structure of lake shore"/>
            <xs:enumeration value="QE2-6 Morphological conditions - transitional and coastal waters"/>
            <xs:enumeration value="QE2-6-1 Depth variation"/>
            <xs:enumeration value="QE2-6-2 Quantity, structure and substrate of bed"/>
            <xs:enumeration value="QE2-6-3 Structure of the intertidal zone"/>
            <xs:enumeration value="QE2-7 Tidal regime - transitional waters"/>
            <xs:enumeration value="QE2-7-1 Freshwater flow"/>
            <xs:enumeration value="QE2-7-2 Wave exposure"/>
            <xs:enumeration value="QE2-8 Tidal regime - coastal waters"/>
            <xs:enumeration value="QE2-8-1 Direction of dominant currents"/>
            <xs:enumeration value="QE2-8-2 Wave exposure"/>
            <xs:enumeration value="QE3 Chemical and Physico-chemical"/>
            <xs:enumeration value="QE3-1General Parameters"/>
            <xs:enumeration value="QE3-1-1 Transparency"/>
            <xs:enumeration value="QE3-1-2 Thermal conditions"/>
            <xs:enumeration value="QE3-1-3 Oxygenation conditions"/>
            <xs:enumeration value="QE3-1-4 Salinity"/>
            <xs:enumeration value="QE3-1-5 Acidification status"/>
            <xs:enumeration value="QE3-1-6 Nutrient conditions"/>
            <xs:enumeration value="QE3-2 Priority Substances"/>
            <xs:enumeration value="QE3-3 Non priority specific pollutants"/>
            <xs:enumeration value="QE3-4 Other national pollutants"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="GECode">
        <xs:annotation>
            <xs:documentation>Codes for groundwater parameter/elements used in groundwater monitoring programmes

Groundwater level and yield GE1
Groundwater level GE1-1
Groundwater yield GE1-2

General parameters – all sub-elements below are determined (as described by Annex 5) GE2
Oxygen content GE2-1
pH Value GE2-2
Conductivity GE2-3
Nitrate GE2-4
Ammonium GE2-5

Other pollutants (e.g. other pollutants not covered above) are determined GE3
</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="GE1 Groundwater level and yield"/>
            <xs:enumeration value="GE1-1 Groundwater level"/>
            <xs:enumeration value="GE1-2 Groundwater yield"/>
            <xs:enumeration value="GE2 General parameters"/>
            <xs:enumeration value="GE2-1 Oxygen content"/>
            <xs:enumeration value="GE2-2 pH Value"/>
            <xs:enumeration value="GE2-3 Conductivity"/>
            <xs:enumeration value="GE2-4 Nitrate"/>
            <xs:enumeration value="GE2-5 Ammonium"/>
            <xs:enumeration value="GE3 Other pollutants"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="GWWellOrSpringCode">
        <xs:annotation>
            <xs:documentation>Codes for well or spring
W = Well
S  = Spring
O = Other</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="W"/>
            <xs:enumeration value="S"/>
            <xs:enumeration value="O"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="MonitoringInvestigativeCode">
        <xs:annotation>
            <xs:documentation>Codes for investigative monitoring
E = unknown exceedance
F = failure of objectives
R = incident response
O = Other</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="F"/>
            <xs:enumeration value="E"/>
            <xs:enumeration value="R"/>
            <xs:enumeration value="O"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="MonitoringDepthCode">
        <xs:annotation>
            <xs:documentation>Codes for depth at which monitoring occurs
U = Upper
M = Middle
L = Lower
A = Mixed</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="U"/>
            <xs:enumeration value="M"/>
            <xs:enumeration value="L"/>
            <xs:enumeration value="A"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="MonitoringSubsiteCode">
        <xs:annotation>
            <xs:documentation>Codes to define the type of subsite: A= Area, T=Transect, M=Multipoint, N=Not Applicable/None</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="A"/>
            <xs:enumeration value="T"/>
            <xs:enumeration value="M"/>
            <xs:enumeration value="N"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="MonitoringInternationalNetworkType">
        <xs:annotation>
            <xs:documentation>International monitoring networks</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="EIONET"/>
            <xs:enumeration value="Helsinki Convention(HELCOM)"/>
            <xs:enumeration value="Barcelona Convention/Mediterranean Action Plan(MEDPOL)"/>
            <xs:enumeration value="Arctic Monitoring and Assessment Programme"/>
            <xs:enumeration value="North East Atlantic (OSPAR)"/>
            <xs:enumeration value="Bucharest Convention/Black Sea Commission"/>
            <xs:enumeration value="Transboundary Waters Convention"/>
            <xs:enumeration value="International Commission for the Meuse"/>
            <xs:enumeration value="International Scheldt Commission"/>
            <xs:enumeration value="International Commission for the Elbe"/>
            <xs:enumeration value="International Commission for the Protection of the Danube"/>
            <xs:enumeration value="International Commission for the Protection of the Odra/Oder"/>
            <xs:enumeration value="International Commission for the Protection of the Rhine against Pollution (ICPR)"/>
            <xs:enumeration value="international commission for the protection of the Moselle against pollution"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="MonitoringProgrammeLevelCode">
        <xs:annotation>
            <xs:documentation>Codes for level at which the programme is designed: I = International, N = National, R = RBD </xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="I"/>
            <xs:enumeration value="N"/>
            <xs:enumeration value="R"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="ReportingLevelCode">
        <xs:annotation>
            <xs:documentation>Codes for describing the reporting level: I = international RBD,  N= National part of international RBD, R = national RBD, S  = regional part or sub-unit of RBD</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="I"/>
            <xs:enumeration value="N"/>
            <xs:enumeration value="R"/>
            <xs:enumeration value="S"/>
        </xs:restriction>
    </xs:simpleType>
	<!--Article 13  TYPE DEFINITIONS
	 These type definitions have been defined to support Article 13 reporting
	 -->
    <xs:simpleType name="String5000Type">
        <xs:annotation>
            <xs:documentation>Type to enter string of 1 to 5000 characters</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:minLength value="1"/>
            <xs:maxLength value="5000"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="YesNoNotApplicableCode">
        <xs:annotation>
            <xs:documentation>For Yes, No or Unknown/Not Applicable:
			Y=Yes;
			N=No;
			NA=Unknown/Not Applicable				
			</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="Y"/>
            <xs:enumeration value="N"/>
            <xs:enumeration value="NA"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:complexType name="AssociatedReferenceStructure">
        <xs:annotation>
            <xs:documentation>Structure to hold URL and a description of what it contains</xs:documentation>
        </xs:annotation>
        <xs:sequence>
            <xs:element name="Reference" maxOccurs="unbounded">
                <xs:complexType>
                    <xs:sequence>
                        <xs:element name="ReferenceDescription">
                            <xs:simpleType>
                                <xs:restriction base="xs:string">
                                    <xs:minLength value="1"/>
                                    <xs:maxLength value="500"/>
                                </xs:restriction>
                            </xs:simpleType>
                        </xs:element>
                        <xs:element name="ReferenceURLlocation" type="xs:anyURI"/>
                    </xs:sequence>
                </xs:complexType>
            </xs:element>
        </xs:sequence>
    </xs:complexType>
    <xs:simpleType name="SWStatusEcologicalCode">
        <xs:annotation>
            <xs:documentation>Codes for ecological status: 1=high, 2=good, 3=moderate, 4=poor, 5=bad, U=Unclassified. For heavily modified and artificial water bodies there is no high status=1 and good status=2 is interpreted as good or above.</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="1"/>
            <xs:enumeration value="2"/>
            <xs:enumeration value="3"/>
            <xs:enumeration value="4"/>
            <xs:enumeration value="5"/>
            <xs:enumeration value="U"/>
            <xs:enumeration value="N"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="SWStatusHydroMorphCode">
        <xs:annotation>
            <xs:documentation>Codes for chemical status 1=high (status only), 2=good (potential = good and above), U=unknown no information.  </xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="1"/>
            <xs:enumeration value="2"/>
            <xs:enumeration value="U"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="SWStatusGeneralPhysicoChemicalCode">
        <xs:annotation>
            <xs:documentation>Codes for chemical status: 1=high (status only), 2=good status (potential = good and above), 3=moderate status, U=unknown no information.   </xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="1"/>
            <xs:enumeration value="2"/>
            <xs:enumeration value="3"/>
            <xs:enumeration value="U"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="SWStatusNonPrioritySubstanceCode">
        <xs:annotation>
            <xs:documentation>Codes for the classification of ecological status according to non-priority specific pollutants: 1= high status, 2=good status, 3=failing to achieve good status, U=unknown no information, N=Not Applicable.  </xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="1"/>
            <xs:enumeration value="2"/>
            <xs:enumeration value="3"/>
            <xs:enumeration value="U"/>
            <xs:enumeration value="N"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="SWStatusChemicalCode">
        <xs:annotation>
            <xs:documentation>Codes for chemical status: 2=good (potential = good and above), 3=failure to achieve good, U=unknown no information.  </xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="2"/>
            <xs:enumeration value="3"/>
            <xs:enumeration value="U"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="SWStatusProtAreaCode">
        <xs:annotation>
            <xs:documentation>Codes for reporting the status of Protected Areas associated with Surface Water Bodies (see section 2.2.5 of this guide for further information):
For Article 7 drinking water and Nitrates Directive Protected Areas: 2=good, 3=failing to achieve good, U=unknown.
For Freshwater Fish and Shellfish Directive Protected Areas: 1=high, 2=good, 3=failing to achieve good, U = unknown.</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="1"/>
            <xs:enumeration value="2"/>
            <xs:enumeration value="3"/>
            <xs:enumeration value="U"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="GWStatusCode">
        <xs:annotation>
            <xs:documentation>Codes for groundwater status 2=good, 3=poor, U=unknown</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="2"/>
            <xs:enumeration value="3"/>
            <xs:enumeration value="U"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="ChemicalCASNumberType">
        <xs:annotation>
            <xs:documentation>Type to enter CAS numbers</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:minLength value="5"/>
            <xs:maxLength value="20"/>
            <xs:pattern value="[0-9]{1,6}(-)[0-9]{1,3}(-)[0-9]{1,3}"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="StatusOrPotentialType">
        <xs:annotation>
            <xs:documentation>Defines whether classification information is given for  S=status (All natural water bodies) or P=potential (Artificial or heavily modified water bodies)</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="S"/>
            <xs:enumeration value="P"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="ChemicalAllSubstancesType">
        <xs:annotation>
            <xs:documentation>Contains Heavy Metals, Pesticides, Priority Substances and Other Pollutants</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="1 Heavy Metals - aggregated"/>
            <xs:enumeration value="1.1 Cadmium"/>
            <xs:enumeration value="1.2 Lead"/>
            <xs:enumeration value="1.3 Mercury"/>
            <xs:enumeration value="1.4 Nickel"/>
            <xs:enumeration value="2 Pesticides - aggregated"/>
            <xs:enumeration value="2.1 Alachlor"/>
            <xs:enumeration value="2.2 Atrazine"/>
            <xs:enumeration value="2.3 Chlorpyriphos"/>
            <xs:enumeration value="2.4 Chlorvenfinphos"/>
            <xs:enumeration value="2.5 Diuron"/>
            <xs:enumeration value="2.6 Endosulfan"/>
            <xs:enumeration value="2.7 Isoproturon"/>
            <xs:enumeration value="2.8 Hexachlorocyclohexane"/>
            <xs:enumeration value="2.9 Pentachlorobenzene"/>
            <xs:enumeration value="2.10 Simazine"/>
            <xs:enumeration value="2.11 Trifluralin"/>
            <xs:enumeration value="3 Industrial Pollutants - aggregated"/>
            <xs:enumeration value="3.1 Anthracene"/>
            <xs:enumeration value="3.2 Benzene"/>
            <xs:enumeration value="3.3 Brominated diphenylether"/>
            <xs:enumeration value="3.4 Carbon tetrachloride"/>
            <xs:enumeration value="3.5 C10-13-chloroalkanes"/>
            <xs:enumeration value="3.6 1,2-Dichloroethane"/>
            <xs:enumeration value="3.7 Dichloromethane"/>
            <xs:enumeration value="3.8 Di(2-ethylhexyl)phthalate (DEHP)"/>
            <xs:enumeration value="3.9 Naphthalene"/>
            <xs:enumeration value="3.10 Nonylphenol"/>
            <xs:enumeration value="3.11 Octylphenol"/>
            <xs:enumeration value="3.12 Tetrachloroethylene"/>
            <xs:enumeration value="3.13 Trichloroethylene"/>
            <xs:enumeration value="3.14 Trichloromethane"/>
            <xs:enumeration value="4 Other pollutants - aggregated"/>
            <xs:enumeration value="4.1 Aldrin"/>
            <xs:enumeration value="4.2 Dieldrin"/>
            <xs:enumeration value="4.3 Endrin"/>
            <xs:enumeration value="4.4 Isodrin"/>
            <xs:enumeration value="4.5 DDT Total"/>
            <xs:enumeration value="4.6 para-para-DDT"/>
            <xs:enumeration value="4.7 Flouranthene"/>
            <xs:enumeration value="4.8 Hexachlorobenzene"/>
            <xs:enumeration value="4.9 Hexachlorobutadiene"/>
            <xs:enumeration value="4.10 Pentachlorophenol"/>
            <xs:enumeration value="4.11 Polyaromatic hydrocarbons"/>
            <xs:enumeration value="4.12 Benzo(a)pyrene"/>
            <xs:enumeration value="4.13 Benzo(b)fluoranthene"/>
            <xs:enumeration value="4.14 Benzo(k)fluoranthene"/>
            <xs:enumeration value="4.15 Benzo(g,h,i)perylene"/>
            <xs:enumeration value="4.16 Indeno(1,2,3-cd)pyrene"/>
            <xs:enumeration value="4.17 Tributyltin compounds"/>
            <xs:enumeration value="4.18 Trichlorobenzenes (all isomers)"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="TypologyRiverIntercalibrationCode">
        <xs:annotation>
            <xs:documentation>Defines all Intercalibration type codes for rivers.</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="R-A1"/>
            <xs:enumeration value="R-A2"/>
            <xs:enumeration value="R-C1"/>
            <xs:enumeration value="R-C2"/>
            <xs:enumeration value="R-C3"/>
            <xs:enumeration value="R-C4"/>
            <xs:enumeration value="R-C5"/>
            <xs:enumeration value="R-C6"/>
            <xs:enumeration value="R-E1"/>
            <xs:enumeration value="R-E2"/>
            <xs:enumeration value="R-E4"/>
            <xs:enumeration value="R-M1"/>
            <xs:enumeration value="R-M2"/>
            <xs:enumeration value="R-M4"/>
            <xs:enumeration value="R-M5"/>
            <xs:enumeration value="R-N1"/>
            <xs:enumeration value="R-N3"/>
            <xs:enumeration value="R-N4"/>
            <xs:enumeration value="R-N5"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="TypologyLakeIntercalibrationCode">
        <xs:annotation>
            <xs:documentation>Defines all Intercalibration type codes for lakes.</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="LA1/2"/>
            <xs:enumeration value="L-AL3"/>
            <xs:enumeration value="L-AL4"/>
            <xs:enumeration value="L-CB1"/>
            <xs:enumeration value="L-CB2"/>
            <xs:enumeration value="L-CB3"/>
            <xs:enumeration value="L-M5/7"/>
            <xs:enumeration value="L-M8"/>
            <xs:enumeration value="LN1"/>
            <xs:enumeration value="LN2a"/>
            <xs:enumeration value="LN2b"/>
            <xs:enumeration value="LN3a"/>
            <xs:enumeration value="LN5"/>
            <xs:enumeration value="LN6a"/>
            <xs:enumeration value="LN8a"/>
            <xs:enumeration value="101"/>
            <xs:enumeration value="102"/>
            <xs:enumeration value="201"/>
            <xs:enumeration value="202"/>
            <xs:enumeration value="301"/>
            <xs:enumeration value="302"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="TypologyTransitionalIntercalibrationCode">
        <xs:annotation>
            <xs:documentation>Defines all Intercalibration type codes for transitional waters.</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="NEA11"/>
            <xs:enumeration value="TW B13"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="TypologyCoastalIntercalibrationCode">
        <xs:annotation>
            <xs:documentation>Defines all Intercalibration type codes for coastal waters.</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="CW B0"/>
            <xs:enumeration value="CW B12 a"/>
            <xs:enumeration value="CW B12 b"/>
            <xs:enumeration value="CW B13"/>
            <xs:enumeration value="CW B14"/>
            <xs:enumeration value="CW B2"/>
            <xs:enumeration value="CW B3 a"/>
            <xs:enumeration value="CW B3 b"/>
            <xs:enumeration value="CW-BL1"/>
            <xs:enumeration value="NEA1/26a"/>
            <xs:enumeration value="NEA1/26b"/>
            <xs:enumeration value="NEA1/26c"/>
            <xs:enumeration value="NEA1/26d"/>
            <xs:enumeration value="NEA1/26e"/>
            <xs:enumeration value="NEA10"/>
            <xs:enumeration value="NEA3/4"/>
            <xs:enumeration value="NEA7"/>
            <xs:enumeration value="NEA8"/>
            <xs:enumeration value="NEA9"/>
            <xs:enumeration value="Type I"/>
            <xs:enumeration value="Type IIA"/>
            <xs:enumeration value="Type IIIE"/>
            <xs:enumeration value="Type IIIW"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="ChemicalNonPrioritySubstanceCASCode">
        <xs:annotation>
            <xs:documentation>Defines the list of non-Priority Substance pollutants
CAS Number and Substance
1002-53-5 Dibutyltin
10028-17-8 Tritium
104-40-5 4-nonylphenol
106-43-4 4-chlorotoluene
106-93-4 1,2-dibromoethane
107-13-1 Acrylonitrile
107-46-0 Hexamethyldisiloxane (HMDS)
108-70-3 1,3,5-trichlorobenzene
115-32-2 Dicofol
1163-19-5 Bis(pentabromophenyl) ether
120-82-1 1,2,4-trichlorobenzene
12767-79-2 Aroclor
129-00-0 Pyrene
1321-64-8 Pentachloronaphthalene
1321-65-9 Trichloronaphthalene
1335-87-1 Hexachloronaphthalene
1335-88-2 Tetrachloronaphthalene
1336-36-3 Polychlorinated biphenyls
136677-10-6 Polychlorinated dibenzofurans (PCDF)
140-57-8 Aramite
140-66-9 Para-tert-octylphenol
143-50-0 Chlordecone (Kepone)
144-49-0 Fluoroacetic acid
16478-18-5 Pentachloroiodobenzene
1746-01-6 Dioxin
182346-21-0 2,2’,3,4,4’-pentabromodiphenyl ether (BDE85)
1825-21-4 Pentachloroanisole
182677-30-1 2,2’,3,4,4’,5’-hexabromodiphenyl Ether (BD(E)138)
1836-75-5 Nitrophen
189084-64-8 2,2’,4,4’,6-pentabromodiphenyl Ether (BD(E)100)
2051-24-3 5,5’,6,6’-decachlorobiphenyl (CB209)
207122-15-4 2,2’,4,4’,5,6’-hexabromodiphenyl Ether (BDE154)
208-96-8 Acenaphthylene
2104-64-5 Ethyl O-(p-nitrophenyl) phenyl phosphonothionate (EPN)
218-01-9 Chrysene
2227-13-6 Tetrasul
2234-13-1 Octachloronaphthalene
23593-75-1 Clotrimazole
2385-85-5 Mirex
2440-02-0 Heptachloronorbornene
262-12-4 Dibenzodioxin
294-62-2 Cyclododecane
297-78-9 Isobenzane
31508-00-6 2,3’,4,4’,5-pentachlorobiphenyl (CB118)
319-84-6 alpha-HCH
319-85-7 beta-HCH
32241-08-0 Heptachloronaphthalene
32534-81-9 Diphenyl ether, pentabromo derivative
32536-52-0 Diphenyl ether, octabromo deviate
32598-13-3 3,3’,4,4’-tetrachlorobiphenyl (CB77)
32598-14-4 2,3,3’,4,4’-pentachlorobiphenyl (CB105)
32774-16-6 3,3’,4,4’,5,5’-hexachlorobiphenyl (CB169)
330-55-2 Linuron
3424-82-6 DDE, o, p
35065-27-1 2,2’,4,4’,5,5’-hexachlorobiphenyl (CB153)
35065-28-2 2,2’,3,4,4’,5’-hexachlorobiphenyl (CB138)
35065-29-3 2,2’,3,4,4’,5,5’-heptachlorobiphenyl (CB180)
35693-99-3 2,2’,5,5’-tetrachlorobiphenyl (CB52)
36065-30-2 2,4,6-tribromophenyl 2-methyl-2,3-dibromopropy ether
36355-01-8 Hexabromobiphenyl
36643-28-4 Tributyltin
37680-73-2 2,2’,4,5,5’-pentachlorobiphenyl (CB101)
38380-08-4 2,3,3’,4,4’,5-hexachlorobiphenyl (CB156)
39765-80-5 trans-Nonachlor
4234-79-1 Kelevan
4636-83-3 Morfamquat
4904-61-4 1,5,9 cyclododecatriene
51000-52-3 Vinyl neodecanoate
512-04-9 Diosgenin
53-19-0 DDD, o, p
53-70-3 Dibenz[a,h]anthracene
5436-43-1 2,2’,4,4’-tetrabromodiphenyl ether (BDE47)
55525-54-7 3,3’-(ureylenedimethylene)bis(3,5,5’- trimethylcyclohexyl) diisocyanate
56-55-3 Benzo-a-anthracene
57465-28-8 3,3’,4,4’,5 pentachlorobiphenyl (CB126)
57-74-9 Chlordane
58-89-9 Lindane (gamma-HCH)
603-35-0 Triphenyl phosphine
60348-60-9 2,2’,4,4’,5-pentabromodiphenyl ether (BDE99)
60-51-5 Dimethoate
6164-98-3 Chlordimeform
62-73-7 Dichlorvos
64743-03-9 Phenols
68631-49-2 2,2’,4,4’,5,5’-hexabromodiphenyl ether (BD(E)153)
69782-90-7 2,3,3’,4,4’,5’-hexachlorobiphenyl (CB157)
7012-37-5 2,4,4’-trichlorobiphenyl (CB28)
70124-77-5 Flucythrinate
70776-03-3 Naphthalene, chloro derivatives
72-43-5 Methoxychlor
72-54-8 DDD, p, p'
72-55-9 DDE, p, p’
732-26-3 2,4,6-tri-tert-butylphenol
7429-90-5 Aluminium and its compounds
7439-89-6 Iron and its compounds
7439-96-5 Manganese and its compounds
7439-98-7 Molybdenum and its compounds
7440-31-5 Tin and its compounds
7440-33-7 Tungsten and its compounds
7440-38-2 Arsenic and its compounds
7440-47-3 Chromium and its compounds
7440-48-4 Cobalt and its compounds
7440-50-8 Copper and its compounds
7440-62-2 Vanadium and its compounds
7440-66-6 Zinc and its compounds
76-44-8 Heptachlor
77-47-4 Hexachlorocyclopentadiene (HCCP)
7782-49-2 Selenium and its compounds
789-02-6 DDT, o,p’
793-24-8 4-(dimethylbutylamino) diphenylamin (6PPD)
79-94-7 Tetrabromobisphenol A (TBBP-A)
8001-35-2 Toxaphene
81-15-2 Musk xylene
82-68-8 Quintozene
83-32-9 Acenaphthene
84-66-2 Di-ethyl phthalate
84-69-5 Di-iso-butyl phthalate
84-74-2 Dibutylphthalate
84852-15-3 4-nonylphenol (branched)
85-01-8 Phenanthrene
85-22-3 Pentabromoethylbenzene
85-68-7 Butyl benzyl phthalate (BBP)
86-73-7 Fluorene
87-61-6 1,2,3-trichlorobenzene
90-12-0 1-methylnaphthalene
9016-45-9 Nonyl phenol ethoxylate
91-20-3  Naphthalene
91-57-6 2-methylnaphthalene
919-86-8 Demeton-S-methyl
93-76-5 2,4,5-T
959-98-8 alpha-Endosulfan
98-51-1 4-tert-butyltoluene
Other</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="1002-53-5"/>
            <xs:enumeration value="10028-17-8"/>
            <xs:enumeration value="104-40-5"/>
            <xs:enumeration value="106-43-4"/>
            <xs:enumeration value="106-93-4"/>
            <xs:enumeration value="107-13-1"/>
            <xs:enumeration value="107-46-0"/>
            <xs:enumeration value="108-70-3"/>
            <xs:enumeration value="115-32-2"/>
            <xs:enumeration value="1163-19-5"/>
            <xs:enumeration value="120-82-1"/>
            <xs:enumeration value="12767-79-2"/>
            <xs:enumeration value="129-00-0"/>
            <xs:enumeration value="1321-64-8"/>
            <xs:enumeration value="1321-65-9"/>
            <xs:enumeration value="1335-87-1"/>
            <xs:enumeration value="1335-88-2"/>
            <xs:enumeration value="1336-36-3"/>
            <xs:enumeration value="136677-10-6"/>
            <xs:enumeration value="140-57-8"/>
            <xs:enumeration value="140-66-9"/>
            <xs:enumeration value="143-50-0"/>
            <xs:enumeration value="144-49-0"/>
            <xs:enumeration value="16478-18-5"/>
            <xs:enumeration value="1746-01-6"/>
            <xs:enumeration value="182346-21-0"/>
            <xs:enumeration value="1825-21-4"/>
            <xs:enumeration value="182677-30-1"/>
            <xs:enumeration value="1836-75-5"/>
            <xs:enumeration value="189084-64-8"/>
            <xs:enumeration value="2051-24-3"/>
            <xs:enumeration value="207122-15-4"/>
            <xs:enumeration value="208-96-8"/>
            <xs:enumeration value="2104-64-5"/>
            <xs:enumeration value="218-01-9"/>
            <xs:enumeration value="2227-13-6"/>
            <xs:enumeration value="2234-13-1"/>
            <xs:enumeration value="23593-75-1"/>
            <xs:enumeration value="2385-85-5"/>
            <xs:enumeration value="2440-02-0"/>
            <xs:enumeration value="262-12-4"/>
            <xs:enumeration value="294-62-2"/>
            <xs:enumeration value="297-78-9"/>
            <xs:enumeration value="31508-00-6"/>
            <xs:enumeration value="319-84-6"/>
            <xs:enumeration value="319-85-7"/>
            <xs:enumeration value="32241-08-0"/>
            <xs:enumeration value="32536-52-0"/>
            <xs:enumeration value="32598-13-3"/>
            <xs:enumeration value="32598-14-4"/>
            <xs:enumeration value="32774-16-6"/>
            <xs:enumeration value="330-55-2"/>
            <xs:enumeration value="3424-82-6"/>
            <xs:enumeration value="35065-27-1"/>
            <xs:enumeration value="35065-28-2"/>
            <xs:enumeration value="35065-29-3"/>
            <xs:enumeration value="35693-99-3"/>
            <xs:enumeration value="36065-30-2"/>
            <xs:enumeration value="36355-01-8"/>
            <xs:enumeration value="36643-28-4"/>
            <xs:enumeration value="37680-73-2"/>
            <xs:enumeration value="38380-08-4"/>
            <xs:enumeration value="39765-80-5"/>
            <xs:enumeration value="4234-79-1"/>
            <xs:enumeration value="4636-83-3"/>
            <xs:enumeration value="4904-61-4"/>
            <xs:enumeration value="51000-52-3"/>
            <xs:enumeration value="512-04-9"/>
            <xs:enumeration value="53-19-0"/>
            <xs:enumeration value="53-70-3"/>
            <xs:enumeration value="5436-43-1"/>
            <xs:enumeration value="55525-54-7"/>
            <xs:enumeration value="56-55-3"/>
            <xs:enumeration value="57465-28-8"/>
            <xs:enumeration value="57-74-9"/>
            <xs:enumeration value="58-89-9"/>
            <xs:enumeration value="603-35-0"/>
            <xs:enumeration value="60348-60-9"/>
            <xs:enumeration value="60-51-5"/>
            <xs:enumeration value="6164-98-3"/>
            <xs:enumeration value="62-73-7"/>
            <xs:enumeration value="64743-03-9"/>
            <xs:enumeration value="68631-49-2"/>
            <xs:enumeration value="69782-90-7"/>
            <xs:enumeration value="7012-37-5"/>
            <xs:enumeration value="70124-77-5"/>
            <xs:enumeration value="70776-03-3"/>
            <xs:enumeration value="72-43-5"/>
            <xs:enumeration value="72-54-8"/>
            <xs:enumeration value="72-55-9"/>
            <xs:enumeration value="732-26-3"/>
            <xs:enumeration value="7429-90-5"/>
            <xs:enumeration value="7439-89-6"/>
            <xs:enumeration value="7439-96-5"/>
            <xs:enumeration value="7439-98-7"/>
            <xs:enumeration value="7440-31-5"/>
            <xs:enumeration value="7440-33-7"/>
            <xs:enumeration value="7440-38-2"/>
            <xs:enumeration value="7440-47-3"/>
            <xs:enumeration value="7440-48-4"/>
            <xs:enumeration value="7440-50-8"/>
            <xs:enumeration value="7440-62-2"/>
            <xs:enumeration value="7440-66-6"/>
            <xs:enumeration value="76-44-8"/>
            <xs:enumeration value="77-47-4"/>
            <xs:enumeration value="7782-49-2"/>
            <xs:enumeration value="789-02-6"/>
            <xs:enumeration value="793-24-8"/>
            <xs:enumeration value="79-94-7"/>
            <xs:enumeration value="8001-35-2"/>
            <xs:enumeration value="81-15-2"/>
            <xs:enumeration value="82-68-8"/>
            <xs:enumeration value="83-32-9"/>
            <xs:enumeration value="84-66-2"/>
            <xs:enumeration value="84-69-5"/>
            <xs:enumeration value="84-74-2"/>
            <xs:enumeration value="84852-15-3"/>
            <xs:enumeration value="85-01-8"/>
            <xs:enumeration value="85-22-3"/>
            <xs:enumeration value="85-68-7"/>
            <xs:enumeration value="86-73-7"/>
            <xs:enumeration value="87-61-6"/>
            <xs:enumeration value="90-12-0"/>
            <xs:enumeration value="9016-45-9"/>
            <xs:enumeration value="91-57-6"/>
            <xs:enumeration value="919-86-8"/>
            <xs:enumeration value="93-76-5"/>
            <xs:enumeration value="959-98-8"/>
            <xs:enumeration value="98-51-1"/>
            <xs:enumeration value="Other"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="ProtectedAreaType">
        <xs:annotation>
            <xs:documentation>Defines all Protected Area types for use in the Register of Protected Areas (Article 6)</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="Bathing"/>
            <xs:enumeration value="Birds"/>
            <xs:enumeration value="Fish"/>
            <xs:enumeration value="Shellfish"/>
            <xs:enumeration value="Habitats"/>
            <xs:enumeration value="Nitrates"/>
            <xs:enumeration value="UWWT"/>
            <xs:enumeration value="Article 7 Abstraction for drinking water"/>
            <xs:enumeration value="EuropeanOther"/>
            <xs:enumeration value="National"/>
            <xs:enumeration value="Local"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="ProtectedAreaSWType">
        <xs:annotation>
            <xs:documentation>Defines Protected Areas types relevant to the classification of Protected Areas associated with Surface Water bodies </xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="Bathing"/>
            <xs:enumeration value="Birds"/>
            <xs:enumeration value="Fish"/>
            <xs:enumeration value="Shellfish"/>
            <xs:enumeration value="Habitats"/>
            <xs:enumeration value="Nitrates"/>
            <xs:enumeration value="Article 7 Abstraction for drinking water"/>
            <xs:enumeration value="EuropeanOther"/>
            <xs:enumeration value="National"/>
            <xs:enumeration value="Local"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="ProtectedAreaGWType">
        <xs:annotation>
            <xs:documentation>Defines Protected Areas types relevant to the classification of Protected Areas associated with Groundwater Bodies </xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="Birds"/>
            <xs:enumeration value="Habitats"/>
            <xs:enumeration value="Nitrates"/>
            <xs:enumeration value="Article 7 Abstraction for drinking water"/>
            <xs:enumeration value="European other"/>
            <xs:enumeration value="National"/>
            <xs:enumeration value="Local"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="ObjectivesExemptionType">
        <xs:annotation>
            <xs:documentation>Defines the Articles against which exemptions are made</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="Article4(4) -Technical feasibility"/>
            <xs:enumeration value="Article4(4) - Disproportionate cost"/>
            <xs:enumeration value="Article4(4) - Natural conditions"/>
            <xs:enumeration value="Article4(5) -Technical feasibility"/>
            <xs:enumeration value="Article4(5) - Disproportionate cost"/>
            <xs:enumeration value="Article4(6) - Natural causes"/>
            <xs:enumeration value="Article4(6) - Force Majeure"/>
            <xs:enumeration value="Article4(6) - Accidents"/>
            <xs:enumeration value="Article4(7) - New modification"/>
            <xs:enumeration value="Article4(7) - Sustainable human development"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="StatusConfidenceType">
        <xs:annotation>
            <xs:documentation>Defines the confidence in the classification of the QEs used for ecological status. Types 0=no information, 1=low confidence, 2=medium confidence, 3=high confidence</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="0"/>
            <xs:enumeration value="1"/>
            <xs:enumeration value="2"/>
            <xs:enumeration value="3"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="SWImpactType">
        <xs:annotation>
            <xs:documentation>Defines the types of surface water Impacts. These are as follows

- Nutrient enrichment (at risk of becoming eutrophic) (unless information already provided under UWWTD);
- Organic enrichment;
- Contamination by priority substances or other specific pollutants;
- Contaminated sediments;
- Acidification;
- Saline intrusion;
- Elevated temperatures;
- Altered habitats as a result of hydromorphological alterations

</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="Nutrient enrichment"/>
            <xs:enumeration value="Organic enrichment"/>
            <xs:enumeration value="Contamination by priority substances"/>
            <xs:enumeration value="Contaminated sediments"/>
            <xs:enumeration value="Acidification"/>
            <xs:enumeration value="Saline intrusion"/>
            <xs:enumeration value="Elevated temperatures"/>
            <xs:enumeration value="Altered habitats"/>
            <xs:enumeration value="Other Significant Impacts"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="GWImpactTypes">
        <xs:annotation>
            <xs:documentation>Defines the types of Groundwater Impacts

Anthropogenic alterations of the level of groundwater leading to significant diminution of the ecological and qualitative status of associated surface water bodies;
Chemical composition of groundwater leading to significant diminution of the ecological and qualitative status of associated surface water bodies;
Anthropogenic alterations of the level of groundwater leading to significant damage to terrestrial ecosystems which depend directly on the GWB;
Chemical composition of groundwater leading to significant damage to terrestrial ecosystems which depend directly on the GWB;
Altered habitat in dependent surface water or terrestrial ecosystems;
Substitution of populations;
Other impacts.</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="Anthropogenic Diminution"/>
            <xs:enumeration value="Chemical Diminution"/>
            <xs:enumeration value="Anthropogenic Damage"/>
            <xs:enumeration value="Chemical Damage"/>
            <xs:enumeration value="Altered Habitat"/>
            <xs:enumeration value="Population substitution"/>
            <xs:enumeration value="Other Groundwater Impact"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="GWPollutantAnnexI-IIType">
        <xs:annotation>
            <xs:documentation>Defines the types of Annex I - II pollutants (of Groundwater Directive 2006/118/EEC) or indicators for Groundwater classification</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="Nitrates"/>
            <xs:enumeration value="Arsenic"/>
            <xs:enumeration value="Cadmium"/>
            <xs:enumeration value="Lead"/>
            <xs:enumeration value="Mercury"/>
            <xs:enumeration value="Ammonium"/>
            <xs:enumeration value="Chloride"/>
            <xs:enumeration value="Sulphate"/>
            <xs:enumeration value="Trichloroethylene"/>
            <xs:enumeration value="Tetrachloroethylene"/>
            <xs:enumeration value="Conductivity"/>
            <xs:enumeration value="TotalPesticides"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="MeasuresBasicType">
        <xs:annotation>
            <xs:documentation>Defines the Basic measures required by Article 11(3)(a). These are as follows
Bathing - Bathing Water Directive (76/160/EEC and 2006/7/EC)
Birds - Birds Directive (79/409/EEC)
Drinking- Drinking Water Directive (80/778/EEC) as amended by Directive (98/83/EC)
Seveso- Major Accidents (Seveso) Directive (96/82/EC)
Env Impact - Environmental Impact Assessment Directive (85/337/EEC)
Sewage Sludge - Sewage Sludge Directive (86/278/EEC)
UWWTD - Urban Waste-water Treatment Directive (91/271/EEC)
Plant protection - Plant Protection Products Directive (91/414/EEC)
Nitrates - Nitrates Directive (91/676/EEC)
Habitats - Habitats Directive (92/43/EEC)
IPPC - Integrated Pollution Prevention Control Directive (96/61/EC)
</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="BM-Bathing"/>
            <xs:enumeration value="BM-Birds"/>
            <xs:enumeration value="BM-Drinking"/>
            <xs:enumeration value="BM-Seveso"/>
            <xs:enumeration value="BM-Env Impact"/>
            <xs:enumeration value="BM-Sewage sludge"/>
            <xs:enumeration value="BM-UWWTD"/>
            <xs:enumeration value="BM-Plant protection"/>
            <xs:enumeration value="BM-Nitrates"/>
            <xs:enumeration value="BM-Habitats"/>
            <xs:enumeration value="BM-IPPC"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="MeasureBasicOtherType">
        <xs:annotation>
            <xs:documentation>Defines the Other Basic measures required by Article 11(3)b to Article 11(3)l . These are as follows

OM-CostRecovery - Measures for the recovery of cost of water services (Article 9). Supplementary
OM-EfficientWaterUse - Measures to promote efficient and sustainable water use.
OM-ProtectAbstraction - Measures for the protection of water abstracted for drinking water (Article 7) including those to reduce the level of purification required for the production of drinking water (note: these basic measures may not apply to the whole territory).
OM-ControlAbstraction - Controls over the abstraction of fresh surface water and groundwater and impoundment of fresh surface waters including a register or registers of water abstractions and a requirement for prior authorisation of abstraction and impoundment.
OM-Recharge - Controls, including a requirement for prior authorisation of artificial recharge or augmentation of groundwater bodies.
OM-PointSourceDischarges - Requirement for prior regulation of point source discharges liable to cause pollution. 
OM-PollutantsDiffuse - Measures to prevent or control the input of pollutants from diffuse sources liable to cause pollution.
OM-HydromorphologicalPressures - Measures to control any other significant adverse impact on the status of water, and in particular hydromporphological impacts.
OM-PollutantsToGroundwater - Prohibition of direct discharge of pollutants into groundwater.
OM-PrioritySubstances - Measures to eliminate pollution of surface waters by priority substances and to reduce pollution from other substances that would otherwise prevent the achievement of the objectives laid down in Article 4.
OM-AccidentalPollution - Any measures required to prevent significant losses of pollutants from technical installations and to prevent and/or reduce the impact of accidental pollution incidents.</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="OM-CostRecovery"/>
            <xs:enumeration value="OM-EfficientWaterUse"/>
            <xs:enumeration value="OM-ProtectAbstraction"/>
            <xs:enumeration value="OM-ControlAbstraction"/>
            <xs:enumeration value="OM-Recharge"/>
            <xs:enumeration value="OM-PointSourceDischarges"/>
            <xs:enumeration value="OM-PollutantsDiffuse"/>
            <xs:enumeration value="OM-HydromorphologicalPressures"/>
            <xs:enumeration value="OM-PollutantsToGroundwater"/>
            <xs:enumeration value="OM-PrioritySubstances"/>
            <xs:enumeration value="OM-AccidentalPollution"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="ChemicalMatrixType">
        <xs:annotation>
            <xs:documentation>Defines the types of chemical measurement methods</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="water"/>
            <xs:enumeration value="settled sediment"/>
            <xs:enumeration value="suspended sediment"/>
            <xs:enumeration value="biota"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="MethodLoadType">
        <xs:annotation>
            <xs:documentation>Defines how results are measured for assessing pressures. Values are monitored, calculated or estimated</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="estimated"/>
            <xs:enumeration value="calculated"/>
            <xs:enumeration value="monitored"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="ChemicalPrioritySubstanceType">
        <xs:annotation>
            <xs:documentation>Defines the list of Priority Substances
CAS Number and Substance
104-40-5 Nonylphenol
140-66-9 Octylphenol
107-06-2 1,2-Dichloroethane
115-29-7  Endosulfan
117-81-7 Di(2-ethylhexyl)phthalate (DEHP)
118-74-1 Hexachlorobenzene
12002-48-1 Trichlorobenzenes(all isomers)
120-12-7 Anthracene
122-34-9 Simazine
127-18-4 Tetrachloroethylene
1582-09-8 Trifluralin
15972-60-8 Alachlor
1912-24-9 Atrazine
191-24-2 Benzo(g,h,i)perylene
193-39-5 Indeno(1,2,3-cd)pyrene
205-99-2 Benzo(b)fluoranthene
206-44-0 Fluoranthene
207-08-9 Benzo(k)fluoranthene
2921-88-2 Chlorpyrifos
309-00-2 Aldrin
32534-81-9 Pentabromodiphenylether
330-54-1 Diuron
34123-59-6 Isoproturon
36643-28-4 Tributyltin compounds
465-73-6 Isodrin
470-90-6  Chlorfenvinphos
50-29-3 para-para-DDT
50-32-8 Benzo(a)pyrene
56-23-5 Carbontetrachloride
60-57-1 Dieldrin
608-73-1 Hexachlorocyclohexane
608-93-5 Pentachlorobenzene
67-66-3 Trichloromethane
71-43-2 Benzene
72-20-8 Endrin
7439-92-1 Lead and its compounds
7439-97-6 Mercury and its compounds
7440-02-0 Nickel and its compounds
7440-43-9 Cadmium and its compounds
75-09-2  Dichloromethane
79-01-6 Trichloroethylene
85535-84-8 C10-13 Chloroalkanes
87-68-3 Hexachlorobutadiene
87-86-5 Pentachlorophenol
91-20-3 Naphthalene
n/a DDT total
n/a Polyaromatic hydrocarbons (PAH)</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="104-40-5 Nonylphenol"/>
            <xs:enumeration value="140-66-9  Octylphenol"/>
            <xs:enumeration value="107-06-2 1,2-Dichloroethane"/>
            <xs:enumeration value="115-29-7  Endosulfan"/>
            <xs:enumeration value="117-81-7 Di(2-ethylhexyl)phthalate (DEHP)"/>
            <xs:enumeration value="118-74-1 Hexachlorobenzene"/>
            <xs:enumeration value="12002-48-1 Trichlorobenzenes(all isomers)"/>
            <xs:enumeration value="120-12-7 Anthracene"/>
            <xs:enumeration value="122-34-9 Simazine"/>
            <xs:enumeration value="127-18-4 Tetrachloroethylene"/>
            <xs:enumeration value="1582-09-8 Trifluralin"/>
            <xs:enumeration value="15972-60-8 Alachlor"/>
            <xs:enumeration value="1912-24-9 Atrazine"/>
            <xs:enumeration value="191-24-2 Benzo(g,h,i)perylene"/>
            <xs:enumeration value="193-39-5 Indeno(1,2,3-cd)pyrene"/>
            <xs:enumeration value="205-99-2 Benzo(b)fluoranthene"/>
            <xs:enumeration value="206-44-0 Fluoranthene"/>
            <xs:enumeration value="207-08-9 Benzo(k)fluoranthene"/>
            <xs:enumeration value="2921-88-2 Chlorpyrifos"/>
            <xs:enumeration value="309-00-2 Aldrin"/>
            <xs:enumeration value="32534-81-9 Pentabromodiphenylether"/>
            <xs:enumeration value="330-54-1 Diuron"/>
            <xs:enumeration value="34123-59-6 Isoproturon"/>
            <xs:enumeration value="36643-28-4 Tributyltin compounds"/>
            <xs:enumeration value="465-73-6 Isodrin"/>
            <xs:enumeration value="470-90-6  Chlorfenvinphos"/>
            <xs:enumeration value="50-29-3 para-para-DDT"/>
            <xs:enumeration value="50-32-8 Benzo(a)pyrene"/>
            <xs:enumeration value="56-23-5 Carbontetrachloride"/>
            <xs:enumeration value="60-57-1 Dieldrin"/>
            <xs:enumeration value="608-73-1 Hexachlorocyclohexane"/>
            <xs:enumeration value="608-93-5 Pentachlorobenzene"/>
            <xs:enumeration value="67-66-3 Trichloromethane"/>
            <xs:enumeration value="71-43-2 Benzene"/>
            <xs:enumeration value="72-20-8 Endrin"/>
            <xs:enumeration value="7439-92-1 Lead and its compounds"/>
            <xs:enumeration value="7439-97-6 Mercury and its compounds"/>
            <xs:enumeration value="7440-02-0 Nickel and its compounds"/>
            <xs:enumeration value="7440-43-9 Cadmium and its compounds"/>
            <xs:enumeration value="75-09-2  Dichloromethane"/>
            <xs:enumeration value="79-01-6 Trichloroethylene"/>
            <xs:enumeration value="85535-84-8 C10-13 Chloroalkanes"/>
            <xs:enumeration value="87-68-3 Hexachlorobutadiene"/>
            <xs:enumeration value="87-86-5 Pentachlorophenol"/>
            <xs:enumeration value="91-20-3 Naphthalene"/>
            <xs:enumeration value="n/a DDT total"/>
            <xs:enumeration value="n/a Polyaromatic hydrocarbons (PAH)"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="GWPressureType">
        <xs:annotation>
            <xs:documentation>Defines the list of groundwater pressures requiring supplementary or additional measures

POINT SOURCES
- Leakages from contaminated sites;
- Leakages from waste disposal sites (landfill and agricultural waste disposal);
- Leakages associated with oil industry infrastructure;
- Mine water discharges;
- Discharges to ground such as disposal of contaminated water to soakaways;
- Other relevant point sources.

DIFFUSE SOURCES
- Due to agricultural activities (e.g. fertilizer and pesticide use, live stock etc.);
- Due to non-sewered population;
- Urban land use;
- Other relevant diffuse sources.

ABSTRACTION OF WATER
- Abstractions for agriculture;
- Abstractions for public water supply;
Abstractions by industry including:
- IPPC industries;
- Non-IPPC industries;
- Abstractions by quarries/open cast coal sites;
- Other major abstractions.

ARTIFICAL RECHARGES
- Discharges to groundwater for artificial recharge purposes;
- Returns of groundwater to GWB from which it was abstracted (e.g. for sand and gravel washing);
- Mine water rebound;
- Other major recharges

OTHER
- Saltwater intrusion;
- Other intrusion.		 </xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="1 Point Sources"/>
            <xs:enumeration value="2 Diffuse Sources"/>
            <xs:enumeration value="3 Abstraction"/>
            <xs:enumeration value="4 Artificial Recharge"/>
            <xs:enumeration value="5 Saltwater Intrusion"/>
            <xs:enumeration value="6 Other Pressures"/>
            <xs:enumeration value="1.1 Point - Contaminated Sites"/>
            <xs:enumeration value="1.2 Point - Waste Disposal Sites"/>
            <xs:enumeration value="1.3 Point - Oil Industry"/>
            <xs:enumeration value="1.4 Point - Mine Waters"/>
            <xs:enumeration value="1.5 Point - Discharges To Ground"/>
            <xs:enumeration value="1.6 Point - Other"/>
            <xs:enumeration value="2.1 Diffuse - Agriculture"/>
            <xs:enumeration value="2.2 Diffuse - Non-sewered Population"/>
            <xs:enumeration value="2.3 Diffuse - Urban Land Use"/>
            <xs:enumeration value="2.4 Diffuse - Other"/>
            <xs:enumeration value="3.1 Abstraction - Agriculture"/>
            <xs:enumeration value="3.2 Abstraction - Public Water Supply"/>
            <xs:enumeration value="3.3 Abstraction - Industry (aggregated)"/>
            <xs:enumeration value="3.3.1 Abstraction - IPPC industries"/>
            <xs:enumeration value="3.3.2 Abstraction - Non-IPPC industries"/>
            <xs:enumeration value="3.4 Abstraction - Quarries"/>
            <xs:enumeration value="3.5 Abstraction - Other"/>
            <xs:enumeration value="4.1 Recharge - Discharges"/>
            <xs:enumeration value="4.2 Recharge - Returns"/>
            <xs:enumeration value="4.3 Recharge - Mine water rebound"/>
            <xs:enumeration value="4.4 Recharge - Other"/>
            <xs:enumeration value="5.1 Saltwater intrusion"/>
            <xs:enumeration value="5.2 Other intrusion"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="GWPressureAbstractionType">
        <xs:annotation>
            <xs:documentation>Defines the list of GW Abstraction pressures</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="3 Abstraction"/>
            <xs:enumeration value="3.1 Abstraction - Agriculture"/>
            <xs:enumeration value="3.2 Abstraction - Public Water Supply"/>
            <xs:enumeration value="3.3 Abstraction - Industry (aggregated)"/>
            <xs:enumeration value="3.3.1 Abstraction - IPPC industries"/>
            <xs:enumeration value="3.3.2 Abstraction - Non-IPPC industries"/>
            <xs:enumeration value="3.4 Abstraction - Quarries"/>
            <xs:enumeration value="3.5 Abstraction - Other"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="GWPressureAggregatedType">
        <xs:annotation>
            <xs:documentation>Defines the list of groundwater aggregated pressures</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="1 Point Sources"/>
            <xs:enumeration value="2 Diffuse Sources"/>
            <xs:enumeration value="3 Abstraction"/>
            <xs:enumeration value="4 Artificial Recharge"/>
            <xs:enumeration value="5 Saltwater Intrusion"/>
            <xs:enumeration value="6 Other Pressures"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="GWPressureRechargeType">
        <xs:annotation>
            <xs:documentation>Defines the list of GW Recharge pressures</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="4 Artificial Recharge"/>
            <xs:enumeration value="4.1 Recharge - Discharges"/>
            <xs:enumeration value="4.2 Recharge - Returns"/>
            <xs:enumeration value="4.3 Recharge - Mine water rebound"/>
            <xs:enumeration value="4.4 Recharge - Other"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="SWPressureType">
        <xs:annotation>
            <xs:documentation>Defines the list of SW pressures requiring supplementary or additional measures. The types are:
1. Point Source.
2. Diffuse Source.
3. Water Abstraction.
4. Water flow regulations and morphological alterations of surface water.
5. River management.
6. Transitional and coastal water management
7. Other morphological alterations.
8. Other Pressures
1.1 Point - UWWT plants
1.1.1 Point - UWWT_2000
1.1.2 Point - UWWT_10000
1.1.3 Point - UWWT_15000
1.1.4 Point - UWWT_150000
1.1.5 Point - UWWT_150000PLUS
1.2 Point - Storm Overflows
1.3 Point - IPPC plants (EPRTR)
1.4 Point - Non IPPC
1.5 Point - Other
2.1 Diffuse - Urban run off
2.2 Diffuse - Agricultural
2.3 Diffuse - Transport and infrastructure
2.4 Diffuse - Abandoned industrial sites
2.5 Diffuse - Releases from facilities not connected to sewerage network
2.6 Diffuse - Other
3.1 Abstraction - Agriculture
3.2 Abstraction - Public Water Supply
3.3 Abstraction - Manufacturing
3.4 Abstraction - Electricity cooling
3.5 Abstraction - Fish farms
3.6 Abstraction - Hydro-energy not cooling
3.7 Abstraction - Quarries
3.8 Abstraction - Navigation
3.9 Abstraction - Water transfer
3.10 Abstraction - Other
4.1 FlowMorph - Groundwater recharge
4.2 FlowMorph - Hydroelectric dam
4.3 FlowMorph - Water supply reservoir
4.4 FlowMorph - Flood defence dams
4.5 FlowMorph - Water Flow Regulation
4.6 FlowMorph - Diversions
4.7 FlowMorph - Locks
4.8 FlowMorph - Weirs
5.1 RiverManagement - Physical alteration of channel
5.2 RiverManagement - Engineering activities
5.3 RiverManagement - Agricultural enhancement
5.4 RiverManagement - Fisheries enhancement
5.5 RiverManagement - Land infrastructure
5.6 RiverManagement - dredging
6.1 TRACManagement - Estuarine/coastal dredging
6.2 TRACManagement - Marine constructions
6.3 TRACManagement - Land reclamation
6.4 TRACManagement - Coastal sand suppletion (safety)
6.5 TRACManagement - Tidal barrages
7.1 OtherMorph - Barriers
7.2 OtherMorph - Land sealing
8.1 OtherPressures - Litter/fly tipping
8.2 OtherPressures - Sludge disposal to sea
8.3 OtherPressures - Exploitation/removal of animals/plants
8.4 OtherPressures - Recreation
8.5 OtherPressures - Fishing
8.6 OtherPressures - Introduced species
8.7 OtherPressures - Introduced diseases
8.8 OtherPressures - Climate change
8.9 OtherPressures - Land drainage
8.10 OtherPressures- Other</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="1 Point Source"/>
            <xs:enumeration value="2 Diffuse Source"/>
            <xs:enumeration value="3 Water Abstraction"/>
            <xs:enumeration value="4 Water flow regulations and morphological alterations of surface water"/>
            <xs:enumeration value="5 River management"/>
            <xs:enumeration value="6. Transitional and coastal water management"/>
            <xs:enumeration value="7 Other morphological alterations"/>
            <xs:enumeration value="8 Other Pressures"/>
            <xs:enumeration value="1.1 Point - UWWT_General"/>
            <xs:enumeration value="1.1.1 Point - UWWT_2000"/>
            <xs:enumeration value="1.1.2 Point - UWWT_10000"/>
            <xs:enumeration value="1.1.3 Point - UWWT_15000"/>
            <xs:enumeration value="1.1.4 Point - UWWT_150000"/>
            <xs:enumeration value="1.1.5 Point - UWWT_150000PLUS"/>
            <xs:enumeration value="1.2 Point - Storm Overflows"/>
            <xs:enumeration value="1.3 Point - IPPC plants (EPRTR)"/>
            <xs:enumeration value="1.4 Point - Non IPPC"/>
            <xs:enumeration value="1.5 Point - Other"/>
            <xs:enumeration value="2.1 Diffuse - Urban run off"/>
            <xs:enumeration value="2.2 Diffuse - Agricultural"/>
            <xs:enumeration value="2.3 Diffuse - Transport and infrastructure"/>
            <xs:enumeration value="2.4 Diffuse - Abandoned industrial sites"/>
            <xs:enumeration value="2.5 Diffuse - Releases from facilities not connected to sewerage network"/>
            <xs:enumeration value="2.6 Diffuse - Other"/>
            <xs:enumeration value="3.1 Abstraction - Agriculture"/>
            <xs:enumeration value="3.2 Abstraction - Public Water Supply"/>
            <xs:enumeration value="3.3 Abstraction - Manufacturing"/>
            <xs:enumeration value="3.4 Abstraction - Electricity cooling"/>
            <xs:enumeration value="3.5 Abstraction - Fish farms"/>
            <xs:enumeration value="3.6 Abstraction - Hydro-energy not cooling"/>
            <xs:enumeration value="3.7 Abstraction - Quarries"/>
            <xs:enumeration value="3.8 Abstraction - Navigation"/>
            <xs:enumeration value="3.9 Abstraction - Water transfer"/>
            <xs:enumeration value="3.10 Abstraction - Other"/>
            <xs:enumeration value="4.1 FlowMorph - Groundwater recharge"/>
            <xs:enumeration value="4.2 FlowMorph - Hydroelectric dam"/>
            <xs:enumeration value="4.3 FlowMorph - Water supply reservoir"/>
            <xs:enumeration value="4.4 FlowMorph - Flood defence dams"/>
            <xs:enumeration value="4.5 FlowMorph - Water Flow Regulation"/>
            <xs:enumeration value="4.6 FlowMorph - Diversions"/>
            <xs:enumeration value="4.7 FlowMorph - Locks"/>
            <xs:enumeration value="4.8 FlowMorph - Weirs"/>
            <xs:enumeration value="5.1 RiverManagement - Physical alteration of channel"/>
            <xs:enumeration value="5.2 RiverManagement - Engineering activities"/>
            <xs:enumeration value="5.3 RiverManagement - Agricultural enhancement"/>
            <xs:enumeration value="5.4 RiverManagement - Fisheries enhancement"/>
            <xs:enumeration value="5.5 RiverManagement - Land infrastructure"/>
            <xs:enumeration value="5.6 RiverManagement - dredging"/>
            <xs:enumeration value="6.1 TRACManagement - Estuarine/coastal dredging"/>
            <xs:enumeration value="6.2 TRACManagement - Marine constructions"/>
            <xs:enumeration value="6.3 TRACManagement - Land reclamation"/>
            <xs:enumeration value="6.4 TRACManagement - Coastal sand suppletion (safety)"/>
            <xs:enumeration value="6.5 TRACManagement - Tidal barrages"/>
            <xs:enumeration value="7.1 OtherMorph - Barriers"/>
            <xs:enumeration value="7.2 OtherMorph - Land sealing"/>
            <xs:enumeration value="8.1 OtherPressures - Litter/fly tipping"/>
            <xs:enumeration value="8.2 OtherPressures - Sludge disposal to sea"/>
            <xs:enumeration value="8.3 OtherPressures - Exploitation/removal of animals/plants"/>
            <xs:enumeration value="8.4 OtherPressures - Recreation"/>
            <xs:enumeration value="8.5 OtherPressures - Fishing"/>
            <xs:enumeration value="8.6 OtherPressures - Introduced species"/>
            <xs:enumeration value="8.7 OtherPressures - Introduced disease"/>
            <xs:enumeration value="8.8 OtherPressures - Climate change"/>
            <xs:enumeration value="8.9 OtherPressures - Land drainage"/>
            <xs:enumeration value="8.10 OtherPressures- Other"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="SWPressureAbstractionType">
        <xs:annotation>
            <xs:documentation>Defines the list of SW Abstraction pressures </xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="3 Water Abstraction"/>
            <xs:enumeration value="3.1 Abstraction - Agriculture"/>
            <xs:enumeration value="3.2 Abstraction - Public Water Supply"/>
            <xs:enumeration value="3.3 Abstraction - Manufacturing"/>
            <xs:enumeration value="3.4 Abstraction - Electricity cooling"/>
            <xs:enumeration value="3.5 Abstraction - Fish farms"/>
            <xs:enumeration value="3.6 Abstraction - Hydro-energy not cooling"/>
            <xs:enumeration value="3.7 Abstraction - Quarries"/>
            <xs:enumeration value="3.8 Abstraction - Navigation"/>
            <xs:enumeration value="3.9 Abstraction - Water transfer"/>
            <xs:enumeration value="3.10 Abstraction - Other"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="SWPressureAggregatedType">
        <xs:annotation>
            <xs:documentation>Defines the list of SW Aggregated pressures </xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="1 Point Source"/>
            <xs:enumeration value="2 Diffuse Source"/>
            <xs:enumeration value="3 Water Abstraction"/>
            <xs:enumeration value="4 Water flow regulations and morphological alterations of surface water"/>
            <xs:enumeration value="5 River management"/>
            <xs:enumeration value="6 Transitional and coastal water management"/>
            <xs:enumeration value="7 Other morphological alterations"/>
            <xs:enumeration value="8 Other Pressures"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="CostExemptionType">
        <xs:annotation>
            <xs:documentation>-9999 to mean "not included in economic analysis"</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="-9999"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="CostDecimalType">
        <xs:annotation>
            <xs:documentation>Decimal with exception -9999 "not included in economic analysis"</xs:documentation>
        </xs:annotation>
        <xs:union memberTypes="NumberDecimalBaseType CostExemptionType"/>
    </xs:simpleType>
	<!--Common elements added where the enumeration lists had previously defined within separate schemas - JC 14 April 2009-->
    <xs:simpleType name="CARoleCode">
        <xs:annotation>
            <xs:documentation>Codes for the Roles:  A=Coordination, preparation and production of river basin management plans (RBMPs);
B01=Reporting monitoring requirements, establishment of programmes of measures. 
B02=Reporting, regulation and authorisation of surface water activities, regulation and authorisation of groundwater activities and 
B03=Reporting public information and consultation.
</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="A"/>
            <xs:enumeration value="B01"/>
            <xs:enumeration value="B02"/>
            <xs:enumeration value="B03"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="SWNaturalCode">
        <xs:annotation>
            <xs:documentation>Codes for natural state of the water body. Codes are Natural, Artificial, Heavily Modified and Unknown</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="Natural"/>
            <xs:enumeration value="Artificial"/>
            <xs:enumeration value="Heavily Modified"/>
            <xs:enumeration value="Unknown"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="ProtAreaAssociationType">
        <xs:annotation>
            <xs:documentation>Defines the type of protected Area Association. Options are within protected area, overlapping (partly within) and dynamically connected.</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="within protected area"/>
            <xs:enumeration value="overlapping (partly within)"/>
            <xs:enumeration value="dynamically connected"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="QEEcologicalCode">
        <xs:annotation>
            <xs:documentation>Defines all the QE Ecological codes for which exemptions to the achievement of good status might have been applied.</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="QE0 Ecological"/>
            <xs:enumeration value="QE1 Biological"/>
            <xs:enumeration value="QE2 Hydromorphological QEs"/>
            <xs:enumeration value="QE3 Chemical and Physico-chemical"/>
            <xs:enumeration value="QE1-1 Phytoplankton"/>
            <xs:enumeration value="QE1-2 Other aquatic flora"/>
            <xs:enumeration value="QE1-3 Benthic invertebrates"/>
            <xs:enumeration value="QE1-4 Fish"/>
            <xs:enumeration value="QE1-5 Other species"/>
            <xs:enumeration value="QE2-1 Hydrological regime - rivers"/>
            <xs:enumeration value="QE2-2 River continuity"/>
            <xs:enumeration value="QE2-3 Morphological conditions - rivers"/>
            <xs:enumeration value="QE2-4 Hydrological regime - lakes"/>
            <xs:enumeration value="QE2-5 Morphological conditions - lakes"/>
            <xs:enumeration value="QE2-6 Morphological conditions - transitional and coastal waters"/>
            <xs:enumeration value="QE2-7 Tidal regime - transitional waters"/>
            <xs:enumeration value="QE2-8 Tidal regime - coastal waters"/>
            <xs:enumeration value="QE3-3 Non priority specific pollutants"/>
            <xs:enumeration value="QE3-4 Other national pollutants"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="QEBiologicalRiverCode">
        <xs:annotation>
            <xs:documentation>Defines all the QE Biological River codes that might be used for the classification of status of River Water Bodies. Phytoplankton is not a mandatory QE for rivers but Article 8 reports show that it is monitored in many large rivers and hence might be used for the classification of large River Water Bodies.</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="QE1-1 Phytoplankton"/>
            <xs:enumeration value="QE1-2 Other aquatic flora"/>
            <xs:enumeration value="QE1-2-3 Macrophytes"/>
            <xs:enumeration value="QE1-2-4 Phytobenthos"/>
            <xs:enumeration value="QE1-3 Benthic invertebrates"/>
            <xs:enumeration value="QE1-4 Fish"/>
            <xs:enumeration value="QE1-5 Other species"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="QEBiologicalLakeCode">
        <xs:annotation>
            <xs:documentation>Defines all the QE Biological Lake codes that might be used for the classification of status of Lake Water Bodies</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="QE1-1 Phytoplankton"/>
            <xs:enumeration value="QE1-2 Other aquatic flora"/>
            <xs:enumeration value="QE1-2-3 Macrophytes"/>
            <xs:enumeration value="QE1-2-4 Phytobenthos"/>
            <xs:enumeration value="QE1-3 Benthic invertebrates"/>
            <xs:enumeration value="QE1-4 Fish"/>
            <xs:enumeration value="QE1-5 Other species"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="QEBiologicalTransitionalCode">
        <xs:annotation>
            <xs:documentation>Defines all the QE Biological Transitional codes that might be used for the classification of status of Transitional Water Bodies</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="QE1-1 Phytoplankton"/>
            <xs:enumeration value="QE1-2 Other aquatic flora"/>
            <xs:enumeration value="QE1-2-1 Macroalgae"/>
            <xs:enumeration value="QE1-2-2 Angiosperms"/>
            <xs:enumeration value="QE1-3 Benthic invertebrates"/>
            <xs:enumeration value="QE1-4 Fish"/>
            <xs:enumeration value="QE1-5 Other species"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="QEBiologicalCoastalCode">
        <xs:annotation>
            <xs:documentation>Defines all the QE Biological Coastal codes that might be used for the classification of status of Coastal Water Bodies</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="QE1-1 Phytoplankton"/>
            <xs:enumeration value="QE1-2 Other aquatic flora"/>
            <xs:enumeration value="QE1-2-1 Macroalgae"/>
            <xs:enumeration value="QE1-2-2 Angiosperms"/>
            <xs:enumeration value="QE1-3 Benthic invertebrates"/>
            <xs:enumeration value="QE1-5 Other species"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="QEHydromorphRiverCode">
        <xs:annotation>
            <xs:documentation>Defines all the Hydromorphological QE codes that might be used for the classification of status of River Water Bodies</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="QE2 Hydromorphological QEs"/>
            <xs:enumeration value="QE2-1 Hydrological regime - rivers"/>
            <xs:enumeration value="QE2-1-1 Water flow"/>
            <xs:enumeration value="QE2-1-2 Connection to groundwater bodies"/>
            <xs:enumeration value="QE2-2 River continuity"/>
            <xs:enumeration value="QE2-3 Morphological conditions - rivers"/>
            <xs:enumeration value="QE2-3-1 River depth and width variation"/>
            <xs:enumeration value="QE2-3-2 Structure and substrate of river bed"/>
            <xs:enumeration value="QE2-3-3 Structure of riparian zone"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="QEHydromorphLakeCode">
        <xs:annotation>
            <xs:documentation>Defines all the Hydromorphological QE codes that might be used for the classification of status of Lake Water Bodies</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="QE2 Hydromorphological QEs"/>
            <xs:enumeration value="QE2-4 Hydrological regime - lakes"/>
            <xs:enumeration value="QE2-4-1 Water flow"/>
            <xs:enumeration value="QE2-4-2 Residence time"/>
            <xs:enumeration value="QE2-4-3 Connection to groundwater bodies"/>
            <xs:enumeration value="QE2-5 Morphological conditions - lakes"/>
            <xs:enumeration value="QE2-5-1 Lake depth variation"/>
            <xs:enumeration value="QE2-5-2 Lake bed"/>
            <xs:enumeration value="QE2-5-3 Structure of lake shore"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="QEHydromorphTransitionalCode">
        <xs:annotation>
            <xs:documentation>Defines all the Hydromorphological QE codes that might be used for the classification of status of Transitional Water Bodies</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="QE2 Hydromorphological QEs"/>
            <xs:enumeration value="QE2-6 Morphological conditions - transitional and coastal waters"/>
            <xs:enumeration value="QE2-6-1 Depth variation"/>
            <xs:enumeration value="QE2-6-2 Quantity, structure and substrate of bed"/>
            <xs:enumeration value="QE2-7 Tidal regime - transitional waters"/>
            <xs:enumeration value="QE2-7-1 Freshwater flow"/>
            <xs:enumeration value="QE2-7-2 Wave exposure"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="QEHydromorphCoastalCode">
        <xs:annotation>
            <xs:documentation>Defines all the Hydromorphological QE codes that might be used for the classification of status of Coastal Water Bodies</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="QE2 Hydromorphological QEs"/>
            <xs:enumeration value="QE2-6 Morphological conditions - transitional and coastal waters"/>
            <xs:enumeration value="QE2-6-1 Depth variation"/>
            <xs:enumeration value="QE2-6-2 Quantity, structure and substrate of bed"/>
            <xs:enumeration value="QE2-8 Tidal regime - coastal waters"/>
            <xs:enumeration value="QE2-8-1 Direction of dominant currents"/>
            <xs:enumeration value="QE2-8-2 Wave exposure"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="GWDepthRangeCode">
        <xs:annotation>
            <xs:documentation>Assignment to a depth range at the point where the main part of the Groundwater Body is situated (depth ranges: 0-20m, 20-50m, 50-200m, &gt;200m)</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="0-20"/>
            <xs:enumeration value="20-50"/>
            <xs:enumeration value="50-200"/>
            <xs:enumeration value="200+"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="GWGeologicalFormationCode">
        <xs:annotation>
            <xs:documentation>An enumeration list 
 Porous - highly productive , 
 Porous - moderately productive, 
 Fissured aquifers including karst - highly productive,  
 Fissured aquifers including karst - moderately productive,  
 Insignificant aquifers - local and limited groundwater</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="Porous high"/>
            <xs:enumeration value="Porous moderate"/>
            <xs:enumeration value="Fissured high"/>
            <xs:enumeration value="Fissured moderate"/>
            <xs:enumeration value="Insignificant"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="GWVerticalOrientationCode">
        <xs:annotation>
            <xs:documentation>An enumeration list. Horizontal, mainly continuous body; Horizontal, mainly smaller, individual formations;  Declining, mainly continuous body; Declining, mainly smaller, individual formations; Declining and cumulative, mainly continuous body; Declining and cumulative, mainly smaller, individual formations; Boat form, mainly continuous body; Smaller individual boat formed formations; Other</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="Horizontal continuous"/>
            <xs:enumeration value="Horizontal individual"/>
            <xs:enumeration value="Declining, mainly continuous"/>
            <xs:enumeration value="Declining cumulative"/>
            <xs:enumeration value="Declining  individual"/>
            <xs:enumeration value="Boat"/>
            <xs:enumeration value="Smaller boat"/>
            <xs:enumeration value="Other"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="GWQuantitativeFailureCode">
        <xs:annotation>
            <xs:documentation>An enumeration list of exceedance, environmental, diminution, damage and intrusion.</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="exceedance"/>
            <xs:enumeration value="environmental"/>
            <xs:enumeration value="diminution"/>
            <xs:enumeration value="damage"/>
            <xs:enumeration value="intrusion"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="GWChemicalFailureCode">
        <xs:annotation>
            <xs:documentation>An enumeration list of saline intrusions, exceedance, environmental, terrestrial, water quality, human impairment and pollutant risk</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="saline intrusions"/>
            <xs:enumeration value="exceedance"/>
            <xs:enumeration value="environmental"/>
            <xs:enumeration value="terrestrial"/>
            <xs:enumeration value="water quality"/>
            <xs:enumeration value="human impairment"/>
            <xs:enumeration value="pollutant risk"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="GWPollutantsCode">
        <xs:annotation>
            <xs:documentation>An enumeration list of 1. Nitrates; 2. Pesticides - Alachlor, Atrazine, Endosulphan, Isoproturon, Hexachlorocyclohexane, Pentachlorobenzene, Simazine, Trifluralin; 3. Annex II pollutants - Arsenic, Cadmium, Lead, Mercury, Ammonium, Chloride, Sulphate, Trichloroethylene, Tetrachloroethylene, Conductivity.</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="1 Nitrates"/>
            <xs:enumeration value="2 Pesticides"/>
            <xs:enumeration value="2.1 Alachlor"/>
            <xs:enumeration value="2.2 Atrazine"/>
            <xs:enumeration value="2.3 Endosulfan"/>
            <xs:enumeration value="2.4 Isoproturon"/>
            <xs:enumeration value="2.5 Hexachlorocyclohexane"/>
            <xs:enumeration value="2.6 Pentachlorobenzene"/>
            <xs:enumeration value="2.7 Simazine"/>
            <xs:enumeration value="2.8 Trifluralin"/>
            <xs:enumeration value="3 Annex II pollutant"/>
            <xs:enumeration value="3.1 Arsenic"/>
            <xs:enumeration value="3.2 Cadmium"/>
            <xs:enumeration value="3.3 Lead"/>
            <xs:enumeration value="3.4 Mercury"/>
            <xs:enumeration value="3.5 Ammonium"/>
            <xs:enumeration value="3.6 Chloride"/>
            <xs:enumeration value="3.7 Sulphate"/>
            <xs:enumeration value="3.8 Trichloroethylene"/>
            <xs:enumeration value="3.9 Tetrachloroethylene"/>
            <xs:enumeration value="3.10 Conductivity"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="GWBackgoundSubstancesCode">
        <xs:annotation>
            <xs:documentation>An enumeration list of Arsenic, Cadmium, Lead, Mercury, Ammonium, Nitrate, Chloride, Sulphate, Conductivity.</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="Arsenic"/>
            <xs:enumeration value="Cadmium"/>
            <xs:enumeration value="Lead"/>
            <xs:enumeration value="Mercury"/>
            <xs:enumeration value="Ammonium"/>
            <xs:enumeration value="Chloride"/>
            <xs:enumeration value="Sulphate"/>
            <xs:enumeration value="Conductivity"/>
            <xs:enumeration value="Nitrate"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="GWConcentrationUnitsCode">
        <xs:annotation>
            <xs:documentation>An enumeration list of mg/l, µg/l, ng/l, S m-1, µS/cm and Other</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="mg/l"/>
            <xs:enumeration value="µg/l"/>
            <xs:enumeration value="ng/l"/>
            <xs:enumeration value="S m-1"/>
            <xs:enumeration value="µS/cm"/>
            <xs:enumeration value="Other"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="QE3-1ParameterType">
        <xs:annotation>
            <xs:documentation>An enumeration list of general physicochemical QE (QE3-1) and parameters indicative of QEs that MIGHT be used for the ecological status classification of water bodies:
QE3-1-1-SecchiDepth
QE3-1-1-Transparency
QE3-1-2-Water temperature
QE3-1-3-BOD5
QE3-1-3-BOD7
QE3-1-3-COD
QE3-1-3-CODCr
QE3-1-3-CODMn
QE3-1-3-DissolvedOxygenConcentration
QE3-1-3-OxygenSaturationPercentage
QE3-1-3-DissolvedOrganicCarbon
QE3-1-4-Salinity
QE3-1-4-Conductivity
QE3-1-4-Chloride
QE3-1-4-Sulfate
QE3-1-5-Alkalinity
QE3-1-5-Hardness
QE3-1-5-pH
QE3-1-6-KjeldahlNitrogen
QE3-1-6-Nitrate
QE3-1-6-Nitrite
QE3-1-6-OrganicNitrogen
QE3-1-6-ParticulateOrganicNitrogen
QE3-1-6-Non-ionisedAmmonia
QE3-1-6-Orthophosphate
QE3-1-6-SolubleReactivePhosphorus
QE3-1-6-Silicate
QE3-1-6-TotalInorganicNitrogen
QE3-1-6-TotalNitrogen
QE3-1-6-TotalOxidisedNitrogen
QE3-1-6-TotalAmmonium
QE3-1-6-TotalOrganicCarbon
QE3-1-6-TotalPhosphorus
QE3-1-6-NitrateOrthophosphateRatio
QE3-1-6-TotalNitrogenTotalPhosphorusRatio
QE3-1-6-ChlorophyllA
QE3-1-6-Nmineral
</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="QE3-1-1-SecchiDepth"/>
            <xs:enumeration value="QE3-1-1-Transparency"/>
            <xs:enumeration value="QE3-1-2-Water temperature"/>
            <xs:enumeration value="QE3-1-3-BOD5"/>
            <xs:enumeration value="QE3-1-3-BOD7"/>
            <xs:enumeration value="QE3-1-3-COD"/>
            <xs:enumeration value="QE3-1-3-CODCr"/>
            <xs:enumeration value="QE3-1-3-CODMn"/>
            <xs:enumeration value="QE3-1-3-DissolvedOxygenConcentration"/>
            <xs:enumeration value="QE3-1-3-OxygenSaturationPercentage"/>
            <xs:enumeration value="QE3-1-3-DissolvedOrganicCarbon"/>
            <xs:enumeration value="QE3-1-4-Salinity"/>
            <xs:enumeration value="QE3-1-4-Conductivity"/>
            <xs:enumeration value="QE3-1-4-Chloride"/>
            <xs:enumeration value="QE3-1-4-Sulfate"/>
            <xs:enumeration value="QE3-1-5-Alkalinity"/>
            <xs:enumeration value="QE3-1-5-Hardness"/>
            <xs:enumeration value="QE3-1-5-pH"/>
            <xs:enumeration value="QE3-1-6-KjeldahlNitrogen"/>
            <xs:enumeration value="QE3-1-6-Nitrate"/>
            <xs:enumeration value="QE3-1-6-Nitrite"/>
            <xs:enumeration value="QE3-1-6-OrganicNitrogen"/>
            <xs:enumeration value="QE3-1-6-ParticulateOrganicNitroge"/>
            <xs:enumeration value="QE3-1-6-Non-ionisedAmmonia"/>
            <xs:enumeration value="QE3-1-6-Orthophosphate"/>
            <xs:enumeration value="QE3-1-6-SolubleReactivePhosphorus"/>
            <xs:enumeration value="QE3-1-6-Silicate"/>
            <xs:enumeration value="QE3-1-6-TotalInorganicNitrogen"/>
            <xs:enumeration value="QE3-1-6-TotalNitrogen"/>
            <xs:enumeration value="QE3-1-6-TotalOxidisedNitrogen"/>
            <xs:enumeration value="QE3-1-6-TotalAmmonium"/>
            <xs:enumeration value="QE3-1-6-TotalOrganicCarbon"/>
            <xs:enumeration value="QE3-1-6-TotalPhosphorus"/>
            <xs:enumeration value="QE3-1-6-NitrateOrthophosphateRatio"/>
            <xs:enumeration value="QE3-1-6-TotalNitrogenTotalPhosphorusRatio"/>
            <xs:enumeration value="QE3-1-6-ChlorophyllA"/>
            <xs:enumeration value="QE3-1-6-Nmineral"/>
            <xs:enumeration value="QE3-1 Other"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="GWMeasureLevelCode">
        <xs:annotation>
            <xs:documentation>An enumeration list of Member State, International RBD, national RBD, part of RBD, Groundwater body</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="Member State"/>
            <xs:enumeration value="International RBD"/>
            <xs:enumeration value="National"/>
            <xs:enumeration value="RBD"/>
            <xs:enumeration value="Part of RBD"/>
            <xs:enumeration value="Groundwater body"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="MeasureCoverageType">
        <xs:annotation>
            <xs:documentation>An enumeration list of RBD, Sub-unit, Water body, National, Other</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="RBD"/>
            <xs:enumeration value="Sub-unit"/>
            <xs:enumeration value="Water Body"/>
            <xs:enumeration value="National"/>
            <xs:enumeration value="Other"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="MeasureSWSupplementaryType">
        <xs:annotation>
            <xs:documentation>An enumeration list of legal, economic, negotiated, emission, practice, abstraction, demand, efficiency, construction, desalination, rehabilitation, recharge, educational, research, other</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="LEGAL"/>
            <xs:enumeration value="ADMIN"/>
            <xs:enumeration value="ECONOMIC"/>
            <xs:enumeration value="NEGOTIATED"/>
            <xs:enumeration value="EMISSION"/>
            <xs:enumeration value="PRACTICE"/>
            <xs:enumeration value="ABSTRACTION"/>
            <xs:enumeration value="DEMAND"/>
            <xs:enumeration value="EFFICIENCY"/>
            <xs:enumeration value="CONSTRUCTION"/>
            <xs:enumeration value="DESALINATION"/>
            <xs:enumeration value="REHABILITATION"/>
            <xs:enumeration value="RECHARGE"/>
            <xs:enumeration value="EDUCATIONAL"/>
            <xs:enumeration value="RESEARCH"/>
            <xs:enumeration value="RESTORATION"/>
            <xs:enumeration value="OTHER"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="MeasureRBDorNationalCode">
        <xs:annotation>
            <xs:documentation>An enumeration list of R=RBD and N=national</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="R"/>
            <xs:enumeration value="N"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="MeasureCostAggregationType">
        <xs:annotation>
            <xs:documentation>An enumeration list of Entire RBMP, Annual, Other</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="Entire RBMP"/>
            <xs:enumeration value="Annual"/>
            <xs:enumeration value="Other"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="MeasureCostClassificationType">
        <xs:annotation>
            <xs:documentation>An enumeration list of total, financial, resources, administrative, non-water environmental</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="total"/>
            <xs:enumeration value="financial"/>
            <xs:enumeration value="resources"/>
            <xs:enumeration value="administrative"/>
            <xs:enumeration value="non-water env"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="PressureLoadUnitType">
        <xs:annotation>
            <xs:documentation>An enumeration list of kg/yr, tonnes/yr, 1000tonnes/yr.</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="kg/yr"/>
            <xs:enumeration value="tonnes/yr"/>
            <xs:enumeration value="1000tonnes/yr"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="ChemicalDeOxygenatingSubstanceCode">
        <xs:annotation>
            <xs:documentation>An enumeration list of BOD5, BOD7, COD, CODCr, CODMn</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="BOD5"/>
            <xs:enumeration value="BOD7"/>
            <xs:enumeration value="COD"/>
            <xs:enumeration value="CODCr"/>
            <xs:enumeration value="CODMn"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="ChemicalNutrientType">
        <xs:annotation>
            <xs:documentation>An enumeration list of Kjeldahl Nitrogen, Nitrate,  Nitrite, Organic Nitrogen, Particulate Organic Nitrogen, Non-ionised Ammonia, Orthophosphate, Soluble Reactive Phosphate, Silicate, Total Inorganic Nitrogen, Total Nitrogen, Total Oxidised Nitrogen, Total Ammonium, Total Organic Carbon, Total Phosphorus.</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="KjeldahlNitrogen"/>
            <xs:enumeration value="Nitrate"/>
            <xs:enumeration value="Nitrite"/>
            <xs:enumeration value="OrganicNitrogen"/>
            <xs:enumeration value="ParticulateOrganicNitrogen"/>
            <xs:enumeration value="Non-ionisedAmmonia"/>
            <xs:enumeration value="Orthophosphate"/>
            <xs:enumeration value="Soluble Reactive Phosphorous"/>
            <xs:enumeration value="Silicate"/>
            <xs:enumeration value="TotalInorganicNitrogen"/>
            <xs:enumeration value="TotalNitrogen"/>
            <xs:enumeration value="TotalOxidisedNitrogen"/>
            <xs:enumeration value="TotalAmmonium"/>
            <xs:enumeration value="TotalOrganicCarbon"/>
            <xs:enumeration value="TotalPhosphorous"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="PressureGWAbstractionUnitType">
        <xs:annotation>
            <xs:documentation>An enumeration list of m3, 1000m3, 1000000m3</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="m3"/>
            <xs:enumeration value="1000m3"/>
            <xs:enumeration value="1000000m3"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="PressureGWAbstractionPeriodType">
        <xs:annotation>
            <xs:documentation>An enumeration list of yearly, winter, spring, summer, autumn</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="yearly"/>
            <xs:enumeration value="winter"/>
            <xs:enumeration value="spring"/>
            <xs:enumeration value="summer"/>
            <xs:enumeration value="autumn"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="Economic2009to2015Code">
        <xs:annotation>
            <xs:documentation>An enumeration list of 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2009-2015</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="2009"/>
            <xs:enumeration value="2010"/>
            <xs:enumeration value="2011"/>
            <xs:enumeration value="2012"/>
            <xs:enumeration value="2013"/>
            <xs:enumeration value="2014"/>
            <xs:enumeration value="2015"/>
            <xs:enumeration value="2009-2015"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="EconomicWaterServiceType">
        <xs:annotation>
            <xs:documentation>An enumeration list of 
Water supply for households
Water supply for industry
Water supply for agriculture
Wastewater collection and treatment for households
Wastewater collection and treatment for industry
Other 
</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="Water supply for households"/>
            <xs:enumeration value="Water supply for industry"/>
            <xs:enumeration value="Water supply for agriculture"/>
            <xs:enumeration value="Wastewater collection and treatment for households"/>
            <xs:enumeration value="Wastewater collection and treatment for industry"/>
            <xs:enumeration value="Other"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="SWCategoryAllCode">
        <xs:annotation>
            <xs:documentation>An enumeration list of SurfaceWater Categories icnluding All: SW=All Surface Waters; CW =Coastal Waters; LW =Lakes; RW =Rivers; TW =Transitional Waters</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="SW"/>
            <xs:enumeration value="CW"/>
            <xs:enumeration value="LW"/>
            <xs:enumeration value="RW"/>
            <xs:enumeration value="TW"/>
        </xs:restriction>
    </xs:simpleType>
	<!--
	 |DEPRECATED TYPE DEFINITIONS
	 | These type definitions have been deprecated but are retained to ensure backwards compatibility with previous schemas
	 |
	 -->
	<!--
	 |END OF DEPRECATED TYPE DEFINITIONS
	 -->
	<!--Article 15(3)  TYPE DEFINITIONS
	 These type definitions have been defined to support Article 15(3) reporting in the IMP_POM schema (Progress on the implementation of the Programmes of Measures) -->
    <xs:simpleType name="StateOfImplementation">
        <xs:annotation>
            <xs:documentation>An enumeration list of State of Implementation of the measures. NS=Not Started; OG=On-Going; COM=Completed</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="NS"/>
            <xs:enumeration value="OG"/>
            <xs:enumeration value="COM"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="YesCode">
        <xs:annotation>
            <xs:documentation>Yes Code: Yes=Y</xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="Y"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="EUFunds">
        <xs:annotation>
            <xs:documentation>An enumeration list to indicate type of EU funds involved (S=Structural, C=Cohesion, RD=Rural Development, F=Fisheries, L=LIFE+, RTD=RTD, Other=Others, NA=Not Applicable) </xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="S"/>
            <xs:enumeration value="C"/>
            <xs:enumeration value="RD"/>
            <xs:enumeration value="F"/>
            <xs:enumeration value="L"/>
            <xs:enumeration value="RTD"/>
            <xs:enumeration value="Other"/>
            <xs:enumeration value="NA"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="KeyTypeOfMeasure1">
        <xs:annotation>
            <xs:documentation>Construction or upgrades of wastewater treatment plants beyond the requirements of the Directive on Urban Waste Water Treatment (e.g. more advanced treatment than required in the UWWT Directive or constructions below the size threshold given in the UWWT Directive; please consider only WFD measures).
			
1.1: Number of population equivalent covered by measures beyond the requirements of the UWWTD
1.2: Number of projects/measures
1.3: Estimated Total Costs (€) of the measures
Other: Other
 </xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="1.1"/>
            <xs:enumeration value="1.2"/>
            <xs:enumeration value="1.3"/>
            <xs:enumeration value="Other"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="KeyTypeOfMeasure2">
        <xs:annotation>
            <xs:documentation>Reduce nutrient pollution in agriculture beyond the requirements of the Nitrates Directive (please consider only WFD measures).
			
2.1: Area of agricultural land covered by measures (km2) beyond the requirements of the NiD
2.2: Estimated Total Costs (€) of the measures
2.3: Number of projects/measures
Other: Other
 </xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="2.1"/>
            <xs:enumeration value="2.2"/>
            <xs:enumeration value="2.3"/>
            <xs:enumeration value="Other"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="KeyTypeOfMeasure3">
        <xs:annotation>
            <xs:documentation>Reduce pesticides pollution in agriculture.
			
3.1: Area of agricultural land covered by measures (km2) to reduce pollution in agriculture
3.2: Number of projects/measures
Other: Other
 </xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="3.1"/>
            <xs:enumeration value="3.2"/>
            <xs:enumeration value="Other"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="KeyTypeOfMeasure4">
        <xs:annotation>
            <xs:documentation>: Remediation of contaminated sites (historical pollution including sediments, groundwater, soil). 
						
4.1: Area of land covered by measures (km2) for the remediation of contaminated sites
4.2: Number of sites subject to measures for the remediation of contaminated sites
4.3: Estimated Total Costs (€) of the measures
Other: Other
 </xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="4.1"/>
            <xs:enumeration value="4.2"/>
            <xs:enumeration value="4.3"/>
            <xs:enumeration value="Other"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="KeyTypeOfMeasure5">
        <xs:annotation>
            <xs:documentation>Improving longitudinal continuity (e.g. establishing fish passes, demolishing old dams).
			
5.1: Number of projects/measures to improve longitudinal continuity
5.2: Estimated Total Costs (€) of the measures
Other: Other
 </xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="5.1"/>
            <xs:enumeration value="5.2"/>
            <xs:enumeration value="Other"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="KeyTypeOfMeasure6">
        <xs:annotation>
            <xs:documentation>Improving hydromorphological conditions of water bodies other than longitudinal continuity (e.g. river restoration, improvement of riparian areas, removal of hard embankments, reconnecting rivers to floodplains, improvement of hydromorphological condition of transitional waters, etc.).
			
6.1: Length of rivers (km) affected by measures to improve hydromorphological conditions
6.2: Area of RBD (km2) affected by measures to improve hydromorphological conditions
6.3: Number of projects/measures to improve hydromorphological conditions
6.4: Estimated Total Costs (€) of the measures
Other: Other
 </xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="6.1"/>
            <xs:enumeration value="6.2"/>
            <xs:enumeration value="6.3"/>
            <xs:enumeration value="6.4"/>
            <xs:enumeration value="Other"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="KeyTypeOfMeasure7">
        <xs:annotation>
            <xs:documentation>Improvements in flow regime and/or establishment of minimum ecological flow. 
			
7.1: Number of projects/measures (including permits) to improve flow regime and/or establishment of minimum ecological flow
7.2: Length of rivers (km) affected by measures to improve flow regime and/or establishment of minimum ecological flow 
7.3: Estimated Total Costs (€) of the measures
Other: Other
 </xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="7.1"/>
            <xs:enumeration value="7.2"/>
            <xs:enumeration value="7.3"/>
            <xs:enumeration value="Other"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="KeyTypeOfMeasure8">
        <xs:annotation>
            <xs:documentation>Water efficiency measures for irrigation (technical measures). 
			
8.1: Area covered by projects improving water efficiency in irrigation
8.2: Number of projects/measures to improve water efficiency in irrigation
8.3: Estimated Total Costs (€) of the measures
Other: Other
 </xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="8.1"/>
            <xs:enumeration value="8.2"/>
            <xs:enumeration value="8.3"/>
            <xs:enumeration value="Other"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="KeyTypeOfMeasure9">
        <xs:annotation>
            <xs:documentation>Progress in water pricing policy measures for the implementation of the recovery of cost of water services from households.
			
9.1: Population affected by water pricing policy measures for the implementation of the recovery of cost of water services from households in relation to the total foreseen (NB the total population covered by measures foreseen in the RBMP will also be required)
9.2: Area (km2) covered by water pricing policy measures for the implementation of the recovery of cost of water services from households in relation to the total foreseen
Other: Other
 </xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="9.1"/>
            <xs:enumeration value="9.2"/>
            <xs:enumeration value="Other"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="KeyTypeOfMeasure10">
        <xs:annotation>
            <xs:documentation>Progress in water pricing policy measures for the implementation of the recovery of cost of water services from industry.
			
10.1: Number of sites affected by water pricing policy measures for the implementation of the recovery of cost of water services from industry in relation to the total foreseen (NB the total number of industrial sites where such water service measures are foreseen in the RBMP will also be required)
Other: Other
 </xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="10.1"/>
            <xs:enumeration value="Other"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="KeyTypeOfMeasure11">
        <xs:annotation>
            <xs:documentation>Progress in water pricing policy measures for the implementation of the recovery of cost of water services from agriculture.
			
11.1: Area (km2) affected by water pricing policy measures for the implementation of the recovery of cost of water services from agriculture in relation to the total foreseen (NB the total area where such water service measures are foreseen in the RBMP will also be required).
Other: Other
 </xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="11.1"/>
            <xs:enumeration value="Other"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="KeyTypeOfMeasure12">
        <xs:annotation>
            <xs:documentation>Advisory services for agriculture
			
12.1: Number of farms covered by advisory services for agriculture in relation to the total foreseen (NB the total number of farms to be covered by advisory services foreseen in the RBMP will also need to be provided)
12.2: Number of advisory services
12.3: Area (km2) of agricultural land covered by advisory services in relation to the total foreseen (NB the total area of agricultural land to be covered by advisory services foreseen in the RBMP will also need to be provided)
Other: Other
 </xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="12.1"/>
            <xs:enumeration value="12.2"/>
            <xs:enumeration value="12.3"/>
            <xs:enumeration value="Other"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="KeyTypeOfMeasure13">
        <xs:annotation>
            <xs:documentation>Drinking water protection measures (e.g. establishment of safeguard zones, buffer zones etc).
			
13.1: Number of drinking water protection zones in place in relation to the total number of planned protection zones (NB the total number of zones foreseen in the RBMP will need to be provided)
Other: Other
 </xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="13.1"/>
            <xs:enumeration value="Other"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="KeyTypeOfMeasure14">
        <xs:annotation>
            <xs:documentation>Research, improvement of knowledge base reducing uncertainty. 
			
14.1: Estimated Total Costs (€) of the research studies, development and demonstration projects
14.2: Number of the research studies, development and demonstration projects
Other: Other
 </xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="14.1"/>
            <xs:enumeration value="14.2"/>
            <xs:enumeration value="Other"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="KeyTypeOfMeasure15">
        <xs:annotation>
            <xs:documentation>Measures for the phasing-out of emissions, discharges and losses of priority hazardous substances or for the reduction of emissions, discharges and losses of priority substances.  
			
15.1: Number of permits issued or updated
15.2: Number of projects/measures
15.3: Estimated Total Costs (€) of the measures
Other: Other
 </xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="15.1"/>
            <xs:enumeration value="15.2"/>
            <xs:enumeration value="15.3"/>
            <xs:enumeration value="Other"/>
        </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="KeyTypeOfMeasure16">
        <xs:annotation>
            <xs:documentation>Upgrades or improvements of industrial wastewater treatment plants (including farms) beyond the requirements of the Integrated Pollution Prevention and Control (IPPC) Directive (please consider only WFD measures).
			
16.1: Number of projects/measures
16.2: Estimated Total Costs (€) of the measures 
Other: Other
 </xs:documentation>
        </xs:annotation>
        <xs:restriction base="xs:string">
            <xs:enumeration value="16.1"/>
            <xs:enumeration value="16.2"/>
            <xs:enumeration value="Other"/>
        </xs:restriction>
    </xs:simpleType>
</xs:schema>