<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema version="4.8" 
            xmlns:nwis="http://water.usgs.gov/XML/NWIS/4.8"
            
            xmlns:xsd="http://www.w3.org/2001/XMLSchema"
            
            elementFormDefault="qualified">
            
	<xsd:include schemaLocation="../shared/string1.xsd"/>

	<xsd:simpleType name="DailyValuesCodeContents">
		<xsd:list>
			<xsd:simpleType>
				<xsd:restriction base="string1">
					<xsd:enumeration value="C"/>
					<xsd:enumeration value="F"/>
				</xsd:restriction>
			</xsd:simpleType>
		</xsd:list>
	</xsd:simpleType>

	<xsd:complexType name="DailyValuesCode">
		<xsd:annotation>
			<xsd:documentation>
				<Definition>The code identifying the type of the daily values. The possible values are; "C" = The daily value was computed from the unit values,  "F" = The daily value is considered final and any edits have been applied.</Definition>
			</xsd:documentation>
		</xsd:annotation>
		<xsd:simpleContent>
			<xsd:extension base="DailyValuesCodeContents">
				<xsd:attribute name="name" type="xsd:string" use="optional"/>
			</xsd:extension>
		</xsd:simpleContent>
	</xsd:complexType>
</xsd:schema>
