1 |
9920
|
tao
|
<?xml version="1.0" encoding="utf-8"?>
|
2 |
|
|
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" blockDefault="#all">
|
3 |
|
|
<xsd:element name="citeinfo" type="citeinfoType"/>
|
4 |
|
|
<xsd:complexType name="citeinfoType">
|
5 |
|
|
<xsd:sequence>
|
6 |
|
|
<xsd:element ref="origin" maxOccurs="unbounded"/>
|
7 |
|
|
<xsd:element ref="pubdate"/>
|
8 |
|
|
<xsd:element ref="pubtime" minOccurs="0"/>
|
9 |
|
|
<xsd:element ref="title"/>
|
10 |
|
|
<xsd:element ref="edition" minOccurs="0"/>
|
11 |
|
|
<xsd:element ref="geoform" minOccurs="0"/>
|
12 |
|
|
<xsd:element ref="serinfo" minOccurs="0"/>
|
13 |
|
|
<xsd:element ref="pubinfo" minOccurs="0"/>
|
14 |
|
|
<xsd:element ref="othercit" minOccurs="0"/>
|
15 |
|
|
<xsd:element ref="onlink" minOccurs="0" maxOccurs="unbounded"/>
|
16 |
|
|
<xsd:element ref="lworkcit" minOccurs="0"/>
|
17 |
|
|
</xsd:sequence>
|
18 |
|
|
</xsd:complexType>
|
19 |
|
|
|
20 |
|
|
<xsd:element name="origin" type="originType"/>
|
21 |
|
|
<xsd:simpleType name="originType">
|
22 |
|
|
<xsd:restriction base="FGDCstring"/>
|
23 |
|
|
</xsd:simpleType>
|
24 |
|
|
|
25 |
|
|
<xsd:element name="pubdate" type="pubdateType"/>
|
26 |
|
|
<xsd:simpleType name="pubdateType">
|
27 |
|
|
<xsd:union memberTypes="FGDCdate">
|
28 |
|
|
<xsd:simpleType>
|
29 |
|
|
<xsd:restriction base="xsd:token">
|
30 |
|
|
<xsd:enumeration value="Unknown"/>
|
31 |
|
|
<xsd:enumeration value="Unpublished material"/>
|
32 |
|
|
</xsd:restriction>
|
33 |
|
|
</xsd:simpleType>
|
34 |
|
|
</xsd:union>
|
35 |
|
|
</xsd:simpleType>
|
36 |
|
|
|
37 |
|
|
<xsd:element name="pubtime" type="pubtimeType"/>
|
38 |
|
|
<xsd:simpleType name="pubtimeType">
|
39 |
|
|
<xsd:union memberTypes="FGDCtime">
|
40 |
|
|
<xsd:simpleType>
|
41 |
|
|
<xsd:restriction base="xsd:token">
|
42 |
|
|
<xsd:enumeration value="Unknown"/>
|
43 |
|
|
</xsd:restriction>
|
44 |
|
|
</xsd:simpleType>
|
45 |
|
|
</xsd:union>
|
46 |
|
|
</xsd:simpleType>
|
47 |
|
|
|
48 |
|
|
<xsd:element name="title" type="titleType"/>
|
49 |
|
|
<xsd:simpleType name="titleType">
|
50 |
|
|
<xsd:restriction base="FGDCstring"/>
|
51 |
|
|
</xsd:simpleType>
|
52 |
|
|
|
53 |
|
|
<xsd:element name="edition" type="editionType"/>
|
54 |
|
|
<xsd:simpleType name="editionType">
|
55 |
|
|
<xsd:restriction base="FGDCstring"/>
|
56 |
|
|
</xsd:simpleType>
|
57 |
|
|
|
58 |
|
|
<xsd:element name="geoform" type="geoformType"/>
|
59 |
|
|
<xsd:simpleType name="geoformType">
|
60 |
|
|
<xsd:restriction base="FGDCstring"/>
|
61 |
|
|
</xsd:simpleType>
|
62 |
|
|
|
63 |
|
|
<xsd:element name="serinfo" type="serinfoType"/>
|
64 |
|
|
<xsd:complexType name="serinfoType">
|
65 |
|
|
<xsd:sequence>
|
66 |
|
|
<xsd:element ref="sername"/>
|
67 |
|
|
<xsd:element ref="issue"/>
|
68 |
|
|
</xsd:sequence>
|
69 |
|
|
</xsd:complexType>
|
70 |
|
|
|
71 |
|
|
<xsd:element name="sername" type="sernameType"/>
|
72 |
|
|
<xsd:simpleType name="sernameType">
|
73 |
|
|
<xsd:restriction base="FGDCstring"/>
|
74 |
|
|
</xsd:simpleType>
|
75 |
|
|
|
76 |
|
|
<xsd:element name="issue" type="issueType"/>
|
77 |
|
|
<xsd:simpleType name="issueType">
|
78 |
|
|
<xsd:restriction base="FGDCstring"/>
|
79 |
|
|
</xsd:simpleType>
|
80 |
|
|
|
81 |
|
|
<xsd:element name="pubinfo" type="pubinfoType"/>
|
82 |
|
|
<xsd:complexType name="pubinfoType">
|
83 |
|
|
<xsd:sequence>
|
84 |
|
|
<xsd:element ref="pubplace"/>
|
85 |
|
|
<xsd:element ref="publish"/>
|
86 |
|
|
</xsd:sequence>
|
87 |
|
|
</xsd:complexType>
|
88 |
|
|
|
89 |
|
|
<xsd:element name="pubplace" type="pubplaceType"/>
|
90 |
|
|
<xsd:simpleType name="pubplaceType">
|
91 |
|
|
<xsd:restriction base="FGDCstring"/>
|
92 |
|
|
</xsd:simpleType>
|
93 |
|
|
|
94 |
|
|
<xsd:element name="publish" type="publishType"/>
|
95 |
|
|
<xsd:simpleType name="publishType">
|
96 |
|
|
<xsd:restriction base="FGDCstring"/>
|
97 |
|
|
</xsd:simpleType>
|
98 |
|
|
|
99 |
|
|
<xsd:element name="othercit" type="othercitType"/>
|
100 |
|
|
<xsd:simpleType name="othercitType">
|
101 |
|
|
<xsd:restriction base="FGDCstring"/>
|
102 |
|
|
</xsd:simpleType>
|
103 |
|
|
|
104 |
|
|
<xsd:element name="onlink" type="onlinkType"/>
|
105 |
|
|
<xsd:simpleType name="onlinkType">
|
106 |
|
|
<xsd:restriction base="FGDCstring"/>
|
107 |
|
|
</xsd:simpleType>
|
108 |
|
|
|
109 |
|
|
<xsd:element name="lworkcit" type="lworkcitType"/>
|
110 |
|
|
<xsd:complexType name="lworkcitType">
|
111 |
|
|
<xsd:sequence>
|
112 |
|
|
<xsd:element ref="citeinfo"/>
|
113 |
|
|
</xsd:sequence>
|
114 |
|
|
</xsd:complexType>
|
115 |
|
|
|
116 |
|
|
</xsd:schema>
|