1
|
<!--
|
2
|
* Ecological Metadata Language (EML) - Supplemental descriptors
|
3
|
*
|
4
|
* Authors: Matt Jones, Zheng Wang, and Noah Goldstein
|
5
|
* Organization: National Center for Ecological Analysis and Synthesis
|
6
|
* For Details: http://www.nceas.ucsb.edu/
|
7
|
* Created: 1997 August 19
|
8
|
* Modified: 1999 June 23
|
9
|
* Version: 1.4
|
10
|
* File Info: '$Id: eml-supplement.dtd 808 2001-07-25 15:57:31Z berkley $'
|
11
|
*
|
12
|
* Ecological Metadata Language is a general purpose metadata content
|
13
|
* specification for documenting ecological data. The specification
|
14
|
* consists of a series of modular document type definitions (DTD) that
|
15
|
* provide metadata content descriptors. It describes the owner and
|
16
|
* contents of the dataset (eml-dataset.dtd), the research context in
|
17
|
* which it was created (eml-context.dtd), the structural
|
18
|
* characteristics of data files (eml-file.dtd), the
|
19
|
* characteristics of variables in a file (eml-variable.dtd), current
|
20
|
* status of data and metadata files (eml-status.dtd), access control
|
21
|
* rules regarding the data and metadata (eml-access.dtd), software
|
22
|
* information (eml-software) and a variety of miscellaneous
|
23
|
* supplemental descriptors (eml-supplement.dtd).
|
24
|
*
|
25
|
* Files generated under the structural constraints of eml are
|
26
|
* plain-text files and therefore are editable in ordinary
|
27
|
* text-processors. However, these DTDs are intended for use within
|
28
|
* general purpose metadata editors, and within a more specific
|
29
|
* metadata editor being developed at NCEAS for the ecological
|
30
|
* community. This metadata editor will provide facilities for
|
31
|
* version control and efficient metadata entry.
|
32
|
* The purpose of this specification was to formalize the
|
33
|
* Michener et al. work in a structured language to examine its
|
34
|
* application to ecological data in a controlled manner.
|
35
|
*
|
36
|
* This specification was based on the work of the Ecological Society
|
37
|
* of America's Committee on the Future of Long Term Data, and more
|
38
|
* specifically on a related paper, Michener et al., 1997. See:
|
39
|
* Michener, William K., et al., 1997. Ecological Appications,
|
40
|
* "Nongeospatial metadata for the ecological sciences"
|
41
|
* Vol 7(1). pp. 330-342.
|
42
|
*
|
43
|
* Where appropriate, we have used elements of the ISO/TC 211 draft
|
44
|
* standard - the ISO Geographic information/Geomatics standard,
|
45
|
* which includes xml code, as well as ISO 8601 schema. Some elements
|
46
|
* in the ISO/TC 211 were expanded to allow for greater
|
47
|
* resolution.
|
48
|
*
|
49
|
* For an explanation of the classes of metadata and elements defined
|
50
|
* below, see Michener et al. 1997. In particular, the numbered comment
|
51
|
* labels found below refer to Table 1 (pp. 336-337) of Michener
|
52
|
* et al. 1997. In addition, each of the principal elements in the
|
53
|
* specification is accompanied by a FIXED attribute called "description"
|
54
|
* that provides a brief description of the content of the element. These
|
55
|
* descriptions are derived from Michener et al. 1997.
|
56
|
*
|
57
|
-->
|
58
|
|
59
|
<!-- * * * *
|
60
|
CLASS V - SUPPLEMENTAL DESCRIPTORS
|
61
|
* * * *
|
62
|
-->
|
63
|
|
64
|
<!-- Class 5 -->
|
65
|
<!ELEMENT eml-supplement (meta_file_id, data_forms*, entry_verification*,
|
66
|
quality_assurance*, related_material*, archival_procedures*,
|
67
|
archival_sites*, publications*, data_request*, review_history*, remarks*)>
|
68
|
<!ATTLIST eml-supplement description CDATA #FIXED "Supplemental descriptors">
|
69
|
<!ELEMENT meta_file_id (#PCDATA)>
|
70
|
<!ATTLIST meta_file_id description CDATA #FIXED "Unique identifier of this metadata record">
|
71
|
|
72
|
|
73
|
<!-- Class 5.A.1 -->
|
74
|
<!ELEMENT data_forms (meta_address?,formdescription?,examples?)+ >
|
75
|
<!ATTLIST data_forms description CDATA #FIXED "Description or examples of data forms, automated data loggers, digitizers, digitizing procedures">
|
76
|
|
77
|
<!ELEMENT meta_address (address*, city?, admin_area*, postal_code?, country, resource_url*, email*, phone*, fax*, tdd_phone*)>
|
78
|
<!ATTLIST meta_address description CDATA #FIXED "Contact information"
|
79
|
meta_address_status (current|notcurrent) #REQUIRED
|
80
|
meta_address_purpose (mail|institution|homeresidence) #REQUIRED>
|
81
|
<!ELEMENT address (#PCDATA)>
|
82
|
<!ATTLIST address description CDATA #FIXED "Street address">
|
83
|
<!ELEMENT city (#PCDATA)>
|
84
|
<!ATTLIST city description CDATA #FIXED "City">
|
85
|
<!ELEMENT admin_area (#PCDATA)>
|
86
|
<!ATTLIST admin_area description CDATA #FIXED "Administrative area (state, province, territory)">
|
87
|
<!ELEMENT postal_code (#PCDATA)>
|
88
|
<!ATTLIST postal_code description CDATA #FIXED "Postal code">
|
89
|
<!ELEMENT country (#PCDATA)>
|
90
|
<!ATTLIST country description CDATA #FIXED "Country">
|
91
|
<!ELEMENT resource_url (#PCDATA)>
|
92
|
<!ATTLIST resource_url description CDATA #FIXED "URL">
|
93
|
<!ELEMENT email (#PCDATA)>
|
94
|
<!ATTLIST email description CDATA #FIXED "Email address">
|
95
|
<!ELEMENT phone (country_code?,area_code?,local_code, extension?)>
|
96
|
<!ATTLIST phone description CDATA #FIXED "Phone number">
|
97
|
<!ELEMENT fax (country_code?,area_code?,local_code)>
|
98
|
<!ATTLIST fax description CDATA #FIXED "Facimilie telephone">
|
99
|
<!ELEMENT tdd_phone (country_code?,area_code?,local_code)>
|
100
|
<!ATTLIST tdd_phone description CDATA #FIXED "TDD/TTY telephone">
|
101
|
<!ELEMENT country_code (#PCDATA)>
|
102
|
<!ATTLIST country_code description CDATA #FIXED "Countrycode">
|
103
|
<!ELEMENT area_code (#PCDATA)>
|
104
|
<!ATTLIST area_code description CDATA #FIXED "Area code">
|
105
|
<!ELEMENT local_code (#PCDATA)>
|
106
|
<!ATTLIST local_code description CDATA #FIXED "Local phone code">
|
107
|
<!ELEMENT extension (#PCDATA)>
|
108
|
<!ATTLIST extension description CDATA #FIXED "Phone extension code">
|
109
|
|
110
|
<!ELEMENT formdescription (paragraph+)>
|
111
|
<!ATTLIST formdescription description CDATA #FIXED "Description of forms">
|
112
|
<!ELEMENT paragraph (#PCDATA)>
|
113
|
<!ATTLIST paragraph description CDATA #FIXED "Paragraph of text">
|
114
|
|
115
|
|
116
|
<!ELEMENT examples (paragraph+)>
|
117
|
<!ATTLIST examples description CDATA #FIXED "Examples">
|
118
|
|
119
|
<!-- for Class 5.A.2 - see 5.A.1 -->
|
120
|
|
121
|
<!-- Class 5.A.3 -->
|
122
|
<!ELEMENT entry_verification (paragraph*|citation*) >
|
123
|
<!ATTLIST entry_verification description CDATA #FIXED "Procedures employed to verify that digital data is error free">
|
124
|
|
125
|
<!-- Class 5.B -->
|
126
|
<!ELEMENT quality_assurance (paragraph*|citation*) >
|
127
|
<!ATTLIST quality_assurance description CDATA #FIXED "Quality assurance / quality control procedures">
|
128
|
|
129
|
<!-- CLass 5.C -->
|
130
|
<!ELEMENT related_material (paragraph*|citation*) >
|
131
|
<!ATTLIST related_material description CDATA #FIXED "References and locations of related materials">
|
132
|
|
133
|
<!-- Class 5.D - see Software module -->
|
134
|
|
135
|
<!-- Class 5.E.1 -->
|
136
|
<!ELEMENT archival_procedures (paragraph*|citation*) >
|
137
|
<!ATTLIST archival_procedures description CDATA #FIXED "Description of how data are archived for long-term storage and access">
|
138
|
|
139
|
<!-- Class 5.E.2 -->
|
140
|
<!ELEMENT archival_sites (meta_address*) >
|
141
|
<!ATTLIST archival_sites description CDATA #FIXED "Locations of redundant archival sites">
|
142
|
|
143
|
<!-- Class 5.F -->
|
144
|
<!ELEMENT publications ((citation, paragraph*)+) >
|
145
|
<!ATTLIST publications description CDATA #FIXED "List of all Publications and results in all media">
|
146
|
<!ELEMENT citation ( (author|editor)*, source_information?)>
|
147
|
<!ATTLIST citation description CDATA #FIXED "Citation">
|
148
|
<!ELEMENT author (party)>
|
149
|
<!ATTLIST author description CDATA #FIXED "Author">
|
150
|
<!ELEMENT party ((party_individual | party_org), meta_address)>
|
151
|
<!ATTLIST party description CDATA #FIXED "Responsible party information">
|
152
|
<!ELEMENT party_individual (salutation*, given_name+, surname, jobtitle*)>
|
153
|
<!ATTLIST party_individual description CDATA #FIXED "Full name of individual">
|
154
|
<!ELEMENT salutation (#PCDATA)>
|
155
|
<!ATTLIST salutation description CDATA #FIXED "Salutation">
|
156
|
<!ELEMENT given_name (#PCDATA)>
|
157
|
<!ATTLIST given_name description CDATA #FIXED "First name">
|
158
|
<!ELEMENT surname (#PCDATA)>
|
159
|
<!ATTLIST surname description CDATA #FIXED "Last Name">
|
160
|
<!ELEMENT jobtitle (#PCDATA)>
|
161
|
<!ATTLIST jobtitle description CDATA #FIXED "Job title">
|
162
|
<!ELEMENT party_org (#PCDATA)>
|
163
|
<!ATTLIST party_org description CDATA #FIXED "Name of organization">
|
164
|
<!ELEMENT editor (party)>
|
165
|
<!ATTLIST editor description CDATA #FIXED "Editor">
|
166
|
<!ELEMENT source_information (title, vol?, issue?, pubdate?,
|
167
|
publisher?, edition?, series?, chapter_title?,
|
168
|
pages?, resource_url*)>
|
169
|
<!ATTLIST source_information description CDATA #FIXED "Source information">
|
170
|
<!ELEMENT title (#PCDATA)>
|
171
|
<!ATTLIST title description CDATA #FIXED "Title or theme of data set">
|
172
|
<!ELEMENT vol (#PCDATA)>
|
173
|
<!ATTLIST vol description CDATA #FIXED "Volume">
|
174
|
<!ELEMENT issue (#PCDATA)>
|
175
|
<!ATTLIST issue description CDATA #FIXED "Issue id">
|
176
|
<!ELEMENT pubdate (datetime)>
|
177
|
<!ATTLIST pubdate description CDATA #FIXED "Date of publication">
|
178
|
<!ELEMENT datetime (year?, month?, day?, hour?, minute?, second?, second_fraction?, time_zone_designator?)>
|
179
|
<!ATTLIST datetime description CDATA #FIXED "Date and time as designated in ISO 8601">
|
180
|
<!ELEMENT year (#PCDATA)>
|
181
|
<!ATTLIST year description CDATA #FIXED "Year in YYYY format">
|
182
|
<!ELEMENT month (#PCDATA)>
|
183
|
<!ATTLIST month description CDATA #FIXED "Month in MM format">
|
184
|
<!ELEMENT day (#PCDATA)>
|
185
|
<!ATTLIST day description CDATA #FIXED "Day of month in DD format">
|
186
|
<!ELEMENT hour (#PCDATA)>
|
187
|
<!ATTLIST hour description CDATA #FIXED "Hour in hh">
|
188
|
<!ELEMENT minute (#PCDATA)>
|
189
|
<!ATTLIST minute description CDATA #FIXED "Minute in mm">
|
190
|
<!ELEMENT second (#PCDATA)>
|
191
|
<!ATTLIST second description CDATA #FIXED "Seconds in ss">
|
192
|
<!ELEMENT second_fraction (#PCDATA)>
|
193
|
<!ATTLIST second_fraction description CDATA #FIXED "One or more digits representing a decimal fraction of a second">
|
194
|
<!ELEMENT time_zone_designator (#PCDATA)>
|
195
|
<!ATTLIST time_zone_designator description CDATA #FIXED "Time zone designator">
|
196
|
|
197
|
<!ELEMENT publisher (party)>
|
198
|
<!ATTLIST publisher description CDATA #FIXED "Publisher">
|
199
|
<!ELEMENT edition (#PCDATA)>
|
200
|
<!ATTLIST edition description CDATA #FIXED "Edition">
|
201
|
<!ELEMENT series (#PCDATA)>
|
202
|
<!ATTLIST series description CDATA #FIXED "Series">
|
203
|
<!ELEMENT chapter_title (title)>
|
204
|
<!ATTLIST chapter_title description CDATA #FIXED "Chapter title">
|
205
|
<!ELEMENT pages (#PCDATA)>
|
206
|
<!ATTLIST pages description CDATA #FIXED "Pages">
|
207
|
|
208
|
<!-- Class 5.G.1 -->
|
209
|
<!ELEMENT data_request (datetime,party,paragraph*) >
|
210
|
<!ATTLIST data_request description CDATA #FIXED "Log of who requested data, for what purpose, and how data set was actually used">
|
211
|
|
212
|
<!-- Class 5.G.2 - see Class 3.A.1 -->
|
213
|
|
214
|
<!-- Class 5.G.3 -->
|
215
|
<!ELEMENT review_history (datetime, party, paragraph*) >
|
216
|
<!ATTLIST review_history description CDATA #FIXED "Review history; Last entry, last researcher review">
|
217
|
|
218
|
<!-- Class 5.G.4 -->
|
219
|
<!ELEMENT remarks (datetime, party, comments)>
|
220
|
<!ATTLIST remarks description CDATA #FIXED "Questions and comments from secondary users, including problems with data">
|
221
|
<!ELEMENT comments (paragraph+)>
|
222
|
<!ATTLIST comments description CDATA #FIXED "Comments of users">
|
223
|
|
224
|
<!-- End of file -->
|