-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUPbReduxInputXMLSchema.xsd
More file actions
69 lines (60 loc) · 3.55 KB
/
UPbReduxInputXMLSchema.xsd
File metadata and controls
69 lines (60 loc) · 3.55 KB
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
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="https://raw.githubusercontent.com/EARTHTIME/Schema"
xmlns="https://raw.githubusercontent.com/EARTHTIME/Schema"
elementFormDefault="qualified">
<xs:annotation>
<xs:documentation xml:lang="en">
This schema defines the contents of the U-Pb fraction input to
EARTHTIME U-Pb_Redux software.
Copyright 2006-2016 James F. Bowring and EARTHTIME
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Author: James F. Bowring[smtp:bowring@gmail.com]
Created: 1.January.2007
Revised: 1.January.2008
Revised: 8.April.2008
Revised: 5.April.2009
Revised: 27.June.2012
Revised: 23.December.2015
</xs:documentation>
</xs:annotation>
<xs:include schemaLocation="https://raw.githubusercontent.com/EARTHTIME/Schema/master/TracerXMLSchema.xsd"/>
<xs:include schemaLocation="https://raw.githubusercontent.com/EARTHTIME/Schema/master/TracerUPbModelXMLSchema.xsd"/>
<xs:include schemaLocation="https://raw.githubusercontent.com/EARTHTIME/Schema/master/ValueModelXMLSchema.xsd"/>
<xs:element name="UPbReduxFraction" type="UPbReduxFraction" />
<xs:complexType name="UPbReduxFraction">
<xs:sequence maxOccurs="1">
<xs:element name="sampleName" type="xs:string" />
<xs:element name="fractionID" type="xs:string" />
<!-- added April 2010 minOccurs = 0 is for backward compatibility-->
<xs:element name="grainID" type="xs:string" minOccurs="0"/>
<xs:element name="ratioType" type="xs:string" />
<xs:element name="pedigree" type="xs:string" />
<xs:element name="measuredRatios">
<xs:complexType>
<xs:sequence minOccurs="1" maxOccurs="unbounded">
<xs:element name="MeasuredRatioModel" type="MeasuredRatio"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="meanAlphaU" type="xs:decimal" />
<xs:element name="meanAlphaPb" type="xs:decimal" />
<xs:element name="r18O16O" type="xs:decimal" />
<xs:element name="labUBlankMass" type="xs:decimal" />
<xs:element name="r238235b" type="xs:decimal" />
<xs:element name="r238235s" type="xs:decimal" />
<xs:element name="tracerMass" type="xs:decimal" />
<xs:element name="tracer" type="Tracer" minOccurs="0" maxOccurs="1" />
<!-- added June 2012 for new TracerModelType -->
<xs:element name="tracerUPbModel" type="TracerUPbModel" minOccurs="0" maxOccurs="1" />
</xs:sequence>
</xs:complexType>
</xs:schema>