marc4r 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +1 -0
  3. data/Gemfile +4 -0
  4. data/README.md +4 -0
  5. data/Rakefile +13 -0
  6. data/VERSION +1 -0
  7. data/lib/marc4r.rb +24 -0
  8. data/lib/marc4r/fields.rb +28 -0
  9. data/lib/marc4r/fields/control_field.rb +19 -0
  10. data/lib/marc4r/fields/data_field.rb +46 -0
  11. data/lib/marc4r/fields/subfield.rb +12 -0
  12. data/lib/marc4r/marc_stream_reader.rb +82 -0
  13. data/lib/marc4r/record.rb +92 -0
  14. data/marc4r.gemspec +21 -0
  15. data/spec/fixtures/OCLC_814388508.xml +123 -0
  16. data/spec/fixtures/bad_leaders_10_11.mrc +1 -0
  17. data/spec/fixtures/bad_too_long_plus_2.mrc +1 -0
  18. data/spec/fixtures/brkrtest.mrc +1 -0
  19. data/spec/fixtures/chabon.mrc +1 -0
  20. data/spec/fixtures/chabon.xml +116 -0
  21. data/spec/fixtures/chinese_mangled_multibyte.mrc +1 -0
  22. data/spec/fixtures/cruel-cruel-indicatorless-summerland.xml +55 -0
  23. data/spec/fixtures/cyrillic_capital_e.mrc +1 -0
  24. data/spec/fixtures/greekmissingcharsetchange.mrc +1 -0
  25. data/spec/fixtures/illegal-marc-in-json.json +401 -0
  26. data/spec/fixtures/legal-json-marc-in-json.json +380 -0
  27. data/spec/fixtures/loongboonmee.mrc +1 -0
  28. data/spec/fixtures/marc-in-json.json +380 -0
  29. data/spec/fixtures/marc-json.json +195 -0
  30. data/spec/fixtures/summerland-indented-marc-json.json +104 -0
  31. data/spec/fixtures/summerland-marc-in-json-indented.json +183 -0
  32. data/spec/fixtures/summerland-marc-in-json.json +1 -0
  33. data/spec/fixtures/summerland-marc-json.json +1 -0
  34. data/spec/fixtures/summerland.mrc +1 -0
  35. data/spec/fixtures/summerland.xml +52 -0
  36. data/spec/fixtures/u335.mrc +1 -0
  37. data/spec/lib/marc4r/fields/control_field_spec.rb +46 -0
  38. data/spec/lib/marc4r/fields/data_field_spec.rb +39 -0
  39. data/spec/lib/marc4r/marc_stream_reader.rb +19 -0
  40. data/spec/lib/marc4r/record_spec.rb +111 -0
  41. data/spec/spec_helper.rb +120 -0
  42. data/spec/test_constants.rb +22 -0
  43. data/tasks/marc4r-dev.rake +3 -0
  44. metadata +142 -0
@@ -0,0 +1,380 @@
1
+ {
2
+ "leader":"01471cjm a2200349 a 4500",
3
+ "fields":
4
+ [
5
+ {
6
+ "001":"5674874"
7
+ },
8
+ {
9
+ "005":"20030305110405.0"
10
+ },
11
+ {
12
+ "007":"sdubsmennmplu"
13
+ },
14
+ {
15
+ "008":"930331s1963 nyuppn eng d"
16
+ },
17
+ {
18
+ "035":
19
+ {
20
+ "subfields":
21
+ [
22
+ {
23
+ "9":"(DLC) 93707283"
24
+ }
25
+ ],
26
+ "ind1":" ",
27
+ "ind2":" "
28
+ }
29
+ },
30
+ {
31
+ "906":
32
+ {
33
+ "subfields":
34
+ [
35
+ {
36
+ "a":"7"
37
+ },
38
+ {
39
+ "b":"cbc"
40
+ },
41
+ {
42
+ "c":"copycat"
43
+ },
44
+ {
45
+ "d":"4"
46
+ },
47
+ {
48
+ "e":"ncip"
49
+ },
50
+ {
51
+ "f":"19"
52
+ },
53
+ {
54
+ "g":"y-soundrec"
55
+ }
56
+ ],
57
+ "ind1":" ",
58
+ "ind2":" "
59
+ }
60
+ },
61
+ {
62
+ "010":
63
+ {
64
+ "subfields":
65
+ [
66
+ {
67
+ "a":" 93707283 "
68
+ }
69
+ ],
70
+ "ind1":" ",
71
+ "ind2":" "
72
+ }
73
+ },
74
+ {
75
+ "028":
76
+ {
77
+ "subfields":
78
+ [
79
+ {
80
+ "a":"CS 8786"
81
+ },
82
+ {
83
+ "b":"Columbia"
84
+ }
85
+ ],
86
+ "ind1":"0",
87
+ "ind2":"2"
88
+ }
89
+ },
90
+ {
91
+ "035":
92
+ {
93
+ "subfields":
94
+ [
95
+ {
96
+ "a":"(OCoLC)13083787"
97
+ }
98
+ ],
99
+ "ind1":" ",
100
+ "ind2":" "
101
+ }
102
+ },
103
+ {
104
+ "040":
105
+ {
106
+ "subfields":
107
+ [
108
+ {
109
+ "a":"OClU"
110
+ },
111
+ {
112
+ "c":"DLC"
113
+ },
114
+ {
115
+ "d":"DLC"
116
+ }
117
+ ],
118
+ "ind1":" ",
119
+ "ind2":" "
120
+ }
121
+ },
122
+ {
123
+ "041":
124
+ {
125
+ "subfields":
126
+ [
127
+ {
128
+ "d":"eng"
129
+ },
130
+ {
131
+ "g":"eng"
132
+ }
133
+ ],
134
+ "ind1":"0",
135
+ "ind2":" "
136
+ }
137
+ },
138
+ {
139
+ "042":
140
+ {
141
+ "subfields":
142
+ [
143
+ {
144
+ "a":"lccopycat"
145
+ }
146
+ ],
147
+ "ind1":" ",
148
+ "ind2":" "
149
+ }
150
+ },
151
+ {
152
+ "050":
153
+ {
154
+ "subfields":
155
+ [
156
+ {
157
+ "a":"Columbia CS 8786"
158
+ }
159
+ ],
160
+ "ind1":"0",
161
+ "ind2":"0"
162
+ }
163
+ },
164
+ {
165
+ "100":
166
+ {
167
+ "subfields":
168
+ [
169
+ {
170
+ "a":"Dylan, Bob,"
171
+ },
172
+ {
173
+ "d":"1941-"
174
+ }
175
+ ],
176
+ "ind1":"1",
177
+ "ind2":" "
178
+ }
179
+ },
180
+ {
181
+ "245":
182
+ {
183
+ "subfields":
184
+ [
185
+ {
186
+ "a":"The freewheelin' Bob Dylan"
187
+ },
188
+ {
189
+ "h":"[sound recording]."
190
+ }
191
+ ],
192
+ "ind1":"1",
193
+ "ind2":"4"
194
+ }
195
+ },
196
+ {
197
+ "260":
198
+ {
199
+ "subfields":
200
+ [
201
+ {
202
+ "a":"[New York, N.Y.] :"
203
+ },
204
+ {
205
+ "b":"Columbia,"
206
+ },
207
+ {
208
+ "c":"[1963]"
209
+ }
210
+ ],
211
+ "ind1":" ",
212
+ "ind2":" "
213
+ }
214
+ },
215
+ {
216
+ "300":
217
+ {
218
+ "subfields":
219
+ [
220
+ {
221
+ "a":"1 sound disc :"
222
+ },
223
+ {
224
+ "b":"analog, 33 1/3 rpm, stereo. ;"
225
+ },
226
+ {
227
+ "c":"12 in."
228
+ }
229
+ ],
230
+ "ind1":" ",
231
+ "ind2":" "
232
+ }
233
+ },
234
+ {
235
+ "500":
236
+ {
237
+ "subfields":
238
+ [
239
+ {
240
+ "a":"Songs."
241
+ }
242
+ ],
243
+ "ind1":" ",
244
+ "ind2":" "
245
+ }
246
+ },
247
+ {
248
+ "511":
249
+ {
250
+ "subfields":
251
+ [
252
+ {
253
+ "a":"The composer accompanying himself on the guitar ; in part with instrumental ensemble."
254
+ }
255
+ ],
256
+ "ind1":"0",
257
+ "ind2":" "
258
+ }
259
+ },
260
+ {
261
+ "500":
262
+ {
263
+ "subfields":
264
+ [
265
+ {
266
+ "a":"Program notes by Nat Hentoff on container."
267
+ }
268
+ ],
269
+ "ind1":" ",
270
+ "ind2":" "
271
+ }
272
+ },
273
+ {
274
+ "505":
275
+ {
276
+ "subfields":
277
+ [
278
+ {
279
+ "a":"Blowin' in the wind -- Girl from the north country -- Masters of war -- Down the highway -- Bob Dylan's blues -- A hard rain's a-gonna fall -- Don't think twice, it's all right -- Bob Dylan's dream -- Oxford town -- Talking World War III blues -- Corrina, Corrina -- Honey, just allow me one more chance -- I shall be free."
280
+ }
281
+ ],
282
+ "ind1":"0",
283
+ "ind2":" "
284
+ }
285
+ },
286
+ {
287
+ "650":
288
+ {
289
+ "subfields":
290
+ [
291
+ {
292
+ "a":"Popular music"
293
+ },
294
+ {
295
+ "y":"1961-1970."
296
+ }
297
+ ],
298
+ "ind1":" ",
299
+ "ind2":"0"
300
+ }
301
+ },
302
+ {
303
+ "650":
304
+ {
305
+ "subfields":
306
+ [
307
+ {
308
+ "a":"Blues (Music)"
309
+ },
310
+ {
311
+ "y":"1961-1970."
312
+ }
313
+ ],
314
+ "ind1":" ",
315
+ "ind2":"0"
316
+ }
317
+ },
318
+ {
319
+ "856":
320
+ {
321
+ "subfields":
322
+ [
323
+ {
324
+ "3":"Preservation copy (limited access)"
325
+ },
326
+ {
327
+ "u":"http://hdl.loc.gov/loc.mbrsrs/lp0001.dyln"
328
+ }
329
+ ],
330
+ "ind1":"4",
331
+ "ind2":"1"
332
+ }
333
+ },
334
+ {
335
+ "952":
336
+ {
337
+ "subfields":
338
+ [
339
+ {
340
+ "a":"New"
341
+ }
342
+ ],
343
+ "ind1":" ",
344
+ "ind2":" "
345
+ }
346
+ },
347
+ {
348
+ "953":
349
+ {
350
+ "subfields":
351
+ [
352
+ {
353
+ "a":"TA28"
354
+ }
355
+ ],
356
+ "ind1":" ",
357
+ "ind2":" "
358
+ }
359
+ },
360
+ {
361
+ "991":
362
+ {
363
+ "subfields":
364
+ [
365
+ {
366
+ "b":"c-RecSound"
367
+ },
368
+ {
369
+ "h":"Columbia CS 8786"
370
+ },
371
+ {
372
+ "w":"MUSIC"
373
+ }
374
+ ],
375
+ "ind1":" ",
376
+ "ind2":" "
377
+ }
378
+ }
379
+ ]
380
+ }
@@ -0,0 +1 @@
1
+ 02795cgm a2200565Ia 4500001000900000003000600009005001700015007001000032008004100042024001700083028002900100035002100129037004600150040003700196041001800233044003300251050002600284066000900310082001800319245021000337246004800547257007000595260006400665300005300729538003400782511002400816500005300840520045200893500007501345586003701420546004201457650002601499650001801525650001801543655002601561655002501587655002601612655002601638655002501664700003301689700008301722710003901805710002801844710002501872880006501897994001201962596000601974999012101980999012802101u5390999SIRSI20110720091611.0vd cvaizq110531s2011 cau113 vltha d10a71226730152242a3015-2bStrand Releasing a(OCoLC)727814068 bMidwest Tapenhttp://www.midwesttapes.com aTEFMTcTEFMTdTEFdIKGdTEFdGK81 athajenghtha acauathaxxkafragwaspane 4aPN1997.2b.U5354 2011 cThai04a791.43/72223006880-01aLoong Boonmee raleuk chath[videorecording] =bUncle Boonmee who can recall his past lives /cStrand Releasing and Illuminations Films ; written, produced and directed by Apichatpong Weerasethakul.31aUncle Boonmee who can recall his past lives aThailandaGreat BritainaFranceaGermanyaSpainaNetherlands2naf aCulver City, Calif. :bStrand Releasing Home Video,c[2011] a1 videodisc (113 min.) :bsd., col. ;c4 3/4 in. aDVD ; 5.1 sound ; widescreen.1 aThanapat Saisaymar. aOriginally released as a motion picture in 2010. aA unique tale of a man embracing life's greatest mystery. Choosing to spend his final days surrounded by his loved ones in the countryside, Boonmee is visited by his dead wife as a ghost, and his lost son as a strange hairy beast with red glowing eyes. They've come to guide him to his final resting place, a cave where his first soul began. With a wry sense of humor and a humanist spirit, it's a magical tale of reincarnation, karma, and nature. aSpecial features: deleted scenes ; interview with director ; trailers.8 aPalme d'or, Cannes Film Festival aThai dialogue with English subtitles. 0aReincarnationvDrama. 0aDeathvDrama. 0aKarmavDrama. 7aFeature films.2lcgft 7aComedy films.2lcgft 7aFiction films.2lcgft 7aFeature films.2gsafd 7aComedy films.2gsafd1 aSaisaymar, Thanapat,eactor.0 aApichatpong Weerasethakul,d1970-eauthor of screenplay,eproducer,edirector.2 aStrand Releasing Home Video (Firm)2 aStrand Releasing (Firm)2 aIlluminations Films.006245-01aลุงบุญมีระลึกชาติ. aZ0bVA@ a3 aVIDEO .DVD14295wALPHANUMc1iX030951158d5/30/2013e5/23/2013lSTACKSmCLEMONSn29rYsYtVIDEO-DVDu7/20/2011xADD aVIDEO .DVD14295wALPHANUMc2iX030956728d6/28/2013e6/26/2013lSTACKSmCLEMONSn10rYsYtVIDEO-DVDu7/22/2011xMEMBERCOPY02914cgm 2200565Ia 4500001000900000003000600009005001700015007001000032008004100042024001700083028002900100035002100129037004600150040003700196041001800233044003300251050002600284066000900310082001800319245021000337246004800547257007000595260006400665300005300729538003400782511002400816500005300840520045200893500007501345586003701420546004201457650002601499650001801525650001801543655002601561655002501587655002601612655002601638655002501664700003301689700008301722710003901805710002801844710002501872880018401897994001202081596000602093999012102099999012802220u5390999SIRSI20110720091611.0vd cvaizq110531s2011 cau113 vltha d10a71226730152242a3015-2bStrand Releasing a(OCoLC)727814068 bMidwest Tapenhttp://www.midwesttapes.com aTEFMTcTEFMTdTEFdIKGdTEFdGK81 athajenghtha acauathaxxkafragwaspane 4aPN1997.2b.U5354 2011 cThai04a791.43/72223006880-01aLoong Boonmee raleuk chath[videorecording] =bUncle Boonmee who can recall his past lives /cStrand Releasing and Illuminations Films ; written, produced and directed by Apichatpong Weerasethakul.31aUncle Boonmee who can recall his past lives aThailandaGreat BritainaFranceaGermanyaSpainaNetherlands2naf aCulver City, Calif. :bStrand Releasing Home Video,c[2011] a1 videodisc (113 min.) :bsd., col. ;c4 3/4 in. aDVD ; 5.1 sound ; widescreen.1 aThanapat Saisaymar. aOriginally released as a motion picture in 2010. aA unique tale of a man embracing life's greatest mystery. Choosing to spend his final days surrounded by his loved ones in the countryside, Boonmee is visited by his dead wife as a ghost, and his lost son as a strange hairy beast with red glowing eyes. They've come to guide him to his final resting place, a cave where his first soul began. With a wry sense of humor and a humanist spirit, it's a magical tale of reincarnation, karma, and nature. aSpecial features: deleted scenes ; interview with director ; trailers.8 aPalme d'or, Cannes Film Festival aThai dialogue with English subtitles. 0aReincarnationvDrama. 0aDeathvDrama. 0aKarmavDrama. 7aFeature films.2lcgft 7aComedy films.2lcgft 7aFiction films.2lcgft 7aFeature films.2gsafd 7aComedy films.2gsafd1 aSaisaymar, Thanapat,eactor.0 aApichatpong Weerasethakul,d1970-eauthor of screenplay,eproducer,edirector.2 aStrand Releasing Home Video (Firm)2 aStrand Releasing (Firm)2 aIlluminations Films.006245-01a&#x0E25%x;&#x0E38%x;&#x0E07%x;&#x0E1A%x;&#x0E38%x;&#x0E0D%x;&#x0E21%x;&#x0E35%x;&#x0E23%x;&#x0E30%x;&#x0E25%x;&#x0E36%x;&#x0E01%x;&#x0E0A%x;&#x0E32%x;&#x0E15%x;&#x0E34%x;. aZ0bVA@ a3 aVIDEO .DVD14295wALPHANUMc1iX030951158d5/30/2013e5/23/2013lSTACKSmCLEMONSn29rYsYtVIDEO-DVDu7/20/2011xADD aVIDEO .DVD14295wALPHANUMc2iX030956728d6/28/2013e6/26/2013lSTACKSmCLEMONSn10rYsYtVIDEO-DVDu7/22/2011xMEMBERCOPY
@@ -0,0 +1,380 @@
1
+ {
2
+ "leader":"01471cjm a2200349 a 4500",
3
+ "fields":
4
+ [
5
+ {
6
+ "001":"5674874"
7
+ },
8
+ {
9
+ "005":"20030305110405.0"
10
+ },
11
+ {
12
+ "007":"sdubsmennmplu"
13
+ },
14
+ {
15
+ "008":"930331s1963 nyuppn eng d"
16
+ },
17
+ {
18
+ "035":
19
+ {
20
+ "subfields":
21
+ [
22
+ {
23
+ "9":"(DLC) 93707283"
24
+ }
25
+ ],
26
+ "ind1":" ",
27
+ "ind2":" "
28
+ }
29
+ },
30
+ {
31
+ "906":
32
+ {
33
+ "subfields":
34
+ [
35
+ {
36
+ "a":"7"
37
+ },
38
+ {
39
+ "b":"cbc"
40
+ },
41
+ {
42
+ "c":"copycat"
43
+ },
44
+ {
45
+ "d":"4"
46
+ },
47
+ {
48
+ "e":"ncip"
49
+ },
50
+ {
51
+ "f":"19"
52
+ },
53
+ {
54
+ "g":"y-soundrec"
55
+ }
56
+ ],
57
+ "ind1":" ",
58
+ "ind2":" "
59
+ }
60
+ },
61
+ {
62
+ "010":
63
+ {
64
+ "subfields":
65
+ [
66
+ {
67
+ "a":" 93707283 "
68
+ }
69
+ ],
70
+ "ind1":" ",
71
+ "ind2":" "
72
+ }
73
+ },
74
+ {
75
+ "028":
76
+ {
77
+ "subfields":
78
+ [
79
+ {
80
+ "a":"CS 8786"
81
+ },
82
+ {
83
+ "b":"Columbia"
84
+ }
85
+ ],
86
+ "ind1":"0",
87
+ "ind2":"2"
88
+ }
89
+ },
90
+ {
91
+ "035":
92
+ {
93
+ "subfields":
94
+ [
95
+ {
96
+ "a":"(OCoLC)13083787"
97
+ }
98
+ ],
99
+ "ind1":" ",
100
+ "ind2":" "
101
+ }
102
+ },
103
+ {
104
+ "040":
105
+ {
106
+ "subfields":
107
+ [
108
+ {
109
+ "a":"OClU"
110
+ },
111
+ {
112
+ "c":"DLC"
113
+ },
114
+ {
115
+ "d":"DLC"
116
+ }
117
+ ],
118
+ "ind1":" ",
119
+ "ind2":" "
120
+ }
121
+ },
122
+ {
123
+ "041":
124
+ {
125
+ "subfields":
126
+ [
127
+ {
128
+ "d":"eng"
129
+ },
130
+ {
131
+ "g":"eng"
132
+ }
133
+ ],
134
+ "ind1":"0",
135
+ "ind2":" "
136
+ }
137
+ },
138
+ {
139
+ "042":
140
+ {
141
+ "subfields":
142
+ [
143
+ {
144
+ "a":"lccopycat"
145
+ }
146
+ ],
147
+ "ind1":" ",
148
+ "ind2":" "
149
+ }
150
+ },
151
+ {
152
+ "050":
153
+ {
154
+ "subfields":
155
+ [
156
+ {
157
+ "a":"Columbia CS 8786"
158
+ }
159
+ ],
160
+ "ind1":"0",
161
+ "ind2":"0"
162
+ }
163
+ },
164
+ {
165
+ "100":
166
+ {
167
+ "subfields":
168
+ [
169
+ {
170
+ "a":"Dylan, Bob,"
171
+ },
172
+ {
173
+ "d":"1941-"
174
+ }
175
+ ],
176
+ "ind1":"1",
177
+ "ind2":" "
178
+ }
179
+ },
180
+ {
181
+ "245":
182
+ {
183
+ "subfields":
184
+ [
185
+ {
186
+ "a":"The freewheelin' Bob Dylan"
187
+ },
188
+ {
189
+ "h":"[sound recording]."
190
+ }
191
+ ],
192
+ "ind1":"1",
193
+ "ind2":"4"
194
+ }
195
+ },
196
+ {
197
+ "260":
198
+ {
199
+ "subfields":
200
+ [
201
+ {
202
+ "a":"[New York, N.Y.] :"
203
+ },
204
+ {
205
+ "b":"Columbia,"
206
+ },
207
+ {
208
+ "c":"[1963]"
209
+ }
210
+ ],
211
+ "ind1":" ",
212
+ "ind2":" "
213
+ }
214
+ },
215
+ {
216
+ "300":
217
+ {
218
+ "subfields":
219
+ [
220
+ {
221
+ "a":"1 sound disc :"
222
+ },
223
+ {
224
+ "b":"analog, 33 1/3 rpm, stereo. ;"
225
+ },
226
+ {
227
+ "c":"12 in."
228
+ }
229
+ ],
230
+ "ind1":" ",
231
+ "ind2":" "
232
+ }
233
+ },
234
+ {
235
+ "500":
236
+ {
237
+ "subfields":
238
+ [
239
+ {
240
+ "a":"Songs."
241
+ }
242
+ ],
243
+ "ind1":" ",
244
+ "ind2":" "
245
+ }
246
+ },
247
+ {
248
+ "511":
249
+ {
250
+ "subfields":
251
+ [
252
+ {
253
+ "a":"The composer accompanying himself on the guitar ; in part with instrumental ensemble."
254
+ }
255
+ ],
256
+ "ind1":"0",
257
+ "ind2":" "
258
+ }
259
+ },
260
+ {
261
+ "500":
262
+ {
263
+ "subfields":
264
+ [
265
+ {
266
+ "a":"Program notes by Nat Hentoff on container."
267
+ }
268
+ ],
269
+ "ind1":" ",
270
+ "ind2":" "
271
+ }
272
+ },
273
+ {
274
+ "505":
275
+ {
276
+ "subfields":
277
+ [
278
+ {
279
+ "a":"Blowin' in the wind -- Girl from the north country -- Masters of war -- Down the highway -- Bob Dylan's blues -- A hard rain's a-gonna fall -- Don't think twice, it's all right -- Bob Dylan's dream -- Oxford town -- Talking World War III blues -- Corrina, Corrina -- Honey, just allow me one more chance -- I shall be free."
280
+ }
281
+ ],
282
+ "ind1":"0",
283
+ "ind2":" "
284
+ }
285
+ },
286
+ {
287
+ "650":
288
+ {
289
+ "subfields":
290
+ [
291
+ {
292
+ "a":"Popular music"
293
+ },
294
+ {
295
+ "y":"1961-1970."
296
+ }
297
+ ],
298
+ "ind1":" ",
299
+ "ind2":"0"
300
+ }
301
+ },
302
+ {
303
+ "650":
304
+ {
305
+ "subfields":
306
+ [
307
+ {
308
+ "a":"Blues (Music)"
309
+ },
310
+ {
311
+ "y":"1961-1970."
312
+ }
313
+ ],
314
+ "ind1":" ",
315
+ "ind2":"0"
316
+ }
317
+ },
318
+ {
319
+ "856":
320
+ {
321
+ "subfields":
322
+ [
323
+ {
324
+ "3":"Preservation copy (limited access)"
325
+ },
326
+ {
327
+ "u":"http://hdl.loc.gov/loc.mbrsrs/lp0001.dyln"
328
+ }
329
+ ],
330
+ "ind1":"4",
331
+ "ind2":"1"
332
+ }
333
+ },
334
+ {
335
+ "952":
336
+ {
337
+ "subfields":
338
+ [
339
+ {
340
+ "a":"New"
341
+ }
342
+ ],
343
+ "ind1":" ",
344
+ "ind2":" "
345
+ }
346
+ },
347
+ {
348
+ "953":
349
+ {
350
+ "subfields":
351
+ [
352
+ {
353
+ "a":"TA28"
354
+ }
355
+ ],
356
+ "ind1":" ",
357
+ "ind2":" "
358
+ }
359
+ },
360
+ {
361
+ "991":
362
+ {
363
+ "subfields":
364
+ [
365
+ {
366
+ "b":"c-RecSound"
367
+ },
368
+ {
369
+ "h":"Columbia CS 8786"
370
+ },
371
+ {
372
+ "w":"MUSIC"
373
+ }
374
+ ],
375
+ "ind1":" ",
376
+ "ind2":" "
377
+ }
378
+ }
379
+ ]
380
+ }