Project

General

Profile

1
<?xml version="1.0" encoding="UTF-8"?>
2
<xs:schema version="2013-10-22" xmlns:xs="http://www.w3.org/2001/XMLSchema"
3
    targetNamespace="http://rs.tdwg.org/dwc/dwctype/"
4
    xmlns:dwctype="http://rs.tdwg.org/dwc/dwctype/">
5
    <xs:annotation>
6
        <xs:documentation xml:lang="en">
7
            The basic Darwin Core type vocabulary schema defining simple types as enumerations for controlled vocabularies.
8
        </xs:documentation>
9
    </xs:annotation>
10

    
11
    <xs:simpleType name="TypeEnum">
12
        <xs:restriction base="xs:NMTOKEN">
13
            <!-- Dublin Core -->
14
            <!-- Darwin Core -->
15
            <xs:enumeration value="Occurrence"/>
16
            <xs:enumeration value="MaterialSample"/>
17
            <xs:enumeration value="Event"/>
18
            <xs:enumeration value="Location"/>
19
            <xs:enumeration value="Taxon"/>
20
            <xs:enumeration value="PreservedSpecimen"/>
21
            <xs:enumeration value="FossilSpecimen"/>
22
            <xs:enumeration value="LivingSpecimen"/>
23
            <xs:enumeration value="HumanObservation"/>
24
            <xs:enumeration value="MachineObservation"/>
25
            <xs:enumeration value="NomenclaturalChecklist"/>
26
        </xs:restriction>
27
    </xs:simpleType>
28

    
29
</xs:schema>
(3-3/3)