section and subsection added
[jalview.git] / forester / resources / phyloxml_schema / 1.10 / phyloxml.xsd
1 <?xml version="1.0" encoding="UTF-8"?>\r
2 <!--                                                             -->\r
3 <!-- phyloXML                                                    -->\r
4 <!--                                                             -->\r
5 <!-- schema in XMLSchema                                         -->\r
6 <!--                                                             -->\r
7 <!-- License: The phyloXML XML Schema Definition is              -->\r
8 <!--          dual-licensed under the LGPL or Ruby's             -->\r
9 <!--          License.                                           -->\r
10 <!--          You can redistribute and/or modify                 -->\r
11 <!--          it under either the terms of the LGPL,             -->\r
12 <!--          or Ruby's License.                                 -->\r
13 <!--          see: http://www.ruby-lang.org/en/about/license.txt -->\r
14 <!--                                                             -->\r
15 <!-- Copyright (c) 2008-2011 Christian M Zmasek                  -->\r
16 <!--                                                             -->\r
17 <!-- www.phyloxml.org                                            -->\r
18 <!-- Version: 1.13                                               -->\r
19 <!-- Last modified: 2012.02.12 by Christian M Zmasek             -->\r
20 <!--                                                             -->\r
21 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:phy="http://www.phyloxml.org"\r
22    targetNamespace="http://www.phyloxml.org" elementFormDefault="qualified" attributeFormDefault="unqualified">\r
23    <xs:annotation>\r
24       <xs:documentation> phyloXML is an XML language to describe evolutionary trees and associated data. Version: 1.10.\r
25          License: dual-licensed under the LGPL or Ruby's License. Copyright (c) 2008-2011 Christian M Zmasek.</xs:documentation>\r
26    </xs:annotation>\r
27    <!-- phyloxml is the root element:-->\r
28    <xs:element name="phyloxml" type="phy:Phyloxml"/>\r
29    <!-- phyloXML definition:-->\r
30    <xs:complexType name="Phyloxml">\r
31       <xs:annotation>\r
32          <xs:documentation> 'phyloxml' is the name of the root element. Phyloxml contains an arbitrary number of\r
33             'phylogeny' elements (each representing one phylogeny) possibly followed by elements from other namespaces.\r
34          </xs:documentation>\r
35       </xs:annotation>\r
36       <xs:sequence maxOccurs="unbounded">\r
37          <xs:element name="phylogeny" type="phy:Phylogeny" minOccurs="0" maxOccurs="unbounded"/>\r
38          <xs:any minOccurs="0" maxOccurs="unbounded" processContents="lax" namespace="##other"/>\r
39       </xs:sequence>\r
40    </xs:complexType>\r
41    <!-- Phylogeny:-->\r
42    <xs:complexType name="Phylogeny">\r
43       <xs:annotation>\r
44          <xs:documentation> Element Phylogeny is used to represent a phylogeny. The required attribute 'rooted' is used\r
45             to indicate whether the phylogeny is rooted or not. The attribute 'rerootable' can be used to indicate that\r
46             the phylogeny is not allowed to be rooted differently (i.e. because it is associated with root dependent\r
47             data, such as gene duplications). The attribute 'type' can be used to indicate the type of phylogeny (i.e.\r
48             'gene tree'). It is recommended to use the attribute 'branch_length_unit' if the phylogeny has branch\r
49             lengths. Element clade is used in a recursive manner to describe the topology of a phylogenetic\r
50          tree.</xs:documentation>\r
51       </xs:annotation>\r
52       <xs:sequence>\r
53          <xs:element name="name" type="xs:token" minOccurs="0"/>\r
54          <xs:element name="id" type="phy:Id" minOccurs="0"/>\r
55          <xs:element name="description" type="xs:token" minOccurs="0"/>\r
56          <xs:element name="date" type="xs:dateTime" minOccurs="0"/>\r
57          <xs:element name="confidence" type="phy:Confidence" minOccurs="0" maxOccurs="unbounded"/>\r
58          <xs:element name="clade" type="phy:Clade" minOccurs="0"/>\r
59          <xs:element name="clade_relation" type="phy:CladeRelation" minOccurs="0" maxOccurs="unbounded"/>\r
60          <xs:element name="sequence_relation" type="phy:SequenceRelation" minOccurs="0" maxOccurs="unbounded"/>\r
61          <xs:element name="property" type="phy:Property" minOccurs="0" maxOccurs="unbounded"/>\r
62          <xs:any minOccurs="0" maxOccurs="unbounded" processContents="lax" namespace="##other"/>\r
63       </xs:sequence>\r
64       <xs:attribute name="rooted" type="xs:boolean" use="required"/>\r
65       <xs:attribute name="rerootable" type="xs:boolean"/>\r
66       <xs:attribute name="branch_length_unit" type="xs:token"/>\r
67       <xs:attribute name="type" type="xs:token"/>\r
68    </xs:complexType>\r
69    <!-- Clade:-->\r
70    <xs:complexType name="Clade">\r
71       <xs:annotation>\r
72          <xs:documentation> Element Clade is used in a recursive manner to describe the topology of a phylogenetic tree.\r
73             The parent branch length of a clade can be described either with the 'branch_length' element or the\r
74             'branch_length' attribute (it is not recommended to use both at the same time, though). Usage of the\r
75             'branch_length' attribute allows for a less verbose description. Element 'confidence' is used to indicate\r
76             the support for a clade/parent branch. Element 'events' is used to describe such events as gene-duplications\r
77             at the root node/parent branch of a clade. Element 'width' is the branch width for this clade (including\r
78             parent branch). Both 'color' and 'width' elements apply for the whole clade unless overwritten in-sub\r
79             clades. Attribute 'id_source' is used to link other elements to a clade (on the xml-level).\r
80          </xs:documentation>\r
81       </xs:annotation>\r
82       <xs:sequence>\r
83          <xs:element name="name" type="xs:token" minOccurs="0"/>\r
84          <xs:element name="branch_length" type="xs:double" minOccurs="0"/>\r
85          <xs:element name="confidence" type="phy:Confidence" minOccurs="0" maxOccurs="unbounded"/>\r
86          <xs:element name="width" type="xs:double" minOccurs="0"/>\r
87          <xs:element name="color" type="phy:BranchColor" minOccurs="0"/>\r
88          <xs:element name="node_id" type="phy:Id" minOccurs="0"/>\r
89          <xs:element name="taxonomy" type="phy:Taxonomy" minOccurs="0" maxOccurs="unbounded"/>\r
90          <xs:element name="sequence" type="phy:Sequence" minOccurs="0" maxOccurs="unbounded"/>\r
91          <xs:element name="events" type="phy:Events" minOccurs="0"/>\r
92          <xs:element name="binary_characters" type="phy:BinaryCharacters" minOccurs="0"/>\r
93          <xs:element name="distribution" type="phy:Distribution" minOccurs="0" maxOccurs="unbounded"/>\r
94          <xs:element name="date" type="phy:Date" minOccurs="0"/>\r
95          <xs:element name="reference" type="phy:Reference" minOccurs="0" maxOccurs="unbounded"/>\r
96          <xs:element name="property" type="phy:Property" minOccurs="0" maxOccurs="unbounded"/>\r
97          <xs:element name="clade" type="phy:Clade" minOccurs="0" maxOccurs="unbounded"/>\r
98          <xs:any minOccurs="0" maxOccurs="unbounded" processContents="lax" namespace="##other"/>\r
99       </xs:sequence>\r
100       <xs:attribute name="branch_length" type="xs:double"/>\r
101       <xs:attribute name="id_source" type="phy:id_source"/>\r
102    </xs:complexType>\r
103    <!-- Taxonomy:-->\r
104    <xs:complexType name="Taxonomy">\r
105       <xs:annotation>\r
106          <xs:documentation> Element Taxonomy is used to describe taxonomic information for a clade. Element 'code' is\r
107             intended to store UniProt/Swiss-Prot style organism codes (e.g. 'APLCA' for the California sea hare 'Aplysia\r
108             californica') or other styles of mnemonics (e.g. 'Aca'). Element 'authority' is used to keep the authority,\r
109             such as 'J. G. Cooper, 1863', associated with the 'scientific_name'. Element 'id' is used for a unique\r
110             identifier of a taxon (for example '6500' with 'ncbi_taxonomy' as 'provider' for the California sea hare).\r
111             Attribute 'id_source' is used to link other elements to a taxonomy (on the xml-level).</xs:documentation>\r
112       </xs:annotation>\r
113       <xs:sequence>\r
114          <xs:element name="id" type="phy:Id" minOccurs="0"/>\r
115          <xs:element name="code" type="phy:TaxonomyCode" minOccurs="0"/>\r
116          <xs:element name="scientific_name" type="xs:token" minOccurs="0"/>\r
117          <xs:element name="authority" type="xs:token" minOccurs="0"/>\r
118          <xs:element name="common_name" type="xs:token" minOccurs="0" maxOccurs="unbounded"/>\r
119          <xs:element name="synonym" type="xs:token" minOccurs="0" maxOccurs="unbounded"/>\r
120          <xs:element name="rank" type="phy:Rank" minOccurs="0"/>\r
121          <xs:element name="uri" type="phy:Uri" minOccurs="0" maxOccurs="unbounded"/>\r
122          <xs:any minOccurs="0" maxOccurs="unbounded" processContents="lax" namespace="##other"/>\r
123       </xs:sequence>\r
124       <xs:attribute name="id_source" type="phy:id_source"/>\r
125    </xs:complexType>\r
126    <xs:simpleType name="TaxonomyCode">\r
127       <xs:restriction base="xs:token">\r
128          <xs:pattern value="[a-zA-Z0-9_]{2,10}"/>\r
129       </xs:restriction>\r
130    </xs:simpleType>\r
131    <xs:simpleType name="Rank">\r
132       <xs:restriction base="xs:token">\r
133          <xs:enumeration value="domain"/>\r
134          <xs:enumeration value="superkingdom"/>\r
135          <xs:enumeration value="kingdom"/>\r
136          <xs:enumeration value="subkingdom"/>\r
137          <xs:enumeration value="branch"/>\r
138          <xs:enumeration value="infrakingdom"/>\r
139          <xs:enumeration value="superphylum"/>\r
140          <xs:enumeration value="phylum"/>\r
141          <xs:enumeration value="subphylum"/>\r
142          <xs:enumeration value="infraphylum"/>\r
143          <xs:enumeration value="microphylum"/>\r
144          <xs:enumeration value="superdivision"/>\r
145          <xs:enumeration value="division"/>\r
146          <xs:enumeration value="subdivision"/>\r
147          <xs:enumeration value="infradivision"/>\r
148          <xs:enumeration value="superclass"/>\r
149          <xs:enumeration value="class"/>\r
150          <xs:enumeration value="subclass"/>\r
151          <xs:enumeration value="infraclass"/>\r
152          <xs:enumeration value="superlegion"/>\r
153          <xs:enumeration value="legion"/>\r
154          <xs:enumeration value="sublegion"/>\r
155          <xs:enumeration value="infralegion"/>\r
156          <xs:enumeration value="supercohort"/>\r
157          <xs:enumeration value="cohort"/>\r
158          <xs:enumeration value="subcohort"/>\r
159          <xs:enumeration value="infracohort"/>\r
160          <xs:enumeration value="magnorder"/>\r
161          <xs:enumeration value="superorder"/>\r
162          <xs:enumeration value="order"/>\r
163          <xs:enumeration value="suborder"/>\r
164          <xs:enumeration value="infraorder"/>\r
165          <xs:enumeration value="superfamily"/>\r
166          <xs:enumeration value="family"/>\r
167          <xs:enumeration value="subfamily"/>\r
168          <xs:enumeration value="supertribe"/>\r
169          <xs:enumeration value="tribe"/>\r
170          <xs:enumeration value="subtribe"/>\r
171          <xs:enumeration value="infratribe"/>\r
172          <xs:enumeration value="genus"/>\r
173          <xs:enumeration value="subgenus"/>\r
174          <xs:enumeration value="superspecies"/>\r
175          <xs:enumeration value="species"/>\r
176          <xs:enumeration value="subspecies"/>\r
177          <xs:enumeration value="variety"/>\r
178          <xs:enumeration value="subvariety"/>\r
179          <xs:enumeration value="form"/>\r
180          <xs:enumeration value="subform"/>\r
181          <xs:enumeration value="cultivar"/>\r
182          <xs:enumeration value="strain"/>\r
183          <xs:enumeration value="section"/>\r
184          <xs:enumeration value="subsection"/>\r
185          <xs:enumeration value="unknown"/>\r
186          <xs:enumeration value="other"/>\r
187       </xs:restriction>\r
188    </xs:simpleType>\r
189    <!-- Sequence:-->\r
190    <xs:complexType name="Sequence">\r
191       <xs:annotation>\r
192          <xs:documentation> Element Sequence is used to represent a molecular sequence (Protein, DNA, RNA) associated\r
193             with a node. 'symbol' is a short (maximal ten characters) symbol of the sequence (e.g. 'ACTM') whereas\r
194             'name' is used for the full name (e.g. 'muscle Actin'). 'location' is used for the location of a sequence on\r
195             a genome/chromosome. The actual sequence can be stored with the 'mol_seq' element. Attribute 'type' is used\r
196             to indicate the type of sequence ('dna', 'rna', or 'protein'). One intended use for 'id_ref' is to link a\r
197             sequence to a taxonomy (via the taxonomy's 'id_source') in case of multiple sequences and taxonomies per\r
198             node. </xs:documentation>\r
199       </xs:annotation>\r
200       <xs:sequence>\r
201          <xs:element name="symbol" type="phy:SequenceSymbol" minOccurs="0"/>\r
202          <xs:element name="accession" type="phy:Accession" minOccurs="0"/>\r
203          <xs:element name="name" type="xs:token" minOccurs="0"/>\r
204          <xs:element name="location" type="xs:token" minOccurs="0"/>\r
205          <xs:element name="mol_seq" type="phy:MolSeq" minOccurs="0"/>\r
206          <xs:element name="uri" type="phy:Uri" minOccurs="0" maxOccurs="unbounded"/>\r
207          <xs:element name="annotation" type="phy:Annotation" minOccurs="0" maxOccurs="unbounded"/>\r
208          <xs:element name="domain_architecture" type="phy:DomainArchitecture" minOccurs="0"/>\r
209          <xs:any minOccurs="0" maxOccurs="unbounded" processContents="lax" namespace="##other"/>\r
210       </xs:sequence>\r
211       <xs:attribute name="type" type="phy:SequenceType"/>\r
212       <xs:attribute name="id_source" type="phy:id_source"/>\r
213       <xs:attribute name="id_ref" type="phy:id_ref"/>\r
214    </xs:complexType>\r
215    <xs:simpleType name="SequenceSymbol">\r
216       <xs:restriction base="xs:token">\r
217          <xs:pattern value="\S{1,20}"/>\r
218       </xs:restriction>\r
219    </xs:simpleType>\r
220    <xs:complexType name="MolSeq">\r
221       <xs:annotation>\r
222          <xs:documentation> Element 'mol_seq' is used to store molecular sequences. The 'is_aligned' attribute is used\r
223             to indicated that this molecular sequence is aligned with all other sequences in the same phylogeny for\r
224             which 'is aligned' is true as well (which, in most cases, means that gaps were introduced, and that all\r
225             sequences for which 'is aligned' is true must have the same length).</xs:documentation>\r
226       </xs:annotation>\r
227       <xs:simpleContent>\r
228          <xs:extension base="xs:token">\r
229             <xs:attribute name="is_aligned" type="xs:boolean"/>\r
230          </xs:extension>\r
231       </xs:simpleContent>\r
232    </xs:complexType>\r
233    <xs:simpleType name="SequenceType">\r
234       <xs:restriction base="xs:token">\r
235          <xs:enumeration value="rna"/>\r
236          <xs:enumeration value="dna"/>\r
237          <xs:enumeration value="protein"/>\r
238       </xs:restriction>\r
239    </xs:simpleType>\r
240    <!-- Accession:-->\r
241    <xs:complexType name="Accession">\r
242       <xs:annotation>\r
243          <xs:documentation> Element Accession is used to capture the local part in a sequence identifier (e.g. 'P17304'\r
244             in 'UniProtKB:P17304', in which case the 'source' attribute would be 'UniProtKB'). </xs:documentation>\r
245       </xs:annotation>\r
246       <xs:simpleContent>\r
247          <xs:extension base="xs:token">\r
248             <xs:attribute name="source" type="xs:token" use="required"/>\r
249          </xs:extension>\r
250       </xs:simpleContent>\r
251    </xs:complexType>\r
252    <!-- DomainArchitecture: -->\r
253    <xs:complexType name="DomainArchitecture">\r
254       <xs:annotation>\r
255          <xs:documentation> This is used describe the domain architecture of a protein. Attribute 'length' is the total\r
256             length of the protein</xs:documentation>\r
257       </xs:annotation>\r
258       <xs:sequence>\r
259          <xs:element name="domain" type="phy:ProteinDomain" minOccurs="1" maxOccurs="unbounded"/>\r
260       </xs:sequence>\r
261       <xs:attribute name="length" type="xs:nonNegativeInteger"/>\r
262    </xs:complexType>\r
263    <xs:complexType name="ProteinDomain">\r
264       <xs:annotation>\r
265          <xs:documentation> To represent an individual domain in a domain architecture. The name/unique identifier is\r
266             described via the 'id' attribute. 'confidence' can be used to store (i.e.) E-values.</xs:documentation>\r
267       </xs:annotation>\r
268       <xs:simpleContent>\r
269          <xs:extension base="xs:token">\r
270             <xs:attribute name="from" type="xs:nonNegativeInteger" use="required"/>\r
271             <xs:attribute name="to" type="xs:nonNegativeInteger" use="required"/>\r
272             <xs:attribute name="confidence" type="xs:double"/>\r
273             <xs:attribute name="id" type="xs:token"/>\r
274          </xs:extension>\r
275       </xs:simpleContent>\r
276    </xs:complexType>\r
277    <!-- Events:-->\r
278    <xs:complexType name="Events">\r
279       <xs:annotation>\r
280          <xs:documentation> Events at the root node of a clade (e.g. one gene duplication). </xs:documentation>\r
281       </xs:annotation>\r
282       <xs:sequence>\r
283          <xs:element name="type" type="phy:EventType" minOccurs="0"/>\r
284          <xs:element name="duplications" type="xs:nonNegativeInteger" minOccurs="0"/>\r
285          <xs:element name="speciations" type="xs:nonNegativeInteger" minOccurs="0"/>\r
286          <xs:element name="losses" type="xs:nonNegativeInteger" minOccurs="0"/>\r
287          <xs:element name="confidence" type="phy:Confidence" minOccurs="0"/>\r
288       </xs:sequence>\r
289    </xs:complexType>\r
290    <xs:simpleType name="EventType">\r
291       <xs:restriction base="xs:token">\r
292          <xs:enumeration value="transfer"/>\r
293          <xs:enumeration value="fusion"/>\r
294          <xs:enumeration value="speciation_or_duplication"/>\r
295          <xs:enumeration value="other"/>\r
296          <xs:enumeration value="mixed"/>\r
297          <xs:enumeration value="unassigned"/>\r
298       </xs:restriction>\r
299    </xs:simpleType>\r
300    <!--BinaryCharacters:-->\r
301    <xs:complexType name="BinaryCharacters">\r
302       <xs:annotation>\r
303          <xs:documentation> The names and/or counts of binary characters present, gained, and lost at the root of a\r
304             clade. </xs:documentation>\r
305       </xs:annotation>\r
306       <xs:sequence>\r
307          <xs:element name="gained" type="phy:BinaryCharacterList" minOccurs="0"/>\r
308          <xs:element name="lost" type="phy:BinaryCharacterList" minOccurs="0"/>\r
309          <xs:element name="present" type="phy:BinaryCharacterList" minOccurs="0"/>\r
310          <xs:element name="absent" type="phy:BinaryCharacterList" minOccurs="0"/>\r
311       </xs:sequence>\r
312       <xs:attribute name="type" type="xs:token"/>\r
313       <xs:attribute name="gained_count" type="xs:nonNegativeInteger"/>\r
314       <xs:attribute name="lost_count" type="xs:nonNegativeInteger"/>\r
315       <xs:attribute name="present_count" type="xs:nonNegativeInteger"/>\r
316       <xs:attribute name="absent_count" type="xs:nonNegativeInteger"/>\r
317    </xs:complexType>\r
318    <xs:complexType name="BinaryCharacterList">\r
319       <xs:sequence>\r
320          <xs:element name="bc" type="xs:token" maxOccurs="unbounded"/>\r
321       </xs:sequence>\r
322    </xs:complexType>\r
323    <!-- Reference:-->\r
324    <xs:complexType name="Reference">\r
325       <xs:annotation>\r
326          <xs:documentation> A literature reference for a clade. It is recommended to use the 'doi' attribute instead of\r
327             the free text 'desc' element whenever possible. </xs:documentation>\r
328       </xs:annotation>\r
329       <xs:sequence>\r
330          <xs:element name="desc" type="xs:token" minOccurs="0"/>\r
331       </xs:sequence>\r
332       <xs:attribute name="doi" type="xs:token"/>\r
333    </xs:complexType>\r
334    <!-- Annotation:-->\r
335    <xs:complexType name="Annotation">\r
336       <xs:annotation>\r
337          <xs:documentation> The annotation of a molecular sequence. It is recommended to annotate by using the optional\r
338             'ref' attribute (some examples of acceptable values for the ref attribute: 'GO:0008270',\r
339             'KEGG:Tetrachloroethene degradation', 'EC:1.1.1.1'). Optional element 'desc' allows for a free text\r
340             description. Optional element 'confidence' is used to state the type and value of support for a annotation.\r
341             Similarly, optional attribute 'evidence' is used to describe the evidence for a annotation as free text\r
342             (e.g. 'experimental'). Optional element 'property' allows for further, typed and referenced annotations from\r
343             external resources.</xs:documentation>\r
344       </xs:annotation>\r
345       <xs:sequence>\r
346          <xs:element name="desc" type="xs:token" minOccurs="0"/>\r
347          <xs:element name="confidence" type="phy:Confidence" minOccurs="0"/>\r
348          <xs:element name="property" type="phy:Property" minOccurs="0" maxOccurs="unbounded"/>\r
349          <xs:element name="uri" type="phy:Uri" minOccurs="0" maxOccurs="unbounded"/>\r
350       </xs:sequence>\r
351       <xs:attribute name="ref" type="phy:ref"/>\r
352       <xs:attribute name="source" type="xs:token"/>\r
353       <xs:attribute name="evidence" type="xs:token"/>\r
354       <xs:attribute name="type" type="xs:token"/>\r
355    </xs:complexType>\r
356    <!-- Property:-->\r
357    <xs:complexType name="Property" mixed="true">\r
358       <xs:annotation>\r
359          <xs:documentation> Property allows for typed and referenced properties from external resources to be attached\r
360             to 'Phylogeny', 'Clade', and 'Annotation'. The value of a property is its mixed (free text) content.\r
361             Attribute 'datatype' indicates the type of a property and is limited to xsd-datatypes (e.g. 'xsd:string',\r
362             'xsd:boolean', 'xsd:integer', 'xsd:decimal', 'xsd:float', 'xsd:double', 'xsd:date', 'xsd:anyURI'). Attribute\r
363             'applies_to' indicates the item to which a property applies to (e.g. 'node' for the parent node of a clade,\r
364             'parent_branch' for the parent branch of a clade). Attribute 'id_ref' allows to attached a property\r
365             specifically to one element (on the xml-level). Optional attribute 'unit' is used to indicate the unit of\r
366             the property. An example: &lt;property datatype="xsd:integer" ref="NOAA:depth" applies_to="clade"\r
367             unit="METRIC:m"&gt; 200 &lt;/property&gt; </xs:documentation>\r
368       </xs:annotation>\r
369       <xs:attribute name="ref" type="phy:ref" use="required"/>\r
370       <xs:attribute name="unit" type="phy:ref"/>\r
371       <xs:attribute name="datatype" type="phy:PropertyDataType" use="required"/>\r
372       <xs:attribute name="applies_to" type="phy:AppliesTo" use="required"/>\r
373       <xs:attribute name="id_ref" type="phy:id_ref"/>\r
374    </xs:complexType>\r
375    <xs:simpleType name="ref">\r
376       <xs:restriction base="xs:token">\r
377          <xs:pattern value="[a-zA-Z0-9_]+:[a-zA-Z0-9_\.\-\s=]+"/>\r
378       </xs:restriction>\r
379    </xs:simpleType>\r
380    <xs:simpleType name="AppliesTo">\r
381       <xs:restriction base="xs:token">\r
382          <xs:enumeration value="phylogeny"/>\r
383          <xs:enumeration value="clade"/>\r
384          <xs:enumeration value="node"/>\r
385          <xs:enumeration value="annotation"/>\r
386          <xs:enumeration value="parent_branch"/>\r
387          <xs:enumeration value="other"/>\r
388       </xs:restriction>\r
389    </xs:simpleType>\r
390    <xs:simpleType name="PropertyDataType">\r
391       <xs:restriction base="xs:token">\r
392          <xs:enumeration value="xsd:string"/>\r
393          <xs:enumeration value="xsd:boolean"/>\r
394          <xs:enumeration value="xsd:decimal"/>\r
395          <xs:enumeration value="xsd:float"/>\r
396          <xs:enumeration value="xsd:double"/>\r
397          <xs:enumeration value="xsd:duration"/>\r
398          <xs:enumeration value="xsd:dateTime"/>\r
399          <xs:enumeration value="xsd:time"/>\r
400          <xs:enumeration value="xsd:date"/>\r
401          <xs:enumeration value="xsd:gYearMonth"/>\r
402          <xs:enumeration value="xsd:gYear"/>\r
403          <xs:enumeration value="xsd:gMonthDay"/>\r
404          <xs:enumeration value="xsd:gDay"/>\r
405          <xs:enumeration value="xsd:gMonth"/>\r
406          <xs:enumeration value="xsd:hexBinary"/>\r
407          <xs:enumeration value="xsd:base64Binary"/>\r
408          <xs:enumeration value="xsd:anyURI"/>\r
409          <xs:enumeration value="xsd:normalizedString"/>\r
410          <xs:enumeration value="xsd:token"/>\r
411          <xs:enumeration value="xsd:integer"/>\r
412          <xs:enumeration value="xsd:nonPositiveInteger"/>\r
413          <xs:enumeration value="xsd:negativeInteger"/>\r
414          <xs:enumeration value="xsd:long"/>\r
415          <xs:enumeration value="xsd:int"/>\r
416          <xs:enumeration value="xsd:short"/>\r
417          <xs:enumeration value="xsd:byte"/>\r
418          <xs:enumeration value="xsd:nonNegativeInteger"/>\r
419          <xs:enumeration value="xsd:unsignedLong"/>\r
420          <xs:enumeration value="xsd:unsignedInt"/>\r
421          <xs:enumeration value="xsd:unsignedShort"/>\r
422          <xs:enumeration value="xsd:unsignedByte"/>\r
423          <xs:enumeration value="xsd:positiveInteger"/>\r
424       </xs:restriction>\r
425    </xs:simpleType>\r
426    <!--Uri-->\r
427    <xs:complexType name="Uri">\r
428       <xs:annotation>\r
429          <xs:documentation> A uniform resource identifier. In general, this is expected to be an URL (for example, to\r
430             link to an image on a website, in which case the 'type' attribute might be 'image' and 'desc' might be\r
431             'image of a California sea hare'). </xs:documentation>\r
432       </xs:annotation>\r
433       <xs:simpleContent>\r
434          <xs:extension base="xs:anyURI">\r
435             <xs:attribute name="desc" type="xs:token"/>\r
436             <xs:attribute name="type" type="xs:token"/>\r
437          </xs:extension>\r
438       </xs:simpleContent>\r
439    </xs:complexType>\r
440    <!-- Confidence:-->\r
441    <xs:complexType name="Confidence">\r
442       <xs:annotation>\r
443          <xs:documentation> A general purpose confidence element. For example this can be used to express the bootstrap\r
444             support value of a clade (in which case the 'type' attribute is 'bootstrap').</xs:documentation>\r
445       </xs:annotation>\r
446       <xs:simpleContent>\r
447          <xs:extension base="xs:double">\r
448             <xs:attribute name="type" type="xs:token" use="required"/>\r
449             <xs:attribute name="stddev" type="xs:double"/>\r
450          </xs:extension>\r
451       </xs:simpleContent>\r
452    </xs:complexType>\r
453    <!-- Identifier:-->\r
454    <xs:complexType name="Id">\r
455       <xs:annotation>\r
456          <xs:documentation> A general purpose identifier element. Allows to indicate the provider (or authority) of an\r
457             identifier. </xs:documentation>\r
458       </xs:annotation>\r
459       <xs:simpleContent>\r
460          <xs:extension base="xs:token">\r
461             <xs:attribute name="provider" type="xs:token"/>\r
462          </xs:extension>\r
463       </xs:simpleContent>\r
464    </xs:complexType>\r
465    <!-- Distribution:-->\r
466    <xs:complexType name="Distribution">\r
467       <xs:annotation>\r
468          <xs:documentation> The geographic distribution of the items of a clade (species, sequences), intended for\r
469             phylogeographic applications. The location can be described either by free text in the 'desc' element and/or\r
470             by the coordinates of one or more 'Points' (similar to the 'Point' element in Google's KML format) or by\r
471             'Polygons'. </xs:documentation>\r
472       </xs:annotation>\r
473       <xs:sequence>\r
474          <xs:element name="desc" type="xs:token" minOccurs="0"/>\r
475          <xs:element name="point" type="phy:Point" minOccurs="0" maxOccurs="unbounded"/>\r
476          <xs:element name="polygon" type="phy:Polygon" minOccurs="0" maxOccurs="unbounded"/>\r
477       </xs:sequence>\r
478    </xs:complexType>\r
479    <xs:complexType name="Point">\r
480       <xs:annotation>\r
481          <xs:documentation> The coordinates of a point with an optional altitude (used by element 'Distribution').\r
482             Required attributes are the 'geodetic_datum' used to indicate the geodetic datum (also called 'map datum',\r
483             for example Google's KML uses 'WGS84'). Attribute 'alt_unit' is the unit for the altitude (e.g. 'meter').\r
484          </xs:documentation>\r
485       </xs:annotation>\r
486       <xs:sequence>\r
487          <xs:element name="lat" type="xs:decimal"/>\r
488          <xs:element name="long" type="xs:decimal"/>\r
489          <xs:element name="alt" type="xs:decimal" minOccurs="0"/>\r
490       </xs:sequence>\r
491       <xs:attribute name="geodetic_datum" type="xs:token" use="required"/>\r
492       <xs:attribute name="alt_unit" type="xs:token"/>\r
493    </xs:complexType>\r
494    <xs:complexType name="Polygon">\r
495       <xs:annotation>\r
496          <xs:documentation> A polygon defined by a list of 'Points' (used by element 'Distribution').\r
497          </xs:documentation>\r
498       </xs:annotation>\r
499       <xs:sequence>\r
500          <xs:element name="point" type="phy:Point" minOccurs="3" maxOccurs="unbounded"/>\r
501       </xs:sequence>\r
502    </xs:complexType>\r
503    <!-- Date:-->\r
504    <xs:complexType name="Date">\r
505       <xs:annotation>\r
506          <xs:documentation> A date associated with a clade/node. Its value can be numerical by using the 'value' element\r
507             and/or free text with the 'desc' element' (e.g. 'Silurian'). If a numerical value is used, it is recommended\r
508             to employ the 'unit' attribute to indicate the type of the numerical value (e.g. 'mya' for 'million years\r
509             ago'). The elements 'minimum' and 'maximum' are used the indicate a range/confidence\r
510          interval</xs:documentation>\r
511       </xs:annotation>\r
512       <xs:sequence>\r
513          <xs:element name="desc" type="xs:token" minOccurs="0"/>\r
514          <xs:element name="value" type="xs:decimal" minOccurs="0"/>\r
515          <xs:element name="minimum" type="xs:decimal" minOccurs="0"/>\r
516          <xs:element name="maximum" type="xs:decimal" minOccurs="0"/>\r
517       </xs:sequence>\r
518       <xs:attribute name="unit" type="xs:token"/>\r
519    </xs:complexType>\r
520    <!-- BranchColor:-->\r
521    <xs:complexType name="BranchColor">\r
522       <xs:annotation>\r
523          <xs:documentation> This indicates the color of a clade when rendered (the color applies to the whole clade\r
524             unless overwritten by the color(s) of sub clades).</xs:documentation>\r
525       </xs:annotation>\r
526       <xs:sequence>\r
527          <xs:element name="red" type="xs:unsignedByte"/>\r
528          <xs:element name="green" type="xs:unsignedByte"/>\r
529          <xs:element name="blue" type="xs:unsignedByte"/>\r
530       </xs:sequence>\r
531    </xs:complexType>\r
532    <!-- SequenceRelation:-->\r
533    <xs:complexType name="SequenceRelation">\r
534       <xs:annotation>\r
535          <xs:documentation> This is used to express a typed relationship between two sequences. For example it could be\r
536             used to describe an orthology (in which case attribute 'type' is 'orthology'). </xs:documentation>\r
537       </xs:annotation>\r
538       <xs:sequence>\r
539          <xs:element name="confidence" type="phy:Confidence" minOccurs="0"/>\r
540       </xs:sequence>\r
541       <xs:attribute name="id_ref_0" type="phy:id_ref" use="required"/>\r
542       <xs:attribute name="id_ref_1" type="phy:id_ref" use="required"/>\r
543       <xs:attribute name="distance" type="xs:double"/>\r
544       <xs:attribute name="type" type="phy:SequenceRelationType" use="required"/>\r
545    </xs:complexType>\r
546    <xs:simpleType name="SequenceRelationType">\r
547       <xs:restriction base="xs:token">\r
548          <xs:enumeration value="orthology"/>\r
549          <xs:enumeration value="one_to_one_orthology"/>\r
550          <xs:enumeration value="super_orthology"/>\r
551          <xs:enumeration value="paralogy"/>\r
552          <xs:enumeration value="ultra_paralogy"/>\r
553          <xs:enumeration value="xenology"/>\r
554          <xs:enumeration value="unknown"/>\r
555          <xs:enumeration value="other"/>\r
556       </xs:restriction>\r
557    </xs:simpleType>\r
558    <!-- CladeRelation:-->\r
559    <xs:complexType name="CladeRelation">\r
560       <xs:annotation>\r
561          <xs:documentation> This is used to express a typed relationship between two clades. For example it could be\r
562             used to describe multiple parents of a clade.</xs:documentation>\r
563       </xs:annotation>\r
564       <xs:sequence>\r
565          <xs:element name="confidence" type="phy:Confidence" minOccurs="0"/>\r
566       </xs:sequence>\r
567       <xs:attribute name="id_ref_0" type="phy:id_ref" use="required"/>\r
568       <xs:attribute name="id_ref_1" type="phy:id_ref" use="required"/>\r
569       <xs:attribute name="distance" type="xs:double"/>\r
570       <xs:attribute name="type" type="xs:token" use="required"/>\r
571    </xs:complexType>\r
572    <!-- Used to link elements together on the xml level:-->\r
573    <xs:simpleType name="id_source">\r
574       <xs:restriction base="xs:ID"/>\r
575    </xs:simpleType>\r
576    <xs:simpleType name="id_ref">\r
577       <xs:restriction base="xs:IDREF"/>\r
578    </xs:simpleType>\r
579 </xs:schema>\r