-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheml-literature.xsd
1223 lines (1219 loc) · 55.7 KB
/
eml-literature.xsd
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:doc="eml://ecoinformatics.org/documentation-2.1.1" xmlns:rp="eml://ecoinformatics.org/party-2.1.1" xmlns:cov="eml://ecoinformatics.org/coverage-2.1.1" xmlns:res="eml://ecoinformatics.org/resource-2.1.1" xmlns:acc="eml://ecoinformatics.org/access-2.1.1" xmlns:proj="eml://ecoinformatics.org/project-2.1.1" xmlns="eml://ecoinformatics.org/literature-2.1.1" targetNamespace="eml://ecoinformatics.org/literature-2.1.1">
<xs:import namespace="eml://ecoinformatics.org/documentation-2.1.1" schemaLocation="eml-documentation.xsd"/>
<xs:import namespace="eml://ecoinformatics.org/resource-2.1.1" schemaLocation="eml-resource.xsd"/>
<xs:import namespace="eml://ecoinformatics.org/coverage-2.1.1" schemaLocation="eml-coverage.xsd"/>
<xs:import namespace="eml://ecoinformatics.org/party-2.1.1" schemaLocation="eml-party.xsd"/>
<xs:import namespace="eml://ecoinformatics.org/access-2.1.1" schemaLocation="eml-access.xsd"/>
<xs:import namespace="eml://ecoinformatics.org/project-2.1.1" schemaLocation="eml-project.xsd"/>
<xs:annotation>
<xs:documentation>
'$RCSfile: eml-literature.xsd,v $'
Copyright: 1997-2002 Regents of the University of California,
University of New Mexico, and
Arizona State University
Sponsors: National Center for Ecological Analysis and Synthesis and
Partnership for Interdisciplinary Studies of Coastal Oceans,
University of California Santa Barbara
Long-Term Ecological Research Network Office,
University of New Mexico
Center for Environmental Studies, Arizona State University
Other funding: National Science Foundation (see README for details)
The David and Lucile Packard Foundation
For Details: http://knb.ecoinformatics.org/
'$Author: obrien $'
'$Date: 2009-02-25 23:51:54 $'
'$Revision: 1.61 $'
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
</xs:documentation>
<xs:appinfo>
<doc:moduleDocs>
<doc:moduleName>eml-literature</doc:moduleName>
<doc:moduleDescription>
<section xmlns="">
<title>
The eml-literature module - Citation specific
information
</title>
<para>
The eml-literature module contains information that describes
literature resources. It is intended to provide overview
information about the literature citation, including title,
abstract, keywords, and contacts. Citation types follow the
conventions laid out by
<ulink url="http://www.endnote.com">EndNote</ulink>,
and there is an attempt to
represent a compatible subset of the EndNote citation types.
These citation types include: article, book, chapter, edited
book, manuscript, report, thesis, conference proceedings,
personal communication, map, generic, audio visual, and
presentation. The "generic" citation type would be
used when one of the other types will not work.
</para>
<para>
The eml-literature module, like other modules, may be
"referenced" via the <references> tag. This
allows a citation to be described once, and then used as a
reference in other locations within the EML document via its ID.
</para>
</section>
</doc:moduleDescription>
<doc:recommendedUsage>All datasets with literary
citations</doc:recommendedUsage>
<doc:standAlone>yes</doc:standAlone>
</doc:moduleDocs>
</xs:appinfo>
</xs:annotation>
<xs:element name="citation" type="CitationType">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Literature Citation</doc:tooltip>
<doc:summary>Information describing a literature
resource.</doc:summary>
<doc:description>The citation element contains general information
about a literature resource that is being documented, or a piece of
literature that is being cited in support of a given resource, such as
a dataset. It contains sub-elements that are specific to a literature
resource such as a book, a journal article, a thesis, etc. It extends
the generic resource elements with literature specific
fields.</doc:description>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:complexType name="CitationType">
<xs:choice>
<xs:sequence>
<xs:group ref="res:ResourceGroup"/>
<xs:element name="contact" type="rp:ResponsibleParty" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Contact</doc:tooltip>
<doc:summary>An optional contact individual for this citation</doc:summary>
<doc:description>The contact field contains information about an alternate person to be contacted
about this citation. Usually, the first author serves as the contact for a citation resource, e.g., a reprint request. In some cases, an alternate individual(s) may serve that function, and can be indicated here. Since contact is of the type rp:ResponsibleParty, a reference may be used.</doc:description>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:choice>
<xs:element name="article" type="Article">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>article</doc:tooltip>
<doc:summary>Information for full citation of a journal article
or other periodical article.</doc:summary>
<doc:description>The article field provides sub-fields for a
full citation of an article in a journal or other
periodical.</doc:description>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="book" type="Book">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Book</doc:tooltip>
<doc:summary>Information for full citation of a
book</doc:summary>
<doc:description>The book field provides sub-fields for a full
citation of a book.</doc:description>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="chapter" type="Chapter">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Book Chapter</doc:tooltip>
<doc:summary>Information for citation of a chapter in a
book</doc:summary>
<doc:description>The book chapter allows citation of a single
chapter or section of a book. The "creator" for a book chapter
are the chapter's authors, while the "editor" is the book
editors. Likewise, "title" is the chapter title, while
"bookTitle" is the title of the whole book.</doc:description>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="editedBook" type="Book">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Book</doc:tooltip>
<doc:summary>Information for full citation of an edited
book</doc:summary>
<doc:description>The edited book represents a book which was
edited by one or more editors, but whose chapters were possibly
authored by others. The editors of an edited book should be
listed in the "creator" field.</doc:description>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="manuscript" type="Manuscript">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>unpublished manuscipt</doc:tooltip>
<doc:summary>Information about an unpublished
manuscript</doc:summary>
<doc:description>The manuscript field provides sub-fields for a
full citation of an unpublished manuscript.</doc:description>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="report" type="Report">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Report</doc:tooltip>
<doc:summary>Information about a report published by an
institution.</doc:summary>
<doc:description>The report may be self published by the
institution or through a publisher. They usually are available
by request to the institution or can be purchased from the
publisher.</doc:description>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="thesis" type="Thesis">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Thesis as part of a degree</doc:tooltip>
<doc:summary>Information about a thesis that has been written
as part of a degree requirement and is frequently published in
small numbers by the degree awarding institution.</doc:summary>
<doc:description>Information about a thesis that has been
written as part of a degree requirement and is frequently
published in small numbers by the degree awarding
institution.</doc:description>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="conferenceProceedings" type="ConferenceProceedings">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>conference proceedings</doc:tooltip>
<doc:summary>The published notes, papers, presentations etc...
of a conference.</doc:summary>
<doc:description>The published notes, papers, presentations,
etc..., of a conference.</doc:description>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="personalCommunication" type="PersonalCommunication">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Personal communication</doc:tooltip>
<doc:summary>A personal communication that has been saved
online or as hard-copy.</doc:summary>
<doc:description>This could be a widely distributed memo, an
e-mail, a transcript from a conversation or interview,
etc...</doc:description>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="map" type="Map">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>map</doc:tooltip>
<doc:summary>This element describes the map that is being cited
or cataloged.</doc:summary>
<doc:description>This element describes the map that is being
cited or cataloged, including its geographic coverage and
scale.</doc:description>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="generic" type="Generic">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Generic Citation</doc:tooltip>
<doc:summary>This reference type was created for references
that do not fit in to the other existing reference
types</doc:summary>
<doc:description>This reference type was created for references
that do not fit in to the other existing reference
types.</doc:description>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="audioVisual" type="AudioVisual">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>audio visual</doc:tooltip>
<doc:summary>This reference type is meant to cover all forms of
audio and visual media.</doc:summary>
<doc:description>This reference type is meant to cover all
forms of audio and visual media, including film, video,
broadcast, other electronic media.</doc:description>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="presentation" type="Presentation">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Unpublished Presentation</doc:tooltip>
<doc:summary>An unpublished presentation from a conference,
workshop, workgroup, symposium etc.</doc:summary>
<doc:description>An unpublished presentation from a conference,
workshop, workgroup, symposium, etc. It will be provided upon
request in either in paper and/or electronic form. If the
presentation was actually published in a proceedings, use the
conferenceProceedings type instead.</doc:description>
</xs:appinfo>
</xs:annotation>
</xs:element>
</xs:choice>
</xs:sequence>
<xs:group ref="res:ReferencesGroup"/>
</xs:choice>
<xs:attribute name="id" type="res:IDType" use="optional"/>
<xs:attribute name="system" type="res:SystemType" use="optional"/>
<xs:attribute name="scope" type="res:ScopeType" use="optional" default="document"/>
</xs:complexType>
<xs:complexType name="Article">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>article</doc:tooltip>
<doc:summary>Information for full citation of a journal article or
other periodical article.</doc:summary>
<doc:description>The article field provides sub-fields for a full
citation of an article in a journal or other
periodical.</doc:description>
</xs:appinfo>
</xs:annotation>
<xs:sequence>
<xs:element name="journal" type="res:NonEmptyStringType">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Journal Name</doc:tooltip>
<doc:summary>The name of the journal, magazine, newspaper, zine,
etc... in which the article was published.</doc:summary>
<doc:description>The name of the journal, magazine, newspaper,
zine, etc... in which the article was published.</doc:description>
<doc:example>"Ecology"</doc:example>
<doc:example>"New York Times"</doc:example>
<doc:example>"Harper's"</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="volume" type="res:NonEmptyStringType" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Journal Volume</doc:tooltip>
<doc:summary>The volume of the journal in which the article
appears</doc:summary>
<doc:description>The volume field is used to describe the volume of
the journal in which the article appears.</doc:description>
<doc:example>"Volume I"</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="issue" type="res:NonEmptyStringType" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Journal issue</doc:tooltip>
<doc:summary>The issue of the journal in which the article
appears</doc:summary>
<doc:description>The issue field is used to describe the issue of
the journal in which the article appears.</doc:description>
<doc:example>November 2001</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="pageRange" type="res:NonEmptyStringType" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Journal Pages</doc:tooltip>
<doc:summary>The beginning and end page numbers of the journal
article</doc:summary>
<doc:description>The page range field is used for the beginning and
ending pages of the journal article that is being
documented.</doc:description>
<doc:example>115-122</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="publisher" type="rp:ResponsibleParty" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Publisher</doc:tooltip>
<doc:summary>Organization that actually publishes the
article</doc:summary>
<doc:description>The organization that physically puts together the
article and publishes it.</doc:description>
<doc:example>Harper Collins</doc:example>
<doc:example>University Of California Press</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="publicationPlace" type="res:NonEmptyStringType" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Publication Place</doc:tooltip>
<doc:summary>The location at which the work was
published.</doc:summary>
<doc:description>The location at which the work was published. This
is usually the name of the city in which the publishing house
produced the work.</doc:description>
<doc:example>New York</doc:example>
<doc:example>London</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="ISSN" type="res:NonEmptyStringType" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>International Standard Serial Number</doc:tooltip>
<doc:summary>The unique Internation Standard Serial
Number</doc:summary>
<doc:description>The ISSN, or International Standard Serial Number
that has been assigned to this literature
resource.</doc:description>
<doc:example>ISSN 1234-5679</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="Book">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Book</doc:tooltip>
<doc:summary>Information for full citation of a book</doc:summary>
<doc:description>The book field provides sub-fields for a full citation
of a book.</doc:description>
</xs:appinfo>
</xs:annotation>
<xs:sequence>
<xs:element name="publisher" type="rp:ResponsibleParty">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Publisher</doc:tooltip>
<doc:summary>Organization that actually publishes the
book</doc:summary>
<doc:description>The organization that physically puts together the
book and publishes it.</doc:description>
<doc:example>Harper Collins</doc:example>
<doc:example>University Of California Press</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="publicationPlace" type="res:NonEmptyStringType" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Publication Place</doc:tooltip>
<doc:summary>The location at which the work was
published.</doc:summary>
<doc:description>The location at which the work was published. This
is usually the name of the city in which the publishing house
produced the work.</doc:description>
<doc:example>New York</doc:example>
<doc:example>London</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="edition" type="res:NonEmptyStringType" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Book edition</doc:tooltip>
<doc:summary>The edition of the book being described.</doc:summary>
<doc:description>The edition field is to document the edition of
the book that is being described.</doc:description>
<doc:example>Second Edition</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="volume" type="res:NonEmptyStringType" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Book volume</doc:tooltip>
<doc:summary>The volume of the book that is part of a
series.</doc:summary>
<doc:description>The volume field is used to describe the volume
number of a book that is part of a multi-volume series of
books.</doc:description>
<doc:example>Volume 2</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="numberOfVolumes" type="res:NonEmptyStringType" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Number of Volumes</doc:tooltip>
<doc:summary>Number of volumes in a collection</doc:summary>
<doc:description>Number of volumes in a
collection</doc:description>
<doc:example>12</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="totalPages" type="res:NonEmptyStringType" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Total book pages</doc:tooltip>
<doc:summary>The total number of pages in the book.</doc:summary>
<doc:description>The total pages field is used to describe the
total number of pages in the book that is being
described.</doc:description>
<doc:example>628</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="totalFigures" type="res:NonEmptyStringType" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Number of figures in book</doc:tooltip>
<doc:summary>The total number of figures in the book.</doc:summary>
<doc:description>the total figures field is used to describe the
total number of figures, diagrams, and plates in the book that is
being documented.</doc:description>
<doc:example>45</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="totalTables" type="res:NonEmptyStringType" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Number of tables in book</doc:tooltip>
<doc:summary>The total number of tables in a book.</doc:summary>
<doc:description>The total tables field is used to describe the
total number of tables that are present in the book that is being
documented.</doc:description>
<doc:example>10</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="ISBN" type="res:NonEmptyStringType" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>International Standard Book Number</doc:tooltip>
<doc:summary>The unique Internation Standard Book
Number</doc:summary>
<doc:description>The ISBN, or International Standard Book Number
that has been assigned to this literature
resource.</doc:description>
<doc:example>ISBN 1-861003-11-0</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="Chapter">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Book Chapter</doc:tooltip>
<doc:summary>Information for citation of a chapter in a
book</doc:summary>
<doc:description>The book chapter allows citation of a single chapter
or section of a book. The "creator" for a book chapter are the
chapter's authors, while the "editor" is the book editors. Likewise,
"title" is the chapter title, while "bookTitle" is the title of the
whole book.</doc:description>
</xs:appinfo>
</xs:annotation>
<xs:complexContent>
<xs:extension base="Book">
<xs:sequence>
<xs:element name="chapterNumber" type="res:NonEmptyStringType" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Chapter number</doc:tooltip>
<doc:summary>The chapter number of interest within a
book</doc:summary>
<doc:description>The chapter number of the chapter of a book
that is being described.</doc:description>
<doc:example>7</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="editor" type="rp:ResponsibleParty" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Book editor</doc:tooltip>
<doc:summary>The name of the editor of the book.</doc:summary>
<doc:description>The book editor field is used to document the
name of the editor of the book that is being described. The
editor may be a person, organization, or a role within an
organization.</doc:description>
<doc:example>Tom Christiansen</doc:example>
<doc:example>Institute of Marine Science</doc:example>
<doc:example>Publication Manager</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="bookTitle" type="res:NonEmptyStringType">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Book title</doc:tooltip>
<doc:summary>The title of the book.</doc:summary>
<doc:description>The book title field is used to document the
title of the book that is being described.</doc:description>
<doc:example>War and Peace</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="pageRange" type="res:NonEmptyStringType" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Chapter page range</doc:tooltip>
<doc:summary>The beginning and ending page numbers of a
chapter.</doc:summary>
<doc:description>The page range field is used to document the
beginning and ending pages of a chapter in a
book.</doc:description>
<doc:example>25-122</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="ConferenceProceedings">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>conference proceedings</doc:tooltip>
<doc:summary>The published notes, papers, presentations etc... of a
conference.</doc:summary>
<doc:description>The published notes, papers, presentations, etc..., of
a conference.</doc:description>
</xs:appinfo>
</xs:annotation>
<xs:complexContent>
<xs:extension base="Chapter">
<xs:sequence>
<xs:element name="conferenceName" type="res:NonEmptyStringType" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Conference Name</doc:tooltip>
<doc:summary>The name of the conference whose proceedings have
been published.</doc:summary>
<doc:description>The name of the conference whose proceedings
have been published.</doc:description>
<doc:example>North American Science Symposium</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="conferenceDate" type="res:NonEmptyStringType" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Conference Date</doc:tooltip>
<doc:summary>The date the conference was held.</doc:summary>
<doc:description>The date the conference was
held.</doc:description>
<doc:example>November 1-6, 1998</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="conferenceLocation" type="rp:Address" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Conference Location</doc:tooltip>
<doc:summary>The location where the conference was
held.</doc:summary>
<doc:description>The location where the conference was
held.</doc:description>
</xs:appinfo>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="Manuscript">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>unpublished manuscipt</doc:tooltip>
<doc:summary>Information about an unpublished manuscript</doc:summary>
<doc:description>The manuscript field provides sub-fields for a full
citation of an unpublished manuscript.</doc:description>
</xs:appinfo>
</xs:annotation>
<xs:sequence>
<xs:element name="institution" type="rp:ResponsibleParty" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Manuscript publication information</doc:tooltip>
<doc:summary>The address and contact information needed to request
a manuscript.</doc:summary>
<doc:description>The institution information field is used to
provide contact and address information that would be needed to
request an unpublished manuscript</doc:description>
<doc:example>Please see the individual sub-fields for specific
examples.</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="totalPages" type="res:NonEmptyStringType" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Total manuscript pages</doc:tooltip>
<doc:summary>The total number of pages in the
manuscript.</doc:summary>
<doc:description>The total pages field is used to describe the
total number of pages in the manuscript that is being
described.</doc:description>
<doc:example>628</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="Report">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Report</doc:tooltip>
<doc:summary>Information about a report published by an
institution.</doc:summary>
<doc:description>The report may be self published by the institution or
through a publisher. They usually are available by request to the
institution or can be purchased from the publisher.</doc:description>
</xs:appinfo>
</xs:annotation>
<xs:sequence>
<xs:element name="reportNumber" type="res:NonEmptyStringType" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Report Number</doc:tooltip>
<doc:summary>The unique identification number assigned to the
report.</doc:summary>
<doc:description>The report number field is used to describe the
unique identification number that has been issued by the report
institution for the report being described.</doc:description>
<doc:example>22</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="publisher" type="rp:ResponsibleParty" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Publisher</doc:tooltip>
<doc:summary>Organization that actually publishes the
report</doc:summary>
<doc:description>The organization that physically put together the
report and publishes it.</doc:description>
<doc:example>Harper Collins</doc:example>
<doc:example>University Of California Press</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="publicationPlace" type="res:NonEmptyStringType" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Publication Place</doc:tooltip>
<doc:summary>The location at which the work was
published.</doc:summary>
<doc:description>The location at which the work was published. This
is usually the name of the city in which the publishing house
produced the work.</doc:description>
<doc:example>New York</doc:example>
<doc:example>London</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="totalPages" type="res:NonEmptyStringType" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Total report pages</doc:tooltip>
<doc:summary>The total number of pages in the report.</doc:summary>
<doc:description>The total pages field is used to describe the
total number of pages in the report that is being
described.</doc:description>
<doc:example>628</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="PersonalCommunication">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Personal communication</doc:tooltip>
<doc:summary>A personal communication that has been saved online or as
hard-copy.</doc:summary>
<doc:description>This could be a widely distributed memo, an e-mail, a
transcript from a conversation or interview, etc...</doc:description>
</xs:appinfo>
</xs:annotation>
<xs:sequence>
<xs:element name="publisher" type="rp:ResponsibleParty" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Publisher</doc:tooltip>
<doc:summary>Organization that actually publishes the
communication</doc:summary>
<doc:description>The organization that physically puts together the
communication and publishes it.</doc:description>
<doc:example>Harper Collins</doc:example>
<doc:example>University Of California Press</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="publicationPlace" type="res:NonEmptyStringType" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Publication Place</doc:tooltip>
<doc:summary>The location at which the work was
published.</doc:summary>
<doc:description>The location at which the work was published. This
is usually the name of the city in which the publishing house
produced the work.</doc:description>
<doc:example>New York</doc:example>
<doc:example>London</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="communicationType" type="res:NonEmptyStringType" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Type of communication</doc:tooltip>
<doc:summary>The type of personal communication.</doc:summary>
<doc:description>The type of personal communication. Could be an
email, letter, memo, transcript of conversation either hardcopy or
online.</doc:description>
<doc:example>memo</doc:example>
<doc:example>letter</doc:example>
<doc:example>email</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="recipient" type="rp:ResponsibleParty" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Recipient</doc:tooltip>
<doc:summary>Recipient of the communication</doc:summary>
<doc:description>The person, place or thing the personal
communication was sent to.</doc:description>
<doc:example>Schmedley, Joe</doc:example>
<doc:example>[email protected]</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="Map">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>map</doc:tooltip>
<doc:summary>This element describes the map that is being cited or
cataloged.</doc:summary>
<doc:description>This element describes the map that is being cited or
cataloged, including its geographic coverage and
scale.</doc:description>
</xs:appinfo>
</xs:annotation>
<xs:sequence>
<xs:element name="publisher" type="rp:ResponsibleParty" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Publisher</doc:tooltip>
<doc:summary>Organization that actually publishes the
map</doc:summary>
<doc:description>The organization that physically puts together the
map and publishes it.</doc:description>
<doc:example>Harper Collins</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="edition" type="res:NonEmptyStringType" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Map edition</doc:tooltip>
<doc:summary>The edition of the map being described.</doc:summary>
<doc:description>The edition field is to document the edition of
the map that is being described.</doc:description>
<doc:example>Second Edition</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="geographicCoverage" type="cov:GeographicCoverage" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Geographic coverage</doc:tooltip>
<doc:summary>Description of the geographic area which the map
covers</doc:summary>
<doc:description>This element describes the geographic area which
the map covers. Could be descriptive text or Cartesian coordinates
of the area.</doc:description>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="scale" type="res:NonEmptyStringType" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Scale</doc:tooltip>
<doc:summary>The Map's scale</doc:summary>
<doc:description>The Map's scale</doc:description>
<doc:example>1:25,000</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="AudioVisual">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>audio visual</doc:tooltip>
<doc:summary>This reference type is meant to cover all forms of audio
and visual media.</doc:summary>
<doc:description>This reference type is meant to cover all forms of
audio and visual media, including film, video, broadcast, other
electronic media.</doc:description>
</xs:appinfo>
</xs:annotation>
<xs:sequence>
<xs:element name="publisher" type="rp:ResponsibleParty">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Publisher</doc:tooltip>
<doc:summary>Organization which actually distributes the video,
film, the broadcaster etc...</doc:summary>
<doc:description>Organization which actually distributes the video,
film, the broadcaster etc...</doc:description>
<doc:example>LTER Network Office</doc:example>
<doc:example>Public Broadcasting</doc:example>
<doc:example>Pacifica Radio</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="publicationPlace" type="res:NonEmptyStringType" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Publication Place</doc:tooltip>
<doc:summary>The location at which the work was
published.</doc:summary>
<doc:description>The location at which the work was published. This
is usually the name of the city in which the publishing house
produced the work.</doc:description>
<doc:example>New York</doc:example>
<doc:example>London</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="performer" type="rp:ResponsibleParty" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Performer</doc:tooltip>
<doc:summary>The performers in the audio visual
production</doc:summary>
<doc:description>The performers involved in acting, narrating, or
shown in the audio visual production.</doc:description>
<doc:example>Jim Nabors</doc:example>
<doc:example>Sir Lawrence Olivier</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="ISBN" type="res:NonEmptyStringType" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>International Standard Book Number</doc:tooltip>
<doc:summary>The unique Internation Standard Book
Number</doc:summary>
<doc:description>The ISBN, or International Standard Book Number
that has been assigned to this literature
resource.</doc:description>
<doc:example>ISBN 1-861003-11-0</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="Generic">
<xs:sequence>
<xs:element name="publisher" type="rp:ResponsibleParty">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Publisher</doc:tooltip>
<doc:summary>Organization which actually publishes the
reference</doc:summary>
<doc:description>The organization which physically puts together
the reference and publishes it.</doc:description>
<doc:example>Harper Collins</doc:example>
<doc:example>University Of California Press</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="publicationPlace" type="res:NonEmptyStringType" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Publication Place</doc:tooltip>
<doc:summary>The location at which the work was
published.</doc:summary>
<doc:description>The location at which the work was published. This
is usually the name of the city in which the publishing house
produced the work.</doc:description>
<doc:example>New York</doc:example>
<doc:example>London</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="referenceType" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Reference Type</doc:tooltip>
<doc:summary>The type of reference.</doc:summary>
<doc:description>The reference type describes the type of reference
this generic type is being used to represent.</doc:description>
<doc:example>zine</doc:example>
<doc:example>film</doc:example>
<doc:example>radio program</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="volume" type="res:NonEmptyStringType" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Reference volume</doc:tooltip>
<doc:summary>The volume of the reference that is part of a
series.</doc:summary>
<doc:description>The volume field is used to describe the volume
number of a reference that is part of a multi-volume series of
references.</doc:description>
<doc:example>Volume 2</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="numberOfVolumes" type="res:NonEmptyStringType" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Number of Volumes</doc:tooltip>
<doc:summary>Number of volumes in a collection</doc:summary>
<doc:description>Number of volumes in a
collection</doc:description>
<doc:example>"12"</doc:example>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="totalPages" type="res:NonEmptyStringType" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<doc:tooltip>Total reference pages</doc:tooltip>
<doc:summary>The total number of pages in the