marcman 1.0.0
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 +7 -0
- data/.gitignore +15 -0
- data/.rspec +3 -0
- data/.travis.yml +5 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +12 -0
- data/LICENSE.txt +21 -0
- data/README.md +118 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/exe/marcman +71 -0
- data/exe/marcquiz +185 -0
- data/lib/marcman/constants.rb +60 -0
- data/lib/marcman/errors.rb +4 -0
- data/lib/marcman/fields.rb +4621 -0
- data/lib/marcman/version.rb +3 -0
- data/lib/marcman.rb +71 -0
- data/marcman.gemspec +27 -0
- metadata +106 -0
@@ -0,0 +1,4621 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
module Marcman
|
3
|
+
MARC = {
|
4
|
+
"001"=>
|
5
|
+
{:definition=>"Control Number",
|
6
|
+
:repeat=>false,
|
7
|
+
:indicators=>nil,
|
8
|
+
:subfields=>nil,
|
9
|
+
:group=>"00X"},
|
10
|
+
"003"=>
|
11
|
+
{:definition=>"Control Number Identifier",
|
12
|
+
:repeat=>false,
|
13
|
+
:indicators=>nil,
|
14
|
+
:subfields=>nil,
|
15
|
+
:group=>"00X"},
|
16
|
+
"005"=>
|
17
|
+
{:definition=>"Date and Time of Latest Transaction",
|
18
|
+
:repeat=>false,
|
19
|
+
:indicators=>nil,
|
20
|
+
:subfields=>nil,
|
21
|
+
:group=>"00X"},
|
22
|
+
"006"=>
|
23
|
+
{:definition=>
|
24
|
+
"Fixed-Length Data Elements-Additional Material Characteristics",
|
25
|
+
:repeat=>true,
|
26
|
+
:indicators=>
|
27
|
+
[{:definition=>"Books", :values=>{}},
|
28
|
+
{:definition=>"Music", :values=>{}}],
|
29
|
+
:subfields=>nil,
|
30
|
+
:group=>"00X"},
|
31
|
+
"007"=>
|
32
|
+
{:definition=>"Physical Description Fixed Field-General Information",
|
33
|
+
:repeat=>true,
|
34
|
+
:indicators=>
|
35
|
+
[{:definition=>"Map (007/00=a)", :values=>{}},
|
36
|
+
{:definition=>"Motion picture (007/00=m)", :values=>{}}],
|
37
|
+
:subfields=>nil,
|
38
|
+
:group=>"00X"},
|
39
|
+
"008"=>
|
40
|
+
{:definition=>"Fixed-Length Data Elements-General Information",
|
41
|
+
:repeat=>false,
|
42
|
+
:indicators=>
|
43
|
+
[{:definition=>"All materials", :values=>{}},
|
44
|
+
{:definition=>"Music", :values=>{}}],
|
45
|
+
:subfields=>nil,
|
46
|
+
:group=>"00X"},
|
47
|
+
"010"=>
|
48
|
+
{:definition=>"Library of Congress Control Number",
|
49
|
+
:repeat=>false,
|
50
|
+
:indicators=>[:undefined, :undefined],
|
51
|
+
:subfields=>{
|
52
|
+
"$a"=>{:definition=>"LC control number", :repeat=>false},
|
53
|
+
"$b"=>{:definition=>"NUCMC control number"},
|
54
|
+
"$z"=>{:definition=>"Canceled/invalid LC control number"}},
|
55
|
+
:linkage=>false,
|
56
|
+
:group=>"01X-09X"},
|
57
|
+
"013"=>
|
58
|
+
{:definition=>"Patent Control Information",
|
59
|
+
:repeat=>true,
|
60
|
+
:indicators=>[:undefined, :undefined],
|
61
|
+
:subfields=>{
|
62
|
+
"$a"=>{:definition=>"Number", :repeat=>false},
|
63
|
+
"$b"=>{:definition=>"Country", :repeat=>false},
|
64
|
+
"$c"=>{:definition=>"Type of number", :repeat=>false},
|
65
|
+
"$d"=>{:definition=>"Date"},
|
66
|
+
"$e"=>{:definition=>"Status"},
|
67
|
+
"$f"=>{:definition=>"Party to document"}},
|
68
|
+
:group=>"01X-09X"},
|
69
|
+
"015"=>
|
70
|
+
{:definition=>"National Bibliography Number",
|
71
|
+
:repeat=>true,
|
72
|
+
:indicators=>[:undefined, :undefined],
|
73
|
+
:subfields=>
|
74
|
+
{"$a"=>{:definition=>"National bibliography number"},
|
75
|
+
"$q"=>{:definition=>"Qualifying information"},
|
76
|
+
"$z"=>
|
77
|
+
{:definition=>"Canceled/invalid national bibliography number",
|
78
|
+
:repeat=>true},
|
79
|
+
"$2"=>SOURCE},
|
80
|
+
:group=>"01X-09X"},
|
81
|
+
"016"=>
|
82
|
+
{:definition=>"National Bibliographic Agency Control Number",
|
83
|
+
:repeat=>true,
|
84
|
+
:indicators=>
|
85
|
+
[{:definition=>"National bibliographic agency",
|
86
|
+
:values=>{"#"=>"Library and Archives Canada",
|
87
|
+
"7"=>"Source specified in subfield $2"}},
|
88
|
+
:undefined],
|
89
|
+
:subfields=>{
|
90
|
+
"$a"=>{:definition=>"Record control number", :repeat=>false},
|
91
|
+
"$z"=>{:definition=>"Canceled/invalid control number"},
|
92
|
+
"$2"=>SOURCE},
|
93
|
+
:linkage=>false,
|
94
|
+
:group=>"01X-09X"},
|
95
|
+
"017"=>
|
96
|
+
{:definition=>"Copyright or Legal Deposit Number",
|
97
|
+
:repeat=>true,
|
98
|
+
:indicators=>
|
99
|
+
[:undefined,
|
100
|
+
{:definition=>"Display constant controller",
|
101
|
+
:values=>{"#"=>"Copyright or legal deposit number",
|
102
|
+
"8"=>"No display constant generated"}}],
|
103
|
+
:subfields=>{
|
104
|
+
"$a"=>{:definition=>"Copyright or legal deposit number"},
|
105
|
+
"$b"=>{:definition=>"Assigning agency", :repeat=>false},
|
106
|
+
"$d"=>{:definition=>"Date", :repeat=>false},
|
107
|
+
"$i"=>{:definition=>"Display text", :repeat=>false},
|
108
|
+
"$z"=>{
|
109
|
+
:definition=>"Canceled/invalid copyright or legal deposit number",
|
110
|
+
:repeat=>true},
|
111
|
+
"$2"=>SOURCE},
|
112
|
+
:group=>"01X-09X"},
|
113
|
+
"018"=>
|
114
|
+
{:definition=>"Copyright Article-Fee Code",
|
115
|
+
:repeat=>false,
|
116
|
+
:indicators=>[:undefined, :undefined],
|
117
|
+
:subfields=>{
|
118
|
+
"$a"=>{:definition=>"Copyright article-fee code", :repeat=>false}},
|
119
|
+
:group=>"01X-09X"},
|
120
|
+
"020"=>
|
121
|
+
{:definition=>"International Standard Book Number",
|
122
|
+
:repeat=>true,
|
123
|
+
:indicators=>[:undefined, :undefined],
|
124
|
+
:subfields=>{
|
125
|
+
"$a"=>{:definition=>"International Standard Book Number", :repeat=>false},
|
126
|
+
"$c"=>{:definition=>"Terms of availability", :repeat=>false},
|
127
|
+
"$q"=>{:definition=>"Qualifying information"},
|
128
|
+
"$z"=>{:definition=>"Canceled/invalid ISBN"}},
|
129
|
+
:group=>"01X-09X"},
|
130
|
+
"022"=>
|
131
|
+
{:definition=>"International Standard Serial Number",
|
132
|
+
:repeat=>true,
|
133
|
+
:indicators=>
|
134
|
+
[{:definition=>"Level of international interest",
|
135
|
+
:values=>{"#"=>"No level specified",
|
136
|
+
"0"=>"Continuing resource of international interest",
|
137
|
+
"1"=>"Continuing resource not of international interest"}},
|
138
|
+
:undefined],
|
139
|
+
:subfields=>{
|
140
|
+
"$a"=>{:definition=>"International Standard Serial Number",
|
141
|
+
:repeat=>false},
|
142
|
+
"$l"=>{:definition=>"ISSN-L", :repeat=>false},
|
143
|
+
"$m"=>{:definition=>"Canceled ISSN-L"},
|
144
|
+
"$y"=>{:definition=>"Incorrect ISSN"},
|
145
|
+
"$z"=>{:definition=>"Canceled ISSN"},
|
146
|
+
"$2"=>SOURCE},
|
147
|
+
:group=>"01X-09X"},
|
148
|
+
"024"=>
|
149
|
+
{:definition=>"Other Standard Identifier",
|
150
|
+
:repeat=>true,
|
151
|
+
:indicators=>
|
152
|
+
[{:definition=>"Type of standard number or code",
|
153
|
+
:values=>
|
154
|
+
{"0"=>"International Standard Recording Code",
|
155
|
+
"1"=>"Universal Product Code",
|
156
|
+
"2"=>"International Standard Music Number",
|
157
|
+
"3"=>"International Article Number",
|
158
|
+
"4"=>"Serial Item and Contribution Identifier",
|
159
|
+
"7"=>"Source specified in subfield $2",
|
160
|
+
"8"=>"Unspecified type of standard number or code"}},
|
161
|
+
{:definition=>"Difference indicator",
|
162
|
+
:values=>
|
163
|
+
{"#"=>"No information provided",
|
164
|
+
"0"=>"No difference",
|
165
|
+
"1"=>"Difference"}}],
|
166
|
+
:subfields=>
|
167
|
+
{"$a"=>{:definition=>"Standard number or code", :repeat=>false},
|
168
|
+
"$c"=>{:definition=>"Terms of availability", :repeat=>false},
|
169
|
+
"$d"=>
|
170
|
+
{:definition=>"Additional codes following the standard number or code",
|
171
|
+
:repeat=>false},
|
172
|
+
"$q"=>{:definition=>"Qualifying information"},
|
173
|
+
"$z"=>
|
174
|
+
{:definition=>"Canceled/invalid standard number or code"},
|
175
|
+
"$2"=>{:definition=>"Source of number or code", :repeat=>false}},
|
176
|
+
:group=>"01X-09X"},
|
177
|
+
"025"=>
|
178
|
+
{:definition=>"Overseas Acquisition Number",
|
179
|
+
:repeat=>true,
|
180
|
+
:indicators=>[:undefined, :undefined],
|
181
|
+
:subfields=>{
|
182
|
+
"$a"=>{:definition=>"Overseas acquisition number"}},
|
183
|
+
:linkage=>false,
|
184
|
+
:group=>"01X-09X"},
|
185
|
+
"026"=>
|
186
|
+
{:definition=>"Fingerprint Identifier",
|
187
|
+
:repeat=>true,
|
188
|
+
:indicators=>[:undefined, :undefined],
|
189
|
+
:subfields=>{
|
190
|
+
"$a"=>{:definition=>"First and second groups of characters",
|
191
|
+
:repeat=>false},
|
192
|
+
"$b"=>{:definition=>"Third and fourth groups of characters",
|
193
|
+
:repeat=>false},
|
194
|
+
"$c"=>{:definition=>"Date", :repeat=>false},
|
195
|
+
"$d"=>{:definition=>"Number of volume or part"},
|
196
|
+
"$e"=>{:definition=>"Unparsed fingerprint", :repeat=>false},
|
197
|
+
"$2"=>SOURCE,
|
198
|
+
"$5"=>{:definition=>"Institution to which field applies"}},
|
199
|
+
:group=>"01X-09X"},
|
200
|
+
"027"=>
|
201
|
+
{:definition=>"Standard Technical Report Number",
|
202
|
+
:repeat=>true,
|
203
|
+
:indicators=>[:undefined, :undefined],
|
204
|
+
:subfields=>
|
205
|
+
{"$a"=>{:definition=>"Standard technical report number", :repeat=>false},
|
206
|
+
"$q"=>{:definition=>"Qualifying information"},
|
207
|
+
"$z"=>{:definition=>"Canceled/invalid number"}},
|
208
|
+
:group=>"01X-09X"},
|
209
|
+
"028"=>
|
210
|
+
{:definition=>"Publisher or Distributor Number",
|
211
|
+
:repeat=>true,
|
212
|
+
:indicators=>
|
213
|
+
[{:definition=>"Type of number",
|
214
|
+
:values=>
|
215
|
+
{"0"=>"Issue number",
|
216
|
+
"1"=>"Matrix number",
|
217
|
+
"2"=>"Plate number",
|
218
|
+
"3"=>"Other music publisher number",
|
219
|
+
"4"=>"Video recording publisher number",
|
220
|
+
"5"=>"Other publisher number",
|
221
|
+
"6"=>"Distributor number"}},
|
222
|
+
{:definition=>"Note/added entry controller",
|
223
|
+
:values=>
|
224
|
+
{"0"=>"No note, no added entry",
|
225
|
+
"1"=>"Note, added entry",
|
226
|
+
"2"=>"Note, no added entry",
|
227
|
+
"3"=>"No note, added entry"}}],
|
228
|
+
:subfields=>
|
229
|
+
{"$a"=>{:definition=>"Publisher or distributor number", :repeat=>false},
|
230
|
+
"$b"=>SOURCE,
|
231
|
+
"$q"=>{:definition=>"Qualifying information"}},
|
232
|
+
:group=>"01X-09X"},
|
233
|
+
"030"=>
|
234
|
+
{:definition=>"CODEN Designation",
|
235
|
+
:repeat=>true,
|
236
|
+
:indicators=>[:undefined, :undefined],
|
237
|
+
:subfields=>{
|
238
|
+
"$a"=>{:definition=>"CODEN", :repeat=>false},
|
239
|
+
"$z"=>{:definition=>"Canceled/invalid CODEN"}},
|
240
|
+
:group=>"01X-09X"},
|
241
|
+
"031"=>
|
242
|
+
{:definition=>"Musical Incipits Information",
|
243
|
+
:repeat=>true,
|
244
|
+
:indicators=>[:undefined, :undefined],
|
245
|
+
:subfields=>{
|
246
|
+
"$a"=>{:definition=>"Number of work", :repeat=>false},
|
247
|
+
"$b"=>{:definition=>"Number of movement", :repeat=>false},
|
248
|
+
"$c"=>{:definition=>"Number of excerpt", :repeat=>false},
|
249
|
+
"$d"=>{:definition=>"Caption or heading"},
|
250
|
+
"$e"=>{:definition=>"Role", :repeat=>false},
|
251
|
+
"$g"=>{:definition=>"Clef", :repeat=>false},
|
252
|
+
"$m"=>{:definition=>"Voice/instrument", :repeat=>false},
|
253
|
+
"$n"=>{:definition=>"Key signature", :repeat=>false},
|
254
|
+
"$o"=>{:definition=>"Time signature", :repeat=>false},
|
255
|
+
"$p"=>{:definition=>"Musical notation", :repeat=>false},
|
256
|
+
"$q"=>{:definition=>"General note"},
|
257
|
+
"$r"=>{:definition=>"Key or mode", :repeat=>false},
|
258
|
+
"$s"=>{:definition=>"Coded validity note"},
|
259
|
+
"$t"=>{:definition=>"Text incipit"},
|
260
|
+
"$u"=>{:definition=>"Uniform Resource Identifier"},
|
261
|
+
"$y"=>{:definition=>"Link text"},
|
262
|
+
"$z"=>PUBNOTE,
|
263
|
+
"$2"=>{:definition=>"System code", :repeat=>false}},
|
264
|
+
:group=>"01X-09X"},
|
265
|
+
"032"=>
|
266
|
+
{:definition=>"Postal Registration Number",
|
267
|
+
:repeat=>true,
|
268
|
+
:indicators=>[:undefined, :undefined],
|
269
|
+
:subfields=>{
|
270
|
+
"$a"=>{:definition=>"Postal registration number", :repeat=>false},
|
271
|
+
"$b"=>{:definition=>"Source agency assigning number", :repeat=>false}},
|
272
|
+
:group=>"01X-09X"},
|
273
|
+
"033"=>
|
274
|
+
{:definition=>"Date/Time and Place of an Event",
|
275
|
+
:repeat=>true,
|
276
|
+
:indicators=>
|
277
|
+
[{:definition=>"Type of date in subfield $a",
|
278
|
+
:values=>
|
279
|
+
{"#"=>"No date information",
|
280
|
+
"0"=>"Single date",
|
281
|
+
"1"=>"Multiple single dates",
|
282
|
+
"2"=>"Range of dates"}},
|
283
|
+
{:definition=>"Type of event",
|
284
|
+
:values=>
|
285
|
+
{"#"=>"No information provided",
|
286
|
+
"0"=>"Capture",
|
287
|
+
"1"=>"Broadcast",
|
288
|
+
"2"=>"Finding"}}],
|
289
|
+
:subfields=>
|
290
|
+
{"$a"=>{:definition=>"Formatted date/time"},
|
291
|
+
"$b"=>{:definition=>"Geographic classification area code"},
|
292
|
+
"$c"=>
|
293
|
+
{:definition=>"Geographic classification subarea code"},
|
294
|
+
"$p"=>{:definition=>"Place of event"},
|
295
|
+
"$0"=>ARECNUM,
|
296
|
+
"$1"=>RWURI,
|
297
|
+
"$2"=>{:definition=>"Source of term"},
|
298
|
+
"$3"=>MATSPEC},
|
299
|
+
:group=>"01X-09X"},
|
300
|
+
"034"=>
|
301
|
+
{:definition=>"Coded Cartographic Mathematical Data",
|
302
|
+
:repeat=>true,
|
303
|
+
:indicators=>
|
304
|
+
[{:definition=>"Type of scale",
|
305
|
+
:values=>
|
306
|
+
{"0"=>"Scale indeterminable/No scale recorded",
|
307
|
+
"1"=>"Single scale",
|
308
|
+
"3"=>"Range of scales"}},
|
309
|
+
{:definition=>"Type of ring",
|
310
|
+
:values=>
|
311
|
+
{"#"=>"Not applicable", "0"=>"Outer ring", "1"=>"Exclusion ring"}}],
|
312
|
+
:subfields=>
|
313
|
+
{"$a"=>{:definition=>"Category of scale", :repeat=>false},
|
314
|
+
"$b"=>
|
315
|
+
{:definition=>"Constant ratio linear horizontal scale"},
|
316
|
+
"$c"=>
|
317
|
+
{:definition=>"Constant ratio linear vertical scale"},
|
318
|
+
"$d"=>
|
319
|
+
{:definition=>"Coordinates - westernmost longitude", :repeat=>false},
|
320
|
+
"$e"=>
|
321
|
+
{:definition=>"Coordinates - easternmost longitude", :repeat=>false},
|
322
|
+
"$f"=>
|
323
|
+
{:definition=>"Coordinates - northernmost latitude", :repeat=>false},
|
324
|
+
"$g"=>
|
325
|
+
{:definition=>"Coordinates - southernmost latitude", :repeat=>false},
|
326
|
+
"$h"=>{:definition=>"Angular scale"},
|
327
|
+
"$j"=>{:definition=>"Declination - northern limit", :repeat=>false},
|
328
|
+
"$k"=>{:definition=>"Declination - southern limit", :repeat=>false},
|
329
|
+
"$m"=>{:definition=>"Right ascension - eastern limit", :repeat=>false},
|
330
|
+
"$n"=>{:definition=>"Right ascension - western limit", :repeat=>false},
|
331
|
+
"$p"=>{:definition=>"Equinox", :repeat=>false},
|
332
|
+
"$r"=>{:definition=>"Distance from earth", :repeat=>false},
|
333
|
+
"$s"=>{:definition=>"G-ring latitude"},
|
334
|
+
"$t"=>{:definition=>"G-ring longitude"},
|
335
|
+
"$x"=>{:definition=>"Beginning date", :repeat=>false},
|
336
|
+
"$y"=>{:definition=>"Ending date", :repeat=>false},
|
337
|
+
"$z"=>{:definition=>"Name of extraterrestrial body", :repeat=>false},
|
338
|
+
"$0"=>ARECNUM,
|
339
|
+
"$1"=>RWURI,
|
340
|
+
"$2"=>SOURCE,
|
341
|
+
"$3"=>MATSPEC},
|
342
|
+
:group=>"01X-09X"},
|
343
|
+
"035"=>
|
344
|
+
{:definition=>"System Control Number",
|
345
|
+
:repeat=>true,
|
346
|
+
:indicators=>[:undefined, :undefined],
|
347
|
+
:subfields=>{
|
348
|
+
"$a"=>{:definition=>"System control number", :repeat=>false},
|
349
|
+
"$z"=>{:definition=>"Canceled/invalid control number"}},
|
350
|
+
:group=>"01X-09X"},
|
351
|
+
"036"=>
|
352
|
+
{:definition=>"Original Study Number for Computer Data Files",
|
353
|
+
:repeat=>false,
|
354
|
+
:indicators=>[:undefined, :undefined],
|
355
|
+
:subfields=>{
|
356
|
+
"$a"=>{:definition=>"Original study number", :repeat=>false},
|
357
|
+
"$b"=>{:definition=>"Source agency assigning number", :repeat=>false}},
|
358
|
+
:group=>"01X-09X"},
|
359
|
+
"037"=>
|
360
|
+
{:definition=>"Source of Acquisition",
|
361
|
+
:repeat=>true,
|
362
|
+
:indicators=>
|
363
|
+
[{:definition=>"Source of acquisition sequence",
|
364
|
+
:values=>
|
365
|
+
{"#"=>"Not applicable/No information provided/Earliest",
|
366
|
+
"2"=>"Intervening",
|
367
|
+
"3"=>"Current/Latest"}},
|
368
|
+
:undefined],
|
369
|
+
:subfields=>
|
370
|
+
{"$a"=>{:definition=>"Stock number", :repeat=>false},
|
371
|
+
"$b"=>{:definition=>"Source of stock number/acquisition", :repeat=>false},
|
372
|
+
"$c"=>{:definition=>"Terms of availability"},
|
373
|
+
"$f"=>{:definition=>"Form of issue"},
|
374
|
+
"$g"=>{:definition=>"Additional format characteristics"},
|
375
|
+
"$n"=>NOTER,
|
376
|
+
"$3"=>MATSPEC,
|
377
|
+
"$5"=>{:definition=>"Institution to which field applies"}},
|
378
|
+
:group=>"01X-09X"},
|
379
|
+
"038"=>
|
380
|
+
{:definition=>"Record Content Licensor",
|
381
|
+
:repeat=>false,
|
382
|
+
:indicators=>[:undefined, :undefined],
|
383
|
+
:subfields=>{
|
384
|
+
"$a"=>{:definition=>"Record content licensor", :repeat=>false}},
|
385
|
+
:group=>"01X-09X"},
|
386
|
+
"040"=>
|
387
|
+
{:definition=>"Cataloging Source",
|
388
|
+
:repeat=>false,
|
389
|
+
:indicators=>[:undefined, :undefined],
|
390
|
+
:subfields=>{
|
391
|
+
"$a"=>{:definition=>"Original cataloging agency", :repeat=>false},
|
392
|
+
"$b"=>{:definition=>"Language of cataloging", :repeat=>false},
|
393
|
+
"$c"=>{:definition=>"Transcribing agency", :repeat=>false},
|
394
|
+
"$d"=>{:definition=>"Modifying agency"},
|
395
|
+
"$e"=>{:definition=>"Description conventions"}},
|
396
|
+
:group=>"01X-09X"},
|
397
|
+
"041"=>
|
398
|
+
{:definition=>"Language Code",
|
399
|
+
:repeat=>true,
|
400
|
+
:indicators=>
|
401
|
+
[{:definition=>"Translation indication",
|
402
|
+
:values=>
|
403
|
+
{"#"=>"No information provided",
|
404
|
+
"0"=>"Item not a translation/does not include a",
|
405
|
+
"1"=>"Item is or includes a translation"}},
|
406
|
+
{:definition=>"Source of code",
|
407
|
+
:values=>
|
408
|
+
{"#"=>"MARC language code", "7"=>"Source specified in subfield $2"}}],
|
409
|
+
:subfields=>
|
410
|
+
{"$b"=>
|
411
|
+
{:definition=>"Language code of summary or abstract"},
|
412
|
+
"$d"=>
|
413
|
+
{:definition=>"Language code of sung or spoken text"},
|
414
|
+
"$e"=>{:definition=>"Language code of librettos"},
|
415
|
+
"$f"=>{:definition=>"Language code of table of contents"},
|
416
|
+
"$h"=>{:definition=>"Language code of original"},
|
417
|
+
"$j"=>
|
418
|
+
{:definition=>"Language code of subtitles or captions"},
|
419
|
+
"$k"=>
|
420
|
+
{:definition=>"Language code of intermediate translations",
|
421
|
+
:repeat=>true},
|
422
|
+
"$m"=>
|
423
|
+
{:definition=>
|
424
|
+
"Language code of original accompanying materials other than librettos",
|
425
|
+
:repeat=>true},
|
426
|
+
"$n"=>{:definition=>"Language code of original libretto"},
|
427
|
+
"$2"=>{:definition=>"Source of code", :repeat=>false}},
|
428
|
+
:group=>"01X-09X"},
|
429
|
+
"042"=>
|
430
|
+
{:definition=>"Authentication Code",
|
431
|
+
:repeat=>false,
|
432
|
+
:indicators=>[:undefined, :undefined],
|
433
|
+
:subfields=>{"$a"=>{:definition=>"Authentication code"}},
|
434
|
+
:linkage=>false,
|
435
|
+
:fieldlink=>false,
|
436
|
+
:group=>"01X-09X"},
|
437
|
+
"043"=>
|
438
|
+
{:definition=>"Geographic Area Code",
|
439
|
+
:repeat=>false,
|
440
|
+
:indicators=>[:undefined, :undefined],
|
441
|
+
:subfields=>
|
442
|
+
{"$a"=>{:definition=>"Geographic area code"},
|
443
|
+
"$b"=>{:definition=>"Local GAC code"},
|
444
|
+
"$c"=>{:definition=>"ISO code"},
|
445
|
+
"$0"=>ARECNUM,
|
446
|
+
"$1"=>RWURI,
|
447
|
+
"$2"=>{:definition=>"Source of local code"}},
|
448
|
+
:group=>"01X-09X"},
|
449
|
+
"044"=>
|
450
|
+
{:definition=>"Country of Publishing/Producing Entity Code",
|
451
|
+
:repeat=>false,
|
452
|
+
:indicators=>[:undefined, :undefined],
|
453
|
+
:subfields=>{
|
454
|
+
"$a"=>{:definition=>"MARC country code"},
|
455
|
+
"$b"=>{:definition=>"Local subentity code"},
|
456
|
+
"$c"=>{:definition=>"ISO country code"},
|
457
|
+
"$2"=>{:definition=>"Source of local subentity code"}},
|
458
|
+
:group=>"01X-09X"},
|
459
|
+
"045"=>
|
460
|
+
{:definition=>"Time Period of Content",
|
461
|
+
:repeat=>false,
|
462
|
+
:indicators=>
|
463
|
+
[{:definition=>"Type of time period in subfield $b or $c",
|
464
|
+
:values=>{"0"=>"Single date/time",
|
465
|
+
"1"=>"Multiple single dates/times",
|
466
|
+
"2"=>"Range of dates/times"}},
|
467
|
+
:undefined],
|
468
|
+
:subfields=>{
|
469
|
+
"$a"=>{:definition=>"Time period code"},
|
470
|
+
"$b"=>{:definition=>"Formatted 9999 B.C. through C.E. time period",
|
471
|
+
:repeat=>true},
|
472
|
+
"$c"=>{:definition=>"Formatted pre-9999 B.C. time period"}},
|
473
|
+
:group=>"01X-09X"},
|
474
|
+
"046"=>
|
475
|
+
{:definition=>"Special Coded Dates",
|
476
|
+
:repeat=>true,
|
477
|
+
:indicators=>[:undefined, :undefined],
|
478
|
+
:subfields=>
|
479
|
+
{"$a"=>{:definition=>"Type of date code", :repeat=>false},
|
480
|
+
"$b"=>{:definition=>"Date 1, B.C.E. date", :repeat=>false},
|
481
|
+
"$c"=>{:definition=>"Date 1, C.E. date", :repeat=>false},
|
482
|
+
"$d"=>{:definition=>"Date 2, B.C.E. date", :repeat=>false},
|
483
|
+
"$e"=>{:definition=>"Date 2, C.E. date", :repeat=>false},
|
484
|
+
"$j"=>{:definition=>"Date resource modified", :repeat=>false},
|
485
|
+
"$k"=>{:definition=>"Beginning or single date created", :repeat=>false},
|
486
|
+
"$l"=>{:definition=>"Ending date created", :repeat=>false},
|
487
|
+
"$m"=>{:definition=>"Beginning of date valid", :repeat=>false},
|
488
|
+
"$n"=>{:definition=>"End of date valid", :repeat=>false},
|
489
|
+
"$o"=>
|
490
|
+
{:definition=>"Single or starting date for aggregated content",
|
491
|
+
:repeat=>false},
|
492
|
+
"$p"=>{:definition=>"Ending date for aggregated content", :repeat=>false},
|
493
|
+
"$2"=>{:definition=>"Source of date", :repeat=>false}},
|
494
|
+
:linkage=>true,
|
495
|
+
:group=>"01X-09X"},
|
496
|
+
"047"=>
|
497
|
+
{:definition=>"Form of Musical Composition Code",
|
498
|
+
:repeat=>true,
|
499
|
+
:indicators=>[:undefined,
|
500
|
+
{:definition=>"Source of code",
|
501
|
+
:values=>{"#"=>"MARC musical composition code",
|
502
|
+
"7"=>"Source specified in subfield $2"}}],
|
503
|
+
:subfields=>{
|
504
|
+
"$a"=>{:definition=>"Form of musical composition code"},
|
505
|
+
"$2"=>{:definition=>"Source of code", :repeat=>false}},
|
506
|
+
:linkage=>false,
|
507
|
+
:group=>"01X-09X"},
|
508
|
+
"048"=>
|
509
|
+
{:definition=>"Number of Musical Instruments or Voices Code",
|
510
|
+
:repeat=>true,
|
511
|
+
:indicators=>[:undefined, {
|
512
|
+
:definition=>"Source of code",
|
513
|
+
:values=>{"#"=>"MARC code",
|
514
|
+
"7"=>"Source specified in subfield $2"}}],
|
515
|
+
:subfields=>{
|
516
|
+
"$a"=>{:definition=>"Performer or ensemble"},
|
517
|
+
"$b"=>{:definition=>"Soloist"},
|
518
|
+
"$2"=>{:definition=>"Source of code", :repeat=>false}},
|
519
|
+
:linkage=>false,
|
520
|
+
:group=>"01X-09X"},
|
521
|
+
"050"=>
|
522
|
+
{:definition=>"Library of Congress Call Number",
|
523
|
+
:repeat=>true,
|
524
|
+
:indicators=>
|
525
|
+
[{:definition=>"Existence in LC collection",
|
526
|
+
:values=>
|
527
|
+
{"#"=>"No information provided",
|
528
|
+
"0"=>"Item is in LC",
|
529
|
+
"1"=>"Item is not in LC"}},
|
530
|
+
{:definition=>"Source of call number",
|
531
|
+
:values=>
|
532
|
+
{"0"=>"Assigned by LC", "4"=>"Assigned by agency other than LC"}}],
|
533
|
+
:subfields=>
|
534
|
+
{"$a"=>{:definition=>"Classification number"},
|
535
|
+
"$b"=>ITEMNUM,
|
536
|
+
"$0"=>ARECNUM,
|
537
|
+
"$1"=>RWURI,
|
538
|
+
"$3"=>MATSPEC},
|
539
|
+
:linkage=>true,
|
540
|
+
:group=>"01X-09X"},
|
541
|
+
"051"=>
|
542
|
+
{:definition=>"Library of Congress Copy, Issue, Offprint Statement",
|
543
|
+
:repeat=>true,
|
544
|
+
:indicators=>[:undefined, :undefined],
|
545
|
+
:subfields=>{
|
546
|
+
"$a"=>{:definition=>"Classification number", :repeat=>false},
|
547
|
+
"$b"=>ITEMNUM,
|
548
|
+
"$c"=>{:definition=>"Copy information", :repeat=>false}},
|
549
|
+
:linkage=>false,
|
550
|
+
:group=>"01X-09X"},
|
551
|
+
"052"=>
|
552
|
+
{:definition=>"Geographic Classification",
|
553
|
+
:repeat=>true,
|
554
|
+
:indicators=>
|
555
|
+
[{:definition=>"Code source",
|
556
|
+
:values=>
|
557
|
+
{"#"=>"Library of Congress Classification",
|
558
|
+
"1"=>"U.S. Dept. of Defense Classification",
|
559
|
+
"7"=>"Source specified in subfield $2"}},
|
560
|
+
:undefined],
|
561
|
+
:subfields=>
|
562
|
+
{"$a"=>
|
563
|
+
{:definition=>"Geographic classification area code", :repeat=>false},
|
564
|
+
"$b"=>
|
565
|
+
{:definition=>"Geographic classification subarea code"},
|
566
|
+
"$d"=>{:definition=>"Populated place name"},
|
567
|
+
"$0"=>ARECNUM,
|
568
|
+
"$1"=>RWURI,
|
569
|
+
"$2"=>{:definition=>"Code source", :repeat=>false}},
|
570
|
+
:linkage=>true,
|
571
|
+
:group=>"01X-09X"},
|
572
|
+
"055"=>
|
573
|
+
{:definition=>"Classification Numbers Assigned in Canada",
|
574
|
+
:repeat=>true,
|
575
|
+
:indicators=>
|
576
|
+
[{:definition=>"Existence in LAC collection",
|
577
|
+
:values=>
|
578
|
+
{"#"=>"Information not provided",
|
579
|
+
"0"=>"Work held by LAC",
|
580
|
+
"1"=>"Work not held by LAC"}},
|
581
|
+
{:definition=>"Type, completeness, source of class/call number",
|
582
|
+
:values=>
|
583
|
+
{"0"=>"LC-based call number assigned by LAC",
|
584
|
+
"1"=>"Complete LC class number assigned by LAC",
|
585
|
+
"2"=>"Incomplete LC class number assigned by LAC",
|
586
|
+
"3"=>"LC-based call number assigned by the contributing library",
|
587
|
+
"4"=>"Complete LC class number assigned by the contributing library",
|
588
|
+
"5"=>"Incomplete LC class number assigned by the contributing library",
|
589
|
+
"6"=>"Other call number assigned by LAC",
|
590
|
+
"7"=>"Other class number assigned by LAC",
|
591
|
+
"8"=>"Other call number assigned by the contributing library",
|
592
|
+
"9"=>"Other class number assigned by the contributing library"}}],
|
593
|
+
:subfields=>
|
594
|
+
{"$a"=>{:definition=>"Classification number", :repeat=>false},
|
595
|
+
"$b"=>ITEMNUM,
|
596
|
+
"$0"=>ARECNUM,
|
597
|
+
"$1"=>RWURI,
|
598
|
+
"$2"=>{:definition=>"Source of call/class number", :repeat=>false}},
|
599
|
+
:linkage=>true,
|
600
|
+
:group=>"01X-09X"},
|
601
|
+
"060"=>
|
602
|
+
{:definition=>"National Library of Medicine Call Number",
|
603
|
+
:repeat=>true,
|
604
|
+
:indicators=>
|
605
|
+
[{:definition=>"Existence in NLM collection",
|
606
|
+
:values=>
|
607
|
+
{"#"=>"No information provided",
|
608
|
+
"0"=>"Item is in NLM",
|
609
|
+
"1"=>"Item is not in NLM"}},
|
610
|
+
{:definition=>"Source of call number",
|
611
|
+
:values=>
|
612
|
+
{"0"=>"Assigned by NLM", "4"=>"Assigned by agency other than NLM"}}],
|
613
|
+
:subfields=>
|
614
|
+
{"$a"=>{:definition=>"Classification number"},
|
615
|
+
"$b"=>ITEMNUM,
|
616
|
+
"$0"=>ARECNUM,
|
617
|
+
"$1"=>RWURI},
|
618
|
+
:linkage=>false,
|
619
|
+
:group=>"01X-09X"},
|
620
|
+
"061"=>
|
621
|
+
{:definition=>"National Library of Medicine Copy Statement",
|
622
|
+
:repeat=>true,
|
623
|
+
:indicators=>[:undefined, :undefined],
|
624
|
+
:subfields=>{
|
625
|
+
"$a"=>{:definition=>"Classification number"},
|
626
|
+
"$b"=>ITEMNUM,
|
627
|
+
"$c"=>{:definition=>"Copy information", :repeat=>false}},
|
628
|
+
:linkage => false,
|
629
|
+
:group=>"01X-09X"},
|
630
|
+
"066"=>
|
631
|
+
{:definition=>"Character Sets Present",
|
632
|
+
:repeat=>false,
|
633
|
+
:indicators=>[:undefined, :undefined],
|
634
|
+
:subfields=>{
|
635
|
+
"$a"=>{:definition=>"Primary G0 character set", :repeat=>false},
|
636
|
+
"$b"=>{:definition=>"Primary G1 character set", :repeat=>false},
|
637
|
+
"$c"=>{:definition=>"Alternate G0 or G1 character set"}},
|
638
|
+
:linkage=>false,
|
639
|
+
:fieldlink=>false,
|
640
|
+
:group=>"01X-09X"},
|
641
|
+
"070"=>
|
642
|
+
{:definition=>"National Agricultural Library Call Number",
|
643
|
+
:repeat=>true,
|
644
|
+
:indicators=>
|
645
|
+
[{:definition=>"Existence in NAL collection",
|
646
|
+
:values=>
|
647
|
+
{"#"=>"No information provided",
|
648
|
+
"0"=>"Item is in NAL",
|
649
|
+
"1"=>"Item is not in NAL"}},
|
650
|
+
:undefined],
|
651
|
+
:subfields=>
|
652
|
+
{"$a"=>{:definition=>"Classification number"},
|
653
|
+
"$b"=>ITEMNUM,
|
654
|
+
"$0"=>ARECNUM,
|
655
|
+
"$1"=>RWURI},
|
656
|
+
:linkage=>false,
|
657
|
+
:group=>"01X-09X"},
|
658
|
+
"071"=>
|
659
|
+
{:definition=>"National Agricultural Library Copy Statement",
|
660
|
+
:repeat=>true,
|
661
|
+
:indicators=>[:undefined, :undefined],
|
662
|
+
:subfields=>{
|
663
|
+
"$a"=>{:definition=>"Classification number"},
|
664
|
+
"$b"=>ITEMNUM,
|
665
|
+
"$c"=>{:definition=>"Copy information"}},
|
666
|
+
:linkage=>false,
|
667
|
+
:group=>"01X-09X"},
|
668
|
+
"072"=>
|
669
|
+
{:definition=>"Subject Category Code",
|
670
|
+
:repeat=>true,
|
671
|
+
:indicators=>[:undefined,
|
672
|
+
{:definition=>"Code source",
|
673
|
+
:values=>{"0"=>"NAL subject category code list",
|
674
|
+
"7"=>"Source specified in subfield $2"}}],
|
675
|
+
:subfields=>{
|
676
|
+
"$a"=>{:definition=>"Subject category code", :repeat=>false},
|
677
|
+
"$x"=>{:definition=>"Subject category code subdivision"},
|
678
|
+
"$2"=>SOURCE},
|
679
|
+
:group=>"01X-09X"},
|
680
|
+
"074"=>
|
681
|
+
{:definition=>"GPO Item Number",
|
682
|
+
:repeat=>true,
|
683
|
+
:indicators=>[:undefined, :undefined],
|
684
|
+
:subfields=>{
|
685
|
+
"$a"=>{:definition=>"GPO item number", :repeat=>false},
|
686
|
+
"$z"=>{:definition=>"Canceled/invalid GPO item number"}},
|
687
|
+
:linkage=>false,
|
688
|
+
:group=>"01X-09X"},
|
689
|
+
"080"=>
|
690
|
+
{:definition=>"Universal Decimal Classification Number",
|
691
|
+
:repeat=>true,
|
692
|
+
:indicators=>
|
693
|
+
[{:definition=>"Type of edition",
|
694
|
+
:values=>{"#"=>"No information provided", "0"=>"Full", "1"=>"Abridged"}},
|
695
|
+
:undefined],
|
696
|
+
:subfields=>
|
697
|
+
{"$a"=>
|
698
|
+
{:definition=>"Universal Decimal Classification number", :repeat=>false},
|
699
|
+
"$b"=>ITEMNUM,
|
700
|
+
"$x"=>{:definition=>"Common auxiliary subdivision"},
|
701
|
+
"$0"=>ARECNUM,
|
702
|
+
"$1"=>RWURI,
|
703
|
+
"$2"=>{:definition=>"Edition identifier", :repeat=>false}},
|
704
|
+
:linkage=>true,
|
705
|
+
:group=>"01X-09X"},
|
706
|
+
"082"=>
|
707
|
+
{:definition=>"Dewey Decimal Classification Number",
|
708
|
+
:repeat=>true,
|
709
|
+
:indicators=>
|
710
|
+
[{:definition=>"Type of edition",
|
711
|
+
:values=>{"0"=>"Full edition", "1"=>"Abridged edition"}},
|
712
|
+
{:definition=>"Source of classification number",
|
713
|
+
:values=>
|
714
|
+
{"#"=>"No information provided",
|
715
|
+
"0"=>"Assigned by LC",
|
716
|
+
"4"=>"Assigned by agency other than LC"}}],
|
717
|
+
:subfields=>
|
718
|
+
{"$a"=>{:definition=>"Classification number"},
|
719
|
+
"$b"=>ITEMNUM,
|
720
|
+
"$m"=>{:definition=>"Standard or optional designation", :repeat=>false},
|
721
|
+
"$q"=>{:definition=>"Assigning agency", :repeat=>false},
|
722
|
+
"$2"=>{:definition=>"Edition number", :repeat=>false}},
|
723
|
+
:linkage=>true,
|
724
|
+
:group=>"01X-09X"},
|
725
|
+
"083"=>
|
726
|
+
{:definition=>"Additional Dewey Decimal Classification Number",
|
727
|
+
:repeat=>true,
|
728
|
+
:indicators=>
|
729
|
+
[{:definition=>"Type of edition",
|
730
|
+
:values=>{"0"=>"Full edition", "1"=>"Abridged edition"}},
|
731
|
+
:undefined],
|
732
|
+
:subfields=>
|
733
|
+
{"$a"=>{:definition=>"Classification number"},
|
734
|
+
"$c"=>
|
735
|
+
{:definition=>"Classification number--Ending number of span",
|
736
|
+
:repeat=>true},
|
737
|
+
"$m"=>{:definition=>"Standard or optional designation", :repeat=>false},
|
738
|
+
"$q"=>{:definition=>"Assigning agency", :repeat=>false},
|
739
|
+
"$y"=>{
|
740
|
+
:definition=>"Table sequence number for internal subarrangement or add table",
|
741
|
+
:repeat=>true},
|
742
|
+
"$z"=>{:definition=>"Table identification"},
|
743
|
+
"$2"=>{:definition=>"Edition number", :repeat=>false}},
|
744
|
+
:linkage=>true,
|
745
|
+
:group=>"01X-09X"},
|
746
|
+
"084"=>
|
747
|
+
{:definition=>"Other Classification Number",
|
748
|
+
:repeat=>true,
|
749
|
+
:indicators=>[:undefined, :undefined],
|
750
|
+
:subfields=>
|
751
|
+
{"$a"=>{:definition=>"Classification number"},
|
752
|
+
"$b"=>ITEMNUM,
|
753
|
+
"$q"=>{:definition=>"Assigning agency", :repeat=>false},
|
754
|
+
"$0"=>ARECNUM,
|
755
|
+
"$1"=>RWURI,
|
756
|
+
"$2"=>{:definition=>"Number source", :repeat=>false}},
|
757
|
+
:linkage=>true,
|
758
|
+
:group=>"01X-09X"},
|
759
|
+
"085"=>
|
760
|
+
{:definition=>"Synthesized Classification Number Components",
|
761
|
+
:repeat=>true,
|
762
|
+
:indicators=>[:undefined, :undefined],
|
763
|
+
:subfields=>{
|
764
|
+
"$a"=>{
|
765
|
+
:definition=>"Number where instructions are found-single number or beginning number of span",
|
766
|
+
:repeat=>true},
|
767
|
+
"$b"=>{:definition=>"Base number"},
|
768
|
+
"$c"=>
|
769
|
+
{:definition=>"Classification number-ending number of span",
|
770
|
+
:repeat=>true},
|
771
|
+
"$f"=>{:definition=>"Facet designator"},
|
772
|
+
"$r"=>{:definition=>"Root number"},
|
773
|
+
"$s"=>{
|
774
|
+
:definition=>"Digits added from classification number in schedule or external table",
|
775
|
+
:repeat=>true},
|
776
|
+
"$t"=>{
|
777
|
+
:definition=>"Digits added from internal subarrangement or add table",
|
778
|
+
:repeat=>true},
|
779
|
+
"$u"=>{:definition=>"Number being analyzed"},
|
780
|
+
"$v"=>{
|
781
|
+
:definition=>"Number in internal subarrangement or add table where instructions are found",
|
782
|
+
:repeat=>true},
|
783
|
+
"$w"=>{
|
784
|
+
:definition=>"Table identification-Internal subarrangement or add table",
|
785
|
+
:repeat=>true},
|
786
|
+
"$y"=>{
|
787
|
+
:definition=>"Table sequence number for internal subarrangement or add table",
|
788
|
+
:repeat=>true},
|
789
|
+
"$z"=>{:definition=>"Table identification"},
|
790
|
+
"$0"=>ARECNUM,
|
791
|
+
"$1"=>RWURI},
|
792
|
+
:linkage=>true,
|
793
|
+
:group=>"01X-09X"},
|
794
|
+
"086"=>
|
795
|
+
{:definition=>"Government Document Classification Number",
|
796
|
+
:repeat=>true,
|
797
|
+
:indicators=>
|
798
|
+
[{:definition=>"Number source",
|
799
|
+
:values=>
|
800
|
+
{"#"=>"Source specified in subfield $2",
|
801
|
+
"0"=>"Superintendent of Documents Classification System",
|
802
|
+
"1"=>"Government of Canada Publications: Outline of Classification"}},
|
803
|
+
:undefined],
|
804
|
+
:subfields=>
|
805
|
+
{"$a"=>{:definition=>"Classification number", :repeat=>false},
|
806
|
+
"$z"=>
|
807
|
+
{:definition=>"Canceled/invalid classification number"},
|
808
|
+
"$0"=>ARECNUM,
|
809
|
+
"$1"=>RWURI,
|
810
|
+
"$2"=>{:definition=>"Number source", :repeat=>false}},
|
811
|
+
:linkage=>true,
|
812
|
+
:group=>"01X-09X"},
|
813
|
+
"088"=>
|
814
|
+
{:definition=>"Report Number",
|
815
|
+
:repeat=>true,
|
816
|
+
:indicators=>[:undefined, :undefined],
|
817
|
+
:subfields=>
|
818
|
+
{"$a"=>{:definition=>"Report number", :repeat=>false},
|
819
|
+
"$z"=>{:definition=>"Canceled/invalid report number"}},
|
820
|
+
:linkage=>true,
|
821
|
+
:group=>"01X-09X"},
|
822
|
+
"09X"=>
|
823
|
+
{:definition=>"Local Call Numbers",
|
824
|
+
:repeat=>false,
|
825
|
+
:indicators=>nil,
|
826
|
+
:subfields=>nil,
|
827
|
+
:group=>"01X-09X"},
|
828
|
+
"100"=>
|
829
|
+
{:definition=>"Main Entry-Personal Name",
|
830
|
+
:repeat=>false,
|
831
|
+
:indicators=>
|
832
|
+
[{:definition=>"Type of personal name entry element",
|
833
|
+
:values=>{"0"=>"Forename", "1"=>"Surname", "3"=>"Family name"}},
|
834
|
+
:undefined],
|
835
|
+
:subfields=>
|
836
|
+
{"$a"=>{:definition=>"Personal name", :repeat=>false},
|
837
|
+
"$b"=>{:definition=>"Numeration", :repeat=>false},
|
838
|
+
"$c"=>
|
839
|
+
{:definition=>"Titles and words associated with a name"},
|
840
|
+
"$d"=>{:definition=>"Dates associated with a name", :repeat=>false},
|
841
|
+
"$e"=>RELATOR,
|
842
|
+
"$f"=>DATENR,
|
843
|
+
"$g"=>MISCINF,
|
844
|
+
"$j"=>{:definition=>"Attribution qualifier"},
|
845
|
+
"$k"=>FORMSUB,
|
846
|
+
"$l"=>LANGNR,
|
847
|
+
"$n"=>NUMPART,
|
848
|
+
"$p"=>NAMEPRT,
|
849
|
+
"$q"=>{:definition=>"Fuller form of name", :repeat=>false},
|
850
|
+
"$t"=>WRKTITL,
|
851
|
+
"$u"=>AFFIL,
|
852
|
+
"$0"=>ARECNUM,
|
853
|
+
"$1"=>RWURI,
|
854
|
+
"$4"=>RELAT},
|
855
|
+
:linkage=>true,
|
856
|
+
:group=>"1XX"},
|
857
|
+
"110"=>
|
858
|
+
{:definition=>"Main Entry-Corporate Name",
|
859
|
+
:repeat=>false,
|
860
|
+
:indicators=>
|
861
|
+
[{:definition=>"Type of corporate name entry element",
|
862
|
+
:values=>
|
863
|
+
{"0"=>"Inverted name",
|
864
|
+
"1"=>"Jurisdiction name",
|
865
|
+
"2"=>"Name in direct order"}},
|
866
|
+
:undefined],
|
867
|
+
:subfields=>
|
868
|
+
{"$a"=>
|
869
|
+
{:definition=>"Corporate name or jurisdiction name as entry element",
|
870
|
+
:repeat=>false},
|
871
|
+
"$b"=>{:definition=>"Subordinate unit"},
|
872
|
+
"$c"=>{:definition=>"Location of meeting"},
|
873
|
+
"$d"=>{:definition=>"Date of meeting or treaty signing"},
|
874
|
+
"$e"=>RELATOR,
|
875
|
+
"$f"=>DATENR,
|
876
|
+
"$g"=>MISCINF,
|
877
|
+
"$k"=>FORMSUB,
|
878
|
+
"$l"=>LANGNR,
|
879
|
+
"$n"=>{:definition=>"Number of part/section/meeting"},
|
880
|
+
"$p"=>NAMEPRT,
|
881
|
+
"$t"=>WRKTITL,
|
882
|
+
"$u"=>AFFIL,
|
883
|
+
"$0"=>ARECNUM,
|
884
|
+
"$1"=>RWURI,
|
885
|
+
"$4"=>RELAT},
|
886
|
+
:linkage=>true,
|
887
|
+
:group=>"1XX"},
|
888
|
+
"111"=>
|
889
|
+
{:definition=>"Main Entry-Meeting Name",
|
890
|
+
:repeat=>false,
|
891
|
+
:indicators=>
|
892
|
+
[{:definition=>"Type of meeting name entry element",
|
893
|
+
:values=>
|
894
|
+
{"0"=>"Inverted name",
|
895
|
+
"1"=>"Jurisdiction name",
|
896
|
+
"2"=>"Name in direct order"}},
|
897
|
+
:undefined],
|
898
|
+
:subfields=>
|
899
|
+
{"$a"=>
|
900
|
+
{:definition=>"Meeting name or jurisdiction name as entry element",
|
901
|
+
:repeat=>false},
|
902
|
+
"$c"=>{:definition=>"Location of meeting"},
|
903
|
+
"$d"=>{:definition=>"Date of meeting or treaty signing"},
|
904
|
+
"$e"=>{:definition=>"Subordinate unit"},
|
905
|
+
"$f"=>DATENR,
|
906
|
+
"$g"=>MISCINF,
|
907
|
+
"$j"=>RELATOR,
|
908
|
+
"$k"=>FORMSUB,
|
909
|
+
"$l"=>LANGNR,
|
910
|
+
"$n"=>{:definition=>"Number of part/section/meeting"},
|
911
|
+
"$p"=>NAMEPRT,
|
912
|
+
"$q"=>
|
913
|
+
{:definition=>
|
914
|
+
"Name of meeting following jurisdiction name entry element",
|
915
|
+
:repeat=>false},
|
916
|
+
"$t"=>WRKTITL,
|
917
|
+
"$u"=>AFFIL,
|
918
|
+
"$0"=>ARECNUM,
|
919
|
+
"$1"=>RWURI,
|
920
|
+
"$4"=>RELAT},
|
921
|
+
:linkage=>true,
|
922
|
+
:group=>"1XX"},
|
923
|
+
"130"=>
|
924
|
+
{:definition=>"Main Entry-Uniform Title",
|
925
|
+
:repeat=>false,
|
926
|
+
:indicators=>
|
927
|
+
[{:definition=>"Nonfiling characters",
|
928
|
+
:values=>{"0-9"=>"Number of nonfiling characters"}},
|
929
|
+
:undefined],
|
930
|
+
:subfields=>
|
931
|
+
{"$a"=>UNIFORM,
|
932
|
+
"$d"=>{:definition=>"Date of treaty signing"},
|
933
|
+
"$f"=>DATENR,
|
934
|
+
"$g"=>MISCINF,
|
935
|
+
"$h"=>MEDIUM,
|
936
|
+
"$k"=>FORMSUB,
|
937
|
+
"$l"=>LANGNR,
|
938
|
+
"$m"=>MUSMED,
|
939
|
+
"$n"=>NUMPART,
|
940
|
+
"$o"=>ARRANGE,
|
941
|
+
"$p"=>NAMEPRT,
|
942
|
+
"$r"=>MUSKEY,
|
943
|
+
"$s"=>VRSNR,
|
944
|
+
"$t"=>WRKTITL,
|
945
|
+
"$0"=>ARECNUM,
|
946
|
+
"$1"=>RWURI},
|
947
|
+
:linkage=>true,
|
948
|
+
:group=>"1XX"},
|
949
|
+
"210"=>
|
950
|
+
{:definition=>"Abbreviated Title",
|
951
|
+
:repeat=>true,
|
952
|
+
:indicators=>[
|
953
|
+
{:definition=>"Title added entry", :values=>{"0"=>"No added entry",
|
954
|
+
"1"=>"Added entry"}},
|
955
|
+
{:definition=>"Type", :values=>{"#"=>"Abbreviated key title",
|
956
|
+
"0"=>"Other abbreviated title"}}],
|
957
|
+
:subfields=>{
|
958
|
+
"$a"=>{:definition=>"Abbreviated title", :repeat=>false},
|
959
|
+
"$b"=>QUALINF,
|
960
|
+
"$2"=>{:definition=>"Source"}},
|
961
|
+
:group=>"20X-24X"},
|
962
|
+
"222"=>
|
963
|
+
{:definition=>"Key Title",
|
964
|
+
:repeat=>true,
|
965
|
+
:indicators=>
|
966
|
+
[:undefined, {:definition=>"Nonfiling characters",
|
967
|
+
:values=>{"0"=>"No nonfiling characters",
|
968
|
+
"1-9"=>"Number of nonfiling characters"}}],
|
969
|
+
:subfields=>{
|
970
|
+
"$a"=>{:definition=>"Key title", :repeat=>false},
|
971
|
+
"$b"=>QUALINF},
|
972
|
+
:group=>"20X-24X"},
|
973
|
+
"240"=>
|
974
|
+
{:definition=>"Uniform Title",
|
975
|
+
:repeat=>false,
|
976
|
+
:indicators=>
|
977
|
+
[{:definition=>"Uniform title printed or displayed",
|
978
|
+
:values=>{"0"=>"Not printed or displayed", "1"=>"Printed or displayed"}},
|
979
|
+
{:definition=>"Nonfiling characters",
|
980
|
+
:values=>{"0-9"=>"Number of nonfiling characters"}}],
|
981
|
+
:subfields=>
|
982
|
+
{"$a"=>UNIFORM,
|
983
|
+
"$d"=>{:definition=>"Date of treaty signing"},
|
984
|
+
"$f"=>DATENR,
|
985
|
+
"$g"=>MISCINF,
|
986
|
+
"$h"=>MEDIUM,
|
987
|
+
"$k"=>FORMSUB,
|
988
|
+
"$l"=>LANGNR,
|
989
|
+
"$m"=>MUSMED,
|
990
|
+
"$n"=>NUMPART,
|
991
|
+
"$o"=>ARRANGE,
|
992
|
+
"$p"=>NAMEPRT,
|
993
|
+
"$r"=>MUSKEY,
|
994
|
+
"$s"=>VRSNR,
|
995
|
+
"$0"=>ARECNUM,
|
996
|
+
"$1"=>RWURI},
|
997
|
+
:linkage=>true,
|
998
|
+
:group=>"20X-24X"},
|
999
|
+
"242"=>
|
1000
|
+
{:definition=>"Translation of Title by Cataloging Agency",
|
1001
|
+
:repeat=>true,
|
1002
|
+
:indicators=>
|
1003
|
+
[{:definition=>"Title added entry", :values=>{"0"=>"No added entry",
|
1004
|
+
"1"=>"Added entry"}},
|
1005
|
+
{:definition=>"Nonfiling characters",
|
1006
|
+
:values=>{"0"=>"No nonfiling characters",
|
1007
|
+
"1-9"=>"Number of nonfiling characters"}}],
|
1008
|
+
:subfields=>{
|
1009
|
+
"$a"=>TITLENR,
|
1010
|
+
"$b"=>{:definition=>"Remainder of title", :repeat=>false},
|
1011
|
+
"$c"=>{:definition=>"Statement of responsibility, etc.",
|
1012
|
+
:repeat=>false},
|
1013
|
+
"$h"=>MEDIUM,
|
1014
|
+
"$n"=>{:definition=>"Number of part/section of a work",
|
1015
|
+
:repeat=>true},
|
1016
|
+
"$p"=>NAMEPRT,
|
1017
|
+
"$y"=>{:definition=>"Language code of translated title",
|
1018
|
+
:repeat=>false}},
|
1019
|
+
:group=>"20X-24X"},
|
1020
|
+
"243"=>
|
1021
|
+
{:definition=>"Collective Uniform Title",
|
1022
|
+
:repeat=>false,
|
1023
|
+
:indicators=>
|
1024
|
+
[{:definition=>"Uniform title printed or displayed",
|
1025
|
+
:values=>{"0"=>"Not printed or displayed", "1"=>"Printed or displayed"}},
|
1026
|
+
{:definition=>"Nonfiling characters",
|
1027
|
+
:values=>{"1-9"=>"Number of nonfiling characters"}}],
|
1028
|
+
:subfields=>
|
1029
|
+
{"$a"=>UNIFORM,
|
1030
|
+
"$d"=>{:definition=>"Date of treaty signing"},
|
1031
|
+
"$f"=>DATENR,
|
1032
|
+
"$g"=>MISCINF,
|
1033
|
+
"$h"=>MEDIUM,
|
1034
|
+
"$k"=>FORMSUB,
|
1035
|
+
"$l"=>LANGNR,
|
1036
|
+
"$m"=>MUSMED,
|
1037
|
+
"$n"=>NUMPART,
|
1038
|
+
"$o"=>ARRANGE,
|
1039
|
+
"$p"=>NAMEPRT,
|
1040
|
+
"$r"=>MUSKEY,
|
1041
|
+
"$s"=>VRSNR},
|
1042
|
+
:linkage=>true,
|
1043
|
+
:group=>"20X-24X"},
|
1044
|
+
"245"=>
|
1045
|
+
{:definition=>"Title Statement",
|
1046
|
+
:repeat=>false,
|
1047
|
+
:indicators=>
|
1048
|
+
[{:definition=>"Title added entry", :values=>{"0"=>"No added entry",
|
1049
|
+
"1"=>"Added entry"}},
|
1050
|
+
{:definition=>"Nonfiling characters",
|
1051
|
+
:values=>{"0"=>"No nonfiling characters",
|
1052
|
+
"1-9"=>"Number of nonfiling characters"}}],
|
1053
|
+
:subfields=>{
|
1054
|
+
"$a"=>TITLENR,
|
1055
|
+
"$b"=>{:definition=>"Remainder of title", :repeat=>false},
|
1056
|
+
"$c"=>{:definition=>"Statement of responsibility, etc.", :repeat=>false},
|
1057
|
+
"$f"=>{:definition=>"Inclusive dates", :repeat=>false},
|
1058
|
+
"$g"=>{:definition=>"Bulk dates", :repeat=>false},
|
1059
|
+
"$h"=>MEDIUM,
|
1060
|
+
"$k"=>{:definition=>"Form"},
|
1061
|
+
"$n"=>NUMPART,
|
1062
|
+
"$p"=>NAMEPRT,
|
1063
|
+
"$s"=>{:definition=>"Version", :repeat=>false}},
|
1064
|
+
:group=>"20X-24X"},
|
1065
|
+
"246"=>
|
1066
|
+
{:definition=>"Varying Form of Title",
|
1067
|
+
:repeat=>true,
|
1068
|
+
:indicators=>
|
1069
|
+
[{:definition=>"Note/added entry controller",
|
1070
|
+
:values=>
|
1071
|
+
{"0"=>"Note, no added entry",
|
1072
|
+
"1"=>"Note, added entry",
|
1073
|
+
"2"=>"No note, no added entry",
|
1074
|
+
"3"=>"No note, added entry"}},
|
1075
|
+
{:definition=>"Type of title",
|
1076
|
+
:values=>
|
1077
|
+
{"#"=>"No type specified",
|
1078
|
+
"0"=>"Portion of title",
|
1079
|
+
"1"=>"Parallel title",
|
1080
|
+
"2"=>"Distinctive title",
|
1081
|
+
"3"=>"Other title",
|
1082
|
+
"4"=>"Cover title",
|
1083
|
+
"5"=>"Added title page title",
|
1084
|
+
"6"=>"Caption title",
|
1085
|
+
"7"=>"Running title",
|
1086
|
+
"8"=>"Spine title"}}],
|
1087
|
+
:subfields=>
|
1088
|
+
{"$a"=>{:definition=>"Title proper/short title", :repeat=>false},
|
1089
|
+
"$b"=>{:definition=>"Remainder of title", :repeat=>false},
|
1090
|
+
"$f"=>{:definition=>"Date or sequential designation", :repeat=>false},
|
1091
|
+
"$g"=>MISCINF,
|
1092
|
+
"$h"=>MEDIUM,
|
1093
|
+
"$i"=>{:definition=>"Display text", :repeat=>false},
|
1094
|
+
"$n"=>NUMPART,
|
1095
|
+
"$p"=>NAMEPRT,
|
1096
|
+
"$5"=>INSTAPP},
|
1097
|
+
:linkage=>true,
|
1098
|
+
:group=>"20X-24X"},
|
1099
|
+
"247"=>
|
1100
|
+
{:definition=>"Former Title",
|
1101
|
+
:repeat=>true,
|
1102
|
+
:indicators=>
|
1103
|
+
[{:definition=>"Title added entry",
|
1104
|
+
:values=>{"0"=>"No added entry", "1"=>"Added entry"}},
|
1105
|
+
{:definition=>"Note controller",
|
1106
|
+
:values=>{"0"=>"Display note", "1"=>"Do not display note"}}],
|
1107
|
+
:subfields=>
|
1108
|
+
{"$a"=>TITLENR,
|
1109
|
+
"$b"=>{:definition=>"Remainder of title", :repeat=>false},
|
1110
|
+
"$f"=>{:definition=>"Date or sequential designation", :repeat=>false},
|
1111
|
+
"$g"=>MISCINF,
|
1112
|
+
"$h"=>MEDIUM,
|
1113
|
+
"$n"=>NUMPART,
|
1114
|
+
"$p"=>NAMEPRT,
|
1115
|
+
"$x"=>ISSNNR},
|
1116
|
+
:linkage=>true,
|
1117
|
+
:group=>"20X-24X"},
|
1118
|
+
"250"=>
|
1119
|
+
{:definition=>"Edition Statement",
|
1120
|
+
:repeat=>true,
|
1121
|
+
:indicators=>[:undefined, :undefined],
|
1122
|
+
:subfields=>
|
1123
|
+
{"$a"=>{:definition=>"Edition statement", :repeat=>false},
|
1124
|
+
"$b"=>{:definition=>"Remainder of edition statement", :repeat=>false},
|
1125
|
+
"$3"=>MATSPEC},
|
1126
|
+
:linkage=>true,
|
1127
|
+
:group=>"25X-28X"},
|
1128
|
+
"254"=>
|
1129
|
+
{:definition=>"Musical Presentation Statement",
|
1130
|
+
:repeat=>false,
|
1131
|
+
:indicators=>[:undefined, :undefined],
|
1132
|
+
:subfields=>{"$a"=>{:definition=>"Musical presentation statement",
|
1133
|
+
:repeat=>false}},
|
1134
|
+
:group=>"25X-28X"},
|
1135
|
+
"255"=>
|
1136
|
+
{:definition=>"Cartographic Mathematical Data",
|
1137
|
+
:repeat=>true,
|
1138
|
+
:indicators=>[:undefined, :undefined],
|
1139
|
+
:subfields=>{
|
1140
|
+
"$a"=>{:definition=>"Statement of scale", :repeat=>false},
|
1141
|
+
"$b"=>{:definition=>"Statement of projection", :repeat=>false},
|
1142
|
+
"$c"=>{:definition=>"Statement of coordinates", :repeat=>false},
|
1143
|
+
"$d"=>{:definition=>"Statement of zone", :repeat=>false},
|
1144
|
+
"$e"=>{:definition=>"Statement of equinox", :repeat=>false},
|
1145
|
+
"$f"=>{:definition=>"Outer G-ring coordinate pairs", :repeat=>false},
|
1146
|
+
"$g"=>{:definition=>"Exclusion G-ring coordinate pairs", :repeat=>false}},
|
1147
|
+
:group=>"25X-28X"},
|
1148
|
+
"256"=>
|
1149
|
+
{:definition=>"Computer File Characteristics",
|
1150
|
+
:repeat=>false,
|
1151
|
+
:indicators=>[:undefined, :undefined],
|
1152
|
+
:subfields=>{"$a"=>{:definition=>"Computer file characteristics",
|
1153
|
+
:repeat=>false}},
|
1154
|
+
:group=>"25X-28X"},
|
1155
|
+
"257"=>
|
1156
|
+
{:definition=>"Country of Producing Entity",
|
1157
|
+
:repeat=>true,
|
1158
|
+
:indicators=>[:undefined, :undefined],
|
1159
|
+
:subfields=>
|
1160
|
+
{"$a"=>{:definition=>"Country of producing entity"},
|
1161
|
+
"$0"=>ARECNUM,
|
1162
|
+
"$1"=>RWURI,
|
1163
|
+
"$2"=>SOURCE},
|
1164
|
+
:linkage=>true,
|
1165
|
+
:group=>"25X-28X"},
|
1166
|
+
"258"=>
|
1167
|
+
{:definition=>"Philatelic Issue Data",
|
1168
|
+
:repeat=>true,
|
1169
|
+
:indicators=>[:undefined, :undefined],
|
1170
|
+
:subfields=>{
|
1171
|
+
"$a"=>{:definition=>"Issuing jurisdiction", :repeat=>false},
|
1172
|
+
"$b"=>{:definition=>"Denomination", :repeat=>false}},
|
1173
|
+
:group=>"25X-28X"},
|
1174
|
+
"260"=>
|
1175
|
+
{:definition=>"Publication, Distribution, etc. (Imprint)",
|
1176
|
+
:repeat=>true,
|
1177
|
+
:indicators=>
|
1178
|
+
[{:definition=>"Sequence of publishing statements",
|
1179
|
+
:values=>
|
1180
|
+
{"#"=>
|
1181
|
+
"Not applicable/No information provided/Earliest available publisher",
|
1182
|
+
"2"=>"Intervening publisher",
|
1183
|
+
"3"=>"Current/latest publisher"}},
|
1184
|
+
:undefined],
|
1185
|
+
:subfields=>
|
1186
|
+
{"$a"=>
|
1187
|
+
{:definition=>"Place of publication, distribution, etc."},
|
1188
|
+
"$b"=>
|
1189
|
+
{:definition=>"Name of publisher, distributor, etc."},
|
1190
|
+
"$c"=>
|
1191
|
+
{:definition=>"Date of publication, distribution, etc."},
|
1192
|
+
"$e"=>{:definition=>"Place of manufacture"},
|
1193
|
+
"$f"=>{:definition=>"Manufacturer"},
|
1194
|
+
"$g"=>{:definition=>"Date of manufacture"},
|
1195
|
+
"$3"=>MATSPEC},
|
1196
|
+
:linkage=>true,
|
1197
|
+
:group=>"25X-28X"},
|
1198
|
+
"263"=>
|
1199
|
+
{:definition=>"Projected Publication Date",
|
1200
|
+
:repeat=>false,
|
1201
|
+
:indicators=>[:undefined, :undefined],
|
1202
|
+
:subfields=>{"$a"=>{:definition=>"Projected publication date",
|
1203
|
+
:repeat=>false}},
|
1204
|
+
:group=>"25X-28X"},
|
1205
|
+
"264"=>
|
1206
|
+
{:definition=>
|
1207
|
+
"Production, Publication, Distribution, Manufacture, and Copyright Notice",
|
1208
|
+
:repeat=>true,
|
1209
|
+
:indicators=>
|
1210
|
+
[{:definition=>"Sequence of statements",
|
1211
|
+
:values=>
|
1212
|
+
{"#"=>"Not applicable/No information provided/Earliest",
|
1213
|
+
"2"=>"Intervening",
|
1214
|
+
"3"=>"Current/Latest"}},
|
1215
|
+
{:definition=>"Function of entity",
|
1216
|
+
:values=>
|
1217
|
+
{"0"=>"Production",
|
1218
|
+
"1"=>"Publication",
|
1219
|
+
"2"=>"Distribution",
|
1220
|
+
"3"=>"Manufacture",
|
1221
|
+
"4"=>"Copyright notice date"}}],
|
1222
|
+
:subfields=>
|
1223
|
+
{"$a"=>
|
1224
|
+
{:definition=>
|
1225
|
+
"Place of production, publication, distribution, manufacture",
|
1226
|
+
:repeat=>true},
|
1227
|
+
"$b"=>
|
1228
|
+
{:definition=>"Name of producer, publisher, distributor, manufacturer",
|
1229
|
+
:repeat=>true},
|
1230
|
+
"$c"=>
|
1231
|
+
{:definition=>
|
1232
|
+
"Date of production, publication, distribution, manufacture, or copyright notice",
|
1233
|
+
:repeat=>true},
|
1234
|
+
"$3"=>MATSPEC},
|
1235
|
+
:linkage=>true,
|
1236
|
+
:group=>"25X-28X"},
|
1237
|
+
"270"=>
|
1238
|
+
{:definition=>"Address",
|
1239
|
+
:repeat=>true,
|
1240
|
+
:indicators=>
|
1241
|
+
[{:definition=>"Level",
|
1242
|
+
:values=>{"#"=>"No level specified", "1"=>"Primary", "2"=>"Secondary"}},
|
1243
|
+
{:definition=>"Type of address",
|
1244
|
+
:values=>
|
1245
|
+
{"#"=>"No type specified",
|
1246
|
+
"0"=>"Mailing",
|
1247
|
+
"7"=>"Type specified in subfield $i"}}],
|
1248
|
+
:subfields=>
|
1249
|
+
{"$a"=>{:definition=>"Address"},
|
1250
|
+
"$b"=>{:definition=>"City", :repeat=>false},
|
1251
|
+
"$c"=>{:definition=>"State or province", :repeat=>false},
|
1252
|
+
"$d"=>{:definition=>"Country", :repeat=>false},
|
1253
|
+
"$e"=>{:definition=>"Postal code", :repeat=>false},
|
1254
|
+
"$f"=>{:definition=>"Terms preceding attention name", :repeat=>false},
|
1255
|
+
"$g"=>{:definition=>"Attention name", :repeat=>false},
|
1256
|
+
"$h"=>{:definition=>"Attention position", :repeat=>false},
|
1257
|
+
"$i"=>{:definition=>"Type of address", :repeat=>false},
|
1258
|
+
"$j"=>{:definition=>"Specialized telephone number"},
|
1259
|
+
"$k"=>{:definition=>"Telephone number"},
|
1260
|
+
"$l"=>{:definition=>"Fax number"},
|
1261
|
+
"$m"=>{:definition=>"Electronic mail address"},
|
1262
|
+
"$n"=>{:definition=>"TDD or TTY number"},
|
1263
|
+
"$p"=>{:definition=>"Contact person"},
|
1264
|
+
"$q"=>{:definition=>"Title of contact person"},
|
1265
|
+
"$r"=>{:definition=>"Hours"},
|
1266
|
+
"$z"=>PUBNOTE,
|
1267
|
+
"$4"=>RELAT},
|
1268
|
+
:linkage=>true,
|
1269
|
+
:group=>"25X-28X"},
|
1270
|
+
"300"=>
|
1271
|
+
{:definition=>"Physical Description",
|
1272
|
+
:repeat=>true,
|
1273
|
+
:indicators=>[:undefined, :undefined],
|
1274
|
+
:subfields=>
|
1275
|
+
{"$a"=>{:definition=>"Extent"},
|
1276
|
+
"$b"=>{:definition=>"Other physical details", :repeat=>false},
|
1277
|
+
"$c"=>{:definition=>"Dimensions"},
|
1278
|
+
"$e"=>{:definition=>"Accompanying material", :repeat=>false},
|
1279
|
+
"$f"=>{:definition=>"Type of unit"},
|
1280
|
+
"$g"=>{:definition=>"Size of unit"},
|
1281
|
+
"$3"=>MATSPEC},
|
1282
|
+
:linkage=>true,
|
1283
|
+
:group=>"3XX"},
|
1284
|
+
"306"=>
|
1285
|
+
{:definition=>"Playing Time",
|
1286
|
+
:repeat=>false,
|
1287
|
+
:indicators=>[:undefined, :undefined],
|
1288
|
+
:subfields=>{"$a"=>{:definition=>"Playing time"}},
|
1289
|
+
:group=>"3XX"},
|
1290
|
+
"307"=>
|
1291
|
+
{:definition=>"Hours, Etc.",
|
1292
|
+
:repeat=>true,
|
1293
|
+
:indicators=>
|
1294
|
+
[{:definition=>"Display constant controller",
|
1295
|
+
:values=>{"#"=>"Hours",
|
1296
|
+
"8"=>"No display constant generated"}},
|
1297
|
+
:undefined],
|
1298
|
+
:subfields=>{
|
1299
|
+
"$a"=>{:definition=>"Hours", :repeat=>false},
|
1300
|
+
"$b"=>{:definition=>"Additional information", :repeat=>false}},
|
1301
|
+
:group=>"3XX"},
|
1302
|
+
"310"=>
|
1303
|
+
{:definition=>"Current Publication Frequency",
|
1304
|
+
:repeat=>false,
|
1305
|
+
:indicators=>[:undefined, :undefined],
|
1306
|
+
:subfields=>{
|
1307
|
+
"$a"=>{:definition=>"Current publication frequency", :repeat=>false},
|
1308
|
+
"$b"=>{:definition=>"Date of current publication frequency",
|
1309
|
+
:repeat=>false}},
|
1310
|
+
:group=>"3XX"},
|
1311
|
+
"321"=>
|
1312
|
+
{:definition=>"Former Publication Frequency",
|
1313
|
+
:repeat=>true,
|
1314
|
+
:indicators=>[:undefined, :undefined],
|
1315
|
+
:subfields=>{
|
1316
|
+
"$a"=>{:definition=>"Former publication frequency", :repeat=>false},
|
1317
|
+
"$b"=>{:definition=>"Dates of former publication frequency",
|
1318
|
+
:repeat=>false}},
|
1319
|
+
:group=>"3XX"},
|
1320
|
+
"336"=>
|
1321
|
+
{:definition=>"Content Type",
|
1322
|
+
:repeat=>true,
|
1323
|
+
:indicators=>[:undefined, :undefined],
|
1324
|
+
:subfields=>
|
1325
|
+
{"$a"=>{:definition=>"Content type term"},
|
1326
|
+
"$b"=>{:definition=>"Content type code"},
|
1327
|
+
"$0"=>ARECNUM,
|
1328
|
+
"$1"=>RWURI,
|
1329
|
+
"$2"=>SOURCE,
|
1330
|
+
"$3"=>MATSPEC},
|
1331
|
+
:linkage=>true,
|
1332
|
+
:group=>"3XX"},
|
1333
|
+
"337"=>
|
1334
|
+
{:definition=>"Media Type",
|
1335
|
+
:repeat=>true,
|
1336
|
+
:indicators=>[:undefined, :undefined],
|
1337
|
+
:subfields=>
|
1338
|
+
{"$a"=>{:definition=>"Media type term"},
|
1339
|
+
"$b"=>{:definition=>"Media type code"},
|
1340
|
+
"$0"=>ARECNUM,
|
1341
|
+
"$1"=>RWURI,
|
1342
|
+
"$2"=>SOURCE,
|
1343
|
+
"$3"=>MATSPEC},
|
1344
|
+
:linkage=>true,
|
1345
|
+
:group=>"3XX"},
|
1346
|
+
"338"=>
|
1347
|
+
{:definition=>"Carrier Type",
|
1348
|
+
:repeat=>true,
|
1349
|
+
:indicators=>[:undefined, :undefined],
|
1350
|
+
:subfields=>
|
1351
|
+
{"$a"=>{:definition=>"Carrier type term"},
|
1352
|
+
"$b"=>{:definition=>"Carrier type code"},
|
1353
|
+
"$0"=>ARECNUM,
|
1354
|
+
"$1"=>RWURI,
|
1355
|
+
"$2"=>SOURCE,
|
1356
|
+
"$3"=>MATSPEC},
|
1357
|
+
:linkage=>true,
|
1358
|
+
:group=>"3XX"},
|
1359
|
+
"340"=>
|
1360
|
+
{:definition=>"Physical Medium",
|
1361
|
+
:repeat=>true,
|
1362
|
+
:indicators=>[:undefined, :undefined],
|
1363
|
+
:subfields=>
|
1364
|
+
{"$a"=>{:definition=>"Material base and configuration"},
|
1365
|
+
"$b"=>{:definition=>"Dimensions"},
|
1366
|
+
"$c"=>{:definition=>"Materials applied to surface"},
|
1367
|
+
"$d"=>{:definition=>"Information recording technique"},
|
1368
|
+
"$e"=>{:definition=>"Support"},
|
1369
|
+
"$f"=>{:definition=>"Production rate/ratio"},
|
1370
|
+
"$g"=>{:definition=>"Color content"},
|
1371
|
+
"$h"=>{:definition=>"Location within medium"},
|
1372
|
+
"$i"=>{:definition=>"Technical specifications of medium"},
|
1373
|
+
"$j"=>{:definition=>"Generation"},
|
1374
|
+
"$k"=>{:definition=>"Layout"},
|
1375
|
+
"$m"=>{:definition=>"Book format"},
|
1376
|
+
"$n"=>{:definition=>"Font size"},
|
1377
|
+
"$o"=>{:definition=>"Polarity"},
|
1378
|
+
"$0"=>ARECNUM,
|
1379
|
+
"$1"=>RWURI,
|
1380
|
+
"$2"=>SOURCE,
|
1381
|
+
"$3"=>MATSPEC},
|
1382
|
+
:linkage=>true,
|
1383
|
+
:group=>"3XX"},
|
1384
|
+
"342"=>
|
1385
|
+
{:definition=>"Geospatial Reference Data",
|
1386
|
+
:repeat=>true,
|
1387
|
+
:indicators=>
|
1388
|
+
[{:definition=>"Geospatial reference dimension",
|
1389
|
+
:values=>{"0"=>"Horizontal coordinate system",
|
1390
|
+
"1"=>"Vertical coordinate system"}},
|
1391
|
+
{:definition=>"Geospatial reference method",
|
1392
|
+
:values=>{"0"=>"Geographic",
|
1393
|
+
"1"=>"Map projection",
|
1394
|
+
"2"=>"Grid coordinate system",
|
1395
|
+
"3"=>"Local planar",
|
1396
|
+
"4"=>"Local",
|
1397
|
+
"5"=>"Geodetic model",
|
1398
|
+
"6"=>"Altitude",
|
1399
|
+
"7"=>"Method specified in $2",
|
1400
|
+
"8"=>"Depth"}}],
|
1401
|
+
:subfields=>{
|
1402
|
+
"$a"=>{:definition=>"Name", :repeat=>false},
|
1403
|
+
"$b"=>{:definition=>"Coordinate units or distance units", :repeat=>false},
|
1404
|
+
"$c"=>{:definition=>"Latitude resolution", :repeat=>false},
|
1405
|
+
"$d"=>{:definition=>"Longitude resolution", :repeat=>false},
|
1406
|
+
"$e"=>{:definition=>"Standard parallel or oblique line latitude",
|
1407
|
+
:repeat=>true},
|
1408
|
+
"$f"=>{:definition=>"Oblique line longitude"},
|
1409
|
+
"$g"=>{:definition=>"Longitude of central meridian or projection center",
|
1410
|
+
:repeat=>false},
|
1411
|
+
"$h"=>{:definition=>"Latitude of projection center or projection origin",
|
1412
|
+
:repeat=>false},
|
1413
|
+
"$i"=>{:definition=>"False easting", :repeat=>false},
|
1414
|
+
"$j"=>{:definition=>"False northing", :repeat=>false},
|
1415
|
+
"$k"=>{:definition=>"Scale factor", :repeat=>false},
|
1416
|
+
"$l"=>{:definition=>"Height of perspective point above surface",
|
1417
|
+
:repeat=>false},
|
1418
|
+
"$m"=>{:definition=>"Azimuthal angle", :repeat=>false},
|
1419
|
+
"$n"=>{
|
1420
|
+
:definition=>"Azimuth measure point longitude or straight vertical longitude from pole",
|
1421
|
+
:repeat=>false},
|
1422
|
+
"$o"=>{:definition=>"Landsat number and path number", :repeat=>false},
|
1423
|
+
"$p"=>{:definition=>"Zone identifier", :repeat=>false},
|
1424
|
+
"$q"=>{:definition=>"Ellipsoid name", :repeat=>false},
|
1425
|
+
"$r"=>{:definition=>"Semi-major axis", :repeat=>false},
|
1426
|
+
"$s"=>{:definition=>"Denominator of flattening ratio", :repeat=>false},
|
1427
|
+
"$t"=>{:definition=>"Vertical resolution", :repeat=>false},
|
1428
|
+
"$u"=>{:definition=>"Vertical encoding method", :repeat=>false},
|
1429
|
+
"$v"=>{
|
1430
|
+
:definition=>"Local planar, local, or other projection or grid description",
|
1431
|
+
:repeat=>false},
|
1432
|
+
"$w"=>{:definition=>"Local planar or local georeference information",
|
1433
|
+
:repeat=>false},
|
1434
|
+
"$2"=>{:definition=>"Reference method used", :repeat=>false}},
|
1435
|
+
:group=>"3XX"},
|
1436
|
+
"343"=>
|
1437
|
+
{:definition=>"Planar Coordinate Data",
|
1438
|
+
:repeat=>true,
|
1439
|
+
:indicators=>[:undefined, :undefined],
|
1440
|
+
:subfields=>{
|
1441
|
+
"$a"=>{:definition=>"Planar coordinate encoding method", :repeat=>false},
|
1442
|
+
"$b"=>{:definition=>"Planar distance units", :repeat=>false},
|
1443
|
+
"$c"=>{:definition=>"Abscissa resolution", :repeat=>false},
|
1444
|
+
"$d"=>{:definition=>"Ordinate resolution", :repeat=>false},
|
1445
|
+
"$e"=>{:definition=>"Distance resolution", :repeat=>false},
|
1446
|
+
"$f"=>{:definition=>"Bearing resolution", :repeat=>false},
|
1447
|
+
"$g"=>{:definition=>"Bearing units", :repeat=>false},
|
1448
|
+
"$h"=>{:definition=>"Bearing reference direction", :repeat=>false},
|
1449
|
+
"$i"=>{:definition=>"Bearing reference meridian", :repeat=>false}},
|
1450
|
+
:group=>"3XX"},
|
1451
|
+
"344"=>
|
1452
|
+
{:definition=>"Sound Characteristics",
|
1453
|
+
:repeat=>true,
|
1454
|
+
:indicators=>[:undefined, :undefined],
|
1455
|
+
:subfields=>
|
1456
|
+
{"$a"=>{:definition=>"Type of recording"},
|
1457
|
+
"$b"=>{:definition=>"Recording medium"},
|
1458
|
+
"$c"=>{:definition=>"Playing speed"},
|
1459
|
+
"$d"=>{:definition=>"Groove characteristic"},
|
1460
|
+
"$e"=>{:definition=>"Track configuration"},
|
1461
|
+
"$f"=>{:definition=>"Tape configuration"},
|
1462
|
+
"$g"=>{:definition=>"Configuration of playback channels"},
|
1463
|
+
"$h"=>{:definition=>"Special playback characteristics"},
|
1464
|
+
"$0"=>ARECNUM,
|
1465
|
+
"$1"=>RWURI,
|
1466
|
+
"$2"=>SOURCE,
|
1467
|
+
"$3"=>MATSPEC},
|
1468
|
+
:linkage=>true,
|
1469
|
+
:group=>"3XX"},
|
1470
|
+
"345"=>
|
1471
|
+
{:definition=>"Projection Characteristics of Moving Image",
|
1472
|
+
:repeat=>true,
|
1473
|
+
:indicators=>[:undefined, :undefined],
|
1474
|
+
:subfields=>
|
1475
|
+
{"$a"=>{:definition=>"Presentation format"},
|
1476
|
+
"$b"=>{:definition=>"Projection speed"},
|
1477
|
+
"$0"=>ARECNUM,
|
1478
|
+
"$1"=>RWURI,
|
1479
|
+
"$2"=>SOURCE,
|
1480
|
+
"$3"=>MATSPEC},
|
1481
|
+
:linkage=>true,
|
1482
|
+
:group=>"3XX"},
|
1483
|
+
"346"=>
|
1484
|
+
{:definition=>"Video Characteristics",
|
1485
|
+
:repeat=>true,
|
1486
|
+
:indicators=>[:undefined, :undefined],
|
1487
|
+
:subfields=>
|
1488
|
+
{"$a"=>{:definition=>"Video format"},
|
1489
|
+
"$b"=>{:definition=>"Broadcast standard"},
|
1490
|
+
"$0"=>ARECNUM,
|
1491
|
+
"$1"=>RWURI,
|
1492
|
+
"$2"=>SOURCE,
|
1493
|
+
"$3"=>MATSPEC},
|
1494
|
+
:linkage=>true,
|
1495
|
+
:group=>"3XX"},
|
1496
|
+
"347"=>
|
1497
|
+
{:definition=>"Digital File Characteristics",
|
1498
|
+
:repeat=>true,
|
1499
|
+
:indicators=>[:undefined, :undefined],
|
1500
|
+
:subfields=>
|
1501
|
+
{"$a"=>{:definition=>"File type"},
|
1502
|
+
"$b"=>{:definition=>"Encoding format"},
|
1503
|
+
"$c"=>{:definition=>"File size"},
|
1504
|
+
"$d"=>{:definition=>"Resolution"},
|
1505
|
+
"$e"=>{:definition=>"Regional encoding"},
|
1506
|
+
"$f"=>{:definition=>"Encoded bitrate"},
|
1507
|
+
"$0"=>ARECNUM,
|
1508
|
+
"$1"=>RWURI,
|
1509
|
+
"$2"=>SOURCE,
|
1510
|
+
"$3"=>MATSPEC},
|
1511
|
+
:linkage=>true,
|
1512
|
+
:group=>"3XX"},
|
1513
|
+
"348"=>
|
1514
|
+
{:definition=>"Format of Notated Music",
|
1515
|
+
:repeat=>true,
|
1516
|
+
:indicators=>[:undefined, :undefined],
|
1517
|
+
:subfields=>
|
1518
|
+
{"$a"=>{:definition=>"Format of notated music term"},
|
1519
|
+
"$b"=>{:definition=>"Format of notated music code"},
|
1520
|
+
"$0"=>ARECNUM,
|
1521
|
+
"$1"=>RWURI,
|
1522
|
+
"$2"=>SRCTERM,
|
1523
|
+
"$3"=>MATSPEC},
|
1524
|
+
:linkage=>true,
|
1525
|
+
:group=>"3XX"},
|
1526
|
+
"351"=>
|
1527
|
+
{:definition=>"Organization and Arrangement of Materials",
|
1528
|
+
:repeat=>true,
|
1529
|
+
:indicators=>[:undefined, :undefined],
|
1530
|
+
:subfields=>{
|
1531
|
+
"$a"=>{:definition=>"Organization"},
|
1532
|
+
"$b"=>{:definition=>"Arrangement"},
|
1533
|
+
"$c"=>{:definition=>"Hierarchical level", :repeat=>false},
|
1534
|
+
"$3"=>MATSPEC},
|
1535
|
+
:group=>"3XX"},
|
1536
|
+
"352"=>
|
1537
|
+
{:definition=>"Digital Graphic Representation",
|
1538
|
+
:repeat=>true,
|
1539
|
+
:indicators=>[:undefined, :undefined],
|
1540
|
+
:subfields=>{
|
1541
|
+
"$a"=>{:definition=>"Direct reference method", :repeat=>false},
|
1542
|
+
"$b"=>{:definition=>"Object type"},
|
1543
|
+
"$c"=>{:definition=>"Object count"},
|
1544
|
+
"$d"=>{:definition=>"Row count", :repeat=>false},
|
1545
|
+
"$e"=>{:definition=>"Column count", :repeat=>false},
|
1546
|
+
"$f"=>{:definition=>"Vertical count", :repeat=>false},
|
1547
|
+
"$g"=>{:definition=>"VPF topology level", :repeat=>false},
|
1548
|
+
"$i"=>{:definition=>"Indirect reference description", :repeat=>false},
|
1549
|
+
"$q"=>{:definition=>"Format of the digital image", :repeat=>false}},
|
1550
|
+
:group=>"3XX"},
|
1551
|
+
"355"=>
|
1552
|
+
{:definition=>"Security Classification Control",
|
1553
|
+
:repeat=>true,
|
1554
|
+
:indicators=>[{:definition=>"Controlled element",
|
1555
|
+
:values=>{"0"=>"Document",
|
1556
|
+
"1"=>"Title",
|
1557
|
+
"2"=>"Abstract",
|
1558
|
+
"3"=>"Contents note",
|
1559
|
+
"4"=>"Author",
|
1560
|
+
"5"=>"Record",
|
1561
|
+
"8"=>"None of the above"}},
|
1562
|
+
:undefined],
|
1563
|
+
:subfields=>{
|
1564
|
+
"$a"=>{:definition=>"Security classification", :repeat=>false},
|
1565
|
+
"$b"=>{:definition=>"Handling instructions"},
|
1566
|
+
"$c"=>{:definition=>"External dissemination information"},
|
1567
|
+
"$d"=>{:definition=>"Downgrading or declassification event", :repeat=>false},
|
1568
|
+
"$e"=>{:definition=>"Classification system", :repeat=>false},
|
1569
|
+
"$f"=>{:definition=>"Country of origin code", :repeat=>false},
|
1570
|
+
"$g"=>{:definition=>"Downgrading date", :repeat=>false},
|
1571
|
+
"$h"=>{:definition=>"Declassification date", :repeat=>false},
|
1572
|
+
"$j"=>{:definition=>"Authorization"}},
|
1573
|
+
:group=>"3XX"},
|
1574
|
+
"357"=>
|
1575
|
+
{:definition=>"Originator Dissemination Control",
|
1576
|
+
:repeat=>false,
|
1577
|
+
:indicators=>[:undefined, :undefined],
|
1578
|
+
:subfields=>{
|
1579
|
+
"$a"=>{:definition=>"Originator control term", :repeat=>false},
|
1580
|
+
"$b"=>{:definition=>"Originating agency"},
|
1581
|
+
"$c"=>{:definition=>"Authorized recipients of material"},
|
1582
|
+
"$g"=>{:definition=>"Other restrictions"}},
|
1583
|
+
:group=>"3XX"},
|
1584
|
+
"362"=>
|
1585
|
+
{:definition=>"Dates of Publication and/or Sequential Designation",
|
1586
|
+
:repeat=>true,
|
1587
|
+
:indicators=>[{:definition=>"Format of date",
|
1588
|
+
:values=>{"0"=>"Formatted style",
|
1589
|
+
"1"=>"Unformatted note"}},
|
1590
|
+
:undefined],
|
1591
|
+
:subfields=>{
|
1592
|
+
"$a"=>{
|
1593
|
+
:definition=>"Dates of publication and/or sequential designation",
|
1594
|
+
:repeat=>false},
|
1595
|
+
"$z"=>{:definition=>"Source of information", :repeat=>false}},
|
1596
|
+
:group=>"3XX"},
|
1597
|
+
"363"=>
|
1598
|
+
{:definition=>"Normalized Date and Sequential Designation",
|
1599
|
+
:repeat=>true,
|
1600
|
+
:indicators=>
|
1601
|
+
[{:definition=>"Start/End designator",
|
1602
|
+
:values=>{"#"=>"No information provided",
|
1603
|
+
"0"=>"Starting information",
|
1604
|
+
"1"=>"Ending information"}},
|
1605
|
+
{:definition=>"State of issuance", :values=>{"#"=>"Not specified",
|
1606
|
+
"0"=>"Closed",
|
1607
|
+
"1"=>"Open"}}],
|
1608
|
+
:subfields=>{
|
1609
|
+
"$a"=>{:definition=>"First level of enumeration", :repeat=>false},
|
1610
|
+
"$b"=>{:definition=>"Second level of enumeration", :repeat=>false},
|
1611
|
+
"$c"=>{:definition=>"Third level of enumeration", :repeat=>false},
|
1612
|
+
"$d"=>{:definition=>"Fourth level of enumeration", :repeat=>false},
|
1613
|
+
"$e"=>{:definition=>"Fifth level of enumeration", :repeat=>false},
|
1614
|
+
"$f"=>{:definition=>"Sixth level of enumeration", :repeat=>false},
|
1615
|
+
"$g"=>{
|
1616
|
+
:definition=>"Alternative numbering scheme, first level of enumeration",
|
1617
|
+
:repeat=>false},
|
1618
|
+
"$h"=>{
|
1619
|
+
:definition=>"Alternative numbering scheme, second level of enumeration",
|
1620
|
+
:repeat=>false},
|
1621
|
+
"$i"=>{:definition=>"First level of chronology", :repeat=>false},
|
1622
|
+
"$j"=>{:definition=>"Second level of chronology", :repeat=>false},
|
1623
|
+
"$k"=>{:definition=>"Third level of chronology", :repeat=>false},
|
1624
|
+
"$l"=>{:definition=>"Fourth level of chronology", :repeat=>false},
|
1625
|
+
"$m"=>{:definition=>"Alternative numbering scheme, chronology",
|
1626
|
+
:repeat=>false},
|
1627
|
+
"$u"=>{:definition=>"First level textual designation", :repeat=>false},
|
1628
|
+
"$v"=>{:definition=>"First level of chronology, issuance", :repeat=>false},
|
1629
|
+
"$x"=>NPUBNOT,
|
1630
|
+
"$z"=>PUBNOTE},
|
1631
|
+
:group=>"3XX"},
|
1632
|
+
"365"=>
|
1633
|
+
{:definition=>"Trade Price",
|
1634
|
+
:repeat=>true,
|
1635
|
+
:indicators=>[:undefined, :undefined],
|
1636
|
+
:subfields=>{
|
1637
|
+
"$a"=>{:definition=>"Price type code", :repeat=>false},
|
1638
|
+
"$b"=>{:definition=>"Price amount", :repeat=>false},
|
1639
|
+
"$c"=>{:definition=>"Currency code", :repeat=>false},
|
1640
|
+
"$d"=>{:definition=>"Unit of pricing", :repeat=>false},
|
1641
|
+
"$e"=>{:definition=>"Price note", :repeat=>false},
|
1642
|
+
"$f"=>{:definition=>"Price effective from", :repeat=>false},
|
1643
|
+
"$g"=>{:definition=>"Price effective until", :repeat=>false},
|
1644
|
+
"$h"=>{:definition=>"Tax rate 1", :repeat=>false},
|
1645
|
+
"$i"=>{:definition=>"Tax rate 2", :repeat=>false},
|
1646
|
+
"$j"=>{:definition=>"ISO country code", :repeat=>false},
|
1647
|
+
"$k"=>{:definition=>"MARC country code", :repeat=>false},
|
1648
|
+
"$m"=>{:definition=>"Identification of pricing entity", :repeat=>false},
|
1649
|
+
"$2"=>{:definition=>"Source of price type code", :repeat=>false},},
|
1650
|
+
:group=>"3XX"},
|
1651
|
+
"366"=>
|
1652
|
+
{:definition=>"Trade Availability Information",
|
1653
|
+
:repeat=>true,
|
1654
|
+
:indicators=>[:undefined, :undefined],
|
1655
|
+
:subfields=>{
|
1656
|
+
"$a"=>{:definition=>"Publishers' compressed title identification",
|
1657
|
+
:repeat=>false},
|
1658
|
+
"$b"=>{:definition=>"Detailed date of publication", :repeat=>false},
|
1659
|
+
"$c"=>{:definition=>"Availability status code", :repeat=>false},
|
1660
|
+
"$d"=>{:definition=>"Expected next availability date", :repeat=>false},
|
1661
|
+
"$e"=>{:definition=>"Note", :repeat=>false},
|
1662
|
+
"$f"=>{:definition=>"Publisher's discount category", :repeat=>false},
|
1663
|
+
"$g"=>{:definition=>"Date made out of print", :repeat=>false},
|
1664
|
+
"$j"=>{:definition=>"ISO country code", :repeat=>false},
|
1665
|
+
"$k"=>{:definition=>"MARC country code", :repeat=>false},
|
1666
|
+
"$m"=>{:definition=>"Identification of agency", :repeat=>false},
|
1667
|
+
"$2"=>{:definition=>"Source of availability status code", :repeat=>false}},
|
1668
|
+
:group=>"3XX"},
|
1669
|
+
"370"=>
|
1670
|
+
{:definition=>"Associated Place",
|
1671
|
+
:repeat=>true,
|
1672
|
+
:indicators=>[:undefined, :undefined],
|
1673
|
+
:subfields=>
|
1674
|
+
{"$c"=>{:definition=>"Associated country"},
|
1675
|
+
"$f"=>{:definition=>"Other associated place"},
|
1676
|
+
"$g"=>
|
1677
|
+
{:definition=>"Place of origin of work or expression"},
|
1678
|
+
"$i"=>RELINFO,
|
1679
|
+
"$s"=>{:definition=>"Start period", :repeat=>false},
|
1680
|
+
"$t"=>{:definition=>"End period", :repeat=>false},
|
1681
|
+
"$u"=>{:definition=>"Uniform Resource Identifier"},
|
1682
|
+
"$v"=>{:definition=>"Source of information"},
|
1683
|
+
"$0"=>ARECNUM,
|
1684
|
+
"$1"=>RWURI,
|
1685
|
+
"$2"=>SRCTERM,
|
1686
|
+
"$3"=>MATSPEC,
|
1687
|
+
"$4"=>RELAT},
|
1688
|
+
:linkage=>true,
|
1689
|
+
:group=>"3XX"},
|
1690
|
+
"377"=>
|
1691
|
+
{:definition=>"Associated Language",
|
1692
|
+
:repeat=>true,
|
1693
|
+
:indicators=>
|
1694
|
+
[:undefined,
|
1695
|
+
{:definition=>"Source of code",
|
1696
|
+
:values=>{"#"=>"MARC language code", "7"=>"Source specified in $2"}}],
|
1697
|
+
:subfields=>
|
1698
|
+
{"$a"=>{:definition=>"Language code"},
|
1699
|
+
"$l"=>{:definition=>"Language term"},
|
1700
|
+
"$0"=>ARECNUM,
|
1701
|
+
"$1"=>RWURI,
|
1702
|
+
"$2"=>SOURCE,
|
1703
|
+
"$3"=>MATSPEC},
|
1704
|
+
:linkage=>true,
|
1705
|
+
:group=>"3XX"},
|
1706
|
+
"380"=>
|
1707
|
+
{:definition=>"Form of Work",
|
1708
|
+
:repeat=>true,
|
1709
|
+
:indicators=>[:undefined, :undefined],
|
1710
|
+
:subfields=>
|
1711
|
+
{"$a"=>{:definition=>"Form of work"},
|
1712
|
+
"$0"=>ARECNUM,
|
1713
|
+
"$1"=>RWURI,
|
1714
|
+
"$2"=>SRCTERM,
|
1715
|
+
"$3"=>MATSPEC},
|
1716
|
+
:linkage=>true,
|
1717
|
+
:group=>"3XX"},
|
1718
|
+
"381"=>
|
1719
|
+
{:definition=>"Other Distinguishing Characteristics of Work or Expression",
|
1720
|
+
:repeat=>true,
|
1721
|
+
:indicators=>[:undefined, :undefined],
|
1722
|
+
:subfields=>
|
1723
|
+
{"$a"=>{:definition=>"Other distinguishing characteristic"},
|
1724
|
+
"$u"=>{:definition=>"Uniform Resource Identifier"},
|
1725
|
+
"$v"=>{:definition=>"Source of information"},
|
1726
|
+
"$0"=>ARECNUM,
|
1727
|
+
"$1"=>RWURI,
|
1728
|
+
"$2"=>SRCTERM,
|
1729
|
+
"$3"=>MATSPEC},
|
1730
|
+
:linkage=>true,
|
1731
|
+
:group=>"3XX"},
|
1732
|
+
"382"=>
|
1733
|
+
{:definition=>"Medium of Performance",
|
1734
|
+
:repeat=>true,
|
1735
|
+
:indicators=>
|
1736
|
+
[{:definition=>"Display constant controller",
|
1737
|
+
:values=>
|
1738
|
+
{"#"=>"No information provided",
|
1739
|
+
"0"=>"Medium of performance",
|
1740
|
+
"1"=>"Partial medium of performance"}},
|
1741
|
+
{:definition=>"Access control",
|
1742
|
+
:values=>
|
1743
|
+
{"#"=>"No information provided",
|
1744
|
+
"0"=>"Not intended for access",
|
1745
|
+
"1"=>"Intended for access"}}],
|
1746
|
+
:subfields=>
|
1747
|
+
{"$a"=>{:definition=>"Medium of performance"},
|
1748
|
+
"$b"=>{:definition=>"Soloist"},
|
1749
|
+
"$d"=>{:definition=>"Doubling instrument"},
|
1750
|
+
"$e"=>
|
1751
|
+
{:definition=>"Number of ensembles of the same type"},
|
1752
|
+
"$n"=>
|
1753
|
+
{:definition=>"Number of performers of the same medium"},
|
1754
|
+
"$p"=>{:definition=>"Alternative medium of performance"},
|
1755
|
+
"$r"=>
|
1756
|
+
{:definition=>
|
1757
|
+
"Total number of individuals performing alongside ensembles",
|
1758
|
+
:repeat=>false},
|
1759
|
+
"$s"=>{:definition=>"Total number of performers", :repeat=>false},
|
1760
|
+
"$t"=>{:definition=>"Total number of ensembles", :repeat=>false},
|
1761
|
+
"$v"=>NOTER,
|
1762
|
+
"$0"=>ARECNUM,
|
1763
|
+
"$1"=>RWURI,
|
1764
|
+
"$2"=>SRCTERM,
|
1765
|
+
"$3"=>MATSPEC},
|
1766
|
+
:linkage=>true,
|
1767
|
+
:group=>"3XX"},
|
1768
|
+
"383"=>
|
1769
|
+
{:definition=>"Numeric Designation of Musical Work",
|
1770
|
+
:repeat=>true,
|
1771
|
+
:indicators=>[:undefined, :undefined],
|
1772
|
+
:subfields=>
|
1773
|
+
{"$a"=>{:definition=>"Serial number"},
|
1774
|
+
"$b"=>{:definition=>"Opus number"},
|
1775
|
+
"$c"=>{:definition=>"Thematic index number"},
|
1776
|
+
"$d"=>{:definition=>"Thematic index code", :repeat=>false},
|
1777
|
+
"$e"=>
|
1778
|
+
{:definition=>"Publisher associated with opus number", :repeat=>false},
|
1779
|
+
"$2"=>SOURCE,
|
1780
|
+
"$3"=>MATSPEC},
|
1781
|
+
:linkage=>true,
|
1782
|
+
:group=>"3XX"},
|
1783
|
+
"384"=>
|
1784
|
+
{:definition=>"Key",
|
1785
|
+
:repeat=>true,
|
1786
|
+
:indicators=>
|
1787
|
+
[{:definition=>"Key type",
|
1788
|
+
:values=>
|
1789
|
+
{"#"=>"Relationship to original unknown",
|
1790
|
+
"0"=>"Original key",
|
1791
|
+
"1"=>"Transposed key"}},
|
1792
|
+
:undefined],
|
1793
|
+
:subfields=>
|
1794
|
+
{"$a"=>{:definition=>"Key", :repeat=>false},
|
1795
|
+
"$3"=>MATSPEC},
|
1796
|
+
:linkage=>true,
|
1797
|
+
:group=>"3XX"},
|
1798
|
+
"385"=>
|
1799
|
+
{:definition=>"Audience Characteristics",
|
1800
|
+
:repeat=>true,
|
1801
|
+
:indicators=>[:undefined, :undefined],
|
1802
|
+
:subfields=>
|
1803
|
+
{"$a"=>{:definition=>"Audience term"},
|
1804
|
+
"$b"=>{:definition=>"Audience code"},
|
1805
|
+
"$m"=>{:definition=>"Demographic group term", :repeat=>false},
|
1806
|
+
"$n"=>{:definition=>"Demographic group code", :repeat=>false},
|
1807
|
+
"$0"=>ARECNUM,
|
1808
|
+
"$1"=>RWURI,
|
1809
|
+
"$2"=>SOURCE,
|
1810
|
+
"$3"=>MATSPEC},
|
1811
|
+
:linkage=>true,
|
1812
|
+
:group=>"3XX"},
|
1813
|
+
"386"=>
|
1814
|
+
{:definition=>"Creator/Contributor Characteristics",
|
1815
|
+
:repeat=>true,
|
1816
|
+
:indicators=>[:undefined, :undefined],
|
1817
|
+
:subfields=>
|
1818
|
+
{"$a"=>{:definition=>"Creator/contributor term"},
|
1819
|
+
"$b"=>{:definition=>"Creator/contributor code"},
|
1820
|
+
"$i"=>RELINFO,
|
1821
|
+
"$m"=>{:definition=>"Demographic group term", :repeat=>false},
|
1822
|
+
"$n"=>{:definition=>"Demographic group code", :repeat=>false},
|
1823
|
+
"$0"=>ARECNUM,
|
1824
|
+
"$1"=>RWURI,
|
1825
|
+
"$2"=>SOURCE,
|
1826
|
+
"$3"=>MATSPEC,
|
1827
|
+
"$4"=>RELAT},
|
1828
|
+
:linkage=>true,
|
1829
|
+
:group=>"3XX"},
|
1830
|
+
"388"=>
|
1831
|
+
{:definition=>"Time Period of Creation",
|
1832
|
+
:repeat=>true,
|
1833
|
+
:indicators=>
|
1834
|
+
[{:definition=>"Type of time period",
|
1835
|
+
:values=>
|
1836
|
+
{"#"=>"No information provided",
|
1837
|
+
"1"=>"Creation of work",
|
1838
|
+
"2"=>"Creation of aggregate work"}},
|
1839
|
+
:undefined],
|
1840
|
+
:subfields=>
|
1841
|
+
{"$a"=>{:definition=>"Time period of creation term"},
|
1842
|
+
"$0"=>ARECNUM,
|
1843
|
+
"$1"=>RWURI,
|
1844
|
+
"$2"=>SRCTERM,
|
1845
|
+
"$3"=>MATSPEC},
|
1846
|
+
:linkage=>true,
|
1847
|
+
:group=>"3XX"},
|
1848
|
+
"490"=>
|
1849
|
+
{:definition=>"Series Statement",
|
1850
|
+
:repeat=>true,
|
1851
|
+
:indicators=>
|
1852
|
+
[{:definition=>"Series tracing policy",
|
1853
|
+
:values=>{"0"=>"Series not traced",
|
1854
|
+
"1"=>"Series traced"}},
|
1855
|
+
:undefined],
|
1856
|
+
:subfields=>{
|
1857
|
+
"$a"=>{:definition=>"Series statement"},
|
1858
|
+
"$l"=>{:definition=>"Library of Congress call number", :repeat=>false},
|
1859
|
+
"$v"=>{:definition=>"Volume/sequential designation"},
|
1860
|
+
"$x"=>ISSNR,
|
1861
|
+
"$3"=>MATSPEC},
|
1862
|
+
:group=>"4XX"},
|
1863
|
+
"500"=>
|
1864
|
+
{:definition=>"General Note",
|
1865
|
+
:repeat=>true,
|
1866
|
+
:indicators=>[:undefined, :undefined],
|
1867
|
+
:subfields=>{
|
1868
|
+
"$a"=>{:definition=>"General note", :repeat=>false},
|
1869
|
+
"$3"=>MATSPEC,
|
1870
|
+
"$5"=>INSTAPP},
|
1871
|
+
:group=>"5XX"},
|
1872
|
+
"501"=>
|
1873
|
+
{:definition=>"With Note",
|
1874
|
+
:repeat=>true,
|
1875
|
+
:indicators=>[:undefined, :undefined],
|
1876
|
+
:subfields=>{
|
1877
|
+
"$a"=>{:definition=>"With note", :repeat=>false},
|
1878
|
+
"$5"=>INSTAPP},
|
1879
|
+
:group=>"5XX"},
|
1880
|
+
"502"=>
|
1881
|
+
{:definition=>"Dissertation Note",
|
1882
|
+
:repeat=>true,
|
1883
|
+
:indicators=>[:undefined, :undefined],
|
1884
|
+
:subfields=>{
|
1885
|
+
"$a"=>{:definition=>"Dissertation note", :repeat=>false},
|
1886
|
+
"$b"=>{:definition=>"Degree type", :repeat=>false},
|
1887
|
+
"$c"=>{:definition=>"Name of granting institution", :repeat=>false},
|
1888
|
+
"$d"=>{:definition=>"Year degree granted", :repeat=>false},
|
1889
|
+
"$g"=>MISCINF,
|
1890
|
+
"$o"=>{:definition=>"Dissertation identifier"}},
|
1891
|
+
:group=>"5XX"},
|
1892
|
+
"504"=>
|
1893
|
+
{:definition=>"Bibliography, Etc. Note",
|
1894
|
+
:repeat=>true,
|
1895
|
+
:indicators=>[:undefined, :undefined],
|
1896
|
+
:subfields=>{
|
1897
|
+
"$a"=>{:definition=>"Bibliography, etc. note", :repeat=>false},
|
1898
|
+
"$b"=>{:definition=>"Number of references", :repeat=>false}},
|
1899
|
+
:group=>"5XX"},
|
1900
|
+
"505"=>
|
1901
|
+
{:definition=>"Formatted Contents Note",
|
1902
|
+
:repeat=>true,
|
1903
|
+
:indicators=>
|
1904
|
+
[{:definition=>"Display constant controller",
|
1905
|
+
:values=>{"0"=>"Contents",
|
1906
|
+
"1"=>"Incomplete contents",
|
1907
|
+
"2"=>"Partial contents",
|
1908
|
+
"8"=>"No display constant generated"}},
|
1909
|
+
{:definition=>"Level of content designation",
|
1910
|
+
:values=>{
|
1911
|
+
"#"=>"Basic",
|
1912
|
+
"0"=>"Enhanced"}}],
|
1913
|
+
:subfields=>{
|
1914
|
+
"$a"=>{:definition=>"Formatted contents note", :repeat=>false},
|
1915
|
+
"$g"=>MISCINF,
|
1916
|
+
"$r"=>{:definition=>"Statement of responsibility"},
|
1917
|
+
"$t"=>{:definition=>"Title"},
|
1918
|
+
"$u"=>{:definition=>"Uniform Resource Identifier"}},
|
1919
|
+
:group=>"5XX"},
|
1920
|
+
"506"=>
|
1921
|
+
{:definition=>"Restrictions on Access Note",
|
1922
|
+
:repeat=>true,
|
1923
|
+
:indicators=>[{:definition=>"Restriction",
|
1924
|
+
:values=>{"#"=>"No information provided",
|
1925
|
+
"0"=>"No restrictions",
|
1926
|
+
"1"=>"Restrictions apply"}},
|
1927
|
+
:undefined],
|
1928
|
+
:subfields=>{
|
1929
|
+
"$a"=>{:definition=>"Terms governing access", :repeat=>false},
|
1930
|
+
"$b"=>{:definition=>"Jurisdiction"},
|
1931
|
+
"$c"=>{:definition=>"Physical access provisions"},
|
1932
|
+
"$d"=>{:definition=>"Authorized users"},
|
1933
|
+
"$e"=>{:definition=>"Authorization"},
|
1934
|
+
"$f"=>{:definition=>"Standardized terminology for access restriction"},
|
1935
|
+
"$u"=>{:definition=>"Uniform Resource Identifier"},
|
1936
|
+
"$2"=>SRCTERM,
|
1937
|
+
"$3"=>MATSPEC,
|
1938
|
+
"$5"=>INSTAPP},
|
1939
|
+
:group=>"5XX"},
|
1940
|
+
"507"=>
|
1941
|
+
{:definition=>"Scale Note for Graphic Material",
|
1942
|
+
:repeat=>false,
|
1943
|
+
:indicators=>[:undefined, :undefined],
|
1944
|
+
:subfields=>{
|
1945
|
+
"$a"=>{:definition=>"Representative fraction of scale note",
|
1946
|
+
:repeat=>false},
|
1947
|
+
"$b"=>{:definition=>"Remainder of scale note", :repeat=>false}},
|
1948
|
+
:group=>"5XX"},
|
1949
|
+
"508"=>
|
1950
|
+
{:definition=>"Creation/Production Credits Note",
|
1951
|
+
:repeat=>true,
|
1952
|
+
:indicators=>[:undefined, :undefined],
|
1953
|
+
:subfields=>{
|
1954
|
+
"$a"=>{:definition=>"Creation/production credits note", :repeat=>false}},
|
1955
|
+
:group=>"5XX"},
|
1956
|
+
"510"=>
|
1957
|
+
{:definition=>"Citation/References Note",
|
1958
|
+
:repeat=>true,
|
1959
|
+
:indicators=>
|
1960
|
+
[{:definition=>"Coverage/location in source",
|
1961
|
+
:values=>
|
1962
|
+
{"0"=>"Coverage unknown",
|
1963
|
+
"1"=>"Coverage complete",
|
1964
|
+
"2"=>"Coverage is selective",
|
1965
|
+
"3"=>"Location in source not given",
|
1966
|
+
"4"=>"Location in source given"}},
|
1967
|
+
:undefined],
|
1968
|
+
:subfields=>
|
1969
|
+
{"$a"=>{:definition=>"Name of source", :repeat=>false},
|
1970
|
+
"$b"=>{:definition=>"Coverage of source", :repeat=>false},
|
1971
|
+
"$c"=>{:definition=>"Location within source", :repeat=>false},
|
1972
|
+
"$u"=>{:definition=>"Uniform Resource Identifier"},
|
1973
|
+
"$x"=>ISSNNR,
|
1974
|
+
"$3"=>MATSPEC},
|
1975
|
+
:linkage=>true,
|
1976
|
+
:group=>"5XX"},
|
1977
|
+
"511"=>
|
1978
|
+
{:definition=>"Participant or Performer Note",
|
1979
|
+
:repeat=>true,
|
1980
|
+
:indicators=>
|
1981
|
+
[{:definition=>"Display constant controller",
|
1982
|
+
:values=>{"0"=>"No display constant generated",
|
1983
|
+
"1"=>"Cast"}},
|
1984
|
+
:undefined],
|
1985
|
+
:subfields=>{
|
1986
|
+
"$a"=>{:definition=>"Participant or performer note", :repeat=>false}},
|
1987
|
+
:group=>"5XX"},
|
1988
|
+
"513"=>
|
1989
|
+
{:definition=>"Type of Report and Period Covered Note",
|
1990
|
+
:repeat=>true,
|
1991
|
+
:indicators=>[:undefined, :undefined],
|
1992
|
+
:subfields=>{
|
1993
|
+
"$a"=>{:definition=>"Type of report", :repeat=>false},
|
1994
|
+
"$b"=>{:definition=>"Period covered", :repeat=>false}},
|
1995
|
+
:group=>"5XX"},
|
1996
|
+
"514"=>
|
1997
|
+
{:definition=>"Data Quality Note",
|
1998
|
+
:repeat=>false,
|
1999
|
+
:indicators=>[:undefined, :undefined],
|
2000
|
+
:subfields=>{
|
2001
|
+
"$a"=>{:definition=>"Attribute accuracy report", :repeat=>false},
|
2002
|
+
"$b"=>{:definition=>"Attribute accuracy value"},
|
2003
|
+
"$c"=>{:definition=>"Attribute accuracy explanation"},
|
2004
|
+
"$d"=>{:definition=>"Logical consistency report", :repeat=>false},
|
2005
|
+
"$e"=>{:definition=>"Completeness report", :repeat=>false},
|
2006
|
+
"$f"=>{:definition=>"Horizontal position accuracy report", :repeat=>false},
|
2007
|
+
"$g"=>{:definition=>"Horizontal position accuracy value"},
|
2008
|
+
"$h"=>{:definition=>"Horizontal position accuracy explanation"},
|
2009
|
+
"$i"=>{:definition=>"Vertical positional accuracy report", :repeat=>false},
|
2010
|
+
"$j"=>{:definition=>"Vertical positional accuracy value"},
|
2011
|
+
"$k"=>{:definition=>"Vertical positional accuracy explanation"},
|
2012
|
+
"$m"=>{:definition=>"Cloud cover", :repeat=>false},
|
2013
|
+
"$u"=>{:definition=>"Uniform Resource Identifier"},
|
2014
|
+
"$z"=>{:definition=>"Display note"}},
|
2015
|
+
:group=>"5XX"},
|
2016
|
+
"515"=>
|
2017
|
+
{:definition=>"Numbering Peculiarities Note",
|
2018
|
+
:repeat=>true,
|
2019
|
+
:indicators=>[:undefined, :undefined],
|
2020
|
+
:subfields=>{"$a"=>{:definition=>"Numbering peculiarities note",
|
2021
|
+
:repeat=>false}},
|
2022
|
+
:group=>"5XX"},
|
2023
|
+
"516"=>
|
2024
|
+
{:definition=>"Type of Computer File or Data Note",
|
2025
|
+
:repeat=>true,
|
2026
|
+
:indicators=>
|
2027
|
+
[{:definition=>"Display constant controller",
|
2028
|
+
:values=>{"#"=>"Type of file",
|
2029
|
+
"8"=>"No display constant generated"}},
|
2030
|
+
:undefined],
|
2031
|
+
:subfields=>{
|
2032
|
+
"$a"=>{:definition=>"Type of computer file or data note",
|
2033
|
+
:repeat=>false}},
|
2034
|
+
:group=>"5XX"},
|
2035
|
+
"518"=>
|
2036
|
+
{:definition=>"Date/Time and Place of an Event Note",
|
2037
|
+
:repeat=>true,
|
2038
|
+
:indicators=>[:undefined, :undefined],
|
2039
|
+
:subfields=>
|
2040
|
+
{"$a"=>
|
2041
|
+
{:definition=>"Date/time and place of an event note", :repeat=>false},
|
2042
|
+
"$d"=>{:definition=>"Date of event"},
|
2043
|
+
"$o"=>{:definition=>"Other event information"},
|
2044
|
+
"$p"=>{:definition=>"Place of event"},
|
2045
|
+
"$0"=>ARECNUM,
|
2046
|
+
"$1"=>RWURI,
|
2047
|
+
"$2"=>{:definition=>"Source of term"},
|
2048
|
+
"$3"=>MATSPEC},
|
2049
|
+
:linkage=>true,
|
2050
|
+
:group=>"5XX"},
|
2051
|
+
"520"=>
|
2052
|
+
{:definition=>"Summary, Etc.",
|
2053
|
+
:repeat=>true,
|
2054
|
+
:indicators=>
|
2055
|
+
[{:definition=>"Display constant controller",
|
2056
|
+
:values=>{"#"=>"Summary",
|
2057
|
+
"0"=>"Subject",
|
2058
|
+
"1"=>"Review",
|
2059
|
+
"2"=>"Scope and content",
|
2060
|
+
"3"=>"Abstract",
|
2061
|
+
"4"=>"Content advice",
|
2062
|
+
"8"=>"No display constant generated"}},
|
2063
|
+
:undefined],
|
2064
|
+
:subfields=>{
|
2065
|
+
"$a"=>{:definition=>"Summary, etc.", :repeat=>false},
|
2066
|
+
"$b"=>{:definition=>"Expansion of summary note", :repeat=>false},
|
2067
|
+
"$c"=>{:definition=>"Assigning source", :repeat=>false},
|
2068
|
+
"$u"=>{:definition=>"Uniform Resource Identifier"},
|
2069
|
+
"$2"=>SOURCE,
|
2070
|
+
"$3"=>MATSPEC},
|
2071
|
+
:group=>"5XX"},
|
2072
|
+
"521"=>
|
2073
|
+
{:definition=>"Target Audience Note",
|
2074
|
+
:repeat=>true,
|
2075
|
+
:indicators=>
|
2076
|
+
[{:definition=>"Display constant controller",
|
2077
|
+
:values=>{"#"=>"Audience",
|
2078
|
+
"0"=>"Reading grade level",
|
2079
|
+
"1"=>"Interest age level",
|
2080
|
+
"2"=>"Interest grade level",
|
2081
|
+
"3"=>"Special audience characteristics",
|
2082
|
+
"4"=>"Motivation/interest level",
|
2083
|
+
"8"=>"No display constant generated"}},
|
2084
|
+
:undefined],
|
2085
|
+
:subfields=>{
|
2086
|
+
"$a"=>{:definition=>"Target audience note"},
|
2087
|
+
"$b"=>SOURCE,
|
2088
|
+
"$3"=>MATSPEC},
|
2089
|
+
:group=>"5XX"},
|
2090
|
+
"522"=>
|
2091
|
+
{:definition=>"Geographic Coverage Note",
|
2092
|
+
:repeat=>true,
|
2093
|
+
:indicators=>
|
2094
|
+
[{:definition=>"Display constant controller",
|
2095
|
+
:values=>{"#"=>"Geographic coverage",
|
2096
|
+
"8"=>"No display constant generated"}},
|
2097
|
+
:undefined],
|
2098
|
+
:subfields=>{
|
2099
|
+
"$a"=>{:definition=>"Geographic coverage note", :repeat=>false}},
|
2100
|
+
:group=>"5XX"},
|
2101
|
+
"524"=>
|
2102
|
+
{:definition=>"Preferred Citation of Described Materials Note",
|
2103
|
+
:repeat=>true,
|
2104
|
+
:indicators=>
|
2105
|
+
[{:definition=>"Display constant controller",
|
2106
|
+
:values=>{"#"=>"Cite as",
|
2107
|
+
"8"=>"No display constant generated"}},
|
2108
|
+
:undefined],
|
2109
|
+
:subfields=>{
|
2110
|
+
"$a"=>{:definition=>"Preferred citation of described materials note",
|
2111
|
+
:repeat=>false},
|
2112
|
+
"$2"=>{:definition=>"Source of schema used", :repeat=>false},
|
2113
|
+
"$3"=>MATSPEC},
|
2114
|
+
:group=>"5XX"},
|
2115
|
+
"525"=>
|
2116
|
+
{:definition=>"Supplement Note",
|
2117
|
+
:repeat=>true,
|
2118
|
+
:indicators=>[:undefined, :undefined],
|
2119
|
+
:subfields=>{"$a"=>{:definition=>"Supplement note", :repeat=>false}},
|
2120
|
+
:group=>"5XX"},
|
2121
|
+
"526"=>
|
2122
|
+
{:definition=>"Study Program Information Note",
|
2123
|
+
:repeat=>true,
|
2124
|
+
:indicators=>
|
2125
|
+
[{:definition=>"Display constant controller",
|
2126
|
+
:values=>{"0"=>"Reading program",
|
2127
|
+
"8"=>"No display constant generated"}},
|
2128
|
+
:undefined],
|
2129
|
+
:subfields=>{
|
2130
|
+
"$a"=>{:definition=>"Program name", :repeat=>false},
|
2131
|
+
"$b"=>{:definition=>"Interest level", :repeat=>false},
|
2132
|
+
"$c"=>{:definition=>"Reading level", :repeat=>false},
|
2133
|
+
"$d"=>{:definition=>"Title point value", :repeat=>false},
|
2134
|
+
"$i"=>{:definition=>"Display text", :repeat=>false},
|
2135
|
+
"$x"=>NPUBNOT,
|
2136
|
+
"$z"=>PUBNOTE,
|
2137
|
+
"$5"=>INSTAPP},
|
2138
|
+
:group=>"5XX"},
|
2139
|
+
"530"=>
|
2140
|
+
{:definition=>"Additional Physical Form Available Note",
|
2141
|
+
:repeat=>true,
|
2142
|
+
:indicators=>[:undefined, :undefined],
|
2143
|
+
:subfields=>{
|
2144
|
+
"$a"=>{:definition=>"Additional physical form available note",
|
2145
|
+
:repeat=>false},
|
2146
|
+
"$b"=>{:definition=>"Availability source", :repeat=>false},
|
2147
|
+
"$c"=>{:definition=>"Availability conditions", :repeat=>false},
|
2148
|
+
"$d"=>{:definition=>"Order number", :repeat=>false},
|
2149
|
+
"$u"=>{:definition=>"Uniform Resource Identifier"},
|
2150
|
+
"$3"=>MATSPEC},
|
2151
|
+
:group=>"5XX"},
|
2152
|
+
"533"=>
|
2153
|
+
{:definition=>"Reproduction Note",
|
2154
|
+
:repeat=>true,
|
2155
|
+
:indicators=>[:undefined, :undefined],
|
2156
|
+
:subfields=>{
|
2157
|
+
"$a"=>{:definition=>"Type of reproduction", :repeat=>false},
|
2158
|
+
"$b"=>{:definition=>"Place of reproduction"},
|
2159
|
+
"$c"=>{:definition=>"Agency responsible for reproduction"},
|
2160
|
+
"$d"=>{:definition=>"Date of reproduction", :repeat=>false},
|
2161
|
+
"$e"=>{:definition=>"Physical description of reproduction",
|
2162
|
+
:repeat=>false},
|
2163
|
+
"$f"=>{:definition=>"Series statement of reproduction"},
|
2164
|
+
"$m"=>{
|
2165
|
+
:definition=>"Dates and/or sequential designation of issues reproduced"},
|
2166
|
+
"$n"=>{:definition=>"Note about reproduction"},
|
2167
|
+
"$3"=>MATSPEC,
|
2168
|
+
"$5"=>INSTAPP,
|
2169
|
+
"$7"=>{:definition=>"Fixed-length data elements of reproduction",
|
2170
|
+
:repeat=>false}},
|
2171
|
+
:group=>"5XX"},
|
2172
|
+
"534"=>
|
2173
|
+
{:definition=>"Original Version Note",
|
2174
|
+
:repeat=>true,
|
2175
|
+
:indicators=>[:undefined, :undefined],
|
2176
|
+
:subfields=>{
|
2177
|
+
"$a"=>{:definition=>"Main entry of original", :repeat=>false},
|
2178
|
+
"$b"=>{:definition=>"Edition statement of original", :repeat=>false},
|
2179
|
+
"$c"=>{:definition=>"Publication, distribution, etc. of original",
|
2180
|
+
:repeat=>false},
|
2181
|
+
"$e"=>{:definition=>"Physical description, etc. of original",
|
2182
|
+
:repeat=>false},
|
2183
|
+
"$f"=>{:definition=>"Series statement of original"},
|
2184
|
+
"$k"=>{:definition=>"Key title of original"},
|
2185
|
+
"$l"=>{:definition=>"Location of original", :repeat=>false},
|
2186
|
+
"$m"=>{:definition=>"Material specific details", :repeat=>false},
|
2187
|
+
"$n"=>{:definition=>"Note about original"},
|
2188
|
+
"$o"=>{:definition=>"Other resource identifier"},
|
2189
|
+
"$p"=>{:definition=>"Introductory phrase", :repeat=>false},
|
2190
|
+
"$t"=>{:definition=>"Title statement of original", :repeat=>false},
|
2191
|
+
"$x"=>ISSNR,
|
2192
|
+
"$z"=>ISBNR,
|
2193
|
+
"$3"=>MATSPEC},
|
2194
|
+
:group=>"5XX"},
|
2195
|
+
"535"=>
|
2196
|
+
{:definition=>"Location of Originals/Duplicates Note",
|
2197
|
+
:repeat=>true,
|
2198
|
+
:indicators=>[{:definition=>"Custodial role",
|
2199
|
+
:values=>{"1"=>"Holder of originals",
|
2200
|
+
"2"=>"Holder of duplicates"}},
|
2201
|
+
:undefined],
|
2202
|
+
:subfields=>{
|
2203
|
+
"$a"=>{:definition=>"Custodian", :repeat=>false},
|
2204
|
+
"$b"=>{:definition=>"Postal address"},
|
2205
|
+
"$c"=>{:definition=>"Country"},
|
2206
|
+
"$d"=>{:definition=>"Telecommunications address"},
|
2207
|
+
"$g"=>{:definition=>"Repository location code", :repeat=>false},
|
2208
|
+
"$3"=>MATSPEC},
|
2209
|
+
:group=>"5XX"},
|
2210
|
+
"536"=>
|
2211
|
+
{:definition=>"Funding Information Note",
|
2212
|
+
:repeat=>true,
|
2213
|
+
:indicators=>[:undefined, :undefined],
|
2214
|
+
:subfields=>{
|
2215
|
+
"$a"=>{:definition=>"Text of note", :repeat=>false},
|
2216
|
+
"$b"=>{:definition=>"Contract number"},
|
2217
|
+
"$c"=>{:definition=>"Grant number"},
|
2218
|
+
"$d"=>{:definition=>"Undifferentiated number"},
|
2219
|
+
"$e"=>{:definition=>"Program element number"},
|
2220
|
+
"$f"=>{:definition=>"Project number"},
|
2221
|
+
"$g"=>{:definition=>"Task number"},
|
2222
|
+
"$h"=>{:definition=>"Work unit number"}},
|
2223
|
+
:group=>"5XX"},
|
2224
|
+
"538"=>
|
2225
|
+
{:definition=>"System Details Note",
|
2226
|
+
:repeat=>true,
|
2227
|
+
:indicators=>[:undefined, :undefined],
|
2228
|
+
:subfields=>{
|
2229
|
+
"$a"=>{:definition=>"System details note", :repeat=>false},
|
2230
|
+
"$i"=>{:definition=>"Display text", :repeat=>false},
|
2231
|
+
"$u"=>{:definition=>"Uniform Resource Identifier"},
|
2232
|
+
"$3"=>MATSPEC,
|
2233
|
+
"$5"=>{:definition=>"Institution to which field applies"}},
|
2234
|
+
:group=>"5XX"},
|
2235
|
+
"540"=>
|
2236
|
+
{:definition=>"Terms Governing Use and Reproduction Note",
|
2237
|
+
:repeat=>true,
|
2238
|
+
:indicators=>[:undefined, :undefined],
|
2239
|
+
:subfields=>{
|
2240
|
+
"$a"=>{:definition=>"Terms governing use and reproduction",
|
2241
|
+
:repeat=>false},
|
2242
|
+
"$b"=>{:definition=>"Jurisdiction", :repeat=>false},
|
2243
|
+
"$c"=>{:definition=>"Authorization", :repeat=>false},
|
2244
|
+
"$d"=>{:definition=>"Authorized users", :repeat=>false},
|
2245
|
+
"$u"=>{:definition=>"Uniform Resource Identifier"},
|
2246
|
+
"$3"=>MATSPEC,
|
2247
|
+
"$5"=>INSTAPP},
|
2248
|
+
:group=>"5XX"},
|
2249
|
+
"541"=>
|
2250
|
+
{:definition=>"Immediate Source of Acquisition Note",
|
2251
|
+
:repeat=>true,
|
2252
|
+
:indicators=>[{:definition=>"Privacy",
|
2253
|
+
:values=>{"#"=>"No information provided",
|
2254
|
+
"0"=>"Private",
|
2255
|
+
"1"=>"Not private"}},
|
2256
|
+
:undefined],
|
2257
|
+
:subfields=>{
|
2258
|
+
"$a"=>{:definition=>"Source of acquisition", :repeat=>false},
|
2259
|
+
"$b"=>{:definition=>"Address", :repeat=>false},
|
2260
|
+
"$c"=>{:definition=>"Method of acquisition", :repeat=>false},
|
2261
|
+
"$d"=>{:definition=>"Date of acquisition", :repeat=>false},
|
2262
|
+
"$e"=>{:definition=>"Accession number", :repeat=>false},
|
2263
|
+
"$f"=>{:definition=>"Owner", :repeat=>false},
|
2264
|
+
"$h"=>{:definition=>"Purchase price", :repeat=>false},
|
2265
|
+
"$n"=>{:definition=>"Extent"},
|
2266
|
+
"$o"=>{:definition=>"Type of unit"},
|
2267
|
+
"$3"=>MATSPEC,
|
2268
|
+
"$5"=>INSTAPP},
|
2269
|
+
:group=>"5XX"},
|
2270
|
+
"542"=>
|
2271
|
+
{:definition=>"Information Relating to Copyright Status",
|
2272
|
+
:repeat=>true,
|
2273
|
+
:indicators=>[{:definition=>"Privacy",
|
2274
|
+
:values=>{"#"=>"No information provided",
|
2275
|
+
"0"=>"Private",
|
2276
|
+
"1"=>"Not private"}},
|
2277
|
+
:undefined],
|
2278
|
+
:subfields=>{
|
2279
|
+
"$a"=>{:definition=>"Personal creator", :repeat=>false},
|
2280
|
+
"$b"=>{:definition=>"Personal creator death date", :repeat=>false},
|
2281
|
+
"$c"=>{:definition=>"Corporate creator", :repeat=>false},
|
2282
|
+
"$d"=>{:definition=>"Copyright holder"},
|
2283
|
+
"$e"=>{:definition=>"Copyright holder contact information"},
|
2284
|
+
"$f"=>{:definition=>"Copyright statement"},
|
2285
|
+
"$g"=>{:definition=>"Copyright date", :repeat=>false},
|
2286
|
+
"$h"=>{:definition=>"Copyright renewal date"},
|
2287
|
+
"$i"=>{:definition=>"Publication date", :repeat=>false},
|
2288
|
+
"$j"=>{:definition=>"Creation date", :repeat=>false},
|
2289
|
+
"$k"=>{:definition=>"Publisher"},
|
2290
|
+
"$l"=>{:definition=>"Copyright status", :repeat=>false},
|
2291
|
+
"$m"=>{:definition=>"Publication status", :repeat=>false},
|
2292
|
+
"$n"=>NOTER,
|
2293
|
+
"$o"=>{:definition=>"Research date", :repeat=>false},
|
2294
|
+
"$p"=>{:definition=>"Country of publication or creation"},
|
2295
|
+
"$q"=>{:definition=>"Supplying agency", :repeat=>false},
|
2296
|
+
"$r"=>{:definition=>"Jurisdiction of copyright assessment",
|
2297
|
+
:repeat=>false},
|
2298
|
+
"$s"=>{:definition=>"Source of information", :repeat=>false},
|
2299
|
+
"$u"=>{:definition=>"Uniform Resource Identifier"},
|
2300
|
+
"$3"=>MATSPEC},
|
2301
|
+
:group=>"5XX"},
|
2302
|
+
"544"=>
|
2303
|
+
{:definition=>"Location of Other Archival Materials Note",
|
2304
|
+
:repeat=>true,
|
2305
|
+
:indicators=>[{:definition=>"Relationship",
|
2306
|
+
:values=>{"#"=>"No information provided",
|
2307
|
+
"0"=>"Associated materials",
|
2308
|
+
"1"=>"Related materials"}},
|
2309
|
+
:undefined],
|
2310
|
+
:subfields=>{
|
2311
|
+
"$a"=>{:definition=>"Custodian"},
|
2312
|
+
"$b"=>{:definition=>"Address"},
|
2313
|
+
"$c"=>{:definition=>"Country"},
|
2314
|
+
"$d"=>{:definition=>"Title"},
|
2315
|
+
"$e"=>{:definition=>"Provenance"},
|
2316
|
+
"$n"=>NOTER,
|
2317
|
+
"$3"=>MATSPEC},
|
2318
|
+
:group=>"5XX"},
|
2319
|
+
"545"=>
|
2320
|
+
{:definition=>"Biographical or Historical Data",
|
2321
|
+
:repeat=>true,
|
2322
|
+
:indicators=>[{:definition=>"Type of data",
|
2323
|
+
:values=>{"#"=>"No information provided",
|
2324
|
+
"0"=>"Biographical sketch",
|
2325
|
+
"1"=>"Administrative history"}},
|
2326
|
+
:undefined],
|
2327
|
+
:subfields=>{
|
2328
|
+
"$a"=>{:definition=>"Biographical or historical data", :repeat=>false},
|
2329
|
+
"$b"=>{:definition=>"Expansion", :repeat=>false},
|
2330
|
+
"$u"=>{:definition=>"Uniform Resource Identifier"}},
|
2331
|
+
:group=>"5XX"},
|
2332
|
+
"546"=>
|
2333
|
+
{:definition=>"Language Note",
|
2334
|
+
:repeat=>true,
|
2335
|
+
:indicators=>[:undefined, :undefined],
|
2336
|
+
:subfields=>
|
2337
|
+
{"$a"=>{:definition=>"Language note", :repeat=>false},
|
2338
|
+
"$b"=>{:definition=>"Information code or alphabet"},
|
2339
|
+
"$3"=>MATSPEC},
|
2340
|
+
:linkage=>true,
|
2341
|
+
:group=>"5XX"},
|
2342
|
+
"547"=>
|
2343
|
+
{:definition=>"Former Title Complexity Note",
|
2344
|
+
:repeat=>true,
|
2345
|
+
:indicators=>[:undefined, :undefined],
|
2346
|
+
:subfields=>{
|
2347
|
+
"$a"=>{:definition=>"Former title complexity note",
|
2348
|
+
:repeat=>false}},
|
2349
|
+
:group=>"5XX"},
|
2350
|
+
"550"=>
|
2351
|
+
{:definition=>"Issuing Body Note",
|
2352
|
+
:repeat=>true,
|
2353
|
+
:indicators=>[:undefined, :undefined],
|
2354
|
+
:subfields=>{
|
2355
|
+
"$a"=>{:definition=>"Issuing body note",
|
2356
|
+
:repeat=>false}},
|
2357
|
+
:group=>"5XX"},
|
2358
|
+
"552"=>
|
2359
|
+
{:definition=>"Entity and Attribute Information Note",
|
2360
|
+
:repeat=>true,
|
2361
|
+
:indicators=>[:undefined, :undefined],
|
2362
|
+
:subfields=>{
|
2363
|
+
"$a"=>{:definition=>"Entity type label", :repeat=>false},
|
2364
|
+
"$b"=>{:definition=>"Entity type definition and source", :repeat=>false},
|
2365
|
+
"$c"=>{:definition=>"Attribute label", :repeat=>false},
|
2366
|
+
"$d"=>{:definition=>"Attribute definition and source", :repeat=>false},
|
2367
|
+
"$e"=>{:definition=>"Enumerated domain value"},
|
2368
|
+
"$f"=>{:definition=>"Enumerated domain value definition and source"},
|
2369
|
+
"$g"=>{:definition=>"Range domain minimum and maximum", :repeat=>false},
|
2370
|
+
"$h"=>{:definition=>"Codeset name and source", :repeat=>false},
|
2371
|
+
"$i"=>{:definition=>"Unrepresentable domain", :repeat=>false},
|
2372
|
+
"$j"=>{:definition=>"Attribute units of measurement and resolution",
|
2373
|
+
:repeat=>false},
|
2374
|
+
"$k"=>{:definition=>"Beginning and ending date of attribute values",
|
2375
|
+
:repeat=>false},
|
2376
|
+
"$l"=>{:definition=>"Attribute value accuracy", :repeat=>false},
|
2377
|
+
"$m"=>{:definition=>"Attribute value accuracy explanation",
|
2378
|
+
:repeat=>false},
|
2379
|
+
"$n"=>{:definition=>"Attribute measurement frequency", :repeat=>false},
|
2380
|
+
"$o"=>{:definition=>"Entity and attribute overview"},
|
2381
|
+
"$p"=>{:definition=>"Entity and attribute detail citation"},
|
2382
|
+
"$u"=>{:definition=>"Uniform Resource Identifier"},
|
2383
|
+
"$z"=>{:definition=>"Display note"}},
|
2384
|
+
:group=>"5XX"},
|
2385
|
+
"555"=>
|
2386
|
+
{:definition=>"Cumulative Index/Finding Aids Note",
|
2387
|
+
:repeat=>true,
|
2388
|
+
:indicators=>
|
2389
|
+
[{:definition=>"Display constant controller",
|
2390
|
+
:values=>{"#"=>"Indexes",
|
2391
|
+
"0"=>"Finding aids",
|
2392
|
+
"8"=>"No display constant generated"}},
|
2393
|
+
:undefined],
|
2394
|
+
:subfields=>{
|
2395
|
+
"$a"=>{:definition=>"Cumulative index/finding aids note", :repeat=>false},
|
2396
|
+
"$b"=>{:definition=>"Availability source"},
|
2397
|
+
"$c"=>{:definition=>"Degree of control", :repeat=>false},
|
2398
|
+
"$d"=>{:definition=>"Bibliographic reference", :repeat=>false},
|
2399
|
+
"$u"=>{:definition=>"Uniform Resource Identifier"},
|
2400
|
+
"$3"=>MATSPEC},
|
2401
|
+
:group=>"5XX"},
|
2402
|
+
"556"=>
|
2403
|
+
{:definition=>"Information About Documentation Note",
|
2404
|
+
:repeat=>true,
|
2405
|
+
:indicators=>
|
2406
|
+
[{:definition=>"Display constant controller",
|
2407
|
+
:values=>{"#"=>"Documentation",
|
2408
|
+
"8"=>"No display constant generated"}},
|
2409
|
+
:undefined],
|
2410
|
+
:subfields=>{
|
2411
|
+
"$a"=>{:definition=>"Information about documentation note",
|
2412
|
+
:repeat=>false},
|
2413
|
+
"$z"=>ISBNR},
|
2414
|
+
:group=>"5XX"},
|
2415
|
+
"561"=>
|
2416
|
+
{:definition=>"Ownership and Custodial History",
|
2417
|
+
:repeat=>true,
|
2418
|
+
:indicators=>
|
2419
|
+
[{:definition=>"Privacy",
|
2420
|
+
:values=>
|
2421
|
+
{"#"=>"No information provided", "0"=>"Private", "1"=>"Not private"}},
|
2422
|
+
:undefined],
|
2423
|
+
:subfields=>
|
2424
|
+
{"$a"=>{:definition=>"History", :repeat=>false},
|
2425
|
+
"$u"=>{:definition=>"Uniform Resource Identifier"},
|
2426
|
+
"$3"=>MATSPEC,
|
2427
|
+
"$5"=>INSTAPP},
|
2428
|
+
:linkage=>true,
|
2429
|
+
:group=>"5XX"},
|
2430
|
+
"562"=>
|
2431
|
+
{:definition=>"Copy and Version Identification Note",
|
2432
|
+
:repeat=>true,
|
2433
|
+
:indicators=>[:undefined, :undefined],
|
2434
|
+
:subfields=>{
|
2435
|
+
"$a"=>{:definition=>"Identifying markings"},
|
2436
|
+
"$b"=>{:definition=>"Copy identification"},
|
2437
|
+
"$c"=>{:definition=>"Version identification"},
|
2438
|
+
"$d"=>{:definition=>"Presentation format"},
|
2439
|
+
"$e"=>{:definition=>"Number of copies"},
|
2440
|
+
"$3"=>MATSPEC,
|
2441
|
+
"$5"=>{:definition=>"Institution to which field applies",
|
2442
|
+
:repeat=>false}},
|
2443
|
+
:group=>"5XX"},
|
2444
|
+
"563"=>
|
2445
|
+
{:definition=>"Binding Information",
|
2446
|
+
:repeat=>true,
|
2447
|
+
:indicators=>[:undefined, :undefined],
|
2448
|
+
:subfields=>{
|
2449
|
+
"$a"=>{:definition=>"Binding note", :repeat=>false},
|
2450
|
+
"$u"=>{:definition=>"Uniform Resource Identifier"},
|
2451
|
+
"$3"=>MATSPEC,
|
2452
|
+
"$5"=>{:definition=>"Institution to which field applies",
|
2453
|
+
:repeat=>false}},
|
2454
|
+
:group=>"5XX"},
|
2455
|
+
"565"=>
|
2456
|
+
{:definition=>"Case File Characteristics Note",
|
2457
|
+
:repeat=>true,
|
2458
|
+
:indicators=>
|
2459
|
+
[{:definition=>"Display constant controller",
|
2460
|
+
:values=>{"#"=>"File size",
|
2461
|
+
"0"=>"Case file characteristics",
|
2462
|
+
"8"=>"No display constant generated"}},
|
2463
|
+
:undefined],
|
2464
|
+
:subfields=>{
|
2465
|
+
"$a"=>{:definition=>"Number of cases/variables", :repeat=>false},
|
2466
|
+
"$b"=>{:definition=>"Name of variable"},
|
2467
|
+
"$c"=>{:definition=>"Unit of analysis"},
|
2468
|
+
"$d"=>{:definition=>"Universe of data"},
|
2469
|
+
"$e"=>{:definition=>"Filing scheme or code"},
|
2470
|
+
"$3"=>MATSPEC},
|
2471
|
+
:group=>"5XX"},
|
2472
|
+
"567"=>
|
2473
|
+
{:definition=>"Methodology Note",
|
2474
|
+
:repeat=>true,
|
2475
|
+
:indicators=>
|
2476
|
+
[{:definition=>"Display constant controller",
|
2477
|
+
:values=>{"#"=>"Methodology", "8"=>"No display constant generated"}},
|
2478
|
+
:undefined],
|
2479
|
+
:subfields=>
|
2480
|
+
{"$a"=>{:definition=>"Methodology note", :repeat=>false},
|
2481
|
+
"$b"=>{:definition=>"Controlled term"},
|
2482
|
+
"$0"=>ARECNUM,
|
2483
|
+
"$1"=>RWURI,
|
2484
|
+
"$2"=>SRCTERM},
|
2485
|
+
:linkage=>true,
|
2486
|
+
:group=>"5XX"},
|
2487
|
+
"580"=>
|
2488
|
+
{:definition=>"Linking Entry Complexity Note",
|
2489
|
+
:repeat=>true,
|
2490
|
+
:indicators=>[:undefined, :undefined],
|
2491
|
+
:subfields=>{
|
2492
|
+
"$a"=>{:definition=>"Linking entry complexity note", :repeat=>false}},
|
2493
|
+
:group=>"5XX"},
|
2494
|
+
"581"=>
|
2495
|
+
{:definition=>"Publications About Described Materials Note",
|
2496
|
+
:repeat=>true,
|
2497
|
+
:indicators=>
|
2498
|
+
[{:definition=>"Display constant controller",
|
2499
|
+
:values=>{"#"=>"Publications",
|
2500
|
+
"8"=>"No display constant generated"}},
|
2501
|
+
:undefined],
|
2502
|
+
:subfields=>{
|
2503
|
+
"$a"=>{:definition=>"Publications about described materials note",
|
2504
|
+
:repeat=>false},
|
2505
|
+
"$z"=>ISBNR,
|
2506
|
+
"$3"=>MATSPEC},
|
2507
|
+
:group=>"5XX"},
|
2508
|
+
"583"=>
|
2509
|
+
{:definition=>"Action Note",
|
2510
|
+
:repeat=>true,
|
2511
|
+
:indicators=>[{:definition=>"Privacy",
|
2512
|
+
:values=>{"#"=>"No information provided",
|
2513
|
+
"0"=>"Private",
|
2514
|
+
"1"=>"Not private"}},
|
2515
|
+
:undefined],
|
2516
|
+
:subfields=>{
|
2517
|
+
"$a"=>{:definition=>"Action", :repeat=>false},
|
2518
|
+
"$b"=>{:definition=>"Action identification"},
|
2519
|
+
"$c"=>{:definition=>"Time/date of action"},
|
2520
|
+
"$d"=>{:definition=>"Action interval"},
|
2521
|
+
"$e"=>{:definition=>"Contingency for action"},
|
2522
|
+
"$f"=>{:definition=>"Authorization"},
|
2523
|
+
"$h"=>{:definition=>"Jurisdiction"},
|
2524
|
+
"$i"=>{:definition=>"Method of action"},
|
2525
|
+
"$j"=>{:definition=>"Site of action"},
|
2526
|
+
"$k"=>{:definition=>"Action agent"},
|
2527
|
+
"$l"=>{:definition=>"Status"},
|
2528
|
+
"$n"=>{:definition=>"Extent"},
|
2529
|
+
"$o"=>{:definition=>"Type of unit"},
|
2530
|
+
"$u"=>{:definition=>"Uniform Resource Identifier"},
|
2531
|
+
"$x"=>NPUBNOT,
|
2532
|
+
"$z"=>PUBNOTE,
|
2533
|
+
"$2"=>SRCTERM,
|
2534
|
+
"$3"=>MATSPEC,
|
2535
|
+
"$5"=>{:definition=>"Institution to which field applies",
|
2536
|
+
:repeat=>false},},
|
2537
|
+
:group=>"5XX"},
|
2538
|
+
"584"=>
|
2539
|
+
{:definition=>"Accumulation and Frequency of Use Note",
|
2540
|
+
:repeat=>true,
|
2541
|
+
:indicators=>[:undefined, :undefined],
|
2542
|
+
:subfields=>{
|
2543
|
+
"$a"=>{:definition=>"Accumulation"},
|
2544
|
+
"$b"=>{:definition=>"Frequency of use"},
|
2545
|
+
"$3"=>MATSPEC,
|
2546
|
+
"$5"=>{:definition=>"Institution to which field applies",
|
2547
|
+
:repeat=>false},},
|
2548
|
+
:group=>"5XX"},
|
2549
|
+
"585"=>
|
2550
|
+
{:definition=>"Exhibitions Note",
|
2551
|
+
:repeat=>true,
|
2552
|
+
:indicators=>[:undefined, :undefined],
|
2553
|
+
:subfields=>{
|
2554
|
+
"$a"=>{:definition=>"Exhibitions note", :repeat=>false},
|
2555
|
+
"$3"=>MATSPEC,
|
2556
|
+
"$5"=>{:definition=>"Institution to which field applies",
|
2557
|
+
:repeat=>false},},
|
2558
|
+
:group=>"5XX"},
|
2559
|
+
"586"=>
|
2560
|
+
{:definition=>"Awards Note",
|
2561
|
+
:repeat=>true,
|
2562
|
+
:indicators=>
|
2563
|
+
[{:definition=>"Display constant controller",
|
2564
|
+
:values=>{"#"=>"Awards",
|
2565
|
+
"8"=>"No display constant generated"}},
|
2566
|
+
:undefined],
|
2567
|
+
:subfields=>{
|
2568
|
+
"$a"=>{:definition=>"Awards note", :repeat=>false},
|
2569
|
+
"$3"=>MATSPEC, },
|
2570
|
+
:group=>"5XX"},
|
2571
|
+
"588"=>
|
2572
|
+
{:definition=>"Source of Description Note",
|
2573
|
+
:repeat=>true,
|
2574
|
+
:indicators=>
|
2575
|
+
[{:definition=>"Display constant controller",
|
2576
|
+
:values=>{"#"=>"No information provided",
|
2577
|
+
"0"=>"Source of description",
|
2578
|
+
"1"=>"Latest issue consulted"}},
|
2579
|
+
:undefined],
|
2580
|
+
:subfields=>
|
2581
|
+
{"$a"=>{:definition=>"Source of description note", :repeat=>false},
|
2582
|
+
"$5"=>INSTAPP},
|
2583
|
+
:linkage=>true,
|
2584
|
+
:group=>"5XX"},
|
2585
|
+
"59X"=>
|
2586
|
+
{:definition=>"Local Notes",
|
2587
|
+
:repeat=>true,
|
2588
|
+
:indicators=>nil,
|
2589
|
+
:subfields=>nil,
|
2590
|
+
:group=>"5XX"},
|
2591
|
+
"600"=>
|
2592
|
+
{:definition=>"Subject Added Entry-Personal Name",
|
2593
|
+
:repeat=>true,
|
2594
|
+
:indicators=>
|
2595
|
+
[{:definition=>"Type of personal name entry element",
|
2596
|
+
:values=>{"0"=>"Forename", "1"=>"Surname", "3"=>"Family name"}},
|
2597
|
+
{:definition=>"Thesaurus",
|
2598
|
+
:values=>
|
2599
|
+
{"0"=>"Library of Congress Subject Headings",
|
2600
|
+
"1"=>"LC subject headings for children's literature",
|
2601
|
+
"2"=>"Medical Subject Headings",
|
2602
|
+
"3"=>"National Agricultural Library subject authority file",
|
2603
|
+
"4"=>"Source not specified",
|
2604
|
+
"5"=>"Canadian Subject Headings",
|
2605
|
+
"6"=>"Répertoire de vedettes-matière",
|
2606
|
+
"7"=>"Source specified in subfield $2"}}],
|
2607
|
+
:subfields=>
|
2608
|
+
{"$a"=>{:definition=>"Personal name", :repeat=>false},
|
2609
|
+
"$b"=>{:definition=>"Numeration", :repeat=>false},
|
2610
|
+
"$c"=>
|
2611
|
+
{:definition=>"Titles and other words associated with a name",
|
2612
|
+
:repeat=>true},
|
2613
|
+
"$d"=>{:definition=>"Dates associated with a name", :repeat=>false},
|
2614
|
+
"$e"=>RELATOR,
|
2615
|
+
"$f"=>DATENR,
|
2616
|
+
"$g"=>MISCINF,
|
2617
|
+
"$h"=>MEDIUM,
|
2618
|
+
"$j"=>{:definition=>"Attribution qualifier"},
|
2619
|
+
"$k"=>FORMSUB,
|
2620
|
+
"$l"=>LANGNR,
|
2621
|
+
"$m"=>MUSMED,
|
2622
|
+
"$n"=>NUMPART,
|
2623
|
+
"$o"=>ARRANGE,
|
2624
|
+
"$p"=>NAMEPRT,
|
2625
|
+
"$q"=>{:definition=>"Fuller form of name", :repeat=>false},
|
2626
|
+
"$r"=>MUSKEY,
|
2627
|
+
"$s"=>VRSNR,
|
2628
|
+
"$t"=>WRKTITL,
|
2629
|
+
"$u"=>AFFIL,
|
2630
|
+
"$v"=>FRMSUBD,
|
2631
|
+
"$x"=>GNRLSUB,
|
2632
|
+
"$y"=>CRONSUB,
|
2633
|
+
"$z"=>GEOSUB,
|
2634
|
+
"$0"=>ARECNUM,
|
2635
|
+
"$1"=>RWURI,
|
2636
|
+
"$2"=>HEADSRC,
|
2637
|
+
"$3"=>MATSPEC,
|
2638
|
+
"$4"=>RELAT},
|
2639
|
+
:linkage=>true,
|
2640
|
+
:group=>"6XX"},
|
2641
|
+
"610"=>
|
2642
|
+
{:definition=>"Subject Added Entry-Corporate Name",
|
2643
|
+
:repeat=>true,
|
2644
|
+
:indicators=>
|
2645
|
+
[{:definition=>"Type of corporate name entry element",
|
2646
|
+
:values=>
|
2647
|
+
{"0"=>"Inverted name",
|
2648
|
+
"1"=>"Jurisdiction name",
|
2649
|
+
"2"=>"Name in direct order"}},
|
2650
|
+
{:definition=>"Thesaurus",
|
2651
|
+
:values=>
|
2652
|
+
{"0"=>"Library of Congress Subject Headings",
|
2653
|
+
"1"=>"LC subject headings for children's literature",
|
2654
|
+
"2"=>"Medical Subject Headings",
|
2655
|
+
"3"=>"National Agricultural Library subject authority file",
|
2656
|
+
"4"=>"Source not specified",
|
2657
|
+
"5"=>"Canadian Subject Headings",
|
2658
|
+
"6"=>"Répertoire de vedettes-matière",
|
2659
|
+
"7"=>"Source specified in subfield $2"}}],
|
2660
|
+
:subfields=>
|
2661
|
+
{"$a"=>
|
2662
|
+
{:definition=>"Corporate name or jurisdiction name as entry element",
|
2663
|
+
:repeat=>false},
|
2664
|
+
"$b"=>{:definition=>"Subordinate unit"},
|
2665
|
+
"$c"=>{:definition=>"Location of meeting"},
|
2666
|
+
"$d"=>{:definition=>"Date of meeting or treaty signing"},
|
2667
|
+
"$e"=>RELATOR,
|
2668
|
+
"$f"=>DATENR,
|
2669
|
+
"$g"=>MISCINF,
|
2670
|
+
"$h"=>MEDIUM,
|
2671
|
+
"$k"=>FORMSUB,
|
2672
|
+
"$l"=>LANGNR,
|
2673
|
+
"$m"=>MUSMED,
|
2674
|
+
"$n"=>{:definition=>"Number of part/section/meeting"},
|
2675
|
+
"$o"=>ARRANGE,
|
2676
|
+
"$p"=>NAMEPRT,
|
2677
|
+
"$r"=>MUSKEY,
|
2678
|
+
"$s"=>VRSNR,
|
2679
|
+
"$t"=>WRKTITL,
|
2680
|
+
"$u"=>AFFIL,
|
2681
|
+
"$v"=>FRMSUBD,
|
2682
|
+
"$x"=>GNRLSUB,
|
2683
|
+
"$y"=>CRONSUB,
|
2684
|
+
"$z"=>GEOSUB,
|
2685
|
+
"$0"=>ARECNUM,
|
2686
|
+
"$1"=>RWURI,
|
2687
|
+
"$2"=>HEADSRC,
|
2688
|
+
"$3"=>MATSPEC,
|
2689
|
+
"$4"=>RELAT},
|
2690
|
+
:linkage=>true,
|
2691
|
+
:group=>"6XX"},
|
2692
|
+
"611"=>
|
2693
|
+
{:definition=>"Subject Added Entry-Meeting Name",
|
2694
|
+
:repeat=>true,
|
2695
|
+
:indicators=>
|
2696
|
+
[{:definition=>"Type of meeting name entry element",
|
2697
|
+
:values=>
|
2698
|
+
{"0"=>"Inverted name",
|
2699
|
+
"1"=>"Jurisdiction name",
|
2700
|
+
"2"=>"Name in direct order"}},
|
2701
|
+
{:definition=>"Thesaurus",
|
2702
|
+
:values=>
|
2703
|
+
{"0"=>"Library of Congress Subject Headings",
|
2704
|
+
"1"=>"LC subject headings for children's literature",
|
2705
|
+
"2"=>"Medical Subject Headings",
|
2706
|
+
"3"=>"National Agricultural Library subject authority file",
|
2707
|
+
"4"=>"Source not specified",
|
2708
|
+
"5"=>"Canadian Subject Headings",
|
2709
|
+
"6"=>"Répertoire de vedettes-matière",
|
2710
|
+
"7"=>"Source specified in subfield $2"}}],
|
2711
|
+
:subfields=>
|
2712
|
+
{"$a"=>
|
2713
|
+
{:definition=>"Meeting name or jurisdiction name as entry element",
|
2714
|
+
:repeat=>false},
|
2715
|
+
"$c"=>{:definition=>"Location of meeting"},
|
2716
|
+
"$d"=>{:definition=>"Date of meeting or treaty signing"},
|
2717
|
+
"$e"=>{:definition=>"Subordinate unit"},
|
2718
|
+
"$f"=>DATENR,
|
2719
|
+
"$g"=>MISCINF,
|
2720
|
+
"$h"=>MEDIUM,
|
2721
|
+
"$j"=>RELATOR,
|
2722
|
+
"$k"=>FORMSUB,
|
2723
|
+
"$l"=>LANGNR,
|
2724
|
+
"$n"=>{:definition=>"Number of part/section/meeting"},
|
2725
|
+
"$p"=>NAMEPRT,
|
2726
|
+
"$q"=>
|
2727
|
+
{:definition=>
|
2728
|
+
"Name of meeting following jurisdiction name entry element",
|
2729
|
+
:repeat=>false},
|
2730
|
+
"$s"=>VRSNR,
|
2731
|
+
"$t"=>WRKTITL,
|
2732
|
+
"$u"=>AFFIL,
|
2733
|
+
"$v"=>FRMSUBD,
|
2734
|
+
"$x"=>GNRLSUB,
|
2735
|
+
"$y"=>CRONSUB,
|
2736
|
+
"$z"=>GEOSUB,
|
2737
|
+
"$0"=>ARECNUM,
|
2738
|
+
"$1"=>RWURI,
|
2739
|
+
"$2"=>HEADSRC,
|
2740
|
+
"$3"=>MATSPEC,
|
2741
|
+
"$4"=>RELAT},
|
2742
|
+
:linkage=>true,
|
2743
|
+
:group=>"6XX"},
|
2744
|
+
"630"=>
|
2745
|
+
{:definition=>"Subject Added Entry-Uniform Title",
|
2746
|
+
:repeat=>true,
|
2747
|
+
:indicators=>
|
2748
|
+
[{:definition=>"Nonfiling characters",
|
2749
|
+
:values=>{"0-9"=>"Number of nonfiling characters"}},
|
2750
|
+
{:definition=>"Thesaurus",
|
2751
|
+
:values=>
|
2752
|
+
{"0"=>"Library of Congress Subject Headings",
|
2753
|
+
"1"=>"LC subject headings for children's literature",
|
2754
|
+
"2"=>"Medical Subject Headings",
|
2755
|
+
"3"=>"National Agricultural Library subject authority file",
|
2756
|
+
"4"=>"Source not specified",
|
2757
|
+
"5"=>"Canadian Subject Headings",
|
2758
|
+
"6"=>"Répertoire de vedettes-matière",
|
2759
|
+
"7"=>"Source specified in subfield $2"}}],
|
2760
|
+
:subfields=>
|
2761
|
+
{"$a"=>UNIFORM,
|
2762
|
+
"$d"=>{:definition=>"Date of treaty signing"},
|
2763
|
+
"$e"=>RELATOR,
|
2764
|
+
"$f"=>DATENR,
|
2765
|
+
"$g"=>MISCINF,
|
2766
|
+
"$h"=>MEDIUM,
|
2767
|
+
"$k"=>FORMSUB,
|
2768
|
+
"$l"=>LANGNR,
|
2769
|
+
"$m"=>MUSMED,
|
2770
|
+
"$n"=>NUMPART,
|
2771
|
+
"$o"=>ARRANGE,
|
2772
|
+
"$p"=>NAMEPRT,
|
2773
|
+
"$r"=>MUSKEY,
|
2774
|
+
"$s"=>VRSNR,
|
2775
|
+
"$t"=>WRKTITL,
|
2776
|
+
"$v"=>FRMSUBD,
|
2777
|
+
"$x"=>GNRLSUB,
|
2778
|
+
"$y"=>CRONSUB,
|
2779
|
+
"$z"=>GEOSUB,
|
2780
|
+
"$0"=>ARECNUM,
|
2781
|
+
"$1"=>RWURI,
|
2782
|
+
"$2"=>HEADSRC,
|
2783
|
+
"$3"=>MATSPEC,
|
2784
|
+
"$4"=>RELAT},
|
2785
|
+
:linkage=>true,
|
2786
|
+
:group=>"6XX"},
|
2787
|
+
"647"=>
|
2788
|
+
{:definition=>"Subject Added Entry-Named Event",
|
2789
|
+
:repeat=>true,
|
2790
|
+
:indicators=>
|
2791
|
+
[:undefined,
|
2792
|
+
{:definition=>"Thesaurus",
|
2793
|
+
:values=>
|
2794
|
+
{"0"=>"Library of Congress Subject Headings",
|
2795
|
+
"1"=>"LC subject headings for children's literature",
|
2796
|
+
"2"=>"Medical Subject Headings",
|
2797
|
+
"3"=>"National Agricultural Library subject authority file",
|
2798
|
+
"4"=>"Source not specified",
|
2799
|
+
"5"=>"Canadian Subject Headings",
|
2800
|
+
"6"=>"Répertoire de vedettes-matière",
|
2801
|
+
"7"=>"Source specified in subfield $2"}}],
|
2802
|
+
:subfields=>
|
2803
|
+
{"$a"=>{:definition=>"Named event", :repeat=>false},
|
2804
|
+
"$c"=>{:definition=>"Location of named event"},
|
2805
|
+
"$d"=>{:definition=>"Date of named event", :repeat=>false},
|
2806
|
+
"$g"=>MISCINF,
|
2807
|
+
"$v"=>FRMSUBD,
|
2808
|
+
"$x"=>GNRLSUB,
|
2809
|
+
"$y"=>CRONSUB,
|
2810
|
+
"$z"=>GEOSUB,
|
2811
|
+
"$0"=>ARECNUM,
|
2812
|
+
"$1"=>RWURI,
|
2813
|
+
"$2"=>HEADSRC,
|
2814
|
+
"$3"=>MATSPEC},
|
2815
|
+
:linkage=>true,
|
2816
|
+
:group=>"6XX"},
|
2817
|
+
"648"=>
|
2818
|
+
{:definition=>"Subject Added Entry-Chronological Term",
|
2819
|
+
:repeat=>true,
|
2820
|
+
:indicators=>
|
2821
|
+
[:undefined,
|
2822
|
+
{:definition=>"Thesaurus",
|
2823
|
+
:values=>
|
2824
|
+
{"0"=>"Library of Congress Subject Headings",
|
2825
|
+
"1"=>"LC subject headings for children's literature",
|
2826
|
+
"2"=>"Medical Subject Headings",
|
2827
|
+
"3"=>"National Agricultural Library subject authority file",
|
2828
|
+
"4"=>"Source not specified",
|
2829
|
+
"5"=>"Canadian Subject Headings",
|
2830
|
+
"6"=>"Répertoire de vedettes-matière",
|
2831
|
+
"7"=>"Source specified in subfield $2"}}],
|
2832
|
+
:subfields=>
|
2833
|
+
{"$a"=>{:definition=>"Chronological term", :repeat=>false},
|
2834
|
+
"$v"=>FRMSUBD,
|
2835
|
+
"$x"=>GNRLSUB,
|
2836
|
+
"$y"=>CRONSUB,
|
2837
|
+
"$z"=>GEOSUB,
|
2838
|
+
"$0"=>ARECNUM,
|
2839
|
+
"$1"=>RWURI,
|
2840
|
+
"$2"=>HEADSRC,
|
2841
|
+
"$3"=>MATSPEC},
|
2842
|
+
:linkage=>true,
|
2843
|
+
:group=>"6XX"},
|
2844
|
+
"650"=>
|
2845
|
+
{:definition=>"Subject Added Entry-Topical Term",
|
2846
|
+
:repeat=>true,
|
2847
|
+
:indicators=>
|
2848
|
+
[{:definition=>"Level of subject",
|
2849
|
+
:values=>
|
2850
|
+
{"#"=>"No information provided",
|
2851
|
+
"0"=>"No level specified",
|
2852
|
+
"1"=>"Primary",
|
2853
|
+
"2"=>"Secondary"}},
|
2854
|
+
{:definition=>"Thesaurus",
|
2855
|
+
:values=>
|
2856
|
+
{"0"=>"Library of Congress Subject Headings",
|
2857
|
+
"1"=>"LC subject headings for children's literature",
|
2858
|
+
"2"=>"Medical Subject Headings",
|
2859
|
+
"3"=>"National Agricultural Library subject authority file",
|
2860
|
+
"4"=>"Source not specified",
|
2861
|
+
"5"=>"Canadian Subject Headings",
|
2862
|
+
"6"=>"Répertoire de vedettes-matière",
|
2863
|
+
"7"=>"Source specified in subfield $2"}}],
|
2864
|
+
:subfields=>
|
2865
|
+
{"$a"=>
|
2866
|
+
{:definition=>"Topical term or geographic name entry element",
|
2867
|
+
:repeat=>false},
|
2868
|
+
"$b"=>
|
2869
|
+
{:definition=>"Topical term following geographic name entry element",
|
2870
|
+
:repeat=>false},
|
2871
|
+
"$c"=>{:definition=>"Location of event", :repeat=>false},
|
2872
|
+
"$d"=>{:definition=>"Active dates", :repeat=>false},
|
2873
|
+
"$e"=>RELATOR,
|
2874
|
+
"$g"=>MISCINF,
|
2875
|
+
"$4"=>RELAT,
|
2876
|
+
"$v"=>FRMSUBD,
|
2877
|
+
"$x"=>GNRLSUB,
|
2878
|
+
"$y"=>CRONSUB,
|
2879
|
+
"$z"=>GEOSUB,
|
2880
|
+
"$0"=>ARECNUM,
|
2881
|
+
"$1"=>RWURI,
|
2882
|
+
"$2"=>HEADSRC,
|
2883
|
+
"$3"=>MATSPEC},
|
2884
|
+
:linkage=>true,
|
2885
|
+
:group=>"6XX"},
|
2886
|
+
"651"=>
|
2887
|
+
{:definition=>"Subject Added Entry-Geographic Name",
|
2888
|
+
:repeat=>true,
|
2889
|
+
:indicators=>
|
2890
|
+
[:undefined,
|
2891
|
+
{:definition=>"Thesaurus",
|
2892
|
+
:values=>
|
2893
|
+
{"0"=>"Library of Congress Subject Headings",
|
2894
|
+
"1"=>"LC subject headings for children's literature",
|
2895
|
+
"2"=>"Medical Subject Headings",
|
2896
|
+
"3"=>"National Agricultural Library subject authority file",
|
2897
|
+
"4"=>"Source not specified",
|
2898
|
+
"5"=>"Canadian Subject Headings",
|
2899
|
+
"6"=>"Répertoire de vedettes-matière",
|
2900
|
+
"7"=>"Source specified in subfield $2"}}],
|
2901
|
+
:subfields=>
|
2902
|
+
{"$a"=>{:definition=>"Geographic name", :repeat=>false},
|
2903
|
+
"$e"=>RELATOR,
|
2904
|
+
"$g"=>MISCINF,
|
2905
|
+
"$4"=>RELAT,
|
2906
|
+
"$v"=>FRMSUBD,
|
2907
|
+
"$x"=>GNRLSUB,
|
2908
|
+
"$y"=>CRONSUB,
|
2909
|
+
"$z"=>GEOSUB,
|
2910
|
+
"$0"=>ARECNUM,
|
2911
|
+
"$1"=>RWURI,
|
2912
|
+
"$2"=>HEADSRC,
|
2913
|
+
"$3"=>MATSPEC},
|
2914
|
+
:linkage=>true,
|
2915
|
+
:group=>"6XX"},
|
2916
|
+
"653"=>
|
2917
|
+
{:definition=>"Index Term-Uncontrolled",
|
2918
|
+
:repeat=>true,
|
2919
|
+
:indicators=>
|
2920
|
+
[{:definition=>"Level of index term",
|
2921
|
+
:values=>{"#"=>"No information provided",
|
2922
|
+
"0"=>"No level specified",
|
2923
|
+
"1"=>"Primary",
|
2924
|
+
"2"=>"Secondary"}},
|
2925
|
+
{:definition=>"Type of term or name",
|
2926
|
+
:values=>{"#"=>"No information provided",
|
2927
|
+
"0"=>"Topical term",
|
2928
|
+
"1"=>"Personal name",
|
2929
|
+
"2"=>"Corporate name",
|
2930
|
+
"3"=>"Meeting name",
|
2931
|
+
"4"=>"Chronological term",
|
2932
|
+
"5"=>"Geographic name",
|
2933
|
+
"6"=>"Genre/form term"}}],
|
2934
|
+
:subfields=>{"$a"=>{:definition=>"Uncontrolled term"}},
|
2935
|
+
:group=>"6XX"},
|
2936
|
+
"654"=>
|
2937
|
+
{:definition=>"Subject Added Entry-Faceted Topical Terms",
|
2938
|
+
:repeat=>true,
|
2939
|
+
:indicators=>
|
2940
|
+
[{:definition=>"Level of subject",
|
2941
|
+
:values=>
|
2942
|
+
{"#"=>"No information provided",
|
2943
|
+
"0"=>"No level specified",
|
2944
|
+
"1"=>"Primary",
|
2945
|
+
"2"=>"Secondary"}},
|
2946
|
+
:undefined],
|
2947
|
+
:subfields=>
|
2948
|
+
{"$a"=>{:definition=>"Focus term"},
|
2949
|
+
"$b"=>{:definition=>"Non-focus term"},
|
2950
|
+
"$c"=>{:definition=>"Facet/hierarchy designation"},
|
2951
|
+
"$e"=>RELATOR,
|
2952
|
+
"$v"=>FRMSUBD,
|
2953
|
+
"$y"=>CRONSUB,
|
2954
|
+
"$z"=>GEOSUB,
|
2955
|
+
"$0"=>ARECNUM,
|
2956
|
+
"$1"=>RWURI,
|
2957
|
+
"$2"=>HEADSRC,
|
2958
|
+
"$3"=>MATSPEC,
|
2959
|
+
"$4"=>RELAT},
|
2960
|
+
:linkage=>true,
|
2961
|
+
:group=>"6XX"},
|
2962
|
+
"655"=>
|
2963
|
+
{:definition=>"Index Term-Genre/Form",
|
2964
|
+
:repeat=>true,
|
2965
|
+
:indicators=>
|
2966
|
+
[{:definition=>"Type of heading", :values=>{"#"=>"Basic", "0"=>"Faceted"}},
|
2967
|
+
{:definition=>"Thesaurus",
|
2968
|
+
:values=>
|
2969
|
+
{"0"=>"Library of Congress Subject Headings",
|
2970
|
+
"1"=>"LC subject headings for children's literature",
|
2971
|
+
"2"=>"Medical Subject Headings",
|
2972
|
+
"3"=>"National Agricultural Library subject authority file",
|
2973
|
+
"4"=>"Source not specified",
|
2974
|
+
"5"=>"Canadian Subject Headings",
|
2975
|
+
"6"=>"Répertoire de vedettes-matière",
|
2976
|
+
"7"=>"Source specified in subfield $2"}}],
|
2977
|
+
:subfields=>
|
2978
|
+
{"$a"=>{:definition=>"Genre/form data or focus term", :repeat=>false},
|
2979
|
+
"$b"=>{:definition=>"Non-focus term"},
|
2980
|
+
"$c"=>{:definition=>"Facet/hierarchy designation"},
|
2981
|
+
"$v"=>FRMSUBD,
|
2982
|
+
"$x"=>GNRLSUB,
|
2983
|
+
"$y"=>CRONSUB,
|
2984
|
+
"$z"=>GEOSUB,
|
2985
|
+
"$0"=>ARECNUM,
|
2986
|
+
"$1"=>RWURI,
|
2987
|
+
"$2"=>SRCTERM,
|
2988
|
+
"$3"=>MATSPEC,
|
2989
|
+
"$5"=>INSTAPP},
|
2990
|
+
:linkage=>true,
|
2991
|
+
:group=>"6XX"},
|
2992
|
+
"656"=>
|
2993
|
+
{:definition=>"Index Term-Occupation",
|
2994
|
+
:repeat=>true,
|
2995
|
+
:indicators=>
|
2996
|
+
[:undefined,
|
2997
|
+
{:definition=>"Source of term",
|
2998
|
+
:values=>{"7"=>"Source specified in subfield $2"}}],
|
2999
|
+
:subfields=>
|
3000
|
+
{"$a"=>{:definition=>"Occupation", :repeat=>false},
|
3001
|
+
"$k"=>{:definition=>"Form", :repeat=>false},
|
3002
|
+
"$v"=>FRMSUBD,
|
3003
|
+
"$x"=>GNRLSUB,
|
3004
|
+
"$y"=>CRONSUB,
|
3005
|
+
"$z"=>GEOSUB,
|
3006
|
+
"$0"=>ARECNUM,
|
3007
|
+
"$1"=>RWURI,
|
3008
|
+
"$2"=>SRCTERM,
|
3009
|
+
"$3"=>MATSPEC},
|
3010
|
+
:linkage=>true,
|
3011
|
+
:group=>"6XX"},
|
3012
|
+
"657"=>
|
3013
|
+
{:definition=>"Index Term-Function",
|
3014
|
+
:repeat=>true,
|
3015
|
+
:indicators=>
|
3016
|
+
[:undefined,
|
3017
|
+
{:definition=>"Source of term",
|
3018
|
+
:values=>{"7"=>"Source specified in subfield $2"}}],
|
3019
|
+
:subfields=>
|
3020
|
+
{"$a"=>{:definition=>"Function", :repeat=>false},
|
3021
|
+
"$v"=>FRMSUBD,
|
3022
|
+
"$x"=>GNRLSUB,
|
3023
|
+
"$y"=>CRONSUB,
|
3024
|
+
"$z"=>GEOSUB,
|
3025
|
+
"$0"=>ARECNUM,
|
3026
|
+
"$1"=>RWURI,
|
3027
|
+
"$2"=>SRCTERM,
|
3028
|
+
"$3"=>MATSPEC},
|
3029
|
+
:linkage=>true,
|
3030
|
+
:group=>"6XX"},
|
3031
|
+
"658"=>
|
3032
|
+
{:definition=>"Index Term-Curriculum Objective",
|
3033
|
+
:repeat=>true,
|
3034
|
+
:indicators=>[:undefined, :undefined],
|
3035
|
+
:subfields=>{
|
3036
|
+
"$a"=>{:definition=>"Main curriculum objective", :repeat=>false},
|
3037
|
+
"$b"=>{:definition=>"Subordinate curriculum objective"},
|
3038
|
+
"$c"=>{:definition=>"Curriculum code", :repeat=>false},
|
3039
|
+
"$d"=>{:definition=>"Correlation factor", :repeat=>false},
|
3040
|
+
"$2"=>{:definition=>"Source of term or code", :repeat=>false}},
|
3041
|
+
:group=>"6XX"},
|
3042
|
+
"662"=>
|
3043
|
+
{:definition=>"Subject Added Entry-Hierarchical Place Name",
|
3044
|
+
:repeat=>true,
|
3045
|
+
:indicators=>[:undefined, :undefined],
|
3046
|
+
:subfields=>
|
3047
|
+
{"$a"=>{:definition=>"Country or larger entity"},
|
3048
|
+
"$b"=>{:definition=>"First-order political jurisdiction", :repeat=>false},
|
3049
|
+
"$c"=>{:definition=>"Intermediate political jurisdiction"},
|
3050
|
+
"$d"=>{:definition=>"City", :repeat=>false},
|
3051
|
+
"$e"=>RELATOR,
|
3052
|
+
"$f"=>{:definition=>"City subsection"},
|
3053
|
+
"$g"=>
|
3054
|
+
{:definition=>"Other nonjurisdictional geographic region and feature",
|
3055
|
+
:repeat=>true},
|
3056
|
+
"$h"=>{:definition=>"Extraterrestrial area"},
|
3057
|
+
"$0"=>ARECNUM,
|
3058
|
+
"$1"=>RWURI,
|
3059
|
+
"$2"=>HEADSRC,
|
3060
|
+
"$4"=>RELAT},
|
3061
|
+
:linkage=>true,
|
3062
|
+
:group=>"6XX"},
|
3063
|
+
"69X"=>
|
3064
|
+
{:definition=>"Local Subject Access Fields",
|
3065
|
+
:repeat=>true,
|
3066
|
+
:indicators=>nil,
|
3067
|
+
:subfields=>nil,
|
3068
|
+
:group=>"6XX"},
|
3069
|
+
"700"=>
|
3070
|
+
{:definition=>"Added Entry-Personal Name",
|
3071
|
+
:repeat=>true,
|
3072
|
+
:indicators=>
|
3073
|
+
[{:definition=>"Type of personal name entry element",
|
3074
|
+
:values=>{"0"=>"Forename", "1"=>"Surname", "3"=>"Family name"}},
|
3075
|
+
{:definition=>"Type of added entry",
|
3076
|
+
:values=>{"#"=>"No information provided", "2"=>"Analytical entry"}}],
|
3077
|
+
:subfields=>
|
3078
|
+
{"$a"=>{:definition=>"Personal name", :repeat=>false},
|
3079
|
+
"$b"=>{:definition=>"Numeration", :repeat=>false},
|
3080
|
+
"$c"=>
|
3081
|
+
{:definition=>"Titles and other words associated with a name",
|
3082
|
+
:repeat=>true},
|
3083
|
+
"$d"=>{:definition=>"Dates associated with a name", :repeat=>false},
|
3084
|
+
"$e"=>RELATOR,
|
3085
|
+
"$f"=>DATENR,
|
3086
|
+
"$g"=>MISCINF,
|
3087
|
+
"$h"=>MEDIUM,
|
3088
|
+
"$i"=>RELINFO,
|
3089
|
+
"$j"=>{:definition=>"Attribution qualifier"},
|
3090
|
+
"$k"=>FORMSUB,
|
3091
|
+
"$l"=>LANGNR,
|
3092
|
+
"$m"=>MUSMED,
|
3093
|
+
"$n"=>NUMPART,
|
3094
|
+
"$o"=>ARRANGE,
|
3095
|
+
"$p"=>NAMEPRT,
|
3096
|
+
"$q"=>{:definition=>"Fuller form of name", :repeat=>false},
|
3097
|
+
"$r"=>MUSKEY,
|
3098
|
+
"$s"=>VRSNR,
|
3099
|
+
"$t"=>WRKTITL,
|
3100
|
+
"$u"=>AFFIL,
|
3101
|
+
"$x"=>ISSNNR,
|
3102
|
+
"$0"=>ARECNUM,
|
3103
|
+
"$1"=>RWURI,
|
3104
|
+
"$3"=>MATSPEC,
|
3105
|
+
"$4"=>RELAT,
|
3106
|
+
"$5"=>INSTAPP},
|
3107
|
+
:linkage=>true,
|
3108
|
+
:group=>"70X-75X"},
|
3109
|
+
"710"=>
|
3110
|
+
{:definition=>"Added Entry-Corporate Name",
|
3111
|
+
:repeat=>true,
|
3112
|
+
:indicators=>
|
3113
|
+
[{:definition=>"Type of corporate name entry element",
|
3114
|
+
:values=>
|
3115
|
+
{"0"=>"Inverted name",
|
3116
|
+
"1"=>"Jurisdiction name",
|
3117
|
+
"2"=>"Name in direct order"}},
|
3118
|
+
{:definition=>"Type of added entry",
|
3119
|
+
:values=>{"#"=>"No information provided", "2"=>"Analytical entry"}}],
|
3120
|
+
:subfields=>
|
3121
|
+
{"$a"=>
|
3122
|
+
{:definition=>"Corporate name or jurisdiction name as entry element",
|
3123
|
+
:repeat=>false},
|
3124
|
+
"$b"=>{:definition=>"Subordinate unit"},
|
3125
|
+
"$c"=>{:definition=>"Location of meeting"},
|
3126
|
+
"$d"=>{:definition=>"Date of meeting or treaty signing"},
|
3127
|
+
"$e"=>RELATOR,
|
3128
|
+
"$f"=>DATENR,
|
3129
|
+
"$g"=>MISCINF,
|
3130
|
+
"$h"=>MEDIUM,
|
3131
|
+
"$i"=>RELINFO,
|
3132
|
+
"$k"=>FORMSUB,
|
3133
|
+
"$l"=>LANGNR,
|
3134
|
+
"$m"=>MUSMED,
|
3135
|
+
"$n"=>{:definition=>"Number of part/section/meeting"},
|
3136
|
+
"$o"=>ARRANGE,
|
3137
|
+
"$p"=>NAMEPRT,
|
3138
|
+
"$r"=>MUSKEY,
|
3139
|
+
"$s"=>VRSNR,
|
3140
|
+
"$t"=>WRKTITL,
|
3141
|
+
"$u"=>AFFIL,
|
3142
|
+
"$x"=>ISSNNR,
|
3143
|
+
"$0"=>ARECNUM,
|
3144
|
+
"$1"=>RWURI,
|
3145
|
+
"$3"=>MATSPEC,
|
3146
|
+
"$4"=>RELAT,
|
3147
|
+
"$5"=>INSTAPP},
|
3148
|
+
:linkage=>true,
|
3149
|
+
:group=>"70X-75X"},
|
3150
|
+
"711"=>
|
3151
|
+
{:definition=>"Added Entry-Meeting Name",
|
3152
|
+
:repeat=>true,
|
3153
|
+
:indicators=>
|
3154
|
+
[{:definition=>"Type of meeting name entry element",
|
3155
|
+
:values=>
|
3156
|
+
{"0"=>"Inverted name",
|
3157
|
+
"1"=>"Jurisdiction name",
|
3158
|
+
"2"=>"Name in direct order"}},
|
3159
|
+
{:definition=>"Type of added entry",
|
3160
|
+
:values=>{"#"=>"No information provided", "2"=>"Analytical entry"}}],
|
3161
|
+
:subfields=>
|
3162
|
+
{"$a"=>
|
3163
|
+
{:definition=>"Meeting name or jurisdiction name as entry element",
|
3164
|
+
:repeat=>false},
|
3165
|
+
"$c"=>{:definition=>"Location of meeting"},
|
3166
|
+
"$d"=>{:definition=>"Date of meeting or treaty signing"},
|
3167
|
+
"$e"=>{:definition=>"Subordinate unit"},
|
3168
|
+
"$f"=>DATENR,
|
3169
|
+
"$g"=>MISCINF,
|
3170
|
+
"$h"=>MEDIUM,
|
3171
|
+
"$i"=>RELINFO,
|
3172
|
+
"$j"=>RELATOR,
|
3173
|
+
"$k"=>FORMSUB,
|
3174
|
+
"$l"=>LANGNR,
|
3175
|
+
"$n"=>{:definition=>"Number of part/section/meeting"},
|
3176
|
+
"$p"=>NAMEPRT,
|
3177
|
+
"$q"=>
|
3178
|
+
{:definition=>
|
3179
|
+
"Name of meeting following jurisdiction name entry element",
|
3180
|
+
:repeat=>false},
|
3181
|
+
"$s"=>VRSNR,
|
3182
|
+
"$t"=>WRKTITL,
|
3183
|
+
"$u"=>AFFIL,
|
3184
|
+
"$x"=>ISSNNR,
|
3185
|
+
"$0"=>ARECNUM,
|
3186
|
+
"$1"=>RWURI,
|
3187
|
+
"$3"=>MATSPEC,
|
3188
|
+
"$4"=>RELAT,
|
3189
|
+
"$5"=>INSTAPP},
|
3190
|
+
:linkage=>true,
|
3191
|
+
:group=>"70X-75X"},
|
3192
|
+
"720"=>
|
3193
|
+
{:definition=>"Added Entry-Uncontrolled Name",
|
3194
|
+
:repeat=>true,
|
3195
|
+
:indicators=>
|
3196
|
+
[{:definition=>"Type of name",
|
3197
|
+
:values=>{"#"=>"Not specified", "1"=>"Personal", "2"=>"Other"}},
|
3198
|
+
:undefined],
|
3199
|
+
:subfields=>
|
3200
|
+
{"$a"=>{:definition=>"Name", :repeat=>false},
|
3201
|
+
"$e"=>RELATOR,
|
3202
|
+
"$4"=>RELAT},
|
3203
|
+
:linkage=>true,
|
3204
|
+
:group=>"70X-75X"},
|
3205
|
+
"730"=>
|
3206
|
+
{:definition=>"Added Entry-Uniform Title",
|
3207
|
+
:repeat=>true,
|
3208
|
+
:indicators=>
|
3209
|
+
[{:definition=>"Nonfiling characters",
|
3210
|
+
:values=>{"0-9"=>"Number of nonfiling characters"}},
|
3211
|
+
{:definition=>"Type of added entry",
|
3212
|
+
:values=>{"#"=>"No information provided", "2"=>"Analytical entry"}}],
|
3213
|
+
:subfields=>
|
3214
|
+
{"$a"=>UNIFORM,
|
3215
|
+
"$d"=>{:definition=>"Date of treaty signing"},
|
3216
|
+
"$f"=>DATENR,
|
3217
|
+
"$g"=>MISCINF,
|
3218
|
+
"$h"=>MEDIUM,
|
3219
|
+
"$i"=>RELINFO,
|
3220
|
+
"$k"=>FORMSUB,
|
3221
|
+
"$l"=>LANGNR,
|
3222
|
+
"$m"=>MUSMED,
|
3223
|
+
"$n"=>NUMPART,
|
3224
|
+
"$o"=>ARRANGE,
|
3225
|
+
"$p"=>NAMEPRT,
|
3226
|
+
"$r"=>MUSKEY,
|
3227
|
+
"$s"=>VRSNR,
|
3228
|
+
"$t"=>WRKTITL,
|
3229
|
+
"$x"=>ISSNNR,
|
3230
|
+
"$0"=>ARECNUM,
|
3231
|
+
"$1"=>RWURI,
|
3232
|
+
"$3"=>MATSPEC,
|
3233
|
+
"$4"=>RELAT,
|
3234
|
+
"$5"=>INSTAPP},
|
3235
|
+
:linkage=>true,
|
3236
|
+
:group=>"70X-75X"},
|
3237
|
+
"740"=>
|
3238
|
+
{:definition=>"Added Entry-Uncontrolled Related/Analytical Title",
|
3239
|
+
:repeat=>true,
|
3240
|
+
:indicators=>
|
3241
|
+
[{:definition=>"Nonfiling characters",
|
3242
|
+
:values=>{"0"=>"No nonfiling characters",
|
3243
|
+
"1-9"=>"Number of nonfiling characters"}},
|
3244
|
+
{:definition=>"Type of added entry",
|
3245
|
+
:values=>{"#"=>"No information provided",
|
3246
|
+
"2"=>"Analytical entry"}}],
|
3247
|
+
:subfields=>{
|
3248
|
+
"$a"=>{:definition=>"Uncontrolled related/analytical title",
|
3249
|
+
:repeat=>false},
|
3250
|
+
"$h"=>MEDIUM,
|
3251
|
+
"$n"=>NUMPART,
|
3252
|
+
"$p"=>NAMEPRT,
|
3253
|
+
"$5"=>INSTAPP},
|
3254
|
+
:group=>"70X-75X"},
|
3255
|
+
"751"=>
|
3256
|
+
{:definition=>"Added Entry-Geographic Name",
|
3257
|
+
:repeat=>true,
|
3258
|
+
:indicators=>[:undefined, :undefined],
|
3259
|
+
:subfields=>
|
3260
|
+
{"$a"=>{:definition=>"Geographic name", :repeat=>false},
|
3261
|
+
"$e"=>RELATOR,
|
3262
|
+
"$0"=>ARECNUM,
|
3263
|
+
"$1"=>RWURI,
|
3264
|
+
"$2"=>HEADSRC,
|
3265
|
+
"$3"=>MATSPEC,
|
3266
|
+
"$4"=>RELAT},
|
3267
|
+
:linkage=>true,
|
3268
|
+
:group=>"70X-75X"},
|
3269
|
+
"752"=>
|
3270
|
+
{:definition=>"Added Entry-Hierarchical Place Name",
|
3271
|
+
:repeat=>true,
|
3272
|
+
:indicators=>[:undefined, :undefined],
|
3273
|
+
:subfields=>
|
3274
|
+
{"$a"=>{:definition=>"Country or larger entity"},
|
3275
|
+
"$b"=>{:definition=>"First-order political jurisdiction", :repeat=>false},
|
3276
|
+
"$c"=>{:definition=>"Intermediate political jurisdiction"},
|
3277
|
+
"$d"=>{:definition=>"City", :repeat=>false},
|
3278
|
+
"$e"=>RELATOR,
|
3279
|
+
"$f"=>{:definition=>"City subsection"},
|
3280
|
+
"$g"=>
|
3281
|
+
{:definition=>"Other nonjurisdictional geographic region and feature",
|
3282
|
+
:repeat=>true},
|
3283
|
+
"$h"=>{:definition=>"Extraterrestrial area"},
|
3284
|
+
"$0"=>ARECNUM,
|
3285
|
+
"$1"=>RWURI,
|
3286
|
+
"$2"=>HEADSRC,
|
3287
|
+
"$4"=>RELAT},
|
3288
|
+
:linkage=>true,
|
3289
|
+
:group=>"70X-75X"},
|
3290
|
+
"753"=>
|
3291
|
+
{:definition=>"System Details Access to Computer Files",
|
3292
|
+
:repeat=>true,
|
3293
|
+
:indicators=>[:undefined, :undefined],
|
3294
|
+
:subfields=>
|
3295
|
+
{"$a"=>{:definition=>"Make and model of machine", :repeat=>false},
|
3296
|
+
"$b"=>{:definition=>"Programming language", :repeat=>false},
|
3297
|
+
"$c"=>{:definition=>"Operating system", :repeat=>false},
|
3298
|
+
"$0"=>ARECNUM,
|
3299
|
+
"$1"=>RWURI,
|
3300
|
+
"$2"=>SRCTERM},
|
3301
|
+
:linkage=>true,
|
3302
|
+
:group=>"70X-75X"},
|
3303
|
+
"754"=>
|
3304
|
+
{:definition=>"Added Entry-Taxonomic Identification",
|
3305
|
+
:repeat=>true,
|
3306
|
+
:indicators=>[:undefined, :undefined],
|
3307
|
+
:subfields=>
|
3308
|
+
{"$a"=>{:definition=>"Taxonomic name"},
|
3309
|
+
"$c"=>{:definition=>"Taxonomic category"},
|
3310
|
+
"$d"=>{:definition=>"Common or alternative name"},
|
3311
|
+
"$x"=>{:definition=>"Non-public note"},
|
3312
|
+
"$z"=>PUBNOTE,
|
3313
|
+
"$0"=>ARECNUM,
|
3314
|
+
"$1"=>RWURI,
|
3315
|
+
"$2"=>{:definition=>"Source of taxonomic identification", :repeat=>false}},
|
3316
|
+
:linkage=>true,
|
3317
|
+
:group=>"70X-75X"},
|
3318
|
+
"758"=>
|
3319
|
+
{:definition=>"Resource Identifier",
|
3320
|
+
:repeat=>true,
|
3321
|
+
:indicators=>[:undefined, :undefined],
|
3322
|
+
:subfields=>
|
3323
|
+
{"$a"=>{:definition=>"Label", :repeat=>false},
|
3324
|
+
"$i"=>RELINFO,
|
3325
|
+
"$0"=>ARECNUM,
|
3326
|
+
"$1"=>RWURI,
|
3327
|
+
"$3"=>MATSPEC,
|
3328
|
+
"$4"=>RELAT,
|
3329
|
+
"$5"=>INSTAPP},
|
3330
|
+
:linkage=>true,
|
3331
|
+
:group=>"70X-75X"},
|
3332
|
+
"760"=>
|
3333
|
+
{:definition=>"Main Series Entry",
|
3334
|
+
:repeat=>true,
|
3335
|
+
:indicators=>
|
3336
|
+
[{:definition=>"Note controller",
|
3337
|
+
:values=>{"0"=>"Display note", "1"=>"Do not display note"}},
|
3338
|
+
{:definition=>"Display constant controller",
|
3339
|
+
:values=>{"#"=>"Main series", "8"=>"No display constant generated"}}],
|
3340
|
+
:subfields=>
|
3341
|
+
{"$a"=>MAINENT,
|
3342
|
+
"$b"=>EDTNNR,
|
3343
|
+
"$c"=>QUALINF,
|
3344
|
+
"$d"=>PLCPUB,
|
3345
|
+
"$g"=>RELPRTS,
|
3346
|
+
"$h"=>PHYSDSC,
|
3347
|
+
"$i"=>RELINFO,
|
3348
|
+
"$m"=>MSDETL,
|
3349
|
+
"$n"=>NOTER,
|
3350
|
+
"$o"=>OIID,
|
3351
|
+
"$s"=>UNIFORM,
|
3352
|
+
"$t"=>TITLENR,
|
3353
|
+
"$w"=>RECCTRL,
|
3354
|
+
"$x"=>ISSNNR,
|
3355
|
+
"$y"=>CODENR,
|
3356
|
+
"$4"=>RELAT,
|
3357
|
+
"$7"=>CTRLSUB},
|
3358
|
+
:group=>"76X-78X"},
|
3359
|
+
"762"=>
|
3360
|
+
{:definition=>"Subseries Entry",
|
3361
|
+
:repeat=>true,
|
3362
|
+
:indicators=>
|
3363
|
+
[{:definition=>"Note controller",
|
3364
|
+
:values=>{"0"=>"Display note", "1"=>"Do not display note"}},
|
3365
|
+
{:definition=>"Display constant controller",
|
3366
|
+
:values=>{"#"=>"Has subseries", "8"=>"No display constant generated"}}],
|
3367
|
+
:subfields=>
|
3368
|
+
{"$a"=>MAINENT,
|
3369
|
+
"$b"=>EDTNNR,
|
3370
|
+
"$c"=>QUALINF,
|
3371
|
+
"$d"=>PLCPUB,
|
3372
|
+
"$g"=>RELPRTS,
|
3373
|
+
"$h"=>PHYSDSC,
|
3374
|
+
"$i"=>RELINFO,
|
3375
|
+
"$m"=>MSDETL,
|
3376
|
+
"$n"=>NOTER,
|
3377
|
+
"$o"=>OIID,
|
3378
|
+
"$s"=>UNIFORM,
|
3379
|
+
"$t"=>TITLENR,
|
3380
|
+
"$w"=>RECCTRL,
|
3381
|
+
"$x"=>ISSNNR,
|
3382
|
+
"$y"=>CODENR,
|
3383
|
+
"$4"=>RELAT,
|
3384
|
+
"$7"=>CTRLSUB},
|
3385
|
+
:group=>"76X-78X"},
|
3386
|
+
"765"=>
|
3387
|
+
{:definition=>"Original Language Entry",
|
3388
|
+
:repeat=>true,
|
3389
|
+
:indicators=>
|
3390
|
+
[{:definition=>"Note controller",
|
3391
|
+
:values=>{"0"=>"Display note", "1"=>"Do not display note"}},
|
3392
|
+
{:definition=>"Display constant controller",
|
3393
|
+
:values=>{"#"=>"Translation of", "8"=>"No display constant generated"}}],
|
3394
|
+
:subfields=>
|
3395
|
+
{"$a"=>MAINENT,
|
3396
|
+
"$b"=>EDTNNR,
|
3397
|
+
"$c"=>QUALINF,
|
3398
|
+
"$d"=>PLCPUB,
|
3399
|
+
"$g"=>RELPRTS,
|
3400
|
+
"$h"=>PHYSDSC,
|
3401
|
+
"$i"=>RELINFO,
|
3402
|
+
"$k"=>RELSERD,
|
3403
|
+
"$m"=>MSDETL,
|
3404
|
+
"$n"=>NOTER,
|
3405
|
+
"$o"=>OIID,
|
3406
|
+
"$r"=>REPNUM,
|
3407
|
+
"$s"=>UNIFORM,
|
3408
|
+
"$t"=>TITLENR,
|
3409
|
+
"$u"=>TECHREP,
|
3410
|
+
"$w"=>RECCTRL,
|
3411
|
+
"$x"=>ISSNNR,
|
3412
|
+
"$y"=>CODENR,
|
3413
|
+
"$z"=>ISBNR,
|
3414
|
+
"$4"=>RELAT,
|
3415
|
+
"$7"=>CTRLSUB},
|
3416
|
+
:group=>"76X-78X"},
|
3417
|
+
"767"=>
|
3418
|
+
{:definition=>"Translation Entry",
|
3419
|
+
:repeat=>true,
|
3420
|
+
:indicators=>
|
3421
|
+
[{:definition=>"Note controller",
|
3422
|
+
:values=>{"0"=>"Display note", "1"=>"Do not display note"}},
|
3423
|
+
{:definition=>"Display constant controller",
|
3424
|
+
:values=>{"#"=>"Translated as", "8"=>"No display constant generated"}}],
|
3425
|
+
:subfields=>
|
3426
|
+
{"$a"=>MAINENT,
|
3427
|
+
"$b"=>EDTNNR,
|
3428
|
+
"$c"=>QUALINF,
|
3429
|
+
"$d"=>PLCPUB,
|
3430
|
+
"$g"=>RELPRTS,
|
3431
|
+
"$h"=>PHYSDSC,
|
3432
|
+
"$i"=>RELINFO,
|
3433
|
+
"$k"=>RELSERD,
|
3434
|
+
"$m"=>MSDETL,
|
3435
|
+
"$n"=>NOTER,
|
3436
|
+
"$o"=>OIID,
|
3437
|
+
"$r"=>REPNUM,
|
3438
|
+
"$s"=>UNIFORM,
|
3439
|
+
"$t"=>TITLENR,
|
3440
|
+
"$u"=>TECHREP,
|
3441
|
+
"$w"=>RECCTRL,
|
3442
|
+
"$x"=>ISSNNR,
|
3443
|
+
"$y"=>CODENR,
|
3444
|
+
"$z"=>ISBNR,
|
3445
|
+
"$4"=>RELAT,
|
3446
|
+
"$7"=>CTRLSUB},
|
3447
|
+
:group=>"76X-78X"},
|
3448
|
+
"770"=>
|
3449
|
+
{:definition=>"Supplement/Special Issue Entry",
|
3450
|
+
:repeat=>true,
|
3451
|
+
:indicators=>
|
3452
|
+
[{:definition=>"Note controller",
|
3453
|
+
:values=>{"0"=>"Display note", "1"=>"Do not display note"}},
|
3454
|
+
{:definition=>"Display constant controller",
|
3455
|
+
:values=>{"#"=>"Has supplement", "8"=>"No display constant generated"}}],
|
3456
|
+
:subfields=>
|
3457
|
+
{"$a"=>MAINENT,
|
3458
|
+
"$b"=>EDTNNR,
|
3459
|
+
"$c"=>QUALINF,
|
3460
|
+
"$d"=>PLCPUB,
|
3461
|
+
"$g"=>RELPRTS,
|
3462
|
+
"$h"=>PHYSDSC,
|
3463
|
+
"$i"=>RELINFO,
|
3464
|
+
"$k"=>RELSERD,
|
3465
|
+
"$m"=>MSDETL,
|
3466
|
+
"$n"=>NOTER,
|
3467
|
+
"$o"=>OIID,
|
3468
|
+
"$r"=>REPNUM,
|
3469
|
+
"$s"=>UNIFORM,
|
3470
|
+
"$t"=>TITLENR,
|
3471
|
+
"$u"=>TECHREP,
|
3472
|
+
"$w"=>RECCTRL,
|
3473
|
+
"$x"=>ISSNNR,
|
3474
|
+
"$y"=>CODENR,
|
3475
|
+
"$z"=>ISBNR,
|
3476
|
+
"$4"=>RELAT,
|
3477
|
+
"$7"=>CTRLSUB},
|
3478
|
+
:group=>"76X-78X"},
|
3479
|
+
"772"=>
|
3480
|
+
{:definition=>"Supplement Parent Entry",
|
3481
|
+
:repeat=>true,
|
3482
|
+
:indicators=>
|
3483
|
+
[{:definition=>"Note controller",
|
3484
|
+
:values=>{"0"=>"Display note", "1"=>"Do not display note"}},
|
3485
|
+
{:definition=>"Display constant controller",
|
3486
|
+
:values=>
|
3487
|
+
{"#"=>"Supplement to",
|
3488
|
+
"0"=>"Parent",
|
3489
|
+
"8"=>"No display constant generated"}}],
|
3490
|
+
:subfields=>
|
3491
|
+
{"$a"=>MAINENT,
|
3492
|
+
"$b"=>EDTNNR,
|
3493
|
+
"$c"=>QUALINF,
|
3494
|
+
"$d"=>PLCPUB,
|
3495
|
+
"$g"=>RELPRTS,
|
3496
|
+
"$h"=>PHYSDSC,
|
3497
|
+
"$i"=>RELINFO,
|
3498
|
+
"$k"=>RELSERD,
|
3499
|
+
"$m"=>MSDETL,
|
3500
|
+
"$n"=>NOTER,
|
3501
|
+
"$o"=>OIID,
|
3502
|
+
"$r"=>REPNUM,
|
3503
|
+
"$s"=>UNIFORM,
|
3504
|
+
"$t"=>TITLENR,
|
3505
|
+
"$u"=>TECHREP,
|
3506
|
+
"$w"=>RECCTRL,
|
3507
|
+
"$x"=>ISSNNR,
|
3508
|
+
"$y"=>CODENR,
|
3509
|
+
"$z"=>ISBNR,
|
3510
|
+
"$4"=>RELAT,
|
3511
|
+
"$7"=>CTRLSUB},
|
3512
|
+
:group=>"76X-78X"},
|
3513
|
+
"773"=>
|
3514
|
+
{:definition=>"Host Item Entry",
|
3515
|
+
:repeat=>true,
|
3516
|
+
:indicators=>
|
3517
|
+
[{:definition=>"Note controller",
|
3518
|
+
:values=>{"0"=>"Display note", "1"=>"Do not display note"}},
|
3519
|
+
{:definition=>"Display constant controller",
|
3520
|
+
:values=>{"#"=>"In", "8"=>"No display constant generated"}}],
|
3521
|
+
:subfields=>
|
3522
|
+
{"$a"=>MAINENT,
|
3523
|
+
"$b"=>EDTNNR,
|
3524
|
+
"$d"=>PLCPUB,
|
3525
|
+
"$g"=>RELPRTS,
|
3526
|
+
"$h"=>PHYSDSC,
|
3527
|
+
"$i"=>RELINFO,
|
3528
|
+
"$k"=>RELSERD,
|
3529
|
+
"$m"=>MSDETL,
|
3530
|
+
"$n"=>NOTER,
|
3531
|
+
"$o"=>OIID,
|
3532
|
+
"$p"=>{:definition=>"Abbreviated title", :repeat=>false},
|
3533
|
+
"$q"=>{:definition=>"Enumeration and first page", :repeat=>false},
|
3534
|
+
"$r"=>REPNUM,
|
3535
|
+
"$s"=>UNIFORM,
|
3536
|
+
"$t"=>TITLENR,
|
3537
|
+
"$u"=>TECHREP,
|
3538
|
+
"$w"=>RECCTRL,
|
3539
|
+
"$x"=>ISSNNR,
|
3540
|
+
"$y"=>CODENR,
|
3541
|
+
"$z"=>ISBNR,
|
3542
|
+
"$3"=>MATSPEC,
|
3543
|
+
"$4"=>RELAT,
|
3544
|
+
"$7"=>CTRLSUB},
|
3545
|
+
:group=>"76X-78X"},
|
3546
|
+
"774"=>
|
3547
|
+
{:definition=>"Constituent Unit Entry",
|
3548
|
+
:repeat=>true,
|
3549
|
+
:indicators=>
|
3550
|
+
[{:definition=>"Note controller",
|
3551
|
+
:values=>{"0"=>"Display note", "1"=>"Do not display note"}},
|
3552
|
+
{:definition=>"Display constant controller",
|
3553
|
+
:values=>
|
3554
|
+
{"#"=>"Constituent unit", "8"=>"No display constant generated"}}],
|
3555
|
+
:subfields=>
|
3556
|
+
{"$a"=>MAINENT,
|
3557
|
+
"$b"=>EDTNNR,
|
3558
|
+
"$c"=>QUALINF,
|
3559
|
+
"$d"=>PLCPUB,
|
3560
|
+
"$g"=>RELPRTS,
|
3561
|
+
"$h"=>PHYSDSC,
|
3562
|
+
"$i"=>RELINFO,
|
3563
|
+
"$k"=>RELSERD,
|
3564
|
+
"$m"=>MSDETL,
|
3565
|
+
"$n"=>NOTER,
|
3566
|
+
"$o"=>OIID,
|
3567
|
+
"$r"=>REPNUM,
|
3568
|
+
"$s"=>UNIFORM,
|
3569
|
+
"$t"=>TITLENR,
|
3570
|
+
"$u"=>TECHREP,
|
3571
|
+
"$w"=>RECCTRL,
|
3572
|
+
"$x"=>ISSNNR,
|
3573
|
+
"$y"=>CODENR,
|
3574
|
+
"$z"=>ISBNR,
|
3575
|
+
"$4"=>RELAT,
|
3576
|
+
"$7"=>CTRLSUB},
|
3577
|
+
:group=>"76X-78X"},
|
3578
|
+
"775"=>
|
3579
|
+
{:definition=>"Other Edition Entry",
|
3580
|
+
:repeat=>true,
|
3581
|
+
:indicators=>
|
3582
|
+
[{:definition=>"Note controller",
|
3583
|
+
:values=>{"0"=>"Display note", "1"=>"Do not display note"}},
|
3584
|
+
{:definition=>"Display constant controller",
|
3585
|
+
:values=>
|
3586
|
+
{"#"=>"Other edition available",
|
3587
|
+
"8"=>"No display constant generated"}}],
|
3588
|
+
:subfields=>
|
3589
|
+
{"$a"=>MAINENT,
|
3590
|
+
"$b"=>EDTNNR,
|
3591
|
+
"$c"=>QUALINF,
|
3592
|
+
"$d"=>PLCPUB,
|
3593
|
+
"$e"=>{:definition=>"Language code", :repeat=>false},
|
3594
|
+
"$f"=>{:definition=>"Country code", :repeat=>false},
|
3595
|
+
"$g"=>RELPRTS,
|
3596
|
+
"$h"=>PHYSDSC,
|
3597
|
+
"$i"=>RELINFO,
|
3598
|
+
"$k"=>RELSERD,
|
3599
|
+
"$m"=>MSDETL,
|
3600
|
+
"$n"=>NOTER,
|
3601
|
+
"$o"=>OIID,
|
3602
|
+
"$r"=>REPNUM,
|
3603
|
+
"$s"=>UNIFORM,
|
3604
|
+
"$t"=>TITLENR,
|
3605
|
+
"$u"=>TECHREP,
|
3606
|
+
"$w"=>RECCTRL,
|
3607
|
+
"$x"=>ISSNNR,
|
3608
|
+
"$y"=>CODENR,
|
3609
|
+
"$z"=>ISBNR,
|
3610
|
+
"$4"=>RELAT,
|
3611
|
+
"$7"=>CTRLSUB},
|
3612
|
+
:group=>"76X-78X"},
|
3613
|
+
"776"=>
|
3614
|
+
{:definition=>"Additional Physical Form Entry",
|
3615
|
+
:repeat=>true,
|
3616
|
+
:indicators=>
|
3617
|
+
[{:definition=>"Note controller",
|
3618
|
+
:values=>{"0"=>"Display note", "1"=>"Do not display note"}},
|
3619
|
+
{:definition=>"Display constant controller",
|
3620
|
+
:values=>
|
3621
|
+
{"#"=>"Available in another form",
|
3622
|
+
"8"=>"No display constant generated"}}],
|
3623
|
+
:subfields=>
|
3624
|
+
{"$a"=>MAINENT,
|
3625
|
+
"$b"=>EDTNNR,
|
3626
|
+
"$c"=>QUALINF,
|
3627
|
+
"$d"=>PLCPUB,
|
3628
|
+
"$g"=>RELPRTS,
|
3629
|
+
"$h"=>PHYSDSC,
|
3630
|
+
"$i"=>RELINFO,
|
3631
|
+
"$k"=>RELSERD,
|
3632
|
+
"$m"=>MSDETL,
|
3633
|
+
"$n"=>NOTER,
|
3634
|
+
"$o"=>OIID,
|
3635
|
+
"$r"=>REPNUM,
|
3636
|
+
"$s"=>UNIFORM,
|
3637
|
+
"$t"=>TITLENR,
|
3638
|
+
"$u"=>TECHREP,
|
3639
|
+
"$w"=>RECCTRL,
|
3640
|
+
"$x"=>ISSNNR,
|
3641
|
+
"$y"=>CODENR,
|
3642
|
+
"$z"=>ISBNR,
|
3643
|
+
"$4"=>RELAT,
|
3644
|
+
"$7"=>CTRLSUB},
|
3645
|
+
:group=>"76X-78X"},
|
3646
|
+
"777"=>
|
3647
|
+
{:definition=>"Issued With Entry",
|
3648
|
+
:repeat=>true,
|
3649
|
+
:indicators=>
|
3650
|
+
[{:definition=>"Note controller",
|
3651
|
+
:values=>{"0"=>"Display note", "1"=>"Do not display note"}},
|
3652
|
+
{:definition=>"Display constant controller",
|
3653
|
+
:values=>{"#"=>"Issued with", "8"=>"No display constant generated"}}],
|
3654
|
+
:subfields=>
|
3655
|
+
{"$a"=>MAINENT,
|
3656
|
+
"$b"=>EDTNNR,
|
3657
|
+
"$c"=>QUALINF,
|
3658
|
+
"$d"=>PLCPUB,
|
3659
|
+
"$g"=>RELPRTS,
|
3660
|
+
"$h"=>PHYSDSC,
|
3661
|
+
"$i"=>RELINFO,
|
3662
|
+
"$k"=>RELSERD,
|
3663
|
+
"$m"=>MSDETL,
|
3664
|
+
"$n"=>NOTER,
|
3665
|
+
"$o"=>OIID,
|
3666
|
+
"$r"=>REPNUM,
|
3667
|
+
"$s"=>UNIFORM,
|
3668
|
+
"$t"=>TITLENR,
|
3669
|
+
"$u"=>TECHREP,
|
3670
|
+
"$w"=>RECCTRL,
|
3671
|
+
"$x"=>ISSNNR,
|
3672
|
+
"$y"=>CODENR,
|
3673
|
+
"$z"=>ISBNR,
|
3674
|
+
"$4"=>RELAT,
|
3675
|
+
"$7"=>CTRLSUB},
|
3676
|
+
:group=>"76X-78X"},
|
3677
|
+
"780"=>
|
3678
|
+
{:definition=>"Preceding Entry",
|
3679
|
+
:repeat=>true,
|
3680
|
+
:indicators=>
|
3681
|
+
[{:definition=>"Note controller",
|
3682
|
+
:values=>{"0"=>"Display note", "1"=>"Do not display note"}},
|
3683
|
+
{:definition=>"Type of relationship",
|
3684
|
+
:values=>
|
3685
|
+
{"0"=>"Continues",
|
3686
|
+
"1"=>"Continues in part",
|
3687
|
+
"2"=>"Supersedes",
|
3688
|
+
"3"=>"Supersedes in part",
|
3689
|
+
"4"=>"Formed by the union of ... and ...",
|
3690
|
+
"5"=>"Absorbed",
|
3691
|
+
"6"=>"Absorbed in part",
|
3692
|
+
"7"=>"Separated from"}}],
|
3693
|
+
:subfields=>
|
3694
|
+
{"$a"=>MAINENT,
|
3695
|
+
"$b"=>EDTNNR,
|
3696
|
+
"$c"=>QUALINF,
|
3697
|
+
"$d"=>PLCPUB,
|
3698
|
+
"$g"=>RELPRTS,
|
3699
|
+
"$h"=>PHYSDSC,
|
3700
|
+
"$i"=>RELINFO,
|
3701
|
+
"$k"=>RELSERD,
|
3702
|
+
"$m"=>MSDETL,
|
3703
|
+
"$n"=>NOTER,
|
3704
|
+
"$o"=>OIID,
|
3705
|
+
"$r"=>REPNUM,
|
3706
|
+
"$s"=>UNIFORM,
|
3707
|
+
"$t"=>TITLENR,
|
3708
|
+
"$u"=>TECHREP,
|
3709
|
+
"$w"=>RECCTRL,
|
3710
|
+
"$x"=>ISSNNR,
|
3711
|
+
"$y"=>CODENR,
|
3712
|
+
"$z"=>ISBNR,
|
3713
|
+
"$4"=>RELAT,
|
3714
|
+
"$7"=>CTRLSUB},
|
3715
|
+
:group=>"76X-78X"},
|
3716
|
+
"785"=>
|
3717
|
+
{:definition=>"Succeeding Entry",
|
3718
|
+
:repeat=>true,
|
3719
|
+
:indicators=>
|
3720
|
+
[{:definition=>"Note controller",
|
3721
|
+
:values=>{"0"=>"Display note", "1"=>"Do not display note"}},
|
3722
|
+
{:definition=>"Type of relationship",
|
3723
|
+
:values=>
|
3724
|
+
{"0"=>"Continued by",
|
3725
|
+
"1"=>"Continued in part by",
|
3726
|
+
"2"=>"Superseded by",
|
3727
|
+
"3"=>"Superseded in part by",
|
3728
|
+
"4"=>"Absorbed by",
|
3729
|
+
"5"=>"Absorbed in part by",
|
3730
|
+
"6"=>"Split into ... and ...",
|
3731
|
+
"7"=>"Merged with ... to form ...",
|
3732
|
+
"8"=>"Changed back to"}}],
|
3733
|
+
:subfields=>
|
3734
|
+
{"$a"=>MAINENT,
|
3735
|
+
"$b"=>EDTNNR,
|
3736
|
+
"$c"=>QUALINF,
|
3737
|
+
"$d"=>PLCPUB,
|
3738
|
+
"$g"=>RELPRTS,
|
3739
|
+
"$h"=>PHYSDSC,
|
3740
|
+
"$i"=>RELINFO,
|
3741
|
+
"$k"=>RELSERD,
|
3742
|
+
"$m"=>MSDETL,
|
3743
|
+
"$n"=>NOTER,
|
3744
|
+
"$o"=>OIID,
|
3745
|
+
"$r"=>REPNUM,
|
3746
|
+
"$s"=>UNIFORM,
|
3747
|
+
"$t"=>TITLENR,
|
3748
|
+
"$u"=>TECHREP,
|
3749
|
+
"$w"=>RECCTRL,
|
3750
|
+
"$x"=>ISSNNR,
|
3751
|
+
"$y"=>CODENR,
|
3752
|
+
"$z"=>ISBNR,
|
3753
|
+
"$4"=>RELAT,
|
3754
|
+
"$7"=>CTRLSUB},
|
3755
|
+
:group=>"76X-78X"},
|
3756
|
+
"786"=>
|
3757
|
+
{:definition=>"Data Source Entry",
|
3758
|
+
:repeat=>true,
|
3759
|
+
:indicators=>
|
3760
|
+
[{:definition=>"Note controller",
|
3761
|
+
:values=>{"0"=>"Display note", "1"=>"Do not display note"}},
|
3762
|
+
{:definition=>"Display constant controller",
|
3763
|
+
:values=>{"#"=>"Data source", "8"=>"No display constant generated"}}],
|
3764
|
+
:subfields=>
|
3765
|
+
{"$a"=>MAINENT,
|
3766
|
+
"$b"=>EDTNNR,
|
3767
|
+
"$c"=>QUALINF,
|
3768
|
+
"$d"=>PLCPUB,
|
3769
|
+
"$g"=>RELPRTS,
|
3770
|
+
"$h"=>PHYSDSC,
|
3771
|
+
"$i"=>RELINFO,
|
3772
|
+
"$j"=>{:definition=>"Period of content", :repeat=>false},
|
3773
|
+
"$k"=>RELSERD,
|
3774
|
+
"$m"=>MSDETL,
|
3775
|
+
"$n"=>NOTER,
|
3776
|
+
"$o"=>OIID,
|
3777
|
+
"$p"=>{:definition=>"Abbreviated title", :repeat=>false},
|
3778
|
+
"$r"=>REPNUM,
|
3779
|
+
"$s"=>UNIFORM,
|
3780
|
+
"$t"=>TITLENR,
|
3781
|
+
"$u"=>TECHREP,
|
3782
|
+
"$v"=>{:definition=>"Source Contribution", :repeat=>false},
|
3783
|
+
"$w"=>RECCTRL,
|
3784
|
+
"$x"=>ISSNNR,
|
3785
|
+
"$y"=>CODENR,
|
3786
|
+
"$z"=>ISBNR,
|
3787
|
+
"$4"=>RELAT,
|
3788
|
+
"$7"=>CTRLSUB},
|
3789
|
+
:group=>"76X-78X"},
|
3790
|
+
"787"=>
|
3791
|
+
{:definition=>"Other Relationship Entry",
|
3792
|
+
:repeat=>true,
|
3793
|
+
:indicators=>
|
3794
|
+
[{:definition=>"Note controller",
|
3795
|
+
:values=>{"0"=>"Display note", "1"=>"Do not display note"}},
|
3796
|
+
{:definition=>"Display constant controller",
|
3797
|
+
:values=>{"#"=>"Related item", "8"=>"No display constant generated"}}],
|
3798
|
+
:subfields=>
|
3799
|
+
{"$a"=>MAINENT,
|
3800
|
+
"$b"=>EDTNNR,
|
3801
|
+
"$c"=>QUALINF,
|
3802
|
+
"$d"=>PLCPUB,
|
3803
|
+
"$g"=>RELPRTS,
|
3804
|
+
"$h"=>PHYSDSC,
|
3805
|
+
"$i"=>RELINFO,
|
3806
|
+
"$k"=>RELSERD,
|
3807
|
+
"$m"=>MSDETL,
|
3808
|
+
"$n"=>NOTER,
|
3809
|
+
"$o"=>OIID,
|
3810
|
+
"$r"=>REPNUM,
|
3811
|
+
"$s"=>UNIFORM,
|
3812
|
+
"$t"=>TITLENR,
|
3813
|
+
"$u"=>TECHREP,
|
3814
|
+
"$w"=>RECCTRL,
|
3815
|
+
"$x"=>ISSNNR,
|
3816
|
+
"$y"=>CODENR,
|
3817
|
+
"$z"=>ISBNR,
|
3818
|
+
"$4"=>RELAT,
|
3819
|
+
"$7"=>CTRLSUB},
|
3820
|
+
:group=>"76X-78X"},
|
3821
|
+
"800"=>
|
3822
|
+
{:definition=>"Series Added Entry-Personal Name",
|
3823
|
+
:repeat=>true,
|
3824
|
+
:indicators=>
|
3825
|
+
[{:definition=>"Type of personal name entry element",
|
3826
|
+
:values=>{"0"=>"Forename", "1"=>"Surname", "3"=>"Family name"}},
|
3827
|
+
:undefined],
|
3828
|
+
:subfields=>
|
3829
|
+
{"$a"=>{:definition=>"Personal name", :repeat=>false},
|
3830
|
+
"$b"=>{:definition=>"Numeration", :repeat=>false},
|
3831
|
+
"$c"=>
|
3832
|
+
{:definition=>"Titles and other words associated with a name",
|
3833
|
+
:repeat=>true},
|
3834
|
+
"$d"=>{:definition=>"Dates associated with a name", :repeat=>false},
|
3835
|
+
"$e"=>RELATOR,
|
3836
|
+
"$f"=>DATENR,
|
3837
|
+
"$g"=>MISCINF,
|
3838
|
+
"$h"=>MEDIUM,
|
3839
|
+
"$j"=>{:definition=>"Attribution qualifier"},
|
3840
|
+
"$k"=>FORMSUB,
|
3841
|
+
"$l"=>LANGNR,
|
3842
|
+
"$m"=>MUSMED,
|
3843
|
+
"$n"=>NUMPART,
|
3844
|
+
"$o"=>ARRANGE,
|
3845
|
+
"$p"=>NAMEPRT,
|
3846
|
+
"$q"=>{:definition=>"Fuller form of name", :repeat=>false},
|
3847
|
+
"$r"=>MUSKEY,
|
3848
|
+
"$s"=>VRSNR,
|
3849
|
+
"$t"=>WRKTITL,
|
3850
|
+
"$u"=>AFFIL,
|
3851
|
+
"$v"=>{:definition=>"Volume/sequential designation", :repeat=>false},
|
3852
|
+
"$w"=>{:definition=>"Bibliographic record control number"},
|
3853
|
+
"$x"=>ISSNNR,
|
3854
|
+
"$0"=>ARECNUM,
|
3855
|
+
"$1"=>RWURI,
|
3856
|
+
"$3"=>MATSPEC,
|
3857
|
+
"$4"=>RELAT,
|
3858
|
+
"$5"=>{:definition=>"Institution to which field applies"},
|
3859
|
+
"$7"=>CTRLSUB},
|
3860
|
+
:group=>"80X-83X"},
|
3861
|
+
"810"=>
|
3862
|
+
{:definition=>"Series Added Entry-Corporate Name",
|
3863
|
+
:repeat=>true,
|
3864
|
+
:indicators=>
|
3865
|
+
[{:definition=>"Type of corporate name entry element",
|
3866
|
+
:values=>
|
3867
|
+
{"0"=>"Inverted name",
|
3868
|
+
"1"=>"Jurisdiction name",
|
3869
|
+
"2"=>"Name in direct order"}},
|
3870
|
+
:undefined],
|
3871
|
+
:subfields=>
|
3872
|
+
{"$b"=>{:definition=>"Subordinate unit"},
|
3873
|
+
"$c"=>{:definition=>"Location of meeting"},
|
3874
|
+
"$d"=>{:definition=>"Date of meeting or treaty signing"},
|
3875
|
+
"$e"=>RELATOR,
|
3876
|
+
"$f"=>DATENR,
|
3877
|
+
"$g"=>MISCINF,
|
3878
|
+
"$h"=>MEDIUM,
|
3879
|
+
"$k"=>FORMSUB,
|
3880
|
+
"$l"=>LANGNR,
|
3881
|
+
"$m"=>MUSMED,
|
3882
|
+
"$n"=>{:definition=>"Number of part/section/meeting"},
|
3883
|
+
"$o"=>ARRANGE,
|
3884
|
+
"$p"=>NAMEPRT,
|
3885
|
+
"$r"=>MUSKEY,
|
3886
|
+
"$s"=>VRSNR,
|
3887
|
+
"$t"=>WRKTITL,
|
3888
|
+
"$u"=>AFFIL,
|
3889
|
+
"$v"=>{:definition=>"Volume/sequential designation", :repeat=>false},
|
3890
|
+
"$w"=>{:definition=>"Bibliographic record control number"},
|
3891
|
+
"$x"=>ISSNNR,
|
3892
|
+
"$0"=>ARECNUM,
|
3893
|
+
"$1"=>RWURI,
|
3894
|
+
"$3"=>MATSPEC,
|
3895
|
+
"$4"=>RELAT,
|
3896
|
+
"$5"=>{:definition=>"Institution to which field applies"},
|
3897
|
+
"$7"=>CTRLSUB},
|
3898
|
+
:group=>"80X-83X"},
|
3899
|
+
"811"=>
|
3900
|
+
{:definition=>"Series Added Entry-Meeting Name",
|
3901
|
+
:repeat=>true,
|
3902
|
+
:indicators=>
|
3903
|
+
[{:definition=>"Type of meeting name entry element",
|
3904
|
+
:values=>
|
3905
|
+
{"0"=>"Inverted name",
|
3906
|
+
"1"=>"Jurisdiction name",
|
3907
|
+
"2"=>"Name in direct order"}},
|
3908
|
+
:undefined],
|
3909
|
+
:subfields=>
|
3910
|
+
{"$c"=>{:definition=>"Location of meeting"},
|
3911
|
+
"$d"=>{:definition=>"Date of meeting or treaty signing"},
|
3912
|
+
"$e"=>{:definition=>"Subordinate unit"},
|
3913
|
+
"$f"=>DATENR,
|
3914
|
+
"$g"=>MISCINF,
|
3915
|
+
"$h"=>MEDIUM,
|
3916
|
+
"$j"=>RELATOR,
|
3917
|
+
"$k"=>FORMSUB,
|
3918
|
+
"$l"=>LANGNR,
|
3919
|
+
"$n"=>{:definition=>"Number of part/section/meeting"},
|
3920
|
+
"$p"=>NAMEPRT,
|
3921
|
+
"$s"=>VRSNR,
|
3922
|
+
"$t"=>WRKTITL,
|
3923
|
+
"$u"=>AFFIL,
|
3924
|
+
"$v"=>{:definition=>"Volume/sequential designation", :repeat=>false},
|
3925
|
+
"$w"=>{:definition=>"Bibliographic record control number"},
|
3926
|
+
"$x"=>ISSNNR,
|
3927
|
+
"$0"=>ARECNUM,
|
3928
|
+
"$1"=>RWURI,
|
3929
|
+
"$3"=>MATSPEC,
|
3930
|
+
"$4"=>RELAT,
|
3931
|
+
"$5"=>{:definition=>"Institution to which field applies"},
|
3932
|
+
"$7"=>CTRLSUB},
|
3933
|
+
:group=>"80X-83X"},
|
3934
|
+
"830"=>
|
3935
|
+
{:definition=>"Series Added Entry-Uniform Title",
|
3936
|
+
:repeat=>true,
|
3937
|
+
:indicators=>
|
3938
|
+
[:undefined,
|
3939
|
+
{:definition=>"Nonfiling characters",
|
3940
|
+
:values=>
|
3941
|
+
{"0"=>"No nonfiling characters",
|
3942
|
+
"1-9"=>"Number of nonfiling characters"}}],
|
3943
|
+
:subfields=>
|
3944
|
+
{"$a"=>UNIFORM,
|
3945
|
+
"$d"=>{:definition=>"Date of treaty signing"},
|
3946
|
+
"$f"=>DATENR,
|
3947
|
+
"$g"=>MISCINF,
|
3948
|
+
"$h"=>MEDIUM,
|
3949
|
+
"$k"=>FORMSUB,
|
3950
|
+
"$l"=>LANGNR,
|
3951
|
+
"$m"=>MUSMED,
|
3952
|
+
"$n"=>NUMPART,
|
3953
|
+
"$o"=>ARRANGE,
|
3954
|
+
"$p"=>NAMEPRT,
|
3955
|
+
"$r"=>MUSKEY,
|
3956
|
+
"$s"=>VRSNR,
|
3957
|
+
"$t"=>WRKTITL,
|
3958
|
+
"$v"=>{:definition=>"Volume/sequential designation", :repeat=>false},
|
3959
|
+
"$w"=>{:definition=>"Bibliographic record control number"},
|
3960
|
+
"$x"=>ISSNNR,
|
3961
|
+
"$0"=>ARECNUM,
|
3962
|
+
"$1"=>RWURI,
|
3963
|
+
"$3"=>MATSPEC,
|
3964
|
+
"$5"=>{:definition=>"Institution to which field applies"},
|
3965
|
+
"$7"=>CTRLSUB},
|
3966
|
+
:group=>"80X-83X"},
|
3967
|
+
"841"=>
|
3968
|
+
{:definition=>"Holdings Coded Data Values",
|
3969
|
+
:repeat=>false,
|
3970
|
+
:indicators=>[:undefined, :undefined],
|
3971
|
+
:subfields=>{
|
3972
|
+
"$a"=>{:definition=>"Type of record", :repeat=>false},
|
3973
|
+
"$b"=>{:definition=>"Fixed-length data elements", :repeat=>false},
|
3974
|
+
"$e"=>{:definition=>"Encoding level", :repeat=>false}},
|
3975
|
+
:linkage=>false,
|
3976
|
+
:fieldlink=>false,
|
3977
|
+
:group=>"841-88X",
|
3978
|
+
:docurl=>"https://www.loc.gov/marc/holdings/hd841.html"},
|
3979
|
+
"842"=>
|
3980
|
+
{:definition=>"Textual Physical Form Designator",
|
3981
|
+
:repeat=>false,
|
3982
|
+
:indicators=>[:undefined, :undefined],
|
3983
|
+
:subfields=>{
|
3984
|
+
"$a"=>{:definition=>"Textual physical form designator", :repeat=>false}},
|
3985
|
+
:group=>"841-88X",
|
3986
|
+
:docurl=>"https://www.loc.gov/marc/holdings/hd842.html"},
|
3987
|
+
"843"=>
|
3988
|
+
{:definition=>"Reproduction Note",
|
3989
|
+
:repeat=>true,
|
3990
|
+
:indicators=>[:undefined, :undefined],
|
3991
|
+
:subfields=>{
|
3992
|
+
"$a"=>{:definition=>"Type of reproduction", :repeat=>false},
|
3993
|
+
"$b"=>{:definition=>"Place of reproduction"},
|
3994
|
+
"$c"=>{:definition=>"Agency responsible for reproduction"},
|
3995
|
+
"$d"=>{:definition=>"Date of reproduction", :repeat=>false},
|
3996
|
+
"$e"=>{:definition=>"Physical description of reproduction", :repeat=>false},
|
3997
|
+
"$f"=>{:definition=>"Series statement of reproduction"},
|
3998
|
+
"$m"=>{:definition=>"Dates of publication and/or sequential designation of issues reproduced"},
|
3999
|
+
"$n"=>{:definition=>"Note about reproduction"},
|
4000
|
+
"$3"=>MATSPEC,
|
4001
|
+
"$5"=>INSTAPP,
|
4002
|
+
"$7"=>{:definition=>"Fixed-length data elements of reproduction",
|
4003
|
+
:repeat=>false}},
|
4004
|
+
:group=>"841-88X",
|
4005
|
+
:docurl=>"https://www.loc.gov/marc/holdings/hd843.html"},
|
4006
|
+
"844"=>
|
4007
|
+
{:definition=>"Name of Unit",
|
4008
|
+
:repeat=>false,
|
4009
|
+
:indicators=>[:undefined, :undefined],
|
4010
|
+
:subfields=>{"$a"=>{:definition=>"Name of unit", :repeat=>false}},
|
4011
|
+
:group=>"841-88X",
|
4012
|
+
:docurl=>"https://www.loc.gov/marc/holdings/hd844.html"},
|
4013
|
+
"845"=>
|
4014
|
+
{:definition=>"Terms Governing Use and Reproduction",
|
4015
|
+
:repeat=>true,
|
4016
|
+
:indicators=>[:undefined, :undefined],
|
4017
|
+
:subfields=>{
|
4018
|
+
"$a"=>{:definition=>"Terms governing use and reproduction", :repeat=>false},
|
4019
|
+
"$b"=>{:definition=>"Jurisdiction", :repeat=>false},
|
4020
|
+
"$c"=>{:definition=>"Authorization", :repeat=>false},
|
4021
|
+
"$d"=>{:definition=>"Authorized users", :repeat=>false},
|
4022
|
+
"$u"=>{:definition=>"Uniform Resource Identifier"},
|
4023
|
+
"$3"=>MATSPEC,
|
4024
|
+
"$5"=>INSTAPP},
|
4025
|
+
:group=>"841-88X",
|
4026
|
+
:docurl=>"https://www.loc.gov/marc/holdings/hd845.html"},
|
4027
|
+
"850"=>
|
4028
|
+
{:definition=>"Holding Institution",
|
4029
|
+
:repeat=>true,
|
4030
|
+
:indicators=>[:undefined, :undefined],
|
4031
|
+
:subfields=>{"$a"=>{:definition=>"Holding institution"}},
|
4032
|
+
:linkage=>false,
|
4033
|
+
:group=>"841-88X"},
|
4034
|
+
"852"=>
|
4035
|
+
{:definition=>"Location",
|
4036
|
+
:repeat=>true,
|
4037
|
+
:indicators=>
|
4038
|
+
[{:definition=>"Shelving scheme",
|
4039
|
+
:values=>{"#"=>"No information provided",
|
4040
|
+
"0"=>"Library of Congress classification",
|
4041
|
+
"1"=>"Dewey Decimal classification",
|
4042
|
+
"2"=>"National Library of Medicine classification",
|
4043
|
+
"3"=>"Superintendent of Documents classification",
|
4044
|
+
"4"=>"Shelving control number",
|
4045
|
+
"5"=>"Title",
|
4046
|
+
"6"=>"Shelved separately",
|
4047
|
+
"7"=>"Source specified in subfield $2",
|
4048
|
+
"8"=>"Other scheme"}},
|
4049
|
+
{:definition=>"Shelving order",
|
4050
|
+
:values=>{"#"=>"No information provided",
|
4051
|
+
"0"=>"Not enumeration",
|
4052
|
+
"1"=>"Primary enumeration",
|
4053
|
+
"2"=>"Alternative enumeration"}}],
|
4054
|
+
:subfields=>{
|
4055
|
+
"$a"=>{:definition=>"Location", :repeat=>false},
|
4056
|
+
"$b"=>{:definition=>"Sublocation or collection"},
|
4057
|
+
"$c"=>{:definition=>"Shelving location"},
|
4058
|
+
"$d"=>{:definition=>"Former shelving location"},
|
4059
|
+
"$e"=>{:definition=>"Address"},
|
4060
|
+
"$f"=>{:definition=>"Coded location qualifier"},
|
4061
|
+
"$g"=>{:definition=>"Non-coded location qualifier"},
|
4062
|
+
"$h"=>{:definition=>"Classification part", :repeat=>false},
|
4063
|
+
"$i"=>{:definition=>"Item part"},
|
4064
|
+
"$j"=>{:definition=>"Shelving control number", :repeat=>false},
|
4065
|
+
"$k"=>{:definition=>"Call number prefix"},
|
4066
|
+
"$l"=>{:definition=>"Shelving form of title", :repeat=>false},
|
4067
|
+
"$m"=>{:definition=>"Call number suffix"},
|
4068
|
+
"$n"=>{:definition=>"Country code", :repeat=>false},
|
4069
|
+
"$p"=>{:definition=>"Piece designation", :repeat=>false},
|
4070
|
+
"$q"=>{:definition=>"Piece physical condition", :repeat=>false},
|
4071
|
+
"$s"=>{:definition=>"Copyright article-fee code"},
|
4072
|
+
"$t"=>{:definition=>"Copy number", :repeat=>false},
|
4073
|
+
"$u"=>{:definition=>"Uniform Resource Identifier"},
|
4074
|
+
"$x"=>NPUBNOT,
|
4075
|
+
"$z"=>PUBNOTE,
|
4076
|
+
"$2"=>{:definition=>"Source of classification or shelving scheme",
|
4077
|
+
:repeat=>false},
|
4078
|
+
"$3"=>MATSPEC},
|
4079
|
+
:group=>"841-88X"},
|
4080
|
+
"853"=>
|
4081
|
+
{:definition=>"Captions and Pattern - Basic Bibliographic Unit",
|
4082
|
+
:repeat=>true,
|
4083
|
+
:indicators=>
|
4084
|
+
[{:definition=>"Compressibility and expandability",
|
4085
|
+
:values=>{"0"=>"Cannot compress or expand",
|
4086
|
+
"1"=>"Can compress but not expand",
|
4087
|
+
"2"=>"Can compress or expand",
|
4088
|
+
"3"=>"Unknown"}},
|
4089
|
+
{:definition=>"Caption evaluation",
|
4090
|
+
:values=>{"0"=>"Captions verified; all levels present",
|
4091
|
+
"1"=>"Captions verified; all levels present",
|
4092
|
+
"2"=>"Captions unverified; all levels present",
|
4093
|
+
"3"=>"Captions unverified; all levels may not be present"}}],
|
4094
|
+
:subfields=>{
|
4095
|
+
"$a"=>{:definition=>"First level of enumeration", :repeat=>false},
|
4096
|
+
"$b"=>{:definition=>"Second level of enumeration", :repeat=>false},
|
4097
|
+
"$c"=>{:definition=>"Third level of enumeration", :repeat=>false},
|
4098
|
+
"$d"=>{:definition=>"Fourth level of enumeration", :repeat=>false},
|
4099
|
+
"$e"=>{:definition=>"Fifth level of enumeration", :repeat=>false},
|
4100
|
+
"$f"=>{:definition=>"Sixth level of enumeration", :repeat=>false},
|
4101
|
+
"$g"=>{
|
4102
|
+
:definition=>"Alternative numbering scheme, first level of enumeration",
|
4103
|
+
:repeat=>false},
|
4104
|
+
"$h"=>{
|
4105
|
+
:definition=>"Alternative numbering scheme, second level of enumeration",
|
4106
|
+
:repeat=>false},
|
4107
|
+
"$i"=>{:definition=>"First level of chronology", :repeat=>false},
|
4108
|
+
"$j"=>{:definition=>"Second level of chronology", :repeat=>false},
|
4109
|
+
"$k"=>{:definition=>"Third level of chronology", :repeat=>false},
|
4110
|
+
"$l"=>{:definition=>"Fourth level of chronology", :repeat=>false},
|
4111
|
+
"$m"=>{:definition=>"Alternative numbering scheme, chronology",
|
4112
|
+
:repeat=>false},
|
4113
|
+
"$n"=>{:definition=>"Pattern note", :repeat=>false},
|
4114
|
+
"$p"=>{:definition=>"Number of pieces per issuance", :repeat=>false},
|
4115
|
+
"$u"=>{:definition=>"Bibliographic units per next higher level"},
|
4116
|
+
"$v"=>{:definition=>"Numbering continuity"},
|
4117
|
+
"$w"=>{:definition=>"Frequency", :repeat=>false},
|
4118
|
+
"$x"=>{:definition=>"Calendar change", :repeat=>false},
|
4119
|
+
"$y"=>{:definition=>"Regularity pattern"},
|
4120
|
+
"$z"=>{:definition=>"Numbering scheme"},
|
4121
|
+
"$o"=>{:definition=>"Type of unit"},
|
4122
|
+
"$t"=>{:definition=>"Copy", :repeat=>false},
|
4123
|
+
"$2"=>{:definition=>"Source of caption abbreviation"},
|
4124
|
+
"$3"=>MATSPEC},
|
4125
|
+
:group=>"841-88X",
|
4126
|
+
:docurl=>"https://www.loc.gov/marc/holdings/hd853.html"},
|
4127
|
+
"854"=>
|
4128
|
+
{:definition=>"Captions and Pattern - Supplementary Material",
|
4129
|
+
:repeat=>true,
|
4130
|
+
:indicators=>
|
4131
|
+
[{:definition=>"Compressibility and expandability",
|
4132
|
+
:values=>{"0"=>"Cannot compress or expand",
|
4133
|
+
"1"=>"Can compress but not expand",
|
4134
|
+
"2"=>"Can compress or expand",
|
4135
|
+
"3"=>"Unknown"}},
|
4136
|
+
{:definition=>"Caption evaluation",
|
4137
|
+
:values=>{"0"=>"Captions verified; all levels present",
|
4138
|
+
"1"=>"Captions verified; all levels present",
|
4139
|
+
"2"=>"Captions unverified; all levels present",
|
4140
|
+
"3"=>"Captions unverified; all levels may not be present"}}],
|
4141
|
+
:subfields=>{
|
4142
|
+
"$a"=>{:definition=>"First level of enumeration", :repeat=>false},
|
4143
|
+
"$b"=>{:definition=>"Second level of enumeration", :repeat=>false},
|
4144
|
+
"$c"=>{:definition=>"Third level of enumeration", :repeat=>false},
|
4145
|
+
"$d"=>{:definition=>"Fourth level of enumeration", :repeat=>false},
|
4146
|
+
"$e"=>{:definition=>"Fifth level of enumeration", :repeat=>false},
|
4147
|
+
"$f"=>{:definition=>"Sixth level of enumeration", :repeat=>false},
|
4148
|
+
"$g"=>{
|
4149
|
+
:definition=>"Alternative numbering scheme, first level of enumeration",
|
4150
|
+
:repeat=>false},
|
4151
|
+
"$h"=>{
|
4152
|
+
:definition=>"Alternative numbering scheme, second level of enumeration",
|
4153
|
+
:repeat=>false},
|
4154
|
+
"$i"=>{:definition=>"First level of chronology", :repeat=>false},
|
4155
|
+
"$j"=>{:definition=>"Second level of chronology", :repeat=>false},
|
4156
|
+
"$k"=>{:definition=>"Third level of chronology", :repeat=>false},
|
4157
|
+
"$l"=>{:definition=>"Fourth level of chronology", :repeat=>false},
|
4158
|
+
"$m"=>{:definition=>"Alternative numbering scheme, chronology",
|
4159
|
+
:repeat=>false},
|
4160
|
+
"$n"=>{:definition=>"Pattern note", :repeat=>false},
|
4161
|
+
"$p"=>{:definition=>"Number of pieces per issuance", :repeat=>false},
|
4162
|
+
"$u"=>{:definition=>"Bibliographic units per next higher level"},
|
4163
|
+
"$v"=>{:definition=>"Numbering continuity"},
|
4164
|
+
"$w"=>{:definition=>"Frequency", :repeat=>false},
|
4165
|
+
"$x"=>{:definition=>"Calendar change", :repeat=>false},
|
4166
|
+
"$y"=>{:definition=>"Regularity pattern"},
|
4167
|
+
"$z"=>{:definition=>"Numbering scheme"},
|
4168
|
+
"$o"=>{:definition=>"Type of unit"},
|
4169
|
+
"$t"=>{:definition=>"Copy", :repeat=>false},
|
4170
|
+
"$2"=>{:definition=>"Source of caption abbreviation"},
|
4171
|
+
"$3"=>MATSPEC},
|
4172
|
+
:group=>"841-88X",
|
4173
|
+
:docurl=>"https://www.loc.gov/marc/holdings/hd854.html"},
|
4174
|
+
"855"=>
|
4175
|
+
{:definition=>"Captions and Pattern - Indexes",
|
4176
|
+
:repeat=>true,
|
4177
|
+
:indicators=>[:undefined, :undefined],
|
4178
|
+
:subfields=>{
|
4179
|
+
"$a"=>{:definition=>"First level of enumeration", :repeat=>false},
|
4180
|
+
"$b"=>{:definition=>"Second level of enumeration", :repeat=>false},
|
4181
|
+
"$c"=>{:definition=>"Third level of enumeration", :repeat=>false},
|
4182
|
+
"$d"=>{:definition=>"Fourth level of enumeration", :repeat=>false},
|
4183
|
+
"$e"=>{:definition=>"Fifth level of enumeration", :repeat=>false},
|
4184
|
+
"$f"=>{:definition=>"Sixth level of enumeration", :repeat=>false},
|
4185
|
+
"$g"=>{
|
4186
|
+
:definition=>"Alternative numbering scheme, first level of enumeration",
|
4187
|
+
:repeat=>false},
|
4188
|
+
"$h"=>{
|
4189
|
+
:definition=>"Alternative numbering scheme, second level of enumeration",
|
4190
|
+
:repeat=>false},
|
4191
|
+
"$i"=>{:definition=>"First level of chronology", :repeat=>false},
|
4192
|
+
"$j"=>{:definition=>"Second level of chronology", :repeat=>false},
|
4193
|
+
"$k"=>{:definition=>"Third level of chronology", :repeat=>false},
|
4194
|
+
"$l"=>{:definition=>"Fourth level of chronology", :repeat=>false},
|
4195
|
+
"$m"=>{:definition=>"Alternative numbering scheme, chronology",
|
4196
|
+
:repeat=>false},
|
4197
|
+
"$n"=>{:definition=>"Pattern note", :repeat=>false},
|
4198
|
+
"$p"=>{:definition=>"Number of pieces per issuance", :repeat=>false},
|
4199
|
+
"$u"=>{:definition=>"Bibliographic units per next higher level"},
|
4200
|
+
"$v"=>{:definition=>"Numbering continuity"},
|
4201
|
+
"$w"=>{:definition=>"Frequency", :repeat=>false},
|
4202
|
+
"$x"=>{:definition=>"Calendar change", :repeat=>false},
|
4203
|
+
"$y"=>{:definition=>"Regularity pattern"},
|
4204
|
+
"$z"=>{:definition=>"Numbering scheme"},
|
4205
|
+
"$o"=>{:definition=>"Type of unit"},
|
4206
|
+
"$t"=>{:definition=>"Copy", :repeat=>false},
|
4207
|
+
"$2"=>{:definition=>"Source of caption abbreviation"},
|
4208
|
+
"$3"=>MATSPEC},
|
4209
|
+
:group=>"841-88X",
|
4210
|
+
:docurl=>"https://www.loc.gov/marc/holdings/hd855.html"},
|
4211
|
+
"856"=>
|
4212
|
+
{:definition=>"Electronic Location and Access",
|
4213
|
+
:repeat=>true,
|
4214
|
+
:indicators=>
|
4215
|
+
[{:definition=>"Access method",
|
4216
|
+
:values=>{"#"=>"No information provided",
|
4217
|
+
"0"=>"Email",
|
4218
|
+
"1"=>"FTP",
|
4219
|
+
"2"=>"Remote login (Telnet)",
|
4220
|
+
"3"=>"Dial-up",
|
4221
|
+
"4"=>"HTTP",
|
4222
|
+
"7"=>"Method specified in subfield $2"}},
|
4223
|
+
{:definition=>"Relationship",
|
4224
|
+
:values=>{"#"=>"No information provided",
|
4225
|
+
"0"=>"Resource",
|
4226
|
+
"1"=>"Version of resource",
|
4227
|
+
"2"=>"Related resource",
|
4228
|
+
"8"=>"No display constant generated"}}],
|
4229
|
+
:subfields=>{
|
4230
|
+
"$a"=>{:definition=>"Host name"},
|
4231
|
+
"$b"=>{:definition=>"Access number"},
|
4232
|
+
"$c"=>{:definition=>"Compression information"},
|
4233
|
+
"$d"=>{:definition=>"Path"},
|
4234
|
+
"$f"=>{:definition=>"Electronic name"},
|
4235
|
+
"$h"=>{:definition=>"Processor of request", :repeat=>false},
|
4236
|
+
"$i"=>{:definition=>"Instruction"},
|
4237
|
+
"$j"=>{:definition=>"Bits per second", :repeat=>false},
|
4238
|
+
"$k"=>{:definition=>"Password", :repeat=>false},
|
4239
|
+
"$l"=>{:definition=>"Logon", :repeat=>false},
|
4240
|
+
"$m"=>{:definition=>"Contact for access assistance"},
|
4241
|
+
"$n"=>{:definition=>"Name of location of host", :repeat=>false},
|
4242
|
+
"$o"=>{:definition=>"Operating system", :repeat=>false},
|
4243
|
+
"$p"=>{:definition=>"Port", :repeat=>false},
|
4244
|
+
"$q"=>{:definition=>"Electronic format type", :repeat=>false},
|
4245
|
+
"$r"=>{:definition=>"Settings", :repeat=>false},
|
4246
|
+
"$s"=>{:definition=>"File size"},
|
4247
|
+
"$t"=>{:definition=>"Terminal emulation"},
|
4248
|
+
"$u"=>{:definition=>"Uniform Resource Identifier"},
|
4249
|
+
"$v"=>{:definition=>"Hours access method available"},
|
4250
|
+
"$w"=>RECCTRL,
|
4251
|
+
"$x"=>NPUBNOT,
|
4252
|
+
"$y"=>{:definition=>"Link text"},
|
4253
|
+
"$z"=>PUBNOTE,
|
4254
|
+
"$2"=>{:definition=>"Access method", :repeat=>false},
|
4255
|
+
"$3"=>MATSPEC},
|
4256
|
+
:group=>"841-88X"},
|
4257
|
+
"863"=>
|
4258
|
+
{:definition=>"Enumeration and Chronology - Basic Bibliographic Unit",
|
4259
|
+
:repeat=>true,
|
4260
|
+
:indicators=>
|
4261
|
+
[{:definition=>"Field encoding level",
|
4262
|
+
:values=>{"#"=>"No information provided",
|
4263
|
+
"3"=>"Holdings level 3",
|
4264
|
+
"4"=>"Holdings level 4",
|
4265
|
+
"5"=>"Holdings level 4 with piece designation"}},
|
4266
|
+
{:definition=>"Form of holdings",
|
4267
|
+
:values=>{"#"=>"No information provided",
|
4268
|
+
"0"=>"Compressed",
|
4269
|
+
"1"=>"Uncompressed",
|
4270
|
+
"2"=>"Compressed, use textual display",
|
4271
|
+
"3"=>"Uncompressed, use textual display",
|
4272
|
+
"4"=>"Item(s) not published"}}],
|
4273
|
+
:subfields=>{
|
4274
|
+
"$a"=>{:definition=>"First level of enumeration", :repeat=>false},
|
4275
|
+
"$b"=>{:definition=>"Second level of enumeration", :repeat=>false},
|
4276
|
+
"$c"=>{:definition=>"Third level of enumeration", :repeat=>false},
|
4277
|
+
"$d"=>{:definition=>"Fourth level of enumeration", :repeat=>false},
|
4278
|
+
"$e"=>{:definition=>"Fifth level of enumeration", :repeat=>false},
|
4279
|
+
"$f"=>{:definition=>"Sixth level of enumeration", :repeat=>false},
|
4280
|
+
"$g"=>{
|
4281
|
+
:definition=>"Alternative numbering scheme, first level of enumeration",
|
4282
|
+
:repeat=>false},
|
4283
|
+
"$h"=>{
|
4284
|
+
:definition=>"Alternative numbering scheme, second level of enumeration",
|
4285
|
+
:repeat=>false},
|
4286
|
+
"$i"=>{:definition=>"First level of chronology", :repeat=>false},
|
4287
|
+
"$j"=>{:definition=>"Second level of chronology", :repeat=>false},
|
4288
|
+
"$k"=>{:definition=>"Third level of chronology", :repeat=>false},
|
4289
|
+
"$l"=>{:definition=>"Fourth level of chronology", :repeat=>false},
|
4290
|
+
"$m"=>{:definition=>"Alternative numbering scheme, chronology",
|
4291
|
+
:repeat=>false},
|
4292
|
+
"$n"=>{:definition=>"Converted Gregorian year", :repeat=>false},
|
4293
|
+
"$o"=>{:definition=>"Title of unit"},
|
4294
|
+
"$p"=>{:definition=>"Piece designation", :repeat=>false},
|
4295
|
+
"$q"=>{:definition=>"Piece physical condition", :repeat=>false},
|
4296
|
+
"$s"=>{:definition=>"Copyright article-fee code"},
|
4297
|
+
"$t"=>{:definition=>"Copy number", :repeat=>false},
|
4298
|
+
"$w"=>{:definition=>"Break indicator", :repeat=>false},
|
4299
|
+
"$x"=>NPUBNOT,
|
4300
|
+
"$z"=>PUBNOTE},
|
4301
|
+
:group=>"841-88X",
|
4302
|
+
:docurl=>"https://www.loc.gov/marc/holdings/hd863.html"},
|
4303
|
+
"864"=>
|
4304
|
+
{:definition=>"Enumeration and Chronology - Supplementary Material",
|
4305
|
+
:repeat=>true,
|
4306
|
+
:indicators=>
|
4307
|
+
[{:definition=>"Field encoding level",
|
4308
|
+
:values=>{"#"=>"No information provided",
|
4309
|
+
"3"=>"Holdings level 3",
|
4310
|
+
"4"=>"Holdings level 4",
|
4311
|
+
"5"=>"Holdings level 4 with piece designation"}},
|
4312
|
+
{:definition=>"Form of holdings",
|
4313
|
+
:values=>{"#"=>"No information provided",
|
4314
|
+
"0"=>"Compressed",
|
4315
|
+
"1"=>"Uncompressed",
|
4316
|
+
"2"=>"Compressed, use textual display",
|
4317
|
+
"3"=>"Uncompressed, use textual display",
|
4318
|
+
"4"=>"Item(s) not published"}}],
|
4319
|
+
:subfields=>{
|
4320
|
+
"$a"=>{:definition=>"First level of enumeration", :repeat=>false},
|
4321
|
+
"$b"=>{:definition=>"Second level of enumeration", :repeat=>false},
|
4322
|
+
"$c"=>{:definition=>"Third level of enumeration", :repeat=>false},
|
4323
|
+
"$d"=>{:definition=>"Fourth level of enumeration", :repeat=>false},
|
4324
|
+
"$e"=>{:definition=>"Fifth level of enumeration", :repeat=>false},
|
4325
|
+
"$f"=>{:definition=>"Sixth level of enumeration", :repeat=>false},
|
4326
|
+
"$g"=>{
|
4327
|
+
:definition=>"Alternative numbering scheme, first level of enumeration",
|
4328
|
+
:repeat=>false},
|
4329
|
+
"$h"=>{
|
4330
|
+
:definition=>"Alternative numbering scheme, second level of enumeration",
|
4331
|
+
:repeat=>false},
|
4332
|
+
"$i"=>{:definition=>"First level of chronology", :repeat=>false},
|
4333
|
+
"$j"=>{:definition=>"Second level of chronology", :repeat=>false},
|
4334
|
+
"$k"=>{:definition=>"Third level of chronology", :repeat=>false},
|
4335
|
+
"$l"=>{:definition=>"Fourth level of chronology", :repeat=>false},
|
4336
|
+
"$m"=>{:definition=>"Alternative numbering scheme, chronology",
|
4337
|
+
:repeat=>false},
|
4338
|
+
"$n"=>{:definition=>"Converted Gregorian year", :repeat=>false},
|
4339
|
+
"$o"=>{:definition=>"Title of unit"},
|
4340
|
+
"$p"=>{:definition=>"Piece designation", :repeat=>false},
|
4341
|
+
"$q"=>{:definition=>"Piece physical condition", :repeat=>false},
|
4342
|
+
"$s"=>{:definition=>"Copyright article-fee code"},
|
4343
|
+
"$t"=>{:definition=>"Copy number", :repeat=>false},
|
4344
|
+
"$w"=>{:definition=>"Break indicator", :repeat=>false},
|
4345
|
+
"$x"=>NPUBNOT,
|
4346
|
+
"$z"=>PUBNOTE},
|
4347
|
+
:group=>"841-88X",
|
4348
|
+
:docurl=>"https://www.loc.gov/marc/holdings/hd864.html"},
|
4349
|
+
"865"=>
|
4350
|
+
{:definition=>"Enumeration and Chronology - Indexes",
|
4351
|
+
:repeat=>true,
|
4352
|
+
:indicators=>
|
4353
|
+
[{:definition=>"Field encoding level",
|
4354
|
+
:values=>{"#"=>"No information provided",
|
4355
|
+
"4"=>"Holdings level 4",
|
4356
|
+
"5"=>"Holdings level 4 with piece designation"}},
|
4357
|
+
{:definition=>"Form of holdings",
|
4358
|
+
:values=>{"#"=>"No information provided",
|
4359
|
+
"1"=>"Uncompressed"}}],
|
4360
|
+
:subfields=>{
|
4361
|
+
"$a"=>{:definition=>"First level of enumeration", :repeat=>false},
|
4362
|
+
"$b"=>{:definition=>"Second level of enumeration", :repeat=>false},
|
4363
|
+
"$c"=>{:definition=>"Third level of enumeration", :repeat=>false},
|
4364
|
+
"$d"=>{:definition=>"Fourth level of enumeration", :repeat=>false},
|
4365
|
+
"$e"=>{:definition=>"Fifth level of enumeration", :repeat=>false},
|
4366
|
+
"$f"=>{:definition=>"Sixth level of enumeration", :repeat=>false},
|
4367
|
+
"$g"=>{
|
4368
|
+
:definition=>"Alternative numbering scheme, first level of enumeration",
|
4369
|
+
:repeat=>false},
|
4370
|
+
"$h"=>{
|
4371
|
+
:definition=>"Alternative numbering scheme, second level of enumeration",
|
4372
|
+
:repeat=>false},
|
4373
|
+
"$i"=>{:definition=>"First level of chronology", :repeat=>false},
|
4374
|
+
"$j"=>{:definition=>"Second level of chronology", :repeat=>false},
|
4375
|
+
"$k"=>{:definition=>"Third level of chronology", :repeat=>false},
|
4376
|
+
"$l"=>{:definition=>"Fourth level of chronology", :repeat=>false},
|
4377
|
+
"$m"=>{:definition=>"Alternative numbering scheme, chronology",
|
4378
|
+
:repeat=>false},
|
4379
|
+
"$v"=>{:definition=>"Issuing date"},
|
4380
|
+
"$n"=>{:definition=>"Converted Gregorian year", :repeat=>false},
|
4381
|
+
"$o"=>{:definition=>"Title of unit"},
|
4382
|
+
"$p"=>{:definition=>"Piece designation", :repeat=>false},
|
4383
|
+
"$q"=>{:definition=>"Piece physical condition", :repeat=>false},
|
4384
|
+
"$s"=>{:definition=>"Copyright article-fee code"},
|
4385
|
+
"$t"=>{:definition=>"Copy number", :repeat=>false},
|
4386
|
+
"$w"=>{:definition=>"Break indicator", :repeat=>false},
|
4387
|
+
"$x"=>NPUBNOT,
|
4388
|
+
"$z"=>PUBNOTE},
|
4389
|
+
:group=>"841-88X",
|
4390
|
+
:docurl=>"https://www.loc.gov/marc/holdings/hd865.html"},
|
4391
|
+
"866"=>
|
4392
|
+
{:definition=>"Textual Holdings - Basic Bibliographic Unit",
|
4393
|
+
:repeat=>true,
|
4394
|
+
:indicators=>
|
4395
|
+
[{:definition=>"Field encoding level",
|
4396
|
+
:values=>{"#"=>"No information provided",
|
4397
|
+
"3"=>"Holdings level 3",
|
4398
|
+
"4"=>"Holdings level 4",
|
4399
|
+
"5"=>"Holdings level 4 with piece designation"}},
|
4400
|
+
{:definition=>"Type of notation",
|
4401
|
+
:values=>{"0"=>"Non-standard",
|
4402
|
+
"1"=>"ANSI/NISO Z39.71 or ISO 10324",
|
4403
|
+
"2"=>"ANSI Z39.42",
|
4404
|
+
"7"=>"Source specified in subfield $2"}}],
|
4405
|
+
:subfields=>{
|
4406
|
+
"$a"=>{:definition=>"Textual holdings", :repeat=>false},
|
4407
|
+
"$x"=>NPUBNOT,
|
4408
|
+
"$z"=>PUBNOTE,
|
4409
|
+
"$2"=>{:definition=>"Source of notation", :repeat=>false}},
|
4410
|
+
:group=>"841-88X",
|
4411
|
+
:docurl=>"https://www.loc.gov/marc/holdings/hd866.html"},
|
4412
|
+
"867"=>
|
4413
|
+
{:definition=>"Textual Holdings - Supplementary Material",
|
4414
|
+
:repeat=>true,
|
4415
|
+
:indicators=>
|
4416
|
+
[{:definition=>"Field encoding level",
|
4417
|
+
:values=>{"#"=>"No information provided",
|
4418
|
+
"3"=>"Holdings level 3",
|
4419
|
+
"4"=>"Holdings level 4",
|
4420
|
+
"5"=>"Holdings level 4 with piece designation"}},
|
4421
|
+
{:definition=>"Type of notation",
|
4422
|
+
:values=>{"0"=>"Non-standard",
|
4423
|
+
"1"=>"ANSI/NISO Z39.71 or ISO 10324",
|
4424
|
+
"2"=>"ANSI Z39.42",
|
4425
|
+
"7"=>"Source specified in subfield $2"}}],
|
4426
|
+
:subfields=>{
|
4427
|
+
"$a"=>{:definition=>"Textual holdings", :repeat=>false},
|
4428
|
+
"$x"=>NPUBNOT,
|
4429
|
+
"$z"=>PUBNOTE,
|
4430
|
+
"$2"=>{:definition=>"Source of notation", :repeat=>false}},
|
4431
|
+
:group=>"841-88X",
|
4432
|
+
:docurl=>"https://www.loc.gov/marc/holdings/hd867.html"},
|
4433
|
+
"868"=>
|
4434
|
+
{:definition=>"Textual Holdings - Supplementary Material",
|
4435
|
+
:repeat=>true,
|
4436
|
+
:indicators=>
|
4437
|
+
[{:definition=>"Field encoding level",
|
4438
|
+
:values=>{"#"=>"No information provided",
|
4439
|
+
"3"=>"Holdings level 3",
|
4440
|
+
"4"=>"Holdings level 4",
|
4441
|
+
"5"=>"Holdings level 4 with piece designation"}},
|
4442
|
+
{:definition=>"Type of notation",
|
4443
|
+
:values=>{"0"=>"Non-standard",
|
4444
|
+
"1"=>"ANSI/NISO Z39.71 or ISO 10324",
|
4445
|
+
"2"=>"ANSI Z39.42",
|
4446
|
+
"7"=>"Source specified in subfield $2"}}],
|
4447
|
+
:subfields=>{
|
4448
|
+
"$a"=>{:definition=>"Textual holdings", :repeat=>false},
|
4449
|
+
"$x"=>NPUBNOT,
|
4450
|
+
"$z"=>PUBNOTE,
|
4451
|
+
"$2"=>{:definition=>"Source of notation", :repeat=>false}},
|
4452
|
+
:group=>"841-88X",
|
4453
|
+
:docurl=>"https://www.loc.gov/marc/holdings/hd868.html"},
|
4454
|
+
"876"=>
|
4455
|
+
{:definition=>"Item Information - Basic Bibliographic Unit",
|
4456
|
+
:repeat=>true,
|
4457
|
+
:indicators=>[:undefined, :undefined],
|
4458
|
+
:subfields=>{
|
4459
|
+
"$a"=>{:definition=>"Internal item number", :repeat=>false},
|
4460
|
+
"$b"=>{:definition=>"Invalid or canceled internal item number"},
|
4461
|
+
"$c"=>{:definition=>"Cost"},
|
4462
|
+
"$d"=>{:definition=>"Date acquired"},
|
4463
|
+
"$e"=>{:definition=>"Source of acquisition"},
|
4464
|
+
"$h"=>{:definition=>"Use restrictions"},
|
4465
|
+
"$j"=>{:definition=>"Item status"},
|
4466
|
+
"$l"=>{:definition=>"Temporary location"},
|
4467
|
+
"$p"=>{:definition=>"Piece designation"},
|
4468
|
+
"$r"=>{:definition=>"Invalid or canceled piece designation"},
|
4469
|
+
"$t"=>{:definition=>"Copy number", :repeat=>false},
|
4470
|
+
"$x"=>NPUBNOT,
|
4471
|
+
"$z"=>PUBNOTE,
|
4472
|
+
"$3"=>MATSPEC},
|
4473
|
+
:group=>"841-88X",
|
4474
|
+
:docurl=>"https://www.loc.gov/marc/holdings/hd876.html"},
|
4475
|
+
"877"=>
|
4476
|
+
{:definition=>"Item Information - Supplementary Material",
|
4477
|
+
:repeat=>true,
|
4478
|
+
:indicators=>[:undefined, :undefined],
|
4479
|
+
:subfields=>{
|
4480
|
+
"$a"=>{:definition=>"Internal item number", :repeat=>false},
|
4481
|
+
"$b"=>{:definition=>"Invalid or canceled internal item number"},
|
4482
|
+
"$c"=>{:definition=>"Cost"},
|
4483
|
+
"$d"=>{:definition=>"Date acquired"},
|
4484
|
+
"$e"=>{:definition=>"Source of acquisition"},
|
4485
|
+
"$h"=>{:definition=>"Use restrictions"},
|
4486
|
+
"$j"=>{:definition=>"Item status"},
|
4487
|
+
"$l"=>{:definition=>"Temporary location"},
|
4488
|
+
"$p"=>{:definition=>"Piece designation"},
|
4489
|
+
"$r"=>{:definition=>"Invalid or canceled piece designation"},
|
4490
|
+
"$t"=>{:definition=>"Copy number", :repeat=>false},
|
4491
|
+
"$x"=>NPUBNOT,
|
4492
|
+
"$z"=>PUBNOTE,
|
4493
|
+
"$3"=>MATSPEC},
|
4494
|
+
:group=>"841-88X",
|
4495
|
+
:docurl=>"https://www.loc.gov/marc/holdings/hd877.html"},
|
4496
|
+
"878"=>
|
4497
|
+
{:definition=>"Item Information - Indexes",
|
4498
|
+
:repeat=>true,
|
4499
|
+
:indicators=>[:undefined, :undefined],
|
4500
|
+
:subfields=>{
|
4501
|
+
"$a"=>{:definition=>"Internal item number", :repeat=>false},
|
4502
|
+
"$b"=>{:definition=>"Invalid or canceled internal item number"},
|
4503
|
+
"$c"=>{:definition=>"Cost"},
|
4504
|
+
"$d"=>{:definition=>"Date acquired"},
|
4505
|
+
"$e"=>{:definition=>"Source of acquisition"},
|
4506
|
+
"$h"=>{:definition=>"Use restrictions"},
|
4507
|
+
"$j"=>{:definition=>"Item status"},
|
4508
|
+
"$l"=>{:definition=>"Temporary location"},
|
4509
|
+
"$p"=>{:definition=>"Piece designation"},
|
4510
|
+
"$r"=>{:definition=>"Invalid or canceled piece designation"},
|
4511
|
+
"$t"=>{:definition=>"Copy number", :repeat=>false},
|
4512
|
+
"$x"=>NPUBNOT,
|
4513
|
+
"$z"=>PUBNOTE,
|
4514
|
+
"$3"=>MATSPEC},
|
4515
|
+
:group=>"841-88X",
|
4516
|
+
:docurl=>"https://www.loc.gov/marc/holdings/hd878.html"},
|
4517
|
+
"880"=>
|
4518
|
+
{:definition=>"Alternate Graphic Representation",
|
4519
|
+
:repeat=>true,
|
4520
|
+
:indicators=>
|
4521
|
+
[{:definition=>"Appropriate indicator as available in associated field",
|
4522
|
+
:values=>{}},
|
4523
|
+
{:definition=>"Appropriate indicator as available in associated field",
|
4524
|
+
:values=>{}}],
|
4525
|
+
:subfields=>{
|
4526
|
+
"$a-z"=>{:definition=>"Same as associated field", :repeat=>"n/a"},
|
4527
|
+
"$0-5"=>{:definition=>"Same as associated field", :repeat=>"n/a"},
|
4528
|
+
"$7"=>{:definition=>"Same as associated field", :repeat=>"n/a"},
|
4529
|
+
"$9"=>{:definition=>"Same as associated field", :repeat=>"n/a"}},
|
4530
|
+
:group=>"841-88X"},
|
4531
|
+
"882"=>
|
4532
|
+
{:definition=>"Replacement Record Information",
|
4533
|
+
:repeat=>false,
|
4534
|
+
:indicators=>[:undefined, :undefined],
|
4535
|
+
:subfields=>{
|
4536
|
+
"$a"=>{:definition=>"Replacement title"},
|
4537
|
+
"$i"=>{:definition=>"Explanatory text"},
|
4538
|
+
"$w"=>{:definition=>"Replacement bibliographic record control number"}},
|
4539
|
+
:group=>"841-88X"},
|
4540
|
+
"883"=>
|
4541
|
+
{:definition=>"Machine-generated Metadata Provenance",
|
4542
|
+
:repeat=>true,
|
4543
|
+
:indicators=>
|
4544
|
+
[{:definition=>"Method of machine assignment",
|
4545
|
+
:values=>
|
4546
|
+
{"#"=>"No information provided/not applicable",
|
4547
|
+
"0"=>"Fully machine-generated",
|
4548
|
+
"1"=>"Partially machine-generated"}},
|
4549
|
+
:undefined],
|
4550
|
+
:subfields=>
|
4551
|
+
{"$a"=>{:definition=>"Generation process", :repeat=>false},
|
4552
|
+
"$c"=>{:definition=>"Confidence value", :repeat=>false},
|
4553
|
+
"$d"=>{:definition=>"Generation date", :repeat=>false},
|
4554
|
+
"$q"=>{:definition=>"Generation agency", :repeat=>false},
|
4555
|
+
"$x"=>{:definition=>"Validity end date", :repeat=>false},
|
4556
|
+
"$u"=>{:definition=>"Uniform Resource Identifier", :repeat=>false},
|
4557
|
+
"$w"=>{:definition=>"Bibliographic record control number"},
|
4558
|
+
"$0"=>ARECNUM,
|
4559
|
+
"$1"=>RWURI},
|
4560
|
+
:group=>"841-88X"},
|
4561
|
+
"884"=>
|
4562
|
+
{:definition=>"Description Conversion Information",
|
4563
|
+
:repeat=>true,
|
4564
|
+
:indicators=>[:undefined, :undefined],
|
4565
|
+
:subfields=>
|
4566
|
+
{"$a"=>{:definition=>"Conversion process", :repeat=>false},
|
4567
|
+
"$g"=>{:definition=>"Conversion date", :repeat=>false},
|
4568
|
+
"$k"=>{:definition=>"Identifier of source metadata", :repeat=>false},
|
4569
|
+
"$q"=>{:definition=>"Conversion agency", :repeat=>false},
|
4570
|
+
"$u"=>{:definition=>"Uniform Resource Identifier"}},
|
4571
|
+
:linkage=>false,
|
4572
|
+
:fieldlink=>false,
|
4573
|
+
:group=>"841-88X"},
|
4574
|
+
"885"=>
|
4575
|
+
{:definition=>"Matching Information",
|
4576
|
+
:repeat=>true,
|
4577
|
+
:indicators=>[:undefined, :undefined],
|
4578
|
+
:subfields=>
|
4579
|
+
{"$a"=>{:definition=>"Matching information", :repeat=>false},
|
4580
|
+
"$b"=>
|
4581
|
+
{:definition=>"Status of matching and its checking", :repeat=>false},
|
4582
|
+
"$c"=>{:definition=>"Confidence value", :repeat=>false},
|
4583
|
+
"$d"=>{:definition=>"Generation date", :repeat=>false},
|
4584
|
+
"$w"=>RECCTRL,
|
4585
|
+
"$x"=>NPUBNOT,
|
4586
|
+
"$z"=>PUBNOTE,
|
4587
|
+
"$0"=>ARECNUM,
|
4588
|
+
"$1"=>RWURI,
|
4589
|
+
"$2"=>SOURCE,
|
4590
|
+
"$5"=>INSTAPP},
|
4591
|
+
:linkage=>false,
|
4592
|
+
:fieldlink=>false,
|
4593
|
+
:group=>"841-88X"},
|
4594
|
+
"886"=>
|
4595
|
+
{:definition=>"Foreign MARC Information Field",
|
4596
|
+
:repeat=>true,
|
4597
|
+
:indicators=>[{:definition=>"Type of field",
|
4598
|
+
:values=>{"0"=>"Leader",
|
4599
|
+
"1"=>"Variable control fields (002-009)",
|
4600
|
+
"2"=>"Variable data fields (010-999)"}},
|
4601
|
+
:undefined],
|
4602
|
+
:subfields=>{
|
4603
|
+
"$a"=>{:definition=>"Tag of the foreign MARC field", :repeat=>false},
|
4604
|
+
"$b"=>{:definition=>"Content of the foreign MARC field", :repeat=>false},
|
4605
|
+
"$2"=>{:definition=>"Source of data", :repeat=>false},
|
4606
|
+
"$a-z"=>{:definition=>"Foreign MARC subfield"},
|
4607
|
+
"$0-9"=>{:definition=>"Foreign MARC subfield"}},
|
4608
|
+
:linkage=>false,
|
4609
|
+
:fieldlink=>false,
|
4610
|
+
:group=>"841-88X"},
|
4611
|
+
"887"=>
|
4612
|
+
{:definition=>"Non-MARC Information Field",
|
4613
|
+
:repeat=>true,
|
4614
|
+
:indicators=>[:undefined, :undefined],
|
4615
|
+
:subfields=>{
|
4616
|
+
"$a"=>{:definition=>"Content of non-MARC field", :repeat=>false},
|
4617
|
+
"$2"=>{:definition=>"Source of data", :repeat=>false}},
|
4618
|
+
:linkage=>false,
|
4619
|
+
:fieldlink=>false,
|
4620
|
+
:group=>"841-88X"}}
|
4621
|
+
end
|