relaton-iso 1.19.2 → 2.0.0.pre.alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.rubocop.yml +1 -1
- data/Gemfile +1 -0
- data/README.adoc +134 -131
- data/bin/console +1 -1
- data/grammars/basicdoc.rng +2110 -0
- data/grammars/biblio-standoc.rng +287 -0
- data/grammars/biblio.rng +2097 -0
- data/grammars/relaton-iso-compile.rng +11 -0
- data/grammars/relaton-iso.rng +214 -0
- data/lib/relaton/iso/bibliography.rb +206 -0
- data/lib/relaton/iso/data_fetcher.rb +227 -0
- data/lib/relaton/iso/hash_parser_v1.rb +121 -0
- data/lib/relaton/iso/hit.rb +62 -0
- data/lib/relaton/iso/hit_collection.rb +117 -0
- data/lib/relaton/iso/item_data.rb +49 -0
- data/lib/relaton/iso/model/bibdata.rb +9 -0
- data/lib/relaton/iso/model/bibitem.rb +7 -0
- data/lib/relaton/iso/model/contributor.rb +7 -0
- data/lib/relaton/iso/model/contributor_info.rb +9 -0
- data/lib/relaton/iso/model/docidentifier.rb +128 -0
- data/lib/relaton/iso/model/doctype.rb +13 -0
- data/lib/relaton/iso/model/ext.rb +47 -0
- data/lib/relaton/iso/model/iso_project_group.rb +21 -0
- data/lib/relaton/iso/model/item.rb +17 -0
- data/lib/relaton/iso/model/item_base.rb +19 -0
- data/lib/relaton/iso/model/organization.rb +9 -0
- data/lib/relaton/iso/model/project_number.rb +22 -0
- data/lib/relaton/iso/model/relation.rb +9 -0
- data/lib/relaton/iso/model/stagename.rb +14 -0
- data/lib/relaton/iso/model/structured_identifier.rb +31 -0
- data/lib/relaton/iso/processor.rb +78 -0
- data/lib/relaton/iso/queue.rb +63 -0
- data/lib/relaton/iso/scraper.rb +591 -0
- data/lib/relaton/iso/util.rb +8 -0
- data/lib/relaton/iso/version.rb +7 -0
- data/lib/relaton/iso.rb +17 -0
- data/relaton_iso.gemspec +9 -7
- metadata +79 -49
- data/bin/bundle +0 -109
- data/bin/byebug +0 -27
- data/bin/coderay +0 -27
- data/bin/gdb_wrapper +0 -29
- data/bin/htmldiff +0 -27
- data/bin/httpclient +0 -29
- data/bin/ldiff +0 -27
- data/bin/nokogiri +0 -27
- data/bin/pry +0 -27
- data/bin/pubid-nist +0 -27
- data/bin/racc +0 -27
- data/bin/rackup +0 -29
- data/bin/rake +0 -27
- data/bin/rubocop +0 -27
- data/bin/ruby-parse +0 -27
- data/bin/ruby-rewrite +0 -27
- data/bin/safe_yaml +0 -29
- data/bin/thor +0 -27
- data/lib/relaton_iso/data_fetcher.rb +0 -246
- data/lib/relaton_iso/document_identifier.rb +0 -46
- data/lib/relaton_iso/hash_converter.rb +0 -15
- data/lib/relaton_iso/hit.rb +0 -59
- data/lib/relaton_iso/hit_collection.rb +0 -100
- data/lib/relaton_iso/iso_bibliography.rb +0 -202
- data/lib/relaton_iso/processor.rb +0 -67
- data/lib/relaton_iso/queue.rb +0 -61
- data/lib/relaton_iso/scrapper.rb +0 -553
- data/lib/relaton_iso/util.rb +0 -6
- data/lib/relaton_iso/version.rb +0 -5
- data/lib/relaton_iso.rb +0 -17
data/grammars/biblio.rng
ADDED
@@ -0,0 +1,2097 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!--
|
3
|
+
instantiations of this grammar may replace leaf strings
|
4
|
+
with more elaborated types; e.g. title (text) replaced with
|
5
|
+
title-main, title-intro, title-part; type replaced with
|
6
|
+
enum.
|
7
|
+
|
8
|
+
some renaming at leaf nodes is permissible
|
9
|
+
|
10
|
+
obligations can change both from optional to mandatory,
|
11
|
+
and from mandatory to optional; optional elements may
|
12
|
+
be omitted; freely positioned alternatives may be replaced
|
13
|
+
with strict ordering
|
14
|
+
|
15
|
+
DO NOT introduce a namespace here. We do not want a distinct namespace
|
16
|
+
for these elements, and a distinct namespace for any grammar inheriting
|
17
|
+
these elements; we just want one namespace for any child grammars
|
18
|
+
of this.
|
19
|
+
-->
|
20
|
+
<grammar xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0" xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
|
21
|
+
<!--
|
22
|
+
https://www.myintervals.com/blog/2009/05/20/iso-8601-date-validation-that-doesnt-suck/
|
23
|
+
iso8601date = xsd:string { pattern = "([\+-]?\d{4}(?!\d{2}\b))((-?)((0[1-9]|1[0-2])(\3([12]\d|0[1-9]|3[01]))?|W([0-4]\d|5[0-2])(-?[1-7])?|(00[1-9]|0[1-9]\d|[12]\d{2}|3([0-5]\d|6[1-6])))([T\s]((([01]\d|2[0-3])((:?)[0-5]\d)?|24\:?00)([\.,]\d+(?!:))?)?(\17[0-5]\d([\.,]\d+)?)?([zZ]|([\+-])([01]\d|2[0-3]):?([0-5]\d)?)?)?)?" }
|
24
|
+
Somewhat dumbed down for XSD regex:
|
25
|
+
-->
|
26
|
+
<define name="ISO8601DateTime">
|
27
|
+
<a:documentation>Date/Time conforming with ISO 8601</a:documentation>
|
28
|
+
<data type="string">
|
29
|
+
<param name="pattern">([\+\-]?\d{4})((-?)((0[1-9]|1[0-2])((-?)([12]\d|0[1-9]|3[01]))?|W([0-4]\d|5[0-2])(-?[1-7])?|(00[1-9]|0[1-9]\d|[12]\d{2}|3([0-5]\d|6[1-6])))([T\s]((([01]\d|2[0-3])((:?)[0-5]\d)?|24:?00)([\.,]\d+)?)?((:?)[0-5]\d([.,]\d+)?)?([zZ]|([\+\-])([01]\d|2[0-3]):?([0-5]\d)?)?)?)?</param>
|
30
|
+
</data>
|
31
|
+
</define>
|
32
|
+
<define name="ISO8601Date">
|
33
|
+
<a:documentation>Date conforming with ISO 8601</a:documentation>
|
34
|
+
<data type="string">
|
35
|
+
<param name="pattern">([\+\-]?\d{4})((-?)((0[1-9]|1[0-2])((-?)([12]\d|0[1-9]|3[01]))?|W([0-4]\d|5[0-2])(-?[1-7])?|(00[1-9]|0[1-9]\d|[12]\d{2}|3([0-5]\d|6[1-6]))))?</param>
|
36
|
+
</data>
|
37
|
+
</define>
|
38
|
+
<define name="BibData">
|
39
|
+
<ref name="BibliographicItem"/>
|
40
|
+
</define>
|
41
|
+
<define name="status">
|
42
|
+
<a:documentation>The publication or preparation status of a document</a:documentation>
|
43
|
+
<element name="status">
|
44
|
+
<ref name="stage">
|
45
|
+
<a:documentation>The stage of the document status, e.g. "Published", "Unpublished", "Committee Draft", "Preprint"</a:documentation>
|
46
|
+
</ref>
|
47
|
+
<optional>
|
48
|
+
<ref name="substage">
|
49
|
+
<a:documentation>The substage of the document status. These are used particularly in Standards Defining Organizations</a:documentation>
|
50
|
+
</ref>
|
51
|
+
</optional>
|
52
|
+
<optional>
|
53
|
+
<ref name="iteration">
|
54
|
+
<a:documentation>The iteration of the given status that the document is currently in (e.g. "3" for a third draft)</a:documentation>
|
55
|
+
</ref>
|
56
|
+
</optional>
|
57
|
+
</element>
|
58
|
+
</define>
|
59
|
+
<define name="stage">
|
60
|
+
<a:documentation>The stage of the document status, e.g. "Published", "Unpublished", "Committee Draft", "Preprint"</a:documentation>
|
61
|
+
<element name="stage">
|
62
|
+
<optional>
|
63
|
+
<attribute name="abbreviation">
|
64
|
+
<a:documentation>A canonical abbreviation of the document stage</a:documentation>
|
65
|
+
</attribute>
|
66
|
+
</optional>
|
67
|
+
<text>
|
68
|
+
<a:documentation>The name of the document stage</a:documentation>
|
69
|
+
</text>
|
70
|
+
</element>
|
71
|
+
</define>
|
72
|
+
<define name="substage">
|
73
|
+
<a:documentation>The substage of the document status. These are used particularly in Standards Defining Organizations</a:documentation>
|
74
|
+
<element name="substage">
|
75
|
+
<optional>
|
76
|
+
<attribute name="abbreviation">
|
77
|
+
<a:documentation>A canonical abbreviation of the document substage</a:documentation>
|
78
|
+
</attribute>
|
79
|
+
</optional>
|
80
|
+
<text>
|
81
|
+
<a:documentation>The name of the documen substage</a:documentation>
|
82
|
+
</text>
|
83
|
+
</element>
|
84
|
+
</define>
|
85
|
+
<define name="iteration">
|
86
|
+
<element name="iteration">
|
87
|
+
<text/>
|
88
|
+
</element>
|
89
|
+
</define>
|
90
|
+
<define name="language">
|
91
|
+
<element name="language">
|
92
|
+
<ref name="LanguageType"/>
|
93
|
+
</element>
|
94
|
+
</define>
|
95
|
+
<define name="locale">
|
96
|
+
<element name="locale">
|
97
|
+
<ref name="LocaleType"/>
|
98
|
+
</element>
|
99
|
+
</define>
|
100
|
+
<define name="script">
|
101
|
+
<element name="script">
|
102
|
+
<ref name="ScriptType"/>
|
103
|
+
</element>
|
104
|
+
</define>
|
105
|
+
<define name="edition">
|
106
|
+
<a:documentation>Edition of a bibliographic item</a:documentation>
|
107
|
+
<element name="edition">
|
108
|
+
<optional>
|
109
|
+
<attribute name="number">
|
110
|
+
<a:documentation>Number of edition.
|
111
|
+
NOTE: The number attribute can be used to represent the numeric equivalent of the edition string</a:documentation>
|
112
|
+
</attribute>
|
113
|
+
</optional>
|
114
|
+
<text>
|
115
|
+
<a:documentation>Formatted, human-readable edition string</a:documentation>
|
116
|
+
</text>
|
117
|
+
</element>
|
118
|
+
</define>
|
119
|
+
<define name="LocalizedStringAttributes">
|
120
|
+
<a:documentation>multiple values are comma-delimited</a:documentation>
|
121
|
+
<optional>
|
122
|
+
<attribute name="language">
|
123
|
+
<ref name="LanguageType"/>
|
124
|
+
</attribute>
|
125
|
+
</optional>
|
126
|
+
<optional>
|
127
|
+
<attribute name="locale">
|
128
|
+
<ref name="LocaleType"/>
|
129
|
+
</attribute>
|
130
|
+
</optional>
|
131
|
+
<optional>
|
132
|
+
<attribute name="script">
|
133
|
+
<ref name="ScriptType"/>
|
134
|
+
</attribute>
|
135
|
+
</optional>
|
136
|
+
</define>
|
137
|
+
<define name="LocalizedString">
|
138
|
+
<ref name="LocalizedStringAttributes"/>
|
139
|
+
<text/>
|
140
|
+
</define>
|
141
|
+
<!--
|
142
|
+
LocalizedString =
|
143
|
+
LocalizedStringAttributes,
|
144
|
+
text
|
145
|
+
|
146
|
+
LocalizedString =
|
147
|
+
LocalizedString1 |
|
148
|
+
element variant { LocalizedString1 }+
|
149
|
+
-->
|
150
|
+
<define name="LocalizedMarkedUpString">
|
151
|
+
<ref name="LocalizedStringAttributes"/>
|
152
|
+
<oneOrMore>
|
153
|
+
<ref name="PureTextElement"/>
|
154
|
+
</oneOrMore>
|
155
|
+
</define>
|
156
|
+
<!--
|
157
|
+
LocalizedMarkedUpString =
|
158
|
+
LocalizedMarkedUpString1 |
|
159
|
+
Variants of the string, with the same content, but in different language, script, or format
|
160
|
+
element variant { LocalizedMarkedUpString1 }+
|
161
|
+
-->
|
162
|
+
<!--
|
163
|
+
Unlike UML, change type to format: type is overloaded
|
164
|
+
Would be need if plain were default value and could omit the attribute
|
165
|
+
Added LocalizedStringOrXsAny
|
166
|
+
-->
|
167
|
+
<!-- LocalizedStringOrXsAny1 = -->
|
168
|
+
<define name="LocalizedStringOrXsAny">
|
169
|
+
<ref name="LocalizedStringAttributes"/>
|
170
|
+
<oneOrMore>
|
171
|
+
<choice>
|
172
|
+
<text/>
|
173
|
+
<ref name="AnyElement"/>
|
174
|
+
</choice>
|
175
|
+
</oneOrMore>
|
176
|
+
</define>
|
177
|
+
<!--
|
178
|
+
LocalizedStringOrXsAny =
|
179
|
+
LocalizedStringOrXsAny1 |
|
180
|
+
element variant { LocalizedStringOrXsAny1 }+
|
181
|
+
-->
|
182
|
+
<define name="contributor">
|
183
|
+
<a:documentation>String which is formatted according to conventions specified in a named MIME type </a:documentation>
|
184
|
+
<!-- FormattedString = -->
|
185
|
+
<a:documentation>MIME type for string (defailts to text/plain).
|
186
|
+
NOTE: `docbook`, `AsciiDoc`, `Metanorma` are not registered IANA Media Types</a:documentation>
|
187
|
+
<!--
|
188
|
+
attribute format {
|
189
|
+
"text/plain" | "text/html" | "application/docbook+xml" |
|
190
|
+
"application/tei+xml" | "text/x-asciidoc" | "text/markdown" | "application/x-metanorma+xml" | text
|
191
|
+
}?,
|
192
|
+
-->
|
193
|
+
<a:documentation>String</a:documentation>
|
194
|
+
<!-- LocalizedStringOrXsAny -->
|
195
|
+
<a:documentation>Description of a contributor to the production of the bibliographic item</a:documentation>
|
196
|
+
<element name="contributor">
|
197
|
+
<oneOrMore>
|
198
|
+
<ref name="role">
|
199
|
+
<a:documentation>A description of the role of the contributor in the production of the bibliographic item</a:documentation>
|
200
|
+
</ref>
|
201
|
+
</oneOrMore>
|
202
|
+
<ref name="ContributorInfo">
|
203
|
+
<a:documentation>The contributor involved in the production of the bibliographic item.
|
204
|
+
May be either a person or an organization</a:documentation>
|
205
|
+
</ref>
|
206
|
+
</element>
|
207
|
+
</define>
|
208
|
+
<define name="role">
|
209
|
+
<a:documentation>A description of the role of the contributor in the production of a bibliographic item</a:documentation>
|
210
|
+
<element name="role">
|
211
|
+
<attribute name="type">
|
212
|
+
<a:documentation>The broad class of role of the contributor. Mandatory in order to enforce orderly management of contributors.
|
213
|
+
Detailed in https://www.relaton.org/model/creator/</a:documentation>
|
214
|
+
<choice>
|
215
|
+
<value>author</value>
|
216
|
+
<value>performer</value>
|
217
|
+
<value>publisher</value>
|
218
|
+
<value>editor</value>
|
219
|
+
<value>adapter</value>
|
220
|
+
<value>translator</value>
|
221
|
+
<value>distributor</value>
|
222
|
+
<value>realizer</value>
|
223
|
+
<value>owner</value>
|
224
|
+
<value>authorizer</value>
|
225
|
+
<value>enabler</value>
|
226
|
+
<value>subject</value>
|
227
|
+
</choice>
|
228
|
+
</attribute>
|
229
|
+
<zeroOrMore>
|
230
|
+
<ref name="roledescription">
|
231
|
+
<a:documentation>A more detailed description of the role of the contributor</a:documentation>
|
232
|
+
</ref>
|
233
|
+
</zeroOrMore>
|
234
|
+
</element>
|
235
|
+
</define>
|
236
|
+
<define name="ContributorInfo">
|
237
|
+
<choice>
|
238
|
+
<ref name="person"/>
|
239
|
+
<ref name="organization"/>
|
240
|
+
</choice>
|
241
|
+
</define>
|
242
|
+
<define name="roledescription">
|
243
|
+
<element name="description">
|
244
|
+
<ref name="LocalizedMarkedUpString"/>
|
245
|
+
</element>
|
246
|
+
</define>
|
247
|
+
<define name="person">
|
248
|
+
<a:documentation>Person associated with a bibliographic item</a:documentation>
|
249
|
+
<element name="person">
|
250
|
+
<optional>
|
251
|
+
<ref name="fullname">
|
252
|
+
<a:documentation>The name of the person</a:documentation>
|
253
|
+
</ref>
|
254
|
+
</optional>
|
255
|
+
<zeroOrMore>
|
256
|
+
<ref name="credential">
|
257
|
+
<a:documentation>Credentials given for the person postnominally, e.g. "PhD"</a:documentation>
|
258
|
+
</ref>
|
259
|
+
</zeroOrMore>
|
260
|
+
<zeroOrMore>
|
261
|
+
<ref name="affiliation">
|
262
|
+
<a:documentation>The affiliation of the person within an organization</a:documentation>
|
263
|
+
</ref>
|
264
|
+
</zeroOrMore>
|
265
|
+
<zeroOrMore>
|
266
|
+
<ref name="person-identifier">
|
267
|
+
<a:documentation>An identifier of the person according to an international identifier scheme</a:documentation>
|
268
|
+
</ref>
|
269
|
+
</zeroOrMore>
|
270
|
+
<optional>
|
271
|
+
<ref name="contact">
|
272
|
+
<a:documentation>Contact information for the person, including URI, address, phone number, and email</a:documentation>
|
273
|
+
</ref>
|
274
|
+
</optional>
|
275
|
+
</element>
|
276
|
+
</define>
|
277
|
+
<define name="fullname">
|
278
|
+
<a:documentation>The name of a person</a:documentation>
|
279
|
+
<element name="name">
|
280
|
+
<ref name="FullNameType"/>
|
281
|
+
</element>
|
282
|
+
</define>
|
283
|
+
<define name="credential">
|
284
|
+
<element name="credential">
|
285
|
+
<text/>
|
286
|
+
</element>
|
287
|
+
</define>
|
288
|
+
<define name="FullNameType">
|
289
|
+
<optional>
|
290
|
+
<ref name="name_abbreviation">
|
291
|
+
<a:documentation>The initials of the person, used as an abbreviation for the person, and including the
|
292
|
+
surname. Can be used instead of the complete name. Distinct from formatted-initials,
|
293
|
+
which are the initials only of the forenames of the person</a:documentation>
|
294
|
+
</ref>
|
295
|
+
</optional>
|
296
|
+
<group>
|
297
|
+
<zeroOrMore>
|
298
|
+
<ref name="prefix">
|
299
|
+
<a:documentation>A prefixed addition to the name of the person, such as "Dr"</a:documentation>
|
300
|
+
</ref>
|
301
|
+
</zeroOrMore>
|
302
|
+
<zeroOrMore>
|
303
|
+
<ref name="forename">
|
304
|
+
<a:documentation>A forename or given name of the person. Includes middle names</a:documentation>
|
305
|
+
</ref>
|
306
|
+
</zeroOrMore>
|
307
|
+
<optional>
|
308
|
+
<ref name="formatted-initials">
|
309
|
+
<a:documentation>The initials of the person, as a formatted string, including punctuation, dropping
|
310
|
+
punctuation as desired, and including hyphens where necessary. For example,
|
311
|
+
the initial set for Jean-Paul would be J, P; the formatted initials would be "J.-P."
|
312
|
+
or "J-P.". Can be used instead of forenames</a:documentation>
|
313
|
+
</ref>
|
314
|
+
</optional>
|
315
|
+
<optional>
|
316
|
+
<ref name="surname">
|
317
|
+
<a:documentation>The surname, family name, or equivalent of the person</a:documentation>
|
318
|
+
</ref>
|
319
|
+
</optional>
|
320
|
+
<zeroOrMore>
|
321
|
+
<ref name="addition">
|
322
|
+
<a:documentation>A suffixed addition to the name of the person, such as "Jr"</a:documentation>
|
323
|
+
</ref>
|
324
|
+
</zeroOrMore>
|
325
|
+
<optional>
|
326
|
+
<ref name="completeName">
|
327
|
+
<a:documentation>A preformatted version of the name of the person, not broken down into its component parts</a:documentation>
|
328
|
+
</ref>
|
329
|
+
</optional>
|
330
|
+
</group>
|
331
|
+
<zeroOrMore>
|
332
|
+
<ref name="biblionote">
|
333
|
+
<a:documentation>An additional note about the name of the person</a:documentation>
|
334
|
+
</ref>
|
335
|
+
</zeroOrMore>
|
336
|
+
<zeroOrMore>
|
337
|
+
<ref name="variantname">
|
338
|
+
<a:documentation>A variant name of the person</a:documentation>
|
339
|
+
</ref>
|
340
|
+
</zeroOrMore>
|
341
|
+
</define>
|
342
|
+
<define name="name_abbreviation">
|
343
|
+
<element name="abbreviation">
|
344
|
+
<ref name="LocalizedString"/>
|
345
|
+
</element>
|
346
|
+
</define>
|
347
|
+
<define name="prefix">
|
348
|
+
<element name="prefix">
|
349
|
+
<ref name="LocalizedString"/>
|
350
|
+
</element>
|
351
|
+
</define>
|
352
|
+
<define name="formatted-initials">
|
353
|
+
<element name="formatted-initials">
|
354
|
+
<ref name="LocalizedString"/>
|
355
|
+
</element>
|
356
|
+
</define>
|
357
|
+
<define name="addition">
|
358
|
+
<element name="addition">
|
359
|
+
<ref name="LocalizedString"/>
|
360
|
+
</element>
|
361
|
+
</define>
|
362
|
+
<define name="surname">
|
363
|
+
<element name="surname">
|
364
|
+
<ref name="LocalizedString"/>
|
365
|
+
</element>
|
366
|
+
</define>
|
367
|
+
<define name="forename">
|
368
|
+
<a:documentation>A forename of a person</a:documentation>
|
369
|
+
<element name="forename">
|
370
|
+
<optional>
|
371
|
+
<attribute name="initial">
|
372
|
+
<a:documentation>An individual initial of the person, corresponding to the given forename.
|
373
|
+
Does not include final punctuation, but can include hyphens.
|
374
|
+
Can be used instead of forenames, if formatted-initials are not provided
|
375
|
+
(in which case each initial will be punctuated following local practice).</a:documentation>
|
376
|
+
</attribute>
|
377
|
+
</optional>
|
378
|
+
<ref name="LocalizedString">
|
379
|
+
<a:documentation>A forename or given name of the person. Includes middle names</a:documentation>
|
380
|
+
</ref>
|
381
|
+
</element>
|
382
|
+
</define>
|
383
|
+
<define name="completeName">
|
384
|
+
<element name="completename">
|
385
|
+
<ref name="LocalizedString"/>
|
386
|
+
</element>
|
387
|
+
</define>
|
388
|
+
<define name="variantname">
|
389
|
+
<a:documentation>A variant name of a person</a:documentation>
|
390
|
+
<element name="variant">
|
391
|
+
<attribute name="type">
|
392
|
+
<a:documentation>The type of variant name for the person. Examples include pseudonyms; user names (online);
|
393
|
+
real names (if the person is named with a pseudonym or user name); previous legal names</a:documentation>
|
394
|
+
</attribute>
|
395
|
+
<ref name="FullNameType">
|
396
|
+
<a:documentation>The variant name itself</a:documentation>
|
397
|
+
</ref>
|
398
|
+
</element>
|
399
|
+
</define>
|
400
|
+
<define name="affiliation">
|
401
|
+
<a:documentation>The affiliation of a person with an organization</a:documentation>
|
402
|
+
<element name="affiliation">
|
403
|
+
<optional>
|
404
|
+
<ref name="affiliationname">
|
405
|
+
<a:documentation>The name of the affiliation of the person with the organization; typically a position title</a:documentation>
|
406
|
+
</ref>
|
407
|
+
</optional>
|
408
|
+
<zeroOrMore>
|
409
|
+
<ref name="affiliationdescription">
|
410
|
+
<a:documentation>A more detailed description of the affiliation of the person</a:documentation>
|
411
|
+
</ref>
|
412
|
+
</zeroOrMore>
|
413
|
+
<optional>
|
414
|
+
<ref name="organization">
|
415
|
+
<a:documentation>The organization with which the person is affiliated</a:documentation>
|
416
|
+
</ref>
|
417
|
+
</optional>
|
418
|
+
</element>
|
419
|
+
</define>
|
420
|
+
<define name="affiliationname">
|
421
|
+
<element name="name">
|
422
|
+
<ref name="LocalizedString"/>
|
423
|
+
</element>
|
424
|
+
</define>
|
425
|
+
<define name="affiliationdescription">
|
426
|
+
<element name="description">
|
427
|
+
<ref name="LocalizedMarkedUpString"/>
|
428
|
+
</element>
|
429
|
+
</define>
|
430
|
+
<define name="organization">
|
431
|
+
<a:documentation>Organization associated with a bibliographic item</a:documentation>
|
432
|
+
<element name="organization">
|
433
|
+
<ref name="OrganizationType"/>
|
434
|
+
</element>
|
435
|
+
</define>
|
436
|
+
<define name="OrganizationType">
|
437
|
+
<oneOrMore>
|
438
|
+
<ref name="orgname">
|
439
|
+
<a:documentation>The name of the organization</a:documentation>
|
440
|
+
</ref>
|
441
|
+
</oneOrMore>
|
442
|
+
<zeroOrMore>
|
443
|
+
<ref name="subdivision">
|
444
|
+
<a:documentation>The subdivision of the organization directly involved with the production of the bibliographic item</a:documentation>
|
445
|
+
</ref>
|
446
|
+
</zeroOrMore>
|
447
|
+
<optional>
|
448
|
+
<ref name="abbreviation">
|
449
|
+
<a:documentation>Abbreviation under which the organization is known</a:documentation>
|
450
|
+
</ref>
|
451
|
+
</optional>
|
452
|
+
<zeroOrMore>
|
453
|
+
<ref name="org-identifier">
|
454
|
+
<a:documentation>An identifier of the organization according to an international identifier scheme</a:documentation>
|
455
|
+
</ref>
|
456
|
+
</zeroOrMore>
|
457
|
+
<optional>
|
458
|
+
<ref name="contact">
|
459
|
+
<a:documentation>Contact information for the organization, including address, phone number, and email</a:documentation>
|
460
|
+
</ref>
|
461
|
+
</optional>
|
462
|
+
<optional>
|
463
|
+
<ref name="logo">
|
464
|
+
<a:documentation>A logo for the organization</a:documentation>
|
465
|
+
</ref>
|
466
|
+
</optional>
|
467
|
+
</define>
|
468
|
+
<define name="orgname">
|
469
|
+
<element name="name">
|
470
|
+
<optional>
|
471
|
+
<attribute name="type">
|
472
|
+
<a:documentation>Type of organisation name, to differentiate variant names</a:documentation>
|
473
|
+
</attribute>
|
474
|
+
</optional>
|
475
|
+
<ref name="LocalizedString"/>
|
476
|
+
</element>
|
477
|
+
</define>
|
478
|
+
<define name="subdivision">
|
479
|
+
<a:documentation>Subdivision of organization associated with a bibliographic item</a:documentation>
|
480
|
+
<element name="subdivision">
|
481
|
+
<optional>
|
482
|
+
<attribute name="type">
|
483
|
+
<a:documentation>The type of subdivision</a:documentation>
|
484
|
+
</attribute>
|
485
|
+
</optional>
|
486
|
+
<ref name="OrganizationType">
|
487
|
+
<a:documentation>The subdivision, modelled recursively as an organization</a:documentation>
|
488
|
+
</ref>
|
489
|
+
</element>
|
490
|
+
</define>
|
491
|
+
<define name="logo">
|
492
|
+
<element name="logo">
|
493
|
+
<ref name="image-no-id"/>
|
494
|
+
</element>
|
495
|
+
</define>
|
496
|
+
<define name="depiction">
|
497
|
+
<a:documentation>Depiction of the bibliographic item</a:documentation>
|
498
|
+
<element name="depiction">
|
499
|
+
<optional>
|
500
|
+
<attribute name="scope">
|
501
|
+
<a:documentation>Description of what is being depicted</a:documentation>
|
502
|
+
</attribute>
|
503
|
+
</optional>
|
504
|
+
<zeroOrMore>
|
505
|
+
<ref name="image-no-id">
|
506
|
+
<a:documentation>A visual depiction of the bibliographic item</a:documentation>
|
507
|
+
</ref>
|
508
|
+
</zeroOrMore>
|
509
|
+
</element>
|
510
|
+
</define>
|
511
|
+
<!--
|
512
|
+
NameWithVariants =
|
513
|
+
element primary { LocalizedString },
|
514
|
+
element variant { NameWithVariants1 }*
|
515
|
+
|
516
|
+
NameWithVariants1 =
|
517
|
+
attribute type { text },
|
518
|
+
element primary { LocalizedString },
|
519
|
+
element variant { NameWithVariants1 }*
|
520
|
+
-->
|
521
|
+
<define name="abbreviation">
|
522
|
+
<element name="abbreviation">
|
523
|
+
<ref name="LocalizedString"/>
|
524
|
+
</element>
|
525
|
+
</define>
|
526
|
+
<define name="uri">
|
527
|
+
<a:documentation>URI associated with a type</a:documentation>
|
528
|
+
<element name="uri">
|
529
|
+
<optional>
|
530
|
+
<attribute name="type">
|
531
|
+
<a:documentation>The types of URI are open-ended, but include the IANA link relations specified in RFC 8288</a:documentation>
|
532
|
+
</attribute>
|
533
|
+
</optional>
|
534
|
+
<ref name="LocalizedStringAttributes"/>
|
535
|
+
<data type="anyURI">
|
536
|
+
<a:documentation>URI content</a:documentation>
|
537
|
+
</data>
|
538
|
+
</element>
|
539
|
+
</define>
|
540
|
+
<!-- TODO may change -->
|
541
|
+
<define name="contact">
|
542
|
+
<a:documentation>Contact information for a person or organization</a:documentation>
|
543
|
+
<zeroOrMore>
|
544
|
+
<ref name="address"/>
|
545
|
+
</zeroOrMore>
|
546
|
+
<zeroOrMore>
|
547
|
+
<ref name="phone"/>
|
548
|
+
</zeroOrMore>
|
549
|
+
<zeroOrMore>
|
550
|
+
<ref name="email"/>
|
551
|
+
</zeroOrMore>
|
552
|
+
<zeroOrMore>
|
553
|
+
<ref name="uri"/>
|
554
|
+
</zeroOrMore>
|
555
|
+
</define>
|
556
|
+
<define name="phone">
|
557
|
+
<a:documentation>The phone number associated with a person or organization</a:documentation>
|
558
|
+
<element name="phone">
|
559
|
+
<optional>
|
560
|
+
<attribute name="type">
|
561
|
+
<a:documentation>The type of phone number; can include "Fax" and "Mobile"</a:documentation>
|
562
|
+
</attribute>
|
563
|
+
</optional>
|
564
|
+
<text>
|
565
|
+
<a:documentation>The phone number itself</a:documentation>
|
566
|
+
</text>
|
567
|
+
</element>
|
568
|
+
</define>
|
569
|
+
<define name="email">
|
570
|
+
<a:documentation>Email address</a:documentation>
|
571
|
+
<element name="email">
|
572
|
+
<text/>
|
573
|
+
</element>
|
574
|
+
</define>
|
575
|
+
<define name="address">
|
576
|
+
<a:documentation>An address for a person or organization</a:documentation>
|
577
|
+
<element name="address">
|
578
|
+
<zeroOrMore>
|
579
|
+
<!-- iso191606 TODO -->
|
580
|
+
<ref name="street">
|
581
|
+
<a:documentation>The street and street number or equivalent in the address, as one or more lines of text</a:documentation>
|
582
|
+
</ref>
|
583
|
+
</zeroOrMore>
|
584
|
+
<optional>
|
585
|
+
<ref name="city">
|
586
|
+
<a:documentation>The settlement or municipality in the address</a:documentation>
|
587
|
+
</ref>
|
588
|
+
</optional>
|
589
|
+
<optional>
|
590
|
+
<ref name="state">
|
591
|
+
<a:documentation>The region of the country in the address</a:documentation>
|
592
|
+
</ref>
|
593
|
+
</optional>
|
594
|
+
<optional>
|
595
|
+
<ref name="country">
|
596
|
+
<a:documentation>The country in the address</a:documentation>
|
597
|
+
</ref>
|
598
|
+
</optional>
|
599
|
+
<optional>
|
600
|
+
<ref name="postcode">
|
601
|
+
<a:documentation>The postal code or equivalent in the address</a:documentation>
|
602
|
+
</ref>
|
603
|
+
</optional>
|
604
|
+
<optional>
|
605
|
+
<ref name="formattedAddress">
|
606
|
+
<a:documentation>Preformatted version of the address, not decomposed into its component parts</a:documentation>
|
607
|
+
</ref>
|
608
|
+
</optional>
|
609
|
+
</element>
|
610
|
+
</define>
|
611
|
+
<define name="street">
|
612
|
+
<element name="street">
|
613
|
+
<text/>
|
614
|
+
</element>
|
615
|
+
</define>
|
616
|
+
<define name="city">
|
617
|
+
<element name="city">
|
618
|
+
<text/>
|
619
|
+
</element>
|
620
|
+
</define>
|
621
|
+
<define name="state">
|
622
|
+
<element name="state">
|
623
|
+
<text/>
|
624
|
+
</element>
|
625
|
+
</define>
|
626
|
+
<define name="country">
|
627
|
+
<element name="country">
|
628
|
+
<text/>
|
629
|
+
</element>
|
630
|
+
</define>
|
631
|
+
<define name="postcode">
|
632
|
+
<element name="postcode">
|
633
|
+
<text/>
|
634
|
+
</element>
|
635
|
+
</define>
|
636
|
+
<define name="formattedAddress">
|
637
|
+
<element name="formattedAddress">
|
638
|
+
<oneOrMore>
|
639
|
+
<choice>
|
640
|
+
<text/>
|
641
|
+
<ref name="br"/>
|
642
|
+
</choice>
|
643
|
+
</oneOrMore>
|
644
|
+
</element>
|
645
|
+
</define>
|
646
|
+
<define name="person-identifier">
|
647
|
+
<a:documentation>An identifier of a person according to an international identifier scheme</a:documentation>
|
648
|
+
<element name="identifier">
|
649
|
+
<attribute name="type">
|
650
|
+
<a:documentation>The international identifier scheme for the identifier of the person.
|
651
|
+
Examples include "isni", "orcid", "uri"</a:documentation>
|
652
|
+
</attribute>
|
653
|
+
<text>
|
654
|
+
<a:documentation>The identifier value</a:documentation>
|
655
|
+
</text>
|
656
|
+
</element>
|
657
|
+
</define>
|
658
|
+
<define name="org-identifier">
|
659
|
+
<a:documentation>An identifier of an organization according to an international identifier scheme</a:documentation>
|
660
|
+
<element name="identifier">
|
661
|
+
<optional>
|
662
|
+
<attribute name="type">
|
663
|
+
<a:documentation>The international identifier scheme for the identifier of the organization.
|
664
|
+
Examples include GRID, LEI, CrossRef, and Ringgold</a:documentation>
|
665
|
+
</attribute>
|
666
|
+
</optional>
|
667
|
+
<text>
|
668
|
+
<a:documentation>The identifier value</a:documentation>
|
669
|
+
</text>
|
670
|
+
</element>
|
671
|
+
</define>
|
672
|
+
<define name="citation">
|
673
|
+
<a:documentation>Representation of a citation of a bibliographic item, typically within a document</a:documentation>
|
674
|
+
<element name="citation">
|
675
|
+
<ref name="CitationType"/>
|
676
|
+
</element>
|
677
|
+
</define>
|
678
|
+
<define name="CitationType">
|
679
|
+
<attribute name="bibitemid">
|
680
|
+
<a:documentation>Bibliographic item that the citation applies to, referenced as the anchor of a bibliographic description</a:documentation>
|
681
|
+
<data type="IDREF"/>
|
682
|
+
</attribute>
|
683
|
+
<choice>
|
684
|
+
<zeroOrMore>
|
685
|
+
<ref name="locality">
|
686
|
+
<a:documentation>Describes the location of the cited information resource within the subject of the bibliographic item.
|
687
|
+
Multiple ``bibLocality``s are interpreted as discontinuous references.</a:documentation>
|
688
|
+
</ref>
|
689
|
+
</zeroOrMore>
|
690
|
+
<zeroOrMore>
|
691
|
+
<ref name="localityStack">
|
692
|
+
<a:documentation>Describes the location of the cited information resource within the subject of the bibliographic item in a multi-level manner.
|
693
|
+
For example, the hierarchical specification "Part IV, Chapter 3, Paragraphs 22-24"
|
694
|
+
is represented as a single `bibLocalityStack`, composed of those three localities
|
695
|
+
(as opposed to three `bibLocality` references, which would be treated as three discontinuous references).
|
696
|
+
Multiple ``bibLocalityStack``s are themselves interpreted as discontinuous references</a:documentation>
|
697
|
+
</ref>
|
698
|
+
</zeroOrMore>
|
699
|
+
</choice>
|
700
|
+
<optional>
|
701
|
+
<ref name="date">
|
702
|
+
<a:documentation>Date of the citation, typically date of publication.
|
703
|
+
A combination of the date time elements year, month and day should be specified.
|
704
|
+
Specification of month and day are optional.
|
705
|
+
This date is not intended for disambiguation, since `bibitemid`
|
706
|
+
already identifies the source unambiguously; it is added for ease of processing, in case author-date
|
707
|
+
citations cannot straightforwardly extract the date from the bibliographic source</a:documentation>
|
708
|
+
</ref>
|
709
|
+
</optional>
|
710
|
+
</define>
|
711
|
+
<define name="date">
|
712
|
+
<element name="date">
|
713
|
+
<ref name="ISO8601Date"/>
|
714
|
+
</element>
|
715
|
+
</define>
|
716
|
+
<define name="locality">
|
717
|
+
<a:documentation>The extent or location of a bibliographic item being referred to.
|
718
|
+
A sequence of locality elements is meant to indicate hierarchical ordering, from greater to smaller.
|
719
|
+
e.g. Chapter, then page, then paragraph.
|
720
|
+
A discontinuous range can be represented by using two adjacent localities with the same type</a:documentation>
|
721
|
+
<element name="locality">
|
722
|
+
<ref name="BibItemLocality"/>
|
723
|
+
</element>
|
724
|
+
</define>
|
725
|
+
<define name="localityStack">
|
726
|
+
<a:documentation>Hierarchical arrangement of bibliographic localities, to refer to a single span of text in a bibliographic item</a:documentation>
|
727
|
+
<element name="localityStack">
|
728
|
+
<optional>
|
729
|
+
<attribute name="connective">
|
730
|
+
<a:documentation>Logical connective linking localities. If not supplied, "and" is understood</a:documentation>
|
731
|
+
<choice>
|
732
|
+
<value>and</value>
|
733
|
+
<value>or</value>
|
734
|
+
<value>from</value>
|
735
|
+
<value>to</value>
|
736
|
+
<value/>
|
737
|
+
</choice>
|
738
|
+
</attribute>
|
739
|
+
</optional>
|
740
|
+
<zeroOrMore>
|
741
|
+
<ref name="locality">
|
742
|
+
<a:documentation>Component bibliographic localities which group together to designate a single span of text.
|
743
|
+
Earlier localities are assumed to include later localities, and be of different types;
|
744
|
+
e.g. "Chapter 7, paragraph 9–11"</a:documentation>
|
745
|
+
</ref>
|
746
|
+
</zeroOrMore>
|
747
|
+
</element>
|
748
|
+
</define>
|
749
|
+
<define name="sourceLocality">
|
750
|
+
<a:documentation>The extent or location of a source bibliographic item being related to a target bibliographic item</a:documentation>
|
751
|
+
<element name="sourceLocality">
|
752
|
+
<ref name="BibItemLocality"/>
|
753
|
+
</element>
|
754
|
+
</define>
|
755
|
+
<define name="sourceLocalityStack">
|
756
|
+
<a:documentation>Hierarchical arrangement of bibliographic localities, to refer to a single span of text in a source bibliographic item,
|
757
|
+
being related to a target bibliographic item</a:documentation>
|
758
|
+
<element name="sourceLocalityStack">
|
759
|
+
<optional>
|
760
|
+
<attribute name="connective">
|
761
|
+
<choice>
|
762
|
+
<value>and</value>
|
763
|
+
<value>or</value>
|
764
|
+
<value>from</value>
|
765
|
+
<value>to</value>
|
766
|
+
<value/>
|
767
|
+
</choice>
|
768
|
+
</attribute>
|
769
|
+
</optional>
|
770
|
+
<zeroOrMore>
|
771
|
+
<ref name="sourceLocality"/>
|
772
|
+
</zeroOrMore>
|
773
|
+
</element>
|
774
|
+
</define>
|
775
|
+
<define name="BibItemLocality">
|
776
|
+
<attribute name="type">
|
777
|
+
<a:documentation>The type of extent of a locality (e.g. section, clause, page)</a:documentation>
|
778
|
+
<ref name="LocalityType"/>
|
779
|
+
</attribute>
|
780
|
+
<optional>
|
781
|
+
<ref name="referenceFrom">
|
782
|
+
<a:documentation>The starting value of the extent, or point location</a:documentation>
|
783
|
+
</ref>
|
784
|
+
</optional>
|
785
|
+
<optional>
|
786
|
+
<ref name="referenceTo">
|
787
|
+
<a:documentation>The end value of the extent as a range, if applicable</a:documentation>
|
788
|
+
</ref>
|
789
|
+
</optional>
|
790
|
+
</define>
|
791
|
+
<define name="LocalityType">
|
792
|
+
<a:documentation>Type of indicator of a location or extent within a bibliographic item.
|
793
|
+
When the value `whole` or `title` is used, the corresponding `BibItemLocality`
|
794
|
+
attribute `identifier` should be empty
|
795
|
+
`whole` refers to the entire document.
|
796
|
+
`list` is used for ordered lists in standards documents
|
797
|
+
`time` is used for timestamps in audio and visual media
|
798
|
+
`anchor` is used for locations within web pages
|
799
|
+
`line` is a line number, dependent on printed form of document
|
800
|
+
`locality:...` is an extension point: it allows a free-form text string that is human-readable</a:documentation>
|
801
|
+
<data type="string">
|
802
|
+
<param name="pattern">section|clause|part|paragraph|chapter|page|title|line|whole|table|annex|figure|note|list|example|volume|issue|time|anchor|locality:[a-zA-Z0-9_]+</param>
|
803
|
+
</data>
|
804
|
+
</define>
|
805
|
+
<define name="referenceFrom">
|
806
|
+
<element name="referenceFrom">
|
807
|
+
<text/>
|
808
|
+
</element>
|
809
|
+
</define>
|
810
|
+
<define name="referenceTo">
|
811
|
+
<element name="referenceTo">
|
812
|
+
<text/>
|
813
|
+
</element>
|
814
|
+
</define>
|
815
|
+
<!-- unlike UML, has id attribute; that results from including bibitem in a docmodel -->
|
816
|
+
<define name="bibitem">
|
817
|
+
<a:documentation>Description of a bibliographic item</a:documentation>
|
818
|
+
<element name="bibitem">
|
819
|
+
<attribute name="id">
|
820
|
+
<data type="ID"/>
|
821
|
+
</attribute>
|
822
|
+
<ref name="BibliographicItem"/>
|
823
|
+
</element>
|
824
|
+
</define>
|
825
|
+
<define name="bibitem_no_id">
|
826
|
+
<a:documentation>Description of a bibliographic item: no ID attribute (for use in Relaton, metadata)</a:documentation>
|
827
|
+
<element name="bibitem">
|
828
|
+
<ref name="BibliographicItem"/>
|
829
|
+
</element>
|
830
|
+
</define>
|
831
|
+
<define name="relaton_collection">
|
832
|
+
<a:documentation>Used to present a group of bibliographic items as a single group;
|
833
|
+
e.g. when summarising the collection of standards created by a standards body.
|
834
|
+
A collection may be used for bibliographic exchange but is typically not necesary for citation purposes</a:documentation>
|
835
|
+
<element name="relaton-collection">
|
836
|
+
<optional>
|
837
|
+
<attribute name="type">
|
838
|
+
<a:documentation>The type of grouping of bibliographic items</a:documentation>
|
839
|
+
</attribute>
|
840
|
+
</optional>
|
841
|
+
<ref name="btitle">
|
842
|
+
<a:documentation>The title given to the grouping of bibliographic items</a:documentation>
|
843
|
+
</ref>
|
844
|
+
<zeroOrMore>
|
845
|
+
<ref name="contributor">
|
846
|
+
<a:documentation>Contributors to the production of the bibliographic items as a grouping,
|
847
|
+
with corporate responsibility for all the items in the group
|
848
|
+
(e.g. as compilers of a collection or corporate authors)</a:documentation>
|
849
|
+
</ref>
|
850
|
+
</zeroOrMore>
|
851
|
+
<zeroOrMore>
|
852
|
+
<ref name="docrelation">
|
853
|
+
<a:documentation>The individual items which constitute the group, expressed as relations to the
|
854
|
+
document group. The `type` attribute of each relation is expected to be either `includes` or `hasPart`,
|
855
|
+
depending on whether the items exist as independent documents, or are parts of a multi-part document</a:documentation>
|
856
|
+
</ref>
|
857
|
+
</zeroOrMore>
|
858
|
+
</element>
|
859
|
+
</define>
|
860
|
+
<define name="BibItemType" combine="choice">
|
861
|
+
<a:documentation>Type of bibliographic item.
|
862
|
+
The value list complies with the types provided in ISO 690:2021.
|
863
|
+
NOTE: These values represent a strict superset to BibTeX
|
864
|
+
publication types, and therefore any BibTeX type value can be
|
865
|
+
mapped to these values. Some values here do not have a corresponding
|
866
|
+
entry in BibTeX, for instance, "standard" and "website".</a:documentation>
|
867
|
+
<choice>
|
868
|
+
<value>article</value>
|
869
|
+
<a:documentation>An article from a journal or magazine</a:documentation>
|
870
|
+
<value>book</value>
|
871
|
+
<a:documentation>A monograph</a:documentation>
|
872
|
+
<value>booklet</value>
|
873
|
+
<a:documentation>A booklet or pamphlet. The distinction between book and booklet is not made frequently</a:documentation>
|
874
|
+
<value>manual</value>
|
875
|
+
<a:documentation>A manual</a:documentation>
|
876
|
+
<value>proceedings</value>
|
877
|
+
<a:documentation>A conference proceedings</a:documentation>
|
878
|
+
<value>presentation</value>
|
879
|
+
<a:documentation>A presentation given in a formal meeting</a:documentation>
|
880
|
+
<value>thesis</value>
|
881
|
+
<a:documentation>A dissertation given in an academic institution, as a summation of research</a:documentation>
|
882
|
+
<value>techreport</value>
|
883
|
+
<a:documentation>A technical report</a:documentation>
|
884
|
+
<value>standard</value>
|
885
|
+
<a:documentation>A standard, a document issued by a Standards Defining Organization</a:documentation>
|
886
|
+
<value>unpublished</value>
|
887
|
+
<a:documentation>An intellectual creation which has not been published, e.g. a manuscript.
|
888
|
+
NOTE: Properly this does not represent a distinct bibliographic type, and it
|
889
|
+
should be avoided in favour of using the `status` element of `BibliographicItem`</a:documentation>
|
890
|
+
<value>map</value>
|
891
|
+
<a:documentation>A map or other cartographic resource</a:documentation>
|
892
|
+
<value>electronic resource</value>
|
893
|
+
<a:documentation>A resource avaiulable in digital form
|
894
|
+
NOTE: The overloaded type `electronicResource` should be avoided where possible, particularly if the
|
895
|
+
resource corresponds closely to a paper bibliographic type, such as `book` or `article`.
|
896
|
+
The distinction between offline and online resources should be made through `medium` (electronic vs physical).
|
897
|
+
Specialisations of `electronicResource` include `dataset`, `webResource`, `website`,
|
898
|
+
`socialMedia`, and `software`.</a:documentation>
|
899
|
+
<value>audiovisual</value>
|
900
|
+
<a:documentation>An audiovisual resource. Is a superclass of other types such as `video` and `music`</a:documentation>
|
901
|
+
<value>film</value>
|
902
|
+
<a:documentation>A film</a:documentation>
|
903
|
+
<value>video</value>
|
904
|
+
<a:documentation>A video</a:documentation>
|
905
|
+
<value>broadcast</value>
|
906
|
+
<a:documentation>A broadcast made through mass media, including radio and television</a:documentation>
|
907
|
+
<value>software</value>
|
908
|
+
<a:documentation>Computer executable code, not itself human-readable text (though it may generate such text)</a:documentation>
|
909
|
+
<value>graphic_work</value>
|
910
|
+
<a:documentation>A graphic work, a work with two-dimensional or three-dimensional content</a:documentation>
|
911
|
+
<value>music</value>
|
912
|
+
<a:documentation>A musical work. Includes both notated music and music performances:
|
913
|
+
The two are differentiated through `BibliographicItem/medium/content` as "notated music" vs "performed music"</a:documentation>
|
914
|
+
<value>patent</value>
|
915
|
+
<a:documentation>A patent</a:documentation>
|
916
|
+
<value>inbook</value>
|
917
|
+
<a:documentation>A (typically untitled) part of a book. May be a chapter (or section, etc.) and/or a range of pages</a:documentation>
|
918
|
+
<value>incollection</value>
|
919
|
+
<a:documentation>A part of a book having its own title, and typically having distinct authorship</a:documentation>
|
920
|
+
<value>inproceedings</value>
|
921
|
+
<a:documentation>An article in a conference proceedings</a:documentation>
|
922
|
+
<value>journal</value>
|
923
|
+
<a:documentation>A journal or periodical publication</a:documentation>
|
924
|
+
<value>website</value>
|
925
|
+
<a:documentation>A collection of web resources, presented under the same URL domain and under the same (individual or corporate) authorship</a:documentation>
|
926
|
+
<value>webresource</value>
|
927
|
+
<a:documentation>A human-readable or consumable web resource, a single item accessible online via a web browser,
|
928
|
+
which is not composed of components all of which can be accessed in the same way.
|
929
|
+
Includes media files, as well as individual web pages</a:documentation>
|
930
|
+
<value>dataset</value>
|
931
|
+
<a:documentation>An electronic dataset, a collection of data that is not meant to be human-readable, and which is typically only machine readable</a:documentation>
|
932
|
+
<value>archival</value>
|
933
|
+
<a:documentation>A instance of a resource curated and preserved in an archive, which mediates any access to it.
|
934
|
+
Typically it is physical, unique, and unpublished.
|
935
|
+
NOTE: The content of the resource may be published separately,
|
936
|
+
but that makes it a distinct bibliographic item, as access to it is no longer mediated through the archive</a:documentation>
|
937
|
+
<value>social_media</value>
|
938
|
+
<a:documentation>One or more resources within a collection that is typically collectively authored by member users.
|
939
|
+
Includes blog posts, forum posts, social media posts, tweets. Is usually a `webResource`,
|
940
|
+
but not always (e.g. blogs on WeChat are only accessible within the WeChat app.)</a:documentation>
|
941
|
+
<value>alert</value>
|
942
|
+
<a:documentation>A single communication intended for multiple persons, and publicly accessible.
|
943
|
+
May be electronic (e.g. Facebook status update) or voice (e.g. evacuation alert), but is typically not print</a:documentation>
|
944
|
+
<value>message</value>
|
945
|
+
<a:documentation>A single communication intended for a restricted number of authorised persons (typically one).
|
946
|
+
May be electronic (e.g. Twitter direct message, email) or voice (e.g. a remark made to someone,
|
947
|
+
typically cited as "personal communication")</a:documentation>
|
948
|
+
<value>conversation</value>
|
949
|
+
<a:documentation>An exchange of messages between two or more persons. May be electronic (e.g. web chat) or voice (e.g. phone call)</a:documentation>
|
950
|
+
<value>collection</value>
|
951
|
+
<a:documentation>A compound resource consisting of other resources, which are themselves presupposed to have their type specified..</a:documentation>
|
952
|
+
<value>misc</value>
|
953
|
+
<a:documentation>Bibliographic type not adequately described in the foregoing</a:documentation>
|
954
|
+
</choice>
|
955
|
+
</define>
|
956
|
+
<define name="BibliographicItem">
|
957
|
+
<a:documentation>Description of a bibliographic resource</a:documentation>
|
958
|
+
<optional>
|
959
|
+
<attribute name="type">
|
960
|
+
<a:documentation>The type of the bibliographic item</a:documentation>
|
961
|
+
<ref name="BibItemType"/>
|
962
|
+
</attribute>
|
963
|
+
</optional>
|
964
|
+
<optional>
|
965
|
+
<attribute name="schema-version">
|
966
|
+
<a:documentation>The version of the Relaton schema that this description conforms to</a:documentation>
|
967
|
+
</attribute>
|
968
|
+
</optional>
|
969
|
+
<optional>
|
970
|
+
<ref name="fetched">
|
971
|
+
<a:documentation>The date at which the bibliographic item was last updated</a:documentation>
|
972
|
+
</ref>
|
973
|
+
</optional>
|
974
|
+
<optional>
|
975
|
+
<ref name="formattedref">
|
976
|
+
<a:documentation>A pre-formatted version of the full bibliographic item reference,
|
977
|
+
rendered for human reading, and used to sidestep the rendering of the reference out of its component parts</a:documentation>
|
978
|
+
</ref>
|
979
|
+
</optional>
|
980
|
+
<oneOrMore>
|
981
|
+
<ref name="btitle">
|
982
|
+
<a:documentation>The title(s) of the bibliographic item</a:documentation>
|
983
|
+
</ref>
|
984
|
+
</oneOrMore>
|
985
|
+
<zeroOrMore>
|
986
|
+
<ref name="bsource">
|
987
|
+
<a:documentation>The URI(s) associated with the bibliographic item</a:documentation>
|
988
|
+
</ref>
|
989
|
+
</zeroOrMore>
|
990
|
+
<oneOrMore>
|
991
|
+
<ref name="docidentifier">
|
992
|
+
<a:documentation>The identifier(s) of the bibliographic item in an international standard scheme</a:documentation>
|
993
|
+
</ref>
|
994
|
+
</oneOrMore>
|
995
|
+
<optional>
|
996
|
+
<ref name="docnumber">
|
997
|
+
<a:documentation>Unprefixed, preferably numeric version of an identifier of the bibliographic item, intended for sorting of bibliography</a:documentation>
|
998
|
+
</ref>
|
999
|
+
</optional>
|
1000
|
+
<zeroOrMore>
|
1001
|
+
<ref name="bdate">
|
1002
|
+
<a:documentation>One or more date-times associated with the production of or access to the bibliographic item</a:documentation>
|
1003
|
+
</ref>
|
1004
|
+
</zeroOrMore>
|
1005
|
+
<zeroOrMore>
|
1006
|
+
<ref name="contributor">
|
1007
|
+
<a:documentation>Contributors to the production of the bibliographic item</a:documentation>
|
1008
|
+
</ref>
|
1009
|
+
</zeroOrMore>
|
1010
|
+
<optional>
|
1011
|
+
<ref name="edition">
|
1012
|
+
<a:documentation>The edition of the bibliographic item</a:documentation>
|
1013
|
+
</ref>
|
1014
|
+
</optional>
|
1015
|
+
<zeroOrMore>
|
1016
|
+
<ref name="version">
|
1017
|
+
<a:documentation>The version of the bibliographic item (within an edition). Can be used for drafts.
|
1018
|
+
Can be more than one, in case of multiple versioning schemes</a:documentation>
|
1019
|
+
</ref>
|
1020
|
+
</zeroOrMore>
|
1021
|
+
<zeroOrMore>
|
1022
|
+
<ref name="biblionote">
|
1023
|
+
<a:documentation>Note(s) associated with the bibliographic item</a:documentation>
|
1024
|
+
</ref>
|
1025
|
+
</zeroOrMore>
|
1026
|
+
<zeroOrMore>
|
1027
|
+
<ref name="language">
|
1028
|
+
<a:documentation>The language(s) in which the bibliographic item is expressed</a:documentation>
|
1029
|
+
</ref>
|
1030
|
+
</zeroOrMore>
|
1031
|
+
<zeroOrMore>
|
1032
|
+
<ref name="locale">
|
1033
|
+
<a:documentation>The locale(s) in which the bibliographic item is expressed</a:documentation>
|
1034
|
+
</ref>
|
1035
|
+
</zeroOrMore>
|
1036
|
+
<zeroOrMore>
|
1037
|
+
<ref name="script">
|
1038
|
+
<a:documentation>The script(s) in which the bibliographic item is written</a:documentation>
|
1039
|
+
</ref>
|
1040
|
+
</zeroOrMore>
|
1041
|
+
<zeroOrMore>
|
1042
|
+
<ref name="bibabstract">
|
1043
|
+
<a:documentation>The abstract of the bibliographic item</a:documentation>
|
1044
|
+
</ref>
|
1045
|
+
</zeroOrMore>
|
1046
|
+
<optional>
|
1047
|
+
<ref name="status">
|
1048
|
+
<a:documentation>The publication or preparation status of the bibliographic item</a:documentation>
|
1049
|
+
</ref>
|
1050
|
+
</optional>
|
1051
|
+
<zeroOrMore>
|
1052
|
+
<ref name="copyright">
|
1053
|
+
<a:documentation>The copyright status of the bibliographic item</a:documentation>
|
1054
|
+
</ref>
|
1055
|
+
</zeroOrMore>
|
1056
|
+
<zeroOrMore>
|
1057
|
+
<ref name="docrelation">
|
1058
|
+
<a:documentation>The relation(s) of the bibliographic item to other bibliographic items</a:documentation>
|
1059
|
+
</ref>
|
1060
|
+
</zeroOrMore>
|
1061
|
+
<zeroOrMore>
|
1062
|
+
<ref name="series">
|
1063
|
+
<a:documentation>The series of the bibliographic item</a:documentation>
|
1064
|
+
</ref>
|
1065
|
+
</zeroOrMore>
|
1066
|
+
<optional>
|
1067
|
+
<ref name="medium">
|
1068
|
+
<a:documentation>The medium the subject is realized on.
|
1069
|
+
Medium can be used to differentiate between "electronic" and "physical" manifestations of an information resource.</a:documentation>
|
1070
|
+
</ref>
|
1071
|
+
</optional>
|
1072
|
+
<zeroOrMore>
|
1073
|
+
<ref name="bplace">
|
1074
|
+
<a:documentation>The geographic location associated with the production of the bibliographic item</a:documentation>
|
1075
|
+
</ref>
|
1076
|
+
</zeroOrMore>
|
1077
|
+
<zeroOrMore>
|
1078
|
+
<ref name="bprice">
|
1079
|
+
<a:documentation>The price set on accessing the bibliographic item.
|
1080
|
+
The price should be treated as nominal, rather than capturing all possible pricings at a given time</a:documentation>
|
1081
|
+
</ref>
|
1082
|
+
</zeroOrMore>
|
1083
|
+
<zeroOrMore>
|
1084
|
+
<ref name="extent">
|
1085
|
+
<a:documentation>The extent of the bibliographic item, if reference is not being made to the entirety of the item described.
|
1086
|
+
Repeats for different levels of granularity (e.g. volume number, page number), or for discontinuous ranges
|
1087
|
+
(e.g. multiple page ranges, pages plus plates)</a:documentation>
|
1088
|
+
</ref>
|
1089
|
+
</zeroOrMore>
|
1090
|
+
<optional>
|
1091
|
+
<ref name="bibliographic_size">
|
1092
|
+
<a:documentation>The bibliographic size of the bibliographic item, measured in the same units as extent (i.e. pages, volumes,
|
1093
|
+
megabytes, hours, rather than cm^2.) Distinct from the physical size of the bibliographic item, captured in medium/size</a:documentation>
|
1094
|
+
</ref>
|
1095
|
+
</optional>
|
1096
|
+
<zeroOrMore>
|
1097
|
+
<ref name="accesslocation">
|
1098
|
+
<a:documentation>The location where the bibliographic item may be accessed.
|
1099
|
+
Used for archival resources. Also used for pathways to access digital resources, where a URI is not practical</a:documentation>
|
1100
|
+
</ref>
|
1101
|
+
</zeroOrMore>
|
1102
|
+
<zeroOrMore>
|
1103
|
+
<ref name="license">
|
1104
|
+
<a:documentation>A license under which the bibliographic item has been issued.
|
1105
|
+
NOTE: This should preferably be encoded as a URI or short identifier, rather than descriptive text</a:documentation>
|
1106
|
+
</ref>
|
1107
|
+
</zeroOrMore>
|
1108
|
+
<zeroOrMore>
|
1109
|
+
<ref name="bclassification">
|
1110
|
+
<a:documentation>The classification of the bibliographic item according to a standard classification scheme</a:documentation>
|
1111
|
+
</ref>
|
1112
|
+
</zeroOrMore>
|
1113
|
+
<zeroOrMore>
|
1114
|
+
<ref name="bkeyword">
|
1115
|
+
<a:documentation>Keyword(s) for the bibliographic item</a:documentation>
|
1116
|
+
</ref>
|
1117
|
+
</zeroOrMore>
|
1118
|
+
<optional>
|
1119
|
+
<ref name="validity">
|
1120
|
+
<a:documentation>Information about how long the current description of the bibliographic item is valid for</a:documentation>
|
1121
|
+
</ref>
|
1122
|
+
</optional>
|
1123
|
+
<optional>
|
1124
|
+
<ref name="depiction">
|
1125
|
+
<a:documentation>Depiction of the bibliographic item, typically an image</a:documentation>
|
1126
|
+
</ref>
|
1127
|
+
</optional>
|
1128
|
+
</define>
|
1129
|
+
<define name="ReducedBibliographicItem">
|
1130
|
+
<a:documentation>Reduced description of a bibliographic resource, without mandatory title and docidentifier, used for document relations
|
1131
|
+
Refer to `BibliographicItem` for definitions</a:documentation>
|
1132
|
+
<optional>
|
1133
|
+
<attribute name="type">
|
1134
|
+
<ref name="BibItemType"/>
|
1135
|
+
</attribute>
|
1136
|
+
</optional>
|
1137
|
+
<optional>
|
1138
|
+
<attribute name="schema-version"/>
|
1139
|
+
</optional>
|
1140
|
+
<optional>
|
1141
|
+
<ref name="fetched"/>
|
1142
|
+
</optional>
|
1143
|
+
<optional>
|
1144
|
+
<ref name="formattedref"/>
|
1145
|
+
</optional>
|
1146
|
+
<zeroOrMore>
|
1147
|
+
<ref name="btitle"/>
|
1148
|
+
</zeroOrMore>
|
1149
|
+
<zeroOrMore>
|
1150
|
+
<ref name="bsource"/>
|
1151
|
+
</zeroOrMore>
|
1152
|
+
<zeroOrMore>
|
1153
|
+
<ref name="docidentifier"/>
|
1154
|
+
</zeroOrMore>
|
1155
|
+
<optional>
|
1156
|
+
<ref name="docnumber"/>
|
1157
|
+
</optional>
|
1158
|
+
<zeroOrMore>
|
1159
|
+
<ref name="bdate"/>
|
1160
|
+
</zeroOrMore>
|
1161
|
+
<zeroOrMore>
|
1162
|
+
<ref name="contributor"/>
|
1163
|
+
</zeroOrMore>
|
1164
|
+
<optional>
|
1165
|
+
<ref name="edition"/>
|
1166
|
+
</optional>
|
1167
|
+
<zeroOrMore>
|
1168
|
+
<ref name="version"/>
|
1169
|
+
</zeroOrMore>
|
1170
|
+
<zeroOrMore>
|
1171
|
+
<ref name="biblionote"/>
|
1172
|
+
</zeroOrMore>
|
1173
|
+
<zeroOrMore>
|
1174
|
+
<ref name="language"/>
|
1175
|
+
</zeroOrMore>
|
1176
|
+
<zeroOrMore>
|
1177
|
+
<ref name="locale"/>
|
1178
|
+
</zeroOrMore>
|
1179
|
+
<zeroOrMore>
|
1180
|
+
<ref name="script"/>
|
1181
|
+
</zeroOrMore>
|
1182
|
+
<zeroOrMore>
|
1183
|
+
<ref name="bibabstract"/>
|
1184
|
+
</zeroOrMore>
|
1185
|
+
<optional>
|
1186
|
+
<ref name="status"/>
|
1187
|
+
</optional>
|
1188
|
+
<zeroOrMore>
|
1189
|
+
<ref name="copyright"/>
|
1190
|
+
</zeroOrMore>
|
1191
|
+
<zeroOrMore>
|
1192
|
+
<ref name="docrelation"/>
|
1193
|
+
</zeroOrMore>
|
1194
|
+
<zeroOrMore>
|
1195
|
+
<ref name="series"/>
|
1196
|
+
</zeroOrMore>
|
1197
|
+
<optional>
|
1198
|
+
<ref name="medium"/>
|
1199
|
+
</optional>
|
1200
|
+
<zeroOrMore>
|
1201
|
+
<ref name="bplace"/>
|
1202
|
+
</zeroOrMore>
|
1203
|
+
<zeroOrMore>
|
1204
|
+
<ref name="bprice"/>
|
1205
|
+
</zeroOrMore>
|
1206
|
+
<zeroOrMore>
|
1207
|
+
<ref name="extent"/>
|
1208
|
+
</zeroOrMore>
|
1209
|
+
<optional>
|
1210
|
+
<ref name="bibliographic_size"/>
|
1211
|
+
</optional>
|
1212
|
+
<zeroOrMore>
|
1213
|
+
<ref name="accesslocation"/>
|
1214
|
+
</zeroOrMore>
|
1215
|
+
<zeroOrMore>
|
1216
|
+
<ref name="license"/>
|
1217
|
+
</zeroOrMore>
|
1218
|
+
<zeroOrMore>
|
1219
|
+
<ref name="bclassification"/>
|
1220
|
+
</zeroOrMore>
|
1221
|
+
<zeroOrMore>
|
1222
|
+
<ref name="bkeyword"/>
|
1223
|
+
</zeroOrMore>
|
1224
|
+
<optional>
|
1225
|
+
<ref name="validity"/>
|
1226
|
+
</optional>
|
1227
|
+
<optional>
|
1228
|
+
<ref name="depiction"/>
|
1229
|
+
</optional>
|
1230
|
+
</define>
|
1231
|
+
<define name="btitle">
|
1232
|
+
<a:documentation>A title of a bibliographic item, associated with a type of title</a:documentation>
|
1233
|
+
<element name="title">
|
1234
|
+
<ref name="TypedTitleString"/>
|
1235
|
+
</element>
|
1236
|
+
</define>
|
1237
|
+
<define name="bsource">
|
1238
|
+
<element name="uri">
|
1239
|
+
<ref name="TypedUri"/>
|
1240
|
+
</element>
|
1241
|
+
</define>
|
1242
|
+
<define name="formattedref">
|
1243
|
+
<element name="formattedref">
|
1244
|
+
<oneOrMore>
|
1245
|
+
<ref name="TextElement"/>
|
1246
|
+
</oneOrMore>
|
1247
|
+
</element>
|
1248
|
+
</define>
|
1249
|
+
<define name="license">
|
1250
|
+
<element name="license">
|
1251
|
+
<text/>
|
1252
|
+
</element>
|
1253
|
+
</define>
|
1254
|
+
<define name="fetched">
|
1255
|
+
<element name="fetched">
|
1256
|
+
<ref name="ISO8601DateTime"/>
|
1257
|
+
</element>
|
1258
|
+
</define>
|
1259
|
+
<define name="validity">
|
1260
|
+
<a:documentation>The time interval for which a bibliographic item is determined valid, and the associated revision date</a:documentation>
|
1261
|
+
<element name="validity">
|
1262
|
+
<optional>
|
1263
|
+
<ref name="validityBegins">
|
1264
|
+
<a:documentation>The date and time when this bibliographic item becomes valid</a:documentation>
|
1265
|
+
</ref>
|
1266
|
+
</optional>
|
1267
|
+
<optional>
|
1268
|
+
<ref name="validityEnds">
|
1269
|
+
<a:documentation>The date and time when this bibliographic item becomes invalid</a:documentation>
|
1270
|
+
</ref>
|
1271
|
+
</optional>
|
1272
|
+
<optional>
|
1273
|
+
<ref name="validityRevision">
|
1274
|
+
<a:documentation>The date and time of issuance of the version of the document
|
1275
|
+
for which this claim of validity is made, if applicable</a:documentation>
|
1276
|
+
</ref>
|
1277
|
+
</optional>
|
1278
|
+
</element>
|
1279
|
+
</define>
|
1280
|
+
<define name="validityBegins">
|
1281
|
+
<element name="validityBegins">
|
1282
|
+
<ref name="ISO8601Date"/>
|
1283
|
+
</element>
|
1284
|
+
</define>
|
1285
|
+
<define name="validityEnds">
|
1286
|
+
<element name="validityEnds">
|
1287
|
+
<ref name="ISO8601Date"/>
|
1288
|
+
</element>
|
1289
|
+
</define>
|
1290
|
+
<define name="validityRevision">
|
1291
|
+
<element name="revision">
|
1292
|
+
<ref name="ISO8601Date"/>
|
1293
|
+
</element>
|
1294
|
+
</define>
|
1295
|
+
<define name="TypedTitleString">
|
1296
|
+
<optional>
|
1297
|
+
<attribute name="type">
|
1298
|
+
<a:documentation>Type of title given to a bibliographic item. Indicative values include:
|
1299
|
+
"alternative": alternate title for the item
|
1300
|
+
"original": The original title of the item. Includes the source language title of a translated item
|
1301
|
+
"unofficial": A title that has become prevalent but has never been the official or intended title of the item
|
1302
|
+
"subtitle": Subsidiary title of the item
|
1303
|
+
"main": The default title of the item, privileged in citation</a:documentation>
|
1304
|
+
</attribute>
|
1305
|
+
</optional>
|
1306
|
+
<optional>
|
1307
|
+
<attribute name="format">
|
1308
|
+
<a:documentation>(legacy attribute) format; can have value text/plain</a:documentation>
|
1309
|
+
</attribute>
|
1310
|
+
</optional>
|
1311
|
+
<ref name="LocalizedMarkedUpString">
|
1312
|
+
<a:documentation>Content of title</a:documentation>
|
1313
|
+
</ref>
|
1314
|
+
</define>
|
1315
|
+
<!-- TitleType = ( "alternative" | "original" | "unofficial" | "subtitle" | "main" ) -->
|
1316
|
+
<define name="TypedUri">
|
1317
|
+
<a:documentation>URI with type</a:documentation>
|
1318
|
+
<optional>
|
1319
|
+
<attribute name="type">
|
1320
|
+
<a:documentation>Type of URI</a:documentation>
|
1321
|
+
</attribute>
|
1322
|
+
</optional>
|
1323
|
+
<ref name="LocalizedStringAttributes"/>
|
1324
|
+
<data type="anyURI"/>
|
1325
|
+
</define>
|
1326
|
+
<define name="DateType">
|
1327
|
+
<a:documentation>Type which allows date and time to be specified as either a Gregorian
|
1328
|
+
date and time, as specified in ISO 8601, as text, or as both</a:documentation>
|
1329
|
+
<optional>
|
1330
|
+
<attribute name="text">
|
1331
|
+
<a:documentation>Date and time, as specified in text</a:documentation>
|
1332
|
+
</attribute>
|
1333
|
+
</optional>
|
1334
|
+
<optional>
|
1335
|
+
<group>
|
1336
|
+
<a:documentation>Gregorian date and time, as specified in ISO 8601. Can be used
|
1337
|
+
as a canonical interpretation of the date and time given in `text`</a:documentation>
|
1338
|
+
<ref name="ISO8601Date"/>
|
1339
|
+
</group>
|
1340
|
+
</optional>
|
1341
|
+
</define>
|
1342
|
+
<define name="BibliographicDateType">
|
1343
|
+
<a:documentation>Indicates type of date within a bibliographic lifecycle.
|
1344
|
+
NOTE: Typically only the `published` date is of interest</a:documentation>
|
1345
|
+
<choice>
|
1346
|
+
<value>published</value>
|
1347
|
+
<a:documentation>The date on which the document was published (distributed by the publisher)</a:documentation>
|
1348
|
+
<value>accessed</value>
|
1349
|
+
<a:documentation>Date a document was last accessed by the compiler of the bibliographic record; routinely used for online publications.
|
1350
|
+
NOTE: Unlike in ISO 690:2021, no distinction is made between
|
1351
|
+
"viewed" and "accessed" based on whether the resource is human-readable or machine-readable.)</a:documentation>
|
1352
|
+
<value>created</value>
|
1353
|
+
<a:documentation>The date on which the first version of the document was created</a:documentation>
|
1354
|
+
<value>implemented</value>
|
1355
|
+
<a:documentation>The date on which the document takes effect. Applies to normative documents</a:documentation>
|
1356
|
+
<value>obsoleted</value>
|
1357
|
+
<a:documentation>The date on which the document was obsoleted/</a:documentation>
|
1358
|
+
<value>confirmed</value>
|
1359
|
+
<a:documentation>The date on which the document was reviewed and approved by the issuing authority</a:documentation>
|
1360
|
+
<value>updated</value>
|
1361
|
+
<a:documentation>The date on which the current version of the document was updated</a:documentation>
|
1362
|
+
<value>corrected</value>
|
1363
|
+
<a:documentation>The date on which the current version of the document was corrected, without that correction considered to amount to a full document update</a:documentation>
|
1364
|
+
<value>issued</value>
|
1365
|
+
<a:documentation>The date on which the document was issued (authorised for publication by the issuing authority).
|
1366
|
+
Is typically differentiated from `published` for normative documents, such as standards and legislation</a:documentation>
|
1367
|
+
<value>transmitted</value>
|
1368
|
+
<a:documentation>The date on which the document was broadcast</a:documentation>
|
1369
|
+
<value>copied</value>
|
1370
|
+
<a:documentation>The date on which the document physically copied, or recreated without any substantial change in content (allowing for change in medium)</a:documentation>
|
1371
|
+
<value>unchanged</value>
|
1372
|
+
<a:documentation>The date on which the document was last renewed or reprinted without any changes in content</a:documentation>
|
1373
|
+
<value>circulated</value>
|
1374
|
+
<a:documentation>The date on which the unpublished document was last circulated officially as a preprint.
|
1375
|
+
For standards, this is associated with the latest transition to a formally defined preparation stage,
|
1376
|
+
such as Working Draft or Committee Draft</a:documentation>
|
1377
|
+
<value>adapted</value>
|
1378
|
+
<a:documentation>The date on which a document adapted for a new purpose or audience, with some change in content (includes translation)</a:documentation>
|
1379
|
+
<value>vote-started</value>
|
1380
|
+
<a:documentation>The date on which a formal process for approval of a document was initiated. Typically applies to standards documents in draft</a:documentation>
|
1381
|
+
<value>vote-ended</value>
|
1382
|
+
<a:documentation>The date on which a formal process for approval of a document was closed. Typically applies to standards documents in draft</a:documentation>
|
1383
|
+
<value>announced</value>
|
1384
|
+
<a:documentation>The date on which the existence of a document is made public.
|
1385
|
+
Applies whether the resource has already been created or not, and whether it is to be published or not</a:documentation>
|
1386
|
+
<value>stable-until</value>
|
1387
|
+
<a:documentation>The document is guaranteed not to be changed or updated until this date</a:documentation>
|
1388
|
+
</choice>
|
1389
|
+
</define>
|
1390
|
+
<define name="bdate">
|
1391
|
+
<a:documentation>Significant date in the lifecycle of the bibliographic item, including its production and its access</a:documentation>
|
1392
|
+
<element name="date">
|
1393
|
+
<ref name="bDateAttributes"/>
|
1394
|
+
<optional>
|
1395
|
+
<choice>
|
1396
|
+
<group>
|
1397
|
+
<element name="from">
|
1398
|
+
<a:documentation>The start of the date range described</a:documentation>
|
1399
|
+
<ref name="ISO8601Date"/>
|
1400
|
+
</element>
|
1401
|
+
<optional>
|
1402
|
+
<element name="to">
|
1403
|
+
<a:documentation>The end of the date range described</a:documentation>
|
1404
|
+
<ref name="ISO8601Date"/>
|
1405
|
+
</element>
|
1406
|
+
</optional>
|
1407
|
+
</group>
|
1408
|
+
<element name="on">
|
1409
|
+
<a:documentation>The point date described</a:documentation>
|
1410
|
+
<ref name="ISO8601Date"/>
|
1411
|
+
</element>
|
1412
|
+
</choice>
|
1413
|
+
</optional>
|
1414
|
+
</element>
|
1415
|
+
</define>
|
1416
|
+
<define name="bDateAttributes">
|
1417
|
+
<attribute name="type">
|
1418
|
+
<a:documentation>The phase of the production of or access to a bibliographic item</a:documentation>
|
1419
|
+
<choice>
|
1420
|
+
<ref name="BibliographicDateType"/>
|
1421
|
+
<text/>
|
1422
|
+
</choice>
|
1423
|
+
</attribute>
|
1424
|
+
<optional>
|
1425
|
+
<attribute name="text">
|
1426
|
+
<a:documentation>An optional textual description of the date, especially when a Gregorian date is not applicable</a:documentation>
|
1427
|
+
</attribute>
|
1428
|
+
</optional>
|
1429
|
+
</define>
|
1430
|
+
<define name="docidentifier">
|
1431
|
+
<a:documentation>An identifier of a bibliographic item in an international standard scheme</a:documentation>
|
1432
|
+
<element name="docidentifier">
|
1433
|
+
<ref name="DocIdentifierType"/>
|
1434
|
+
</element>
|
1435
|
+
</define>
|
1436
|
+
<define name="DocIdentifierType">
|
1437
|
+
<optional>
|
1438
|
+
<attribute name="type">
|
1439
|
+
<a:documentation>The scheme or namespace of the identifier</a:documentation>
|
1440
|
+
</attribute>
|
1441
|
+
</optional>
|
1442
|
+
<optional>
|
1443
|
+
<attribute name="scope">
|
1444
|
+
<a:documentation>The scope of the identifier, in case the identifier does not apply to the document
|
1445
|
+
but to a superset or subset of entities; or in case the identifier
|
1446
|
+
is for a particular instance of the document, e.g. for a particular format or edition of the document</a:documentation>
|
1447
|
+
</attribute>
|
1448
|
+
</optional>
|
1449
|
+
<optional>
|
1450
|
+
<attribute name="primary">
|
1451
|
+
<a:documentation>This is a primary identifier for the item, to be used in citation</a:documentation>
|
1452
|
+
<data type="boolean"/>
|
1453
|
+
</attribute>
|
1454
|
+
</optional>
|
1455
|
+
<ref name="LocalizedMarkedUpString">
|
1456
|
+
<a:documentation>The identifier string</a:documentation>
|
1457
|
+
</ref>
|
1458
|
+
</define>
|
1459
|
+
<define name="docnumber">
|
1460
|
+
<element name="docnumber">
|
1461
|
+
<text/>
|
1462
|
+
</element>
|
1463
|
+
</define>
|
1464
|
+
<define name="bclassification">
|
1465
|
+
<element name="classification">
|
1466
|
+
<ref name="DocIdentifierType"/>
|
1467
|
+
</element>
|
1468
|
+
</define>
|
1469
|
+
<define name="bplace">
|
1470
|
+
<a:documentation>Place associated with the production of a bibliographic item</a:documentation>
|
1471
|
+
<element name="place">
|
1472
|
+
<optional>
|
1473
|
+
<ref name="bibliocity">
|
1474
|
+
<a:documentation>City</a:documentation>
|
1475
|
+
</ref>
|
1476
|
+
</optional>
|
1477
|
+
<zeroOrMore>
|
1478
|
+
<ref name="biblioregion">
|
1479
|
+
<a:documentation>Region that city is located in, given for disambiguation purposes.</a:documentation>
|
1480
|
+
</ref>
|
1481
|
+
</zeroOrMore>
|
1482
|
+
<zeroOrMore>
|
1483
|
+
<ref name="bibliocountry">
|
1484
|
+
<a:documentation>Country that city is located in, given for disambiguation purposes.</a:documentation>
|
1485
|
+
</ref>
|
1486
|
+
</zeroOrMore>
|
1487
|
+
<optional>
|
1488
|
+
<ref name="formattedPlace">
|
1489
|
+
<a:documentation>Name of the place, not broken down semantically</a:documentation>
|
1490
|
+
</ref>
|
1491
|
+
</optional>
|
1492
|
+
<optional>
|
1493
|
+
<ref name="uri">
|
1494
|
+
<a:documentation>URI in a geographical registry identifying the place</a:documentation>
|
1495
|
+
</ref>
|
1496
|
+
</optional>
|
1497
|
+
</element>
|
1498
|
+
</define>
|
1499
|
+
<define name="bibliocity">
|
1500
|
+
<element name="city">
|
1501
|
+
<text/>
|
1502
|
+
</element>
|
1503
|
+
</define>
|
1504
|
+
<define name="formattedPlace">
|
1505
|
+
<element name="formattedPlace">
|
1506
|
+
<text/>
|
1507
|
+
</element>
|
1508
|
+
</define>
|
1509
|
+
<define name="biblioregion">
|
1510
|
+
<element name="region">
|
1511
|
+
<ref name="RegionType"/>
|
1512
|
+
</element>
|
1513
|
+
</define>
|
1514
|
+
<define name="bibliocountry">
|
1515
|
+
<element name="country">
|
1516
|
+
<ref name="RegionType"/>
|
1517
|
+
</element>
|
1518
|
+
</define>
|
1519
|
+
<define name="RegionType">
|
1520
|
+
<a:documentation>Encoding of region in bibliographic `place`. ISO 3166 encoding is recommended</a:documentation>
|
1521
|
+
<optional>
|
1522
|
+
<attribute name="iso">
|
1523
|
+
<a:documentation>ISO 3166 encoding</a:documentation>
|
1524
|
+
</attribute>
|
1525
|
+
</optional>
|
1526
|
+
<optional>
|
1527
|
+
<attribute name="recommended">
|
1528
|
+
<a:documentation>Whether the region should be included in rendering of the place, for disambiguation</a:documentation>
|
1529
|
+
<data type="boolean"/>
|
1530
|
+
</attribute>
|
1531
|
+
</optional>
|
1532
|
+
<optional>
|
1533
|
+
<text>
|
1534
|
+
<a:documentation>Name of the region</a:documentation>
|
1535
|
+
</text>
|
1536
|
+
</optional>
|
1537
|
+
</define>
|
1538
|
+
<define name="CurrencyType">
|
1539
|
+
<a:documentation>Code for currencies, taken from ISO 4217</a:documentation>
|
1540
|
+
<text/>
|
1541
|
+
</define>
|
1542
|
+
<define name="bprice">
|
1543
|
+
<a:documentation>The price set on accessing the bibliographic item</a:documentation>
|
1544
|
+
<element name="price">
|
1545
|
+
<attribute name="currency">
|
1546
|
+
<a:documentation>The currency denomination for the price</a:documentation>
|
1547
|
+
<ref name="CurrencyType"/>
|
1548
|
+
</attribute>
|
1549
|
+
<text>
|
1550
|
+
<a:documentation>The currency amount for the price</a:documentation>
|
1551
|
+
</text>
|
1552
|
+
</element>
|
1553
|
+
</define>
|
1554
|
+
<define name="medium">
|
1555
|
+
<a:documentation>Information about the medium and transmission of a bibliographic item</a:documentation>
|
1556
|
+
<element name="medium">
|
1557
|
+
<optional>
|
1558
|
+
<ref name="bcontent">
|
1559
|
+
<a:documentation>The content type of the bibliographic item, reflecting the form of
|
1560
|
+
communication with which it is expressed and perceived. For example,
|
1561
|
+
`text`, `video`, `audio`.</a:documentation>
|
1562
|
+
<a:documentation>NOTE: This field is intended to convey the
|
1563
|
+
Content attribute of the MARC and Resource Description and Access
|
1564
|
+
standards, although its values are not restricted to that
|
1565
|
+
vocabulary; see http://www.loc.gov/standards/valuelist/rdacontent.html</a:documentation>
|
1566
|
+
</ref>
|
1567
|
+
</optional>
|
1568
|
+
<optional>
|
1569
|
+
<ref name="genre">
|
1570
|
+
<a:documentation>The genre of the bibliographic item, as a classification of the
|
1571
|
+
type of communication it represents that is more specific than `content` or `BibliographicItem/type`.
|
1572
|
+
For example, "statistical dataset"</a:documentation>
|
1573
|
+
</ref>
|
1574
|
+
</optional>
|
1575
|
+
<optional>
|
1576
|
+
<ref name="form">
|
1577
|
+
<a:documentation>The media type of the bibliographic item, used to access the content
|
1578
|
+
of the item, including file format for electronic media.</a:documentation>
|
1579
|
+
<a:documentation>NOTE: This field is intended to convey the
|
1580
|
+
Media attribute of the MARC and Resource Description and Access
|
1581
|
+
standards, although its values are not restricted to that
|
1582
|
+
vocabulary; see http://www.loc.gov/standards/valuelist/rdamedia.html
|
1583
|
+
IANA Media Types are recommended for electronic resources</a:documentation>
|
1584
|
+
</ref>
|
1585
|
+
</optional>
|
1586
|
+
<optional>
|
1587
|
+
<ref name="carrier">
|
1588
|
+
<a:documentation>The storage medium of the physical representation of the bibliographic item.</a:documentation>
|
1589
|
+
<a:documentation>NOTE: This field is intended to convey the
|
1590
|
+
Carrier attribute of the MARC and Resource Description and Access
|
1591
|
+
standards, although its values are not restricted to that
|
1592
|
+
vocabulary; see https://www.loc.gov/standards/valuelist/rdacarrier.html</a:documentation>
|
1593
|
+
</ref>
|
1594
|
+
</optional>
|
1595
|
+
<optional>
|
1596
|
+
<ref name="size">
|
1597
|
+
<a:documentation>The size of the physical representation of the bibliographic item</a:documentation>
|
1598
|
+
</ref>
|
1599
|
+
</optional>
|
1600
|
+
<optional>
|
1601
|
+
<ref name="scale">
|
1602
|
+
<a:documentation>The scale of the cartographic material in the bibliographic item</a:documentation>
|
1603
|
+
</ref>
|
1604
|
+
</optional>
|
1605
|
+
</element>
|
1606
|
+
</define>
|
1607
|
+
<define name="bcontent">
|
1608
|
+
<element name="content">
|
1609
|
+
<text/>
|
1610
|
+
</element>
|
1611
|
+
</define>
|
1612
|
+
<define name="genre">
|
1613
|
+
<element name="genre">
|
1614
|
+
<text/>
|
1615
|
+
</element>
|
1616
|
+
</define>
|
1617
|
+
<define name="form">
|
1618
|
+
<element name="form">
|
1619
|
+
<text/>
|
1620
|
+
</element>
|
1621
|
+
</define>
|
1622
|
+
<define name="carrier">
|
1623
|
+
<element name="carrier">
|
1624
|
+
<text/>
|
1625
|
+
</element>
|
1626
|
+
</define>
|
1627
|
+
<define name="size">
|
1628
|
+
<element name="size">
|
1629
|
+
<text/>
|
1630
|
+
</element>
|
1631
|
+
</define>
|
1632
|
+
<define name="scale">
|
1633
|
+
<element name="scale">
|
1634
|
+
<text/>
|
1635
|
+
</element>
|
1636
|
+
</define>
|
1637
|
+
<define name="accesslocation">
|
1638
|
+
<element name="accesslocation">
|
1639
|
+
<text/>
|
1640
|
+
</element>
|
1641
|
+
</define>
|
1642
|
+
<define name="sizevalue">
|
1643
|
+
<a:documentation>The size of a bibliographic item being referred to.
|
1644
|
+
A sequence of sizes can be used to indicate different numberings, e.g. xii + 40 pp.,
|
1645
|
+
or different kinds of measures, e.g. pages + plates</a:documentation>
|
1646
|
+
<element name="value">
|
1647
|
+
<attribute name="type">
|
1648
|
+
<a:documentation>The type of size. Recommended values: page, volume, time (in ISO 8601 duration values),
|
1649
|
+
data (including unit), value (free-form string)</a:documentation>
|
1650
|
+
</attribute>
|
1651
|
+
<optional>
|
1652
|
+
<text>
|
1653
|
+
<a:documentation>The quantity of the size</a:documentation>
|
1654
|
+
</text>
|
1655
|
+
</optional>
|
1656
|
+
</element>
|
1657
|
+
</define>
|
1658
|
+
<define name="bibliographic_size">
|
1659
|
+
<element name="size">
|
1660
|
+
<oneOrMore>
|
1661
|
+
<ref name="sizevalue"/>
|
1662
|
+
</oneOrMore>
|
1663
|
+
</element>
|
1664
|
+
</define>
|
1665
|
+
<define name="extent">
|
1666
|
+
<element name="extent">
|
1667
|
+
<choice>
|
1668
|
+
<zeroOrMore>
|
1669
|
+
<ref name="locality"/>
|
1670
|
+
</zeroOrMore>
|
1671
|
+
<zeroOrMore>
|
1672
|
+
<ref name="localityStack"/>
|
1673
|
+
</zeroOrMore>
|
1674
|
+
</choice>
|
1675
|
+
</element>
|
1676
|
+
</define>
|
1677
|
+
<define name="series">
|
1678
|
+
<a:documentation>Series to which a bibliographic item belongs. Series is to be understood broadly,
|
1679
|
+
and it includes monograph series, journals, newspapers, and report series within
|
1680
|
+
which the bibliographic item has appeared</a:documentation>
|
1681
|
+
<element name="series">
|
1682
|
+
<optional>
|
1683
|
+
<attribute name="type">
|
1684
|
+
<a:documentation>The type of series description expressed in this container</a:documentation>
|
1685
|
+
<ref name="SeriesType"/>
|
1686
|
+
</attribute>
|
1687
|
+
</optional>
|
1688
|
+
<optional>
|
1689
|
+
<ref name="formattedref">
|
1690
|
+
<a:documentation>A pre-formatted version of the series description, incorporating
|
1691
|
+
all needed disambiguating information in human-readable format</a:documentation>
|
1692
|
+
</ref>
|
1693
|
+
</optional>
|
1694
|
+
<oneOrMore>
|
1695
|
+
<ref name="btitle">
|
1696
|
+
<a:documentation>The title of the series</a:documentation>
|
1697
|
+
</ref>
|
1698
|
+
</oneOrMore>
|
1699
|
+
<optional>
|
1700
|
+
<ref name="bplace">
|
1701
|
+
<a:documentation>The place where the series is issued; used for disambiguation</a:documentation>
|
1702
|
+
</ref>
|
1703
|
+
</optional>
|
1704
|
+
<optional>
|
1705
|
+
<ref name="seriesorganization">
|
1706
|
+
<a:documentation>The organization issuing the series; used for disambiguation</a:documentation>
|
1707
|
+
</ref>
|
1708
|
+
</optional>
|
1709
|
+
<optional>
|
1710
|
+
<ref name="abbreviation">
|
1711
|
+
<a:documentation>The abbreviation under which the series is known</a:documentation>
|
1712
|
+
</ref>
|
1713
|
+
</optional>
|
1714
|
+
<optional>
|
1715
|
+
<ref name="seriesfrom">
|
1716
|
+
<a:documentation>The start of the date range when the series has been known under the given title</a:documentation>
|
1717
|
+
</ref>
|
1718
|
+
</optional>
|
1719
|
+
<optional>
|
1720
|
+
<ref name="seriesto">
|
1721
|
+
<a:documentation>The end of the date range when the series has been known under the given title</a:documentation>
|
1722
|
+
</ref>
|
1723
|
+
</optional>
|
1724
|
+
<optional>
|
1725
|
+
<ref name="seriesnumber">
|
1726
|
+
<a:documentation>The number of the bibliographic item within the series</a:documentation>
|
1727
|
+
</ref>
|
1728
|
+
</optional>
|
1729
|
+
<optional>
|
1730
|
+
<ref name="seriespartnumber">
|
1731
|
+
<a:documentation>The part-number of the bibliographic item within the series. For example,
|
1732
|
+
if the series is a journal, the number is the volume number, and the partnumber is the issue number</a:documentation>
|
1733
|
+
</ref>
|
1734
|
+
</optional>
|
1735
|
+
<optional>
|
1736
|
+
<ref name="seriesrun">
|
1737
|
+
<a:documentation>An iteration of numbering of the series, if the series has restarted numbering
|
1738
|
+
(as occurs in some journals); referred to as "series" in the context of journals.
|
1739
|
+
For example, "n.s." (new series) or "2" indicates
|
1740
|
+
that the `number` given for the series applies to the second iteration of numbering</a:documentation>
|
1741
|
+
</ref>
|
1742
|
+
</optional>
|
1743
|
+
</element>
|
1744
|
+
</define>
|
1745
|
+
<define name="SeriesType">
|
1746
|
+
<a:documentation>The type of series description given</a:documentation>
|
1747
|
+
<choice>
|
1748
|
+
<value>main</value>
|
1749
|
+
<a:documentation>Default type: The current, authoritative series description</a:documentation>
|
1750
|
+
<value>alt</value>
|
1751
|
+
<a:documentation>An alternative, potentially historical series description</a:documentation>
|
1752
|
+
<text/>
|
1753
|
+
</choice>
|
1754
|
+
</define>
|
1755
|
+
<define name="seriesorganization">
|
1756
|
+
<element name="organization">
|
1757
|
+
<text/>
|
1758
|
+
</element>
|
1759
|
+
</define>
|
1760
|
+
<define name="seriesfrom">
|
1761
|
+
<element name="from">
|
1762
|
+
<ref name="ISO8601Date"/>
|
1763
|
+
</element>
|
1764
|
+
</define>
|
1765
|
+
<define name="seriesto">
|
1766
|
+
<element name="to">
|
1767
|
+
<ref name="ISO8601Date"/>
|
1768
|
+
</element>
|
1769
|
+
</define>
|
1770
|
+
<define name="seriesnumber">
|
1771
|
+
<element name="number">
|
1772
|
+
<text/>
|
1773
|
+
</element>
|
1774
|
+
</define>
|
1775
|
+
<define name="seriespartnumber">
|
1776
|
+
<element name="partnumber">
|
1777
|
+
<text/>
|
1778
|
+
</element>
|
1779
|
+
</define>
|
1780
|
+
<define name="seriesrun">
|
1781
|
+
<element name="run">
|
1782
|
+
<text/>
|
1783
|
+
</element>
|
1784
|
+
</define>
|
1785
|
+
<define name="biblionote">
|
1786
|
+
<a:documentation>A note associated with the bibliographic item</a:documentation>
|
1787
|
+
<element name="note">
|
1788
|
+
<optional>
|
1789
|
+
<attribute name="type">
|
1790
|
+
<a:documentation>The class of the note associated with the bibliographic item.
|
1791
|
+
May be used to differentiate rendering of notes in bibliographies</a:documentation>
|
1792
|
+
</attribute>
|
1793
|
+
</optional>
|
1794
|
+
<ref name="LocalizedStringAttributes">
|
1795
|
+
<a:documentation>The content of the note</a:documentation>
|
1796
|
+
</ref>
|
1797
|
+
<choice>
|
1798
|
+
<oneOrMore>
|
1799
|
+
<ref name="BasicBlockNoId">
|
1800
|
+
<a:documentation>Multiple blocks of content</a:documentation>
|
1801
|
+
</ref>
|
1802
|
+
</oneOrMore>
|
1803
|
+
<oneOrMore>
|
1804
|
+
<ref name="TextElement">
|
1805
|
+
<a:documentation>Single block of content</a:documentation>
|
1806
|
+
</ref>
|
1807
|
+
</oneOrMore>
|
1808
|
+
</choice>
|
1809
|
+
</element>
|
1810
|
+
</define>
|
1811
|
+
<define name="bibabstract">
|
1812
|
+
<a:documentation>Abstract of bibliographic item</a:documentation>
|
1813
|
+
<element name="abstract">
|
1814
|
+
<ref name="LocalizedStringAttributes"/>
|
1815
|
+
<choice>
|
1816
|
+
<oneOrMore>
|
1817
|
+
<ref name="BasicBlockNoId">
|
1818
|
+
<a:documentation>Multiple blocks of content</a:documentation>
|
1819
|
+
</ref>
|
1820
|
+
</oneOrMore>
|
1821
|
+
<oneOrMore>
|
1822
|
+
<ref name="TextElement">
|
1823
|
+
<a:documentation>Single block of content</a:documentation>
|
1824
|
+
</ref>
|
1825
|
+
</oneOrMore>
|
1826
|
+
</choice>
|
1827
|
+
</element>
|
1828
|
+
</define>
|
1829
|
+
<define name="copyright">
|
1830
|
+
<a:documentation>The copyright status of a bibliographic item.</a:documentation>
|
1831
|
+
<element name="copyright">
|
1832
|
+
<ref name="from">
|
1833
|
+
<a:documentation>The copyright date of the bibliographic item</a:documentation>
|
1834
|
+
</ref>
|
1835
|
+
<optional>
|
1836
|
+
<ref name="to">
|
1837
|
+
<a:documentation>The date when the copyright of the bibliographic item expires</a:documentation>
|
1838
|
+
</ref>
|
1839
|
+
</optional>
|
1840
|
+
<oneOrMore>
|
1841
|
+
<ref name="owner">
|
1842
|
+
<a:documentation>The copyright owner for the bibliographic item.</a:documentation>
|
1843
|
+
</ref>
|
1844
|
+
</oneOrMore>
|
1845
|
+
<optional>
|
1846
|
+
<ref name="copyright_scope">
|
1847
|
+
<a:documentation>The extent of the bibliographic item, or contexts of use, for which this
|
1848
|
+
assertion of copyright applies. For example, this description may only apply
|
1849
|
+
to the preface of a book</a:documentation>
|
1850
|
+
</ref>
|
1851
|
+
</optional>
|
1852
|
+
</element>
|
1853
|
+
</define>
|
1854
|
+
<!-- TODO potentially should be locality | localityStack -->
|
1855
|
+
<define name="copyright_scope">
|
1856
|
+
<element name="scope">
|
1857
|
+
<text/>
|
1858
|
+
</element>
|
1859
|
+
</define>
|
1860
|
+
<define name="from">
|
1861
|
+
<element name="from">
|
1862
|
+
<data type="gYear"/>
|
1863
|
+
</element>
|
1864
|
+
</define>
|
1865
|
+
<define name="to">
|
1866
|
+
<element name="to">
|
1867
|
+
<data type="gYear"/>
|
1868
|
+
</element>
|
1869
|
+
</define>
|
1870
|
+
<define name="owner">
|
1871
|
+
<a:documentation>Copyright owner</a:documentation>
|
1872
|
+
<element name="owner">
|
1873
|
+
<ref name="ContributorInfo"/>
|
1874
|
+
</element>
|
1875
|
+
</define>
|
1876
|
+
<define name="DocRelationType">
|
1877
|
+
<a:documentation>Type of the relationship between a main document (described in `BibliographicItem`) and a target document
|
1878
|
+
Detailed in https://www.relaton.org/model/relations/</a:documentation>
|
1879
|
+
<choice>
|
1880
|
+
<value>includes</value>
|
1881
|
+
<value>includedIn</value>
|
1882
|
+
<value>hasPart</value>
|
1883
|
+
<value>partOf</value>
|
1884
|
+
<value>merges</value>
|
1885
|
+
<value>mergedInto</value>
|
1886
|
+
<value>splits</value>
|
1887
|
+
<value>splitInto</value>
|
1888
|
+
<value>instanceOf</value>
|
1889
|
+
<value>hasInstance</value>
|
1890
|
+
<value>exemplarOf</value>
|
1891
|
+
<value>hasExemplar</value>
|
1892
|
+
<value>manifestationOf</value>
|
1893
|
+
<value>hasManifestation</value>
|
1894
|
+
<value>reproductionOf</value>
|
1895
|
+
<value>hasReproduction</value>
|
1896
|
+
<value>reprintOf</value>
|
1897
|
+
<value>hasReprint</value>
|
1898
|
+
<value>expressionOf</value>
|
1899
|
+
<value>hasExpression</value>
|
1900
|
+
<value>translatedFrom</value>
|
1901
|
+
<value>hasTranslation</value>
|
1902
|
+
<value>arrangementOf</value>
|
1903
|
+
<value>hasArrangement</value>
|
1904
|
+
<value>abridgementOf</value>
|
1905
|
+
<value>hasAbridgement</value>
|
1906
|
+
<value>annotationOf</value>
|
1907
|
+
<value>hasAnnotation</value>
|
1908
|
+
<value>draftOf</value>
|
1909
|
+
<value>hasDraft</value>
|
1910
|
+
<value>preliminaryDraftOf</value>
|
1911
|
+
<value>hasPreliminaryDraft</value>
|
1912
|
+
<value>revisionDraftOf</value>
|
1913
|
+
<value>hasRevisionDraft</value>
|
1914
|
+
<value>editionOf</value>
|
1915
|
+
<value>hasEdition</value>
|
1916
|
+
<value>updates</value>
|
1917
|
+
<value>updatedBy</value>
|
1918
|
+
<value>derivedFrom</value>
|
1919
|
+
<value>derives</value>
|
1920
|
+
<value>describes</value>
|
1921
|
+
<value>describedBy</value>
|
1922
|
+
<value>catalogues</value>
|
1923
|
+
<value>cataloguedBy</value>
|
1924
|
+
<value>hasSuccessor</value>
|
1925
|
+
<value>successorOf</value>
|
1926
|
+
<value>adaptedFrom</value>
|
1927
|
+
<value>hasAdaptation</value>
|
1928
|
+
<value>adoptedFrom</value>
|
1929
|
+
<value>adoptedAs</value>
|
1930
|
+
<value>reviewOf</value>
|
1931
|
+
<value>hasReview</value>
|
1932
|
+
<value>commentaryOf</value>
|
1933
|
+
<value>hasCommentary</value>
|
1934
|
+
<value>related</value>
|
1935
|
+
<value>hasComplement</value>
|
1936
|
+
<value>complementOf</value>
|
1937
|
+
<value>obsoletes</value>
|
1938
|
+
<value>obsoletedBy</value>
|
1939
|
+
<value>cites</value>
|
1940
|
+
<value>isCitedIn</value>
|
1941
|
+
</choice>
|
1942
|
+
</define>
|
1943
|
+
<define name="docrelation">
|
1944
|
+
<a:documentation>Relation between a bibliographic item and another bibliographic item</a:documentation>
|
1945
|
+
<element name="relation">
|
1946
|
+
<attribute name="type">
|
1947
|
+
<a:documentation>The type of document relation described, using a controlled vocabulary</a:documentation>
|
1948
|
+
<ref name="DocRelationType"/>
|
1949
|
+
</attribute>
|
1950
|
+
<optional>
|
1951
|
+
<element name="description">
|
1952
|
+
<a:documentation>A more complete description of the type of document relation described</a:documentation>
|
1953
|
+
<ref name="LocalizedMarkedUpString"/>
|
1954
|
+
</element>
|
1955
|
+
</optional>
|
1956
|
+
<element name="bibitem">
|
1957
|
+
<a:documentation>The target bibliographic item to which this bibliographic item is described as related to</a:documentation>
|
1958
|
+
<ref name="ReducedBibliographicItem"/>
|
1959
|
+
</element>
|
1960
|
+
<choice>
|
1961
|
+
<a:documentation>The extent of the target bibliographic item which is related to this bibliographic item,
|
1962
|
+
provided that it is not the entire bibliographic item that is so related</a:documentation>
|
1963
|
+
<zeroOrMore>
|
1964
|
+
<ref name="locality"/>
|
1965
|
+
</zeroOrMore>
|
1966
|
+
<zeroOrMore>
|
1967
|
+
<ref name="localityStack"/>
|
1968
|
+
</zeroOrMore>
|
1969
|
+
</choice>
|
1970
|
+
<choice>
|
1971
|
+
<a:documentation>The extent of this bibliographic item which is related to the target bibliographic item,
|
1972
|
+
provided that it is not the entire bibliographic item that is so related</a:documentation>
|
1973
|
+
<zeroOrMore>
|
1974
|
+
<ref name="sourceLocality"/>
|
1975
|
+
</zeroOrMore>
|
1976
|
+
<zeroOrMore>
|
1977
|
+
<ref name="sourceLocalityStack"/>
|
1978
|
+
</zeroOrMore>
|
1979
|
+
</choice>
|
1980
|
+
</element>
|
1981
|
+
</define>
|
1982
|
+
<define name="version">
|
1983
|
+
<a:documentation>A version of the bibliographic item (within an edition). Can be used for drafts</a:documentation>
|
1984
|
+
<element name="version">
|
1985
|
+
<optional>
|
1986
|
+
<ref name="revision-date">
|
1987
|
+
<a:documentation>The date at which the current version of the bibliographic item was produced</a:documentation>
|
1988
|
+
</ref>
|
1989
|
+
</optional>
|
1990
|
+
<optional>
|
1991
|
+
<ref name="draft">
|
1992
|
+
<a:documentation>The identifier for the current draft of the bibliographic item</a:documentation>
|
1993
|
+
</ref>
|
1994
|
+
</optional>
|
1995
|
+
</element>
|
1996
|
+
</define>
|
1997
|
+
<define name="vedition">
|
1998
|
+
<element name="edition">
|
1999
|
+
<data type="int"/>
|
2000
|
+
</element>
|
2001
|
+
</define>
|
2002
|
+
<define name="revision-date">
|
2003
|
+
<element name="revision-date">
|
2004
|
+
<ref name="ISO8601Date"/>
|
2005
|
+
</element>
|
2006
|
+
</define>
|
2007
|
+
<define name="draft">
|
2008
|
+
<element name="draft">
|
2009
|
+
<text/>
|
2010
|
+
</element>
|
2011
|
+
</define>
|
2012
|
+
<!--
|
2013
|
+
bkeyword = element keyword {
|
2014
|
+
LocalizedString |
|
2015
|
+
(
|
2016
|
+
element vocab { LocalizedString },
|
2017
|
+
vocabid+
|
2018
|
+
) |
|
2019
|
+
(
|
2020
|
+
element taxon { LocalizedString }+,
|
2021
|
+
vocabid+
|
2022
|
+
)
|
2023
|
+
}
|
2024
|
+
-->
|
2025
|
+
<define name="bkeyword">
|
2026
|
+
<a:documentation>Keyword for a bibliographic item</a:documentation>
|
2027
|
+
<element name="keyword">
|
2028
|
+
<optional>
|
2029
|
+
<element name="vocab">
|
2030
|
+
<a:documentation>The keyword as a single, controlled or uncontrolled vocabulary item</a:documentation>
|
2031
|
+
<ref name="LocalizedString"/>
|
2032
|
+
</element>
|
2033
|
+
</optional>
|
2034
|
+
<oneOrMore>
|
2035
|
+
<element name="taxon">
|
2036
|
+
<a:documentation>The keywords as a hierarchical taxonomy. For example, the sequence of `taxon` elements
|
2037
|
+
`pump`, `centrifugal pump`, `line shaft pump` represents a taxonomic classification</a:documentation>
|
2038
|
+
<ref name="LocalizedString"/>
|
2039
|
+
</element>
|
2040
|
+
</oneOrMore>
|
2041
|
+
<zeroOrMore>
|
2042
|
+
<ref name="vocabid">
|
2043
|
+
<a:documentation>Identifiers for the keyword as a controlled vocabulary</a:documentation>
|
2044
|
+
</ref>
|
2045
|
+
</zeroOrMore>
|
2046
|
+
</element>
|
2047
|
+
</define>
|
2048
|
+
<define name="vocabid">
|
2049
|
+
<a:documentation>Item in a controlled vocabulary</a:documentation>
|
2050
|
+
<element name="vocabid">
|
2051
|
+
<attribute name="type">
|
2052
|
+
<a:documentation>A label for the controlled vocabulary</a:documentation>
|
2053
|
+
</attribute>
|
2054
|
+
<optional>
|
2055
|
+
<attribute name="uri">
|
2056
|
+
<a:documentation>A URI for the controlled vocabulary item</a:documentation>
|
2057
|
+
<data type="anyURI"/>
|
2058
|
+
</attribute>
|
2059
|
+
</optional>
|
2060
|
+
<optional>
|
2061
|
+
<element name="code">
|
2062
|
+
<a:documentation>The code or identifier for the controlled vocabulary item</a:documentation>
|
2063
|
+
<text/>
|
2064
|
+
</element>
|
2065
|
+
</optional>
|
2066
|
+
<optional>
|
2067
|
+
<element name="term">
|
2068
|
+
<a:documentation>The term itself for the controlled vocabulary item</a:documentation>
|
2069
|
+
<text/>
|
2070
|
+
</element>
|
2071
|
+
</optional>
|
2072
|
+
</element>
|
2073
|
+
</define>
|
2074
|
+
<!--
|
2075
|
+
Anycontents = mixed {
|
2076
|
+
https://github.com/relaxng/jing-trang/issues/211
|
2077
|
+
https://lists.oasis-open.org/archives/office/200808/msg00024.html
|
2078
|
+
https://lists.oasis-open.org/archives/office/200808/msg00099.html
|
2079
|
+
For this to work, we will actually strip any attributes in the Anycontents before
|
2080
|
+
passing it for validation. Horrible I know, but there are no good alternatives
|
2081
|
+
that also allow us to do grammar inheritance
|
2082
|
+
(attribute * { text } | Any)*
|
2083
|
+
Any*
|
2084
|
+
}
|
2085
|
+
-->
|
2086
|
+
<define name="AnyElement">
|
2087
|
+
<element>
|
2088
|
+
<anyName/>
|
2089
|
+
<oneOrMore>
|
2090
|
+
<choice>
|
2091
|
+
<text/>
|
2092
|
+
<ref name="AnyElement"/>
|
2093
|
+
</choice>
|
2094
|
+
</oneOrMore>
|
2095
|
+
</element>
|
2096
|
+
</define>
|
2097
|
+
</grammar>
|