-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAqueousChemistry1.13.xsd
1672 lines (1672 loc) · 90.1 KB
/
AqueousChemistry1.13.xsd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<!-- edited with XMLSpy v2010 rel. 3 (x64) (http://www.altova.com) by Christy Caudill -->
<xs:schema xmlns:aasg="http://stategeothermaldata.org/uri-gin/aasg/xmlschema/aqueouschemistry/1.10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:gml="http://www.opengis.net/gml" xmlns:gmlsf="http://www.opengis.net/gmlsf" targetNamespace="http://stategeothermaldata.org/uri-gin/aasg/xmlschema/aqueouschemistry/1.10" elementFormDefault="qualified" version="01.13">
<xs:import namespace="http://www.opengis.net/gml" schemaLocation="http://schemas.opengis.net/gml/3.1.1/base/gml.xsd"/>
<xs:import namespace="http://www.opengis.net/gmlsf" schemaLocation="http://schemas.opengis.net/gml/3.1.1/profiles/gmlsfProfile/1.0.0/gmlsfLevels.xsd"/>
<xs:annotation>
<!--This XSD document, including XML schema, indicates the content requested for aqueous chemistry data, either for a thermal well or a thermal spring. In the geothermal data system, chemical observations are one of the observation services that are used as a method to discover resources derived from thermal springs or thermal wells with particular characteristics. Each chemical analysis observation should have a unique AnalysisURI and a corresponding SamplingFeatureURI-->
<!--Version 10.2 changed date types to 'dateTime'. Annotated Version 1.10.1. This XSD document was created on 2013-04-02 and edited on 2013-04-30 to contain descriptive annotation by Christy Caudill, AZGS. SRS description was edited 6/14/2013. This schema is based on the data available in the AASG Web Feature Services created for spring and well chemistry in Arizona. Field Description annotations standardized 2013-08-22 by Esty Pape, AZGS. -->
<xs:appinfo source="http://schemas.opengis.net/gml/3.1.1/profiles/gmlsfProfile/1.0.0/gmlsfLevels.xsd">
<gmlsf:ComplianceLevel>0</gmlsf:ComplianceLevel>
<gmlsf:GMLProfileSchema>
http://schemas.opengis.net/gml/3.1.1/profiles/gmlsfProfile/1.0.0/gmlsf.xsd </gmlsf:GMLProfileSchema>
</xs:appinfo>
</xs:annotation>
<xs:element name="WaterQuality" type="aasg:WaterQualityObsType" substitutionGroup="gml:_Feature"/>
<xs:element name="CommonAnalytes" type="aasg:WaterChemCommonConstituentsType" substitutionGroup="gml:_Feature"/>
<xs:element name="BaseMetals" type="aasg:WaterBaseMetalsType" substitutionGroup="gml:_Feature"/>
<xs:element name="MajorDissolvedConstituents" type="aasg:WaterMajorDissolvedConstituentsType" substitutionGroup="gml:_Feature"/>
<xs:element name="MinorDissolvedConstituents" type="aasg:WaterMinorDissolvedConstituentsType" substitutionGroup="gml:_Feature"/>
<xs:element name="Nitrogen" type="aasg:WaterNitrogenObsType" substitutionGroup="gml:_Feature"/>
<xs:element name="WaterDissolvedGas" type="aasg:WaterDissolvedGasObsType" substitutionGroup="gml:_Feature"/>
<xs:element name="FreeGas" type="aasg:GasCompositionObsType" substitutionGroup="gml:_Feature"/>
<xs:element name="WaterIsotopes" type="aasg:WaterIsotopesObsType" substitutionGroup="gml:_Feature"/>
<xs:element name="GasIsotopes" type="aasg:GasIsotopesObsType" substitutionGroup="gml:_Feature"/>
<xs:element name="IsotopesDissolved" type="aasg:WaterSupplementalIsotopesObsType" substitutionGroup="gml:_Feature"/>
<xs:element name="SingleAnalyte" type="aasg:SingleAnalyteChemType" substitutionGroup="gml:_Feature"/>
<xs:element name="MineralRecoveryBrine" type="aasg:MineralRecoveryBrineType" substitutionGroup="gml:_Feature"/>
<xs:complexType name="SampleAnalysisCommonType">
<xs:complexContent>
<xs:extension base="gml:AbstractFeatureType">
<xs:sequence>
<xs:element name="OBJECTID" type="xs:int" minOccurs="0">
<xs:annotation>
<xs:documentation>Integer record count, added by ArcGIS servers during service deployment; not required but cannot be removed when deploying from ArcGIS feature class. Not user maintained, so this element appears in XML implementation but not in the Content Model Template.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="AnalysisURI">
<xs:annotation>
<xs:documentation>A unique identifier for a discrete analysis of a specimen taken from a feature. The feature from which the specimen was taken will be identified by its own URI.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="255"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="AnalysisName" type="xs:string">
<xs:annotation>
<xs:documentation>Human-intelligible label to identify the analysis. Analysis names should be unique within the dataset.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Notes" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Any additional information to be provided, including description and other data not captured by the template, details about collection method, contact information for related parties (original collector, project PI), collection platform or Launch, etc.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="SamplingFeatureName" type="xs:string">
<xs:annotation>
<xs:documentation>Common or human-readable name by which the feature is known. Recommend using only web-safe characters (a-z A-Z 0-9 _-.) in the name. Be consistent in the naming convention used within any given dataset.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="SamplingFeatureURI">
<xs:annotation>
<xs:documentation>Unique Identifier for the particular site (station) or well where the sample(s) came from. For wells, this might be the HeaderURI or API number used in other metadata files. If unavailable, state 'missing'. SamplingFeature is a concept that represents the feature that accesses the part of the Earth from which the sample came, e.g. outcrop, borehole, dredge haul.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="255"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="SamplingFeatureType" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Type of feature that is the subject of this record: Thermal Spring, Borehole, Well, Pool, Stream.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="OtherSiteID" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Alternative identifier(s) for the feature. Indicate the authority from which the OtherID is derived with a short (lower case) prefix delimited by a colon ':' If identifiers from multiple different authorities are available, delimit these identifiers with the pipe '|' character. For example, if a well were known to the Arizona Geological Survey (AZGS) by the id number 1337, the prefix would be azgs: and the identifier string would be azgs:1337. Any such prefixes used to scope identifiers should be explained in the dataset metadata.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="SpecimenID" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>ID given to the specimen by the collector(s). Recommended practice: include a short abbreviation in a prefix indicating the authority or scope of the identifier (e.g. 'usgs:'); any prefixes should be explained in the dataset metadata.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Label" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Short text string for labeling the feature on maps. Can be the same as feature name. A label may be an OtherLocationName, OtherID or the Name or some combination.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="SpecimenDescription" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Free text field for any additional observations or other information regarding the feature, any special considerations with this instance (size, weight, quality, lithology, locality, etc).</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="SpecimenURI" minOccurs="0">
<xs:annotation>
<xs:documentation>Unique identifier for sample; should include protocol prefix with known meaning, delimited by a ':' (colon), e.g. igsn:24623570 or http://resources.usgin.org/uri-gin/AZGS/sample/24623570.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="255"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="SpecimenCollectionDate" type="xs:dateTime" minOccurs="0">
<xs:annotation>
<xs:documentation>Date for the record: date on which observation, measurement or test was made or specimen was collected. Day, month and year must be specified; Excel will display using ISO 8601 date and time (yyyy-mm-ddT:hh:mm) format. If only the year is known, enter month and day as 'Jan. 1', (or '1/1/', or '1-1-', or 'January 1,'). All dates will be converted to yyyy-mm-ddThh:mm.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="SpecimenCollectionMethod" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Text description of the process used to collect the analyzed specimen. Include any keywords that may typically be used to categorize sampling procedures. Data provider should indicate QA/QC performed on the data, including individual or institution, time frame and depth of quality check.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="OtherAnalyticalData" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Text describing other analytical data associated with the analyzed specimen. Best practice: include a URI for observation records reporting related results.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="DrilledDepth_ft" type="xs:double" minOccurs="0">
<xs:annotation>
<xs:documentation>Length of borehole from borehole origin to bottom of borehole. If there are multiple wells, use the depth of the deepest well.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="FluidTemperature_C" type="xs:double" minOccurs="0">
<xs:annotation>
<xs:documentation>Temperature of fluid, in decimal format, when sampled; all temperatures must be reported in degrees Celsius.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Discharge" type="xs:double" minOccurs="0">
<xs:annotation>
<xs:documentation>Average measured volume of water per unit of time.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="DischargeUnits" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Units for flow rate, either gallons per minute (gpm) or liters per minute (lpm).</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="County" type="xs:string">
<xs:annotation>
<xs:documentation>Required. County name. If unknown or not applicable use 'missing'. If offshore, specify 'offshore' in this field.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="State" type="xs:string">
<xs:annotation>
<xs:documentation>Required. State name without abbreviations. If unknown or not applicable use 'missing'. For offshore locations, specify the governing or nearest state and list the county as 'offshore'.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="LatDegree" type="xs:double">
<xs:annotation>
<xs:documentation>Latitude coordinate for the surface location of the feature (use center point for areas); values should be provided with at least 4 significant digits for sufficient precision (7 decimal places is recommended by the USGS (OFR 02-463, p. 6). Use decimal degrees.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="LongDegree" type="xs:double">
<xs:annotation>
<xs:documentation>Longitude coordinate for the surface location of the feature (use center point for areas); values should be provided with at least 4 significant digits for sufficient precision (7 decimal places is recommended by the USGS (OFR 02-463, p. 6). Use decimal degrees.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="SRS" type="xs:string">
<xs:annotation>
<xs:documentation>The spatial reference system. It is recommended that an EPSG code be used to identify the SRS used to specify the location. If an EPSG code is used, identify it as such with the prefix 'EPSG:' EPSG:4326 is the identifier for WGS84, and should be the text in this field. EPSG stands for European Petroleum Survey Group. EPSSG codes can be dereferenced by putting the code in this URL (replace 4326) http://spatialreference.org/ref/epsg/4326/.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="LocationUncertaintyStatement" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Information on how the original location was determined, e.g.: 1:250,000 map, gps unit, Google Earth, PLSS Conversion, Spatial Datum Conversion, e.g., NAD27 to WGS84.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="PLSSMeridians" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>List north-south baseline and east-west meridian that Townships and Ranges are referenced to.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Township" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Township in PLSS grid, relative to reported baseline. Formatting and punctuation should be consistent for all locations referenced to the same baseline and meridian. Recommend adding leading '0's so that all number strings are the same length (typically 2 or occasionally 3 digits). Examples 01N, 112S, 001N.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Range" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Range in PLSS grid, relative to reported meridian. Formatting and punctuation should be consistent for all locations referenced to the same baseline meridian. See instructions on TWP field.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Section_" type="xs:double" minOccurs="0">
<xs:annotation>
<xs:documentation>PLSS section number. Must be numeric or null. Some surveys include half sections indicated by a 'nn.5' designation, where n indicates a number.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="SectionPart" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Subdivision of a PLSS section.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Elevation_m_msl" type="xs:double" minOccurs="0">
<xs:annotation>
<xs:documentation>Elevation at ground level for the feature in meters. Elevations should be reported relative to mean sea level (MSL). </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Source" type="xs:string">
<xs:annotation>
<xs:documentation>Mandatory. Short text explanation of source of information defining this feature or record; may be author-date type citation, well log, report, data files etc., but should include some indication of how digital data originated. If unpublished data, provide researcher name, date and research institution for proper citation. Separate multiple citations with pipe '|' character.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="SourceURI" minOccurs="0">
<xs:annotation>
<xs:documentation>Identifier, DOI or other URI, for the cited source. Ideally an http URI that may be dereferenced to produce a representation of the original source document.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="255"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="MetadataURI" minOccurs="0">
<xs:annotation>
<xs:documentation>URI identifying (and ideally dereferencing to get) a full formal metadata record for the observation report. A time series of observations may all reference the same metadata record that provides contact information and details on procedure, etc.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="255"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="AnalysisDateTime" type="xs:dateTime" minOccurs="0">
<xs:annotation>
<xs:documentation>Date for the record: date on which observation, measurement or test was made or specimen was collected. Day, month and year must be specified; Excel will display using ISO 8601 date and time (yyyy-mm-ddT:hh:mm) format. If only the year is known, enter month and day as 'Jan. 1', (or '1/1/', or '1-1-', or 'January 1,'). All dates will be converted to yyyy-mm-ddThh:mm.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Laboratory" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>If a Laboratory performed the analysis, include name and address here.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="AnalyticalProcedure" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Text description of how the measurement was made - instrumentation, logging rate, correction or extrapolation process, how time since circulation was determined, etc. Data provider should indicate QA/QC performed on the data, including individual or institution, time frame and depth of quality check.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ConcentrationUnits" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Indicate the units of the analytes in this section (layer). All analytes reported in this record use the same units. </xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="WaterQualityObsType">
<xs:complexContent>
<xs:extension base="aasg:SampleAnalysisCommonType">
<xs:sequence>
<xs:element name="ph_Field" type="xs:double" minOccurs="0">
<xs:annotation>
<xs:documentation>Field measure of the acidity of an aqueous solution. Report in standard pH format.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ph_Lab" type="xs:double" minOccurs="0">
<xs:annotation>
<xs:documentation>Field measure of the acidity of an aqueous solution. Report in standard pH format.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="SpecificConductance_mS" type="xs:double" minOccurs="0">
<xs:annotation>
<xs:documentation>Measurement of the ability of a substance to conduct electricity. Reported in S/m (Siemens/meter).</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ConductanceNote" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Notes on specific conductance measurements.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Conductance_method" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Text description of how the measurement was made - instrumentation, logging rate, correction or extrapolation process, how time since circulation was determined, etc. Data provider should indicate QA/QC performed on the data, including individual or institution, time frame and depth of quality check.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="TotalDissolvedSolids" type="xs:double" minOccurs="0">
<xs:annotation>
<xs:documentation>Total dissolved solids reported in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="TotalDissolvedSolids_method" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Text description of how the measurement was made - instrumentation, logging rate, correction or extrapolation process, how time since circulation was determined, etc. Data provider should indicate QA/QC performed on the data, including individual or institution, time frame and depth of quality check.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="TotalSuspendedSolids" type="xs:double" minOccurs="0">
<xs:annotation>
<xs:documentation>Total suspended solids reported in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="TotalSuspendedSolids_method" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Text description of how the measurement was made - instrumentation, logging rate, correction or extrapolation process, how time since circulation was determined, etc. Data provider should indicate QA/QC performed on the data, including individual or institution, time frame and depth of quality check.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Turbidity_ntu" type="xs:double" minOccurs="0">
<xs:annotation>
<xs:documentation>Nephelometric (ntu) refers to the way the instrument, a nephelometer, measures how much light is scattered by suspended particles in the water. The greater the scattering, the higher the turbidity. Therefore, low NTU values indicate high water clarity, while high NTU values indicate low water clarity. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Turbidity_method" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Text description of how the measurement was made - instrumentation, logging rate, correction or extrapolation process, how time since circulation was determined, etc. Data provider should indicate QA/QC performed on the data, including individual or institution, time frame and depth of quality check.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Shape" type="gml:PointPropertyType">
<xs:annotation>
<xs:documentation>Added by GIS for WFS service; this element appears in the xml output, but is generated during service deployment from the latitude and longitude, therefore it doesn't appear in the template.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="WaterChemCommonConstituentsType">
<xs:complexContent>
<xs:extension base="aasg:SampleAnalysisCommonType">
<xs:sequence>
<xs:element name="FractionAnalyzed" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Portion of the entire sample tested for this record; select from controlled vocabulary: Total solids, Dissolved solids, Fixed solids, Recoverable solids, Suspended solids, Gas, Liquid.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Br" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Ca" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Cl" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="F" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Fe" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="FeTot" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="K" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Na" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Na_K" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Na plus K as specific analytical value not a summary of Na and K results. Report in the unit indicated in the concentration units column.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="NO3" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="SiO2" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="SO4" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Sr" type="xs:string" minOccurs="0"/>
<xs:element name="Alkalinity" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Quantitative capacity of water to neutralize an acid. Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Alkalinity_method" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Text description of how the measurement was made - instrumentation, logging rate, correction or extrapolation process, how time since circulation was determined, etc. Data provider should indicate QA/QC performed on the data, including individual or institution, time frame and depth of quality check.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Bicarbonate" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Carbonate" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Hardness_CaCO3" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Hardness_method" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Text description of how the measurement was made - instrumentation, logging rate, correction or extrapolation process, how time since circulation was determined, etc. Data provider should indicate QA/QC performed on the data, including individual or institution, time frame and depth of quality check.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="TotalDissolvedSolids" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="TotalDissolvedSolids_method" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Text description of how the measurement was made - instrumentation, logging rate, correction or extrapolation process, how time since circulation was determined, etc. Data provider should indicate QA/QC performed on the data, including individual or institution, time frame and depth of quality check.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Shape" type="gml:PointPropertyType">
<xs:annotation>
<xs:documentation>Added by GIS for WFS service; this element appears in the xml output, but is generated during service deployment from the latitude and longitude, therefore it doesn't appear in the template.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="WaterBaseMetalsType">
<xs:complexContent>
<xs:extension base="aasg:SampleAnalysisCommonType">
<xs:sequence>
<xs:element name="FractionAnalyzed" type="xs:string" minOccurs="0"/>
<xs:element name="Ag" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Al_monomeric" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Al_total" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="As" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Au" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="B" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Ba" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Be" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Bi" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Cd" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Co" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Cr" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Cs" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Cu" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Hg" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Li" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Mn" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Mo" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Ni" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="P" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Pb" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="S" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Sb" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Se" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Si" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Sn" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Ti" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="U" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="V" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="W" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Zn" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Shape" type="gml:PointPropertyType">
<xs:annotation>
<xs:documentation>Added by GIS for WFS service; this element appears in the xml output, but is generated during service deployment from the latitude and longitude, therefore it doesn't appear in the template.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="WaterMajorDissolvedConstituentsType">
<xs:complexContent>
<xs:extension base="aasg:SampleAnalysisCommonType">
<xs:sequence>
<xs:element name="Al" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Ba" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Ca" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Cl" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="F" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="K" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Li" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Mg" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Na" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Na_K" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="SiO2" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="SO4" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="cation_total" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="anion_total" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Alkalinity" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Alkalinity_method" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Text description of how the measurement was made - instrumentation, logging rate, correction or extrapolation process, how time since circulation was determined, etc. Data provider should indicate QA/QC performed on the data, including individual or institution, time frame and depth of quality check.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="chargeBalance_pct" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Ratio of cations to anions as a percent.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Hardness_CaCO2" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Hardness_method" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Text description of how the measurement was made - instrumentation, logging rate, correction or extrapolation process, how time since circulation was determined, etc. Data provider should indicate QA/QC performed on the data, including individual or institution, time frame and depth of quality check.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Shape" type="gml:PointPropertyType">
<xs:annotation>
<xs:documentation>Added by GIS for WFS service; this element appears in the xml output, but is generated during service deployment from the latitude and longitude, therefore it doesn't appear in the template.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="WaterMinorDissolvedConstituentsType">
<xs:complexContent>
<xs:extension base="aasg:SampleAnalysisCommonType">
<xs:sequence>
<xs:element name="As" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="B" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Br" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Cu" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Cs" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Fe" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="H" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="I" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Mn" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="NH4" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Ni" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="NO2_field" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="NO2_lab" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="NO3_field" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="NO3_lab" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="OH" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Pb" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="PO4_as_P" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Rb" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Sr" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Zr" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Shape" type="gml:PointPropertyType">
<xs:annotation>
<xs:documentation>Added by GIS for WFS service; this element appears in the xml output, but is generated during service deployment from the latitude and longitude, therefore it doesn't appear in the template.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="WaterNitrogenObsType">
<xs:complexContent>
<xs:extension base="aasg:SampleAnalysisCommonType">
<xs:sequence>
<xs:element name="N_Kjeldahl" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Total Kjeldahl Nitrogen or TKN is the sum of organic nitrogen, ammonia (NH3), and ammonium (NH4+) in the chemical analysis of soil, water, or wastewater (e.g. sewage treatment plant effluent). To calculate Total Nitrogen (TN), the concentrations of nitrate-N and nitrite-N are determined and added to TKN. TKN is determined in the same manner as organic nitrogen, except that the ammonia is not driven off before the digestion step. Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="NH4_as_N" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="NH4" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Nitrate_field" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Nitrate_lab" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="NitratePlusNitrite" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Nitrate NO3 plus Nitrite NO2 in mg/L. Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Nitrite_field" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Nitrite_lab" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="NO" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="NO2_field" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="NO2_lab" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="NO3_field" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="NO3_lab" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Shape" type="gml:PointPropertyType">
<xs:annotation>
<xs:documentation>Added by GIS for WFS service; this element appears in the xml output, but is generated during service deployment from the latitude and longitude, therefore it doesn't appear in the template.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="WaterDissolvedGasObsType">
<xs:complexContent>
<xs:extension base="aasg:SampleAnalysisCommonType">
<xs:sequence>
<xs:element name="Ar" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="CH4" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="CO2" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="H2" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="H2S_as_N" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="He" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Kr" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="N2" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Ne" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="O2" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Shape" type="gml:PointPropertyType">
<xs:annotation>
<xs:documentation>Added by GIS for WFS service; this element appears in the xml output, but is generated during service deployment from the latitude and longitude, therefore it doesn't appear in the template.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="GasCompositionObsType">
<xs:complexContent>
<xs:extension base="aasg:SampleAnalysisCommonType">
<xs:sequence>
<xs:element name="Ar_volpct" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="C2H6_volpct" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="CH4_volpct" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Report in the unit indicated in the concentration units column.</xs:documentation>
</xs:annotation>
</xs:element>