Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
383 / 383
100.00% covered (success)
100.00%
16 / 16
CRAP
100.00% covered (success)
100.00%
1 / 1
MarcLint
100.00% covered (success)
100.00%
383 / 383
100.00% covered (success)
100.00%
16 / 16
141
100.00% covered (success)
100.00%
1 / 1
 __construct
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
1 / 1
1
 checkRecord
100.00% covered (success)
100.00%
5 / 5
100.00% covered (success)
100.00%
1 / 1
1
 warn
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 checkDuplicate1xx
100.00% covered (success)
100.00%
7 / 7
100.00% covered (success)
100.00%
1 / 1
3
 checkMissing245
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
1 / 1
2
 standardFieldChecks
100.00% covered (success)
100.00%
33 / 33
100.00% covered (success)
100.00%
1 / 1
16
 checkIndicators
100.00% covered (success)
100.00%
12 / 12
100.00% covered (success)
100.00%
1 / 1
6
 checkSubfields
100.00% covered (success)
100.00%
14 / 14
100.00% covered (success)
100.00%
1 / 1
7
 check020
100.00% covered (success)
100.00%
31 / 31
100.00% covered (success)
100.00%
1 / 1
16
 check041
100.00% covered (success)
100.00%
21 / 21
100.00% covered (success)
100.00%
1 / 1
7
 check043
100.00% covered (success)
100.00%
9 / 9
100.00% covered (success)
100.00%
1 / 1
6
 check245
100.00% covered (success)
100.00%
87 / 87
100.00% covered (success)
100.00%
1 / 1
40
 checkArticle
100.00% covered (success)
100.00%
108 / 108
100.00% covered (success)
100.00%
1 / 1
17
 parseRules
100.00% covered (success)
100.00%
10 / 10
100.00% covered (success)
100.00%
1 / 1
5
 processRuleGroup
100.00% covered (success)
100.00%
27 / 27
100.00% covered (success)
100.00%
1 / 1
6
 getHumanReadableIndicatorValues
100.00% covered (success)
100.00%
14 / 14
100.00% covered (success)
100.00%
1 / 1
6
 getRawRules
n/a
0 / 0
n/a
0 / 0
1
1<?php
2
3/**
4 * Lint for MARC records
5 *
6 * This module is adapted from the MARC::Lint CPAN module for Perl, maintained by
7 * Bryan Baldus <eijabb@cpan.org> and available at http://search.cpan.org/~eijabb/
8 *
9 * Current MARC::Lint version used as basis for this module: 1.53
10 *
11 * PHP version 7
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License version 2,
15 * as published by the Free Software Foundation.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
25 *
26 * @category  VuFind
27 * @package   MARC
28 * @author    Demian Katz <demian.katz@villanova.edu>
29 * @author    Dan Scott <dscott@laurentian.ca>
30 * @author    Ere Maijala <ere.maijala@helsinki.fi>
31 * @copyright 2003-2019 Oy Realnode Ab, Dan Scott
32 * @license   http://opensource.org/licenses/gpl-2.0.php GNU General Public License
33 * @link      https://vufind.org/wiki/development Wiki
34 */
35
36namespace VuFind\Marc;
37
38use VuFindCode\ISBN;
39
40use function count;
41use function in_array;
42use function intval;
43use function strlen;
44
45/**
46 * Class for testing validity of MARC records against MARC21 standard.
47 *
48 * @category VuFind
49 * @package  MARC
50 * @author   Demian Katz <demian.katz@villanova.edu>
51 * @author   Dan Scott <dscott@laurentian.ca>
52 * @author   Ere Maijala <ere.maijala@helsinki.fi>
53 * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
54 * @link     https://vufind.org/wiki/development Wiki
55 */
56class MarcLint
57{
58    /**
59     * Rules used for testing records
60     *
61     * @var array
62     */
63    protected $rules;
64
65    /**
66     * A Lint\CodeData object for validating codes
67     *
68     * @var Lint\CodeData
69     */
70    protected $data;
71
72    /**
73     * Warnings generated during analysis
74     *
75     * @var array
76     */
77    protected $warnings = [];
78
79    /**
80     * Start function
81     *
82     * Set up rules for testing MARC records.
83     *
84     * @return true
85     */
86    public function __construct()
87    {
88        $this->parseRules();
89        $this->data = new Lint\CodeData();
90    }
91
92    /**
93     * Check the provided MARC record and return an array of warning messages.
94     *
95     * @param MarcReader $marc Record to check
96     *
97     * @return array
98     */
99    public function checkRecord(MarcReader $marc): array
100    {
101        // Reset warnings:
102        $this->warnings = [];
103
104        $this->checkDuplicate1xx($marc);
105        $this->checkMissing245($marc);
106        $this->standardFieldChecks($marc);
107
108        return $this->warnings;
109    }
110
111    /**
112     * Add a warning.
113     *
114     * @param string $warning Warning to add
115     *
116     * @return void
117     */
118    protected function warn(string $warning): void
119    {
120        $this->warnings[] = $warning;
121    }
122
123    /**
124     * Check for multiple 1xx fields.
125     *
126     * @param MarcReader $marc Record to check
127     *
128     * @return void
129     */
130    protected function checkDuplicate1xx(MarcReader $marc): void
131    {
132        $count = 0;
133        foreach (['100', '110', '111', '130'] as $field) {
134            $count += count($marc->getFields($field));
135        }
136        if ($count > 1) {
137            $this->warn(
138                "1XX: Only one 1XX tag is allowed, but I found $count of them."
139            );
140        }
141    }
142
143    /**
144     * Check for missing 245 field.
145     *
146     * @param MarcReader $marc Record to check
147     *
148     * @return void
149     */
150    protected function checkMissing245(MarcReader $marc): void
151    {
152        if (!$marc->getField('245')) {
153            $this->warn('245: No 245 tag.');
154        }
155    }
156
157    /**
158     * Check all fields against the standard rules encoded in the class.
159     *
160     * @param MarcReader $marc Record to check
161     *
162     * @return void
163     */
164    protected function standardFieldChecks(MarcReader $marc): void
165    {
166        $fieldsSeen = [];
167        foreach ($marc->getAllFields() as $current) {
168            $tagNo = $current['tag'];
169            // if 880 field, inherit rules from tagno in subfield _6
170            if ($tagNo == 880) {
171                if ($sub6 = $marc->getSubfield($current, '6')) {
172                    $tagNo = substr($sub6, 0, 3);
173                    $tagrules = $this->rules[$tagNo] ?? null;
174                    // 880 is repeatable, but its linked field may not be
175                    if (
176                        isset($tagrules['repeatable'])
177                        && $tagrules['repeatable'] == 'NR'
178                        && isset($fieldsSeen['880.' . $tagNo])
179                    ) {
180                        $this->warn("$tagNo: Field is not repeatable.");
181                    }
182                    $fieldsSeen['880.' . $tagNo]
183                        = isset($fieldsSeen['880.' . $tagNo])
184                        ? $fieldsSeen['880.' . $tagNo] + 1 : 1;
185                } else {
186                    $this->warn('880: No subfield 6.');
187                    $tagrules = null;
188                }
189            } else {
190                // Default case -- not an 880 field:
191                $tagrules = $this->rules[$tagNo] ?? null;
192                if (
193                    isset($tagrules['repeatable']) && $tagrules['repeatable'] == 'NR'
194                    && isset($fieldsSeen[$tagNo])
195                ) {
196                    $this->warn("$tagNo: Field is not repeatable.");
197                }
198                $fieldsSeen[$tagNo] = isset($fieldsSeen[$tagNo])
199                    ? $fieldsSeen[$tagNo] + 1 : 1;
200            }
201
202            // Treat data fields differently from control fields:
203            if (intval(ltrim($tagNo, '0')) >= 10) {
204                if (!empty($tagrules)) {
205                    $this->checkIndicators($tagNo, $current, $tagrules);
206                    $this->checkSubfields($tagNo, $current, $tagrules);
207                }
208            } else {
209                // Control field:
210                if (isset($current['subfields'])) {
211                    $this->warn(
212                        "$tagNo: Subfields are not allowed in fields lower than 010"
213                    );
214                }
215            }
216
217            // Check to see if a checkxxx() function exists, and call it on the
218            // field if it does
219            $method = 'check' . $tagNo;
220            if (method_exists($this, $method)) {
221                $this->$method($current, $marc);
222            }
223        }
224    }
225
226    /**
227     * Check the indicators for the provided field.
228     *
229     * @param string $tagNo Tag number being checked
230     * @param array  $field Field to check
231     * @param array  $rules Rules to use for checking
232     *
233     * @return void
234     */
235    protected function checkIndicators($tagNo, $field, $rules)
236    {
237        for ($i = 1; $i <= 2; $i++) {
238            $ind = $field["i$i"];
239            if ($ind === false || $ind == ' ') {
240                $ind = 'b';
241            }
242            if (!strstr($rules['ind' . $i]['values'], $ind)) {
243                // Make indicator blank value human-readable for message:
244                if ($ind == 'b') {
245                    $ind = 'blank';
246                }
247                $this->warn(
248                    "$tagNo: Indicator $i must be "
249                    . $rules['ind' . $i]['hr_values']
250                    . " but it's \"$ind\""
251                );
252            }
253        }
254    }
255
256    /**
257     * Check the subfields for the provided field.
258     *
259     * @param string $tagNo Tag number being checked
260     * @param array  $field Field to check
261     * @param array  $rules Rules to use for checking
262     *
263     * @return void
264     */
265    protected function checkSubfields($tagNo, $field, $rules)
266    {
267        $subSeen = [];
268
269        foreach ($field['subfields'] as $current) {
270            $code = $current['code'];
271            $data = $current['data'];
272
273            $subrules = $rules['sub' . $code] ?? null;
274
275            if (empty($subrules)) {
276                $this->warn("$tagNo: Subfield _$code is not allowed.");
277            } elseif ($subrules['repeatable'] == 'NR' && isset($subSeen[$code])) {
278                $this->warn("$tagNo: Subfield _$code is not repeatable.");
279            }
280
281            if (preg_match('/\r|\t|\n/', $data)) {
282                $this->warn(
283                    "$tagNo: Subfield _$code has an invalid control character"
284                );
285            }
286
287            $subSeen[$code] = isset($subSeen[$code]) ? $subSeen[$code]++ : 1;
288        }
289    }
290
291    /**
292     * Looks at 020$a and reports errors if the check digit is wrong.
293     * Looks at 020$z and validates number if hyphens are present.
294     *
295     * @param array      $field Field to check
296     * @param MarcReader $marc  MARC record
297     *
298     * @return void
299     *
300     * @SuppressWarnings(PHPMD.UnusedFormalParameter)
301     */
302    protected function check020(array $field, MarcReader $marc): void
303    {
304        foreach ($field['subfields'] as $current) {
305            $data = $current['data'];
306            // remove any hyphens
307            $isbn = str_replace('-', '', $data);
308            // remove nondigits
309            $isbn = preg_replace('/^\D*(\d{9,12}[X\d])\b.*$/', '$1', $isbn);
310
311            if ($current['code'] === 'a') {
312                if ((substr($data, 0, strlen($isbn)) != $isbn)) {
313                    $this->warn('020: Subfield a may have invalid characters.');
314                }
315
316                // report error if no space precedes a qualifier in subfield a
317                if (preg_match('/\(/', $data) && !preg_match('/[X0-9] \(/', $data)) {
318                    $this->warn(
319                        "020: Subfield a qualifier must be preceded by space, $data."
320                    );
321                }
322
323                // report error if unable to find 10-13 digit string of digits in
324                // subfield 'a'
325                if (!preg_match('/(?:^\d{10}$)|(?:^\d{13}$)|(?:^\d{9}X$)/', $isbn)) {
326                    $this->warn(
327                        "020: Subfield a has the wrong number of digits, $data."
328                    );
329                } else {
330                    $isbnObj = new ISBN($isbn);
331                    if (strlen($isbn) == 10) {
332                        if (!$isbnObj->isValid()) {
333                            $this->warn("020: Subfield a has bad checksum, $data.");
334                        }
335                    } elseif (strlen($isbn) == 13) {
336                        if (!$isbnObj->isValid()) {
337                            $this->warn(
338                                "020: Subfield a has bad checksum (13 digit), $data."
339                            );
340                        }
341                    }
342                }
343            } elseif ($current['code'] === 'z') {
344                // look for valid isbn in 020$z
345                if (
346                    preg_match('/^ISBN/', $data)
347                    || preg_match('/^\d*\-\d+/', $data)
348                ) {
349                    // ##################################################
350                    // ## Turned on for now--Comment to unimplement  ####
351                    // ##################################################
352                    if (strlen($isbn) == 10) {
353                        $isbnObj = new ISBN($isbn);
354                        if ($isbnObj->isValid()) {
355                            $this->warn('020:  Subfield z is numerically valid.');
356                        }
357                    }
358                }
359            }
360        }
361    }
362
363    /**
364     * Warns if subfields are not evenly divisible by 3 unless second indicator is 7
365     * (future implementation would ensure that each subfield is exactly 3 characters
366     * unless ind2 is 7--since subfields are now repeatable. This is not implemented
367     * here due to the large number of records needing to be corrected.). Validates
368     * against the MARC Code List for Languages (<http://www.loc.gov/marc/>).
369     *
370     * @param array      $field Field to check
371     * @param MarcReader $marc  MARC record
372     *
373     * @return void
374     *
375     * @SuppressWarnings(PHPMD.UnusedFormalParameter)
376     */
377    protected function check041(array $field, MarcReader $marc): void
378    {
379        // warn if length of each subfield is not divisible by 3 unless ind2 is 7
380        if ($field['i2'] != '7') {
381            foreach ($field['subfields'] as $sub) {
382                $code = $sub['code'];
383                $data = $sub['data'];
384                if (strlen($data) % 3 != 0) {
385                    $this->warn(
386                        "041: Subfield _$code must be evenly divisible by 3 or "
387                        . "exactly three characters if ind2 is not 7, ($data)."
388                    );
389                } else {
390                    for ($i = 0; $i < strlen($data); $i += 3) {
391                        $chk = substr($data, $i, 3);
392                        if (!in_array($chk, $this->data->languageCodes)) {
393                            $obs = $this->data->obsoleteLanguageCodes;
394                            if (in_array($chk, $obs)) {
395                                $this->warn(
396                                    "041: Subfield _$code$data, may be obsolete."
397                                );
398                            } else {
399                                $this->warn(
400                                    "041: Subfield _$code$data ($chk),"
401                                    . ' is not valid.'
402                                );
403                            }
404                        }
405                    }
406                }
407            }
408        }
409    }
410
411    /**
412     * Warns if each subfield a is not exactly 7 characters. Validates each code
413     * against the MARC code list for Geographic Areas (<http://www.loc.gov/marc/>).
414     *
415     * @param array      $field Field to check
416     * @param MarcReader $marc  MARC record
417     *
418     * @return void
419     *
420     * @SuppressWarnings(PHPMD.UnusedFormalParameter)
421     */
422    protected function check043(array $field, MarcReader $marc): void
423    {
424        foreach ($field['subfields'] as $sub) {
425            if ('a' !== $sub['code']) {
426                continue;
427            }
428            // warn if length of subfield a is not exactly 7
429            $data = $sub['data'];
430            if (strlen($data) != 7) {
431                $this->warn("043: Subfield _a must be exactly 7 characters, $data");
432            } elseif (!in_array($data, $this->data->geogAreaCodes)) {
433                if (in_array($data, $this->data->obsoleteGeogAreaCodes)) {
434                    $this->warn("043: Subfield _a, $data, may be obsolete.");
435                } else {
436                    $this->warn("043: Subfield _a, $data, is not valid.");
437                }
438            }
439        }
440    }
441
442    /**
443     * -Makes sure $a exists (and is first subfield).
444     * -Warns if last character of field is not a period
445     * --Follows LCRI 1.0C, Nov. 2003 rather than MARC21 rule
446     * -Verifies that $c is preceded by / (space-/)
447     * -Verifies that initials in $c are not spaced
448     * -Verifies that $b is preceded by :;= (space-colon, space-semicolon,
449     *  space-equals)
450     * -Verifies that $h is not preceded by space unless it is dash-space
451     * -Verifies that data of $h is enclosed in square brackets
452     * -Verifies that $n is preceded by . (period)
453     * --As part of that, looks for no-space period, or dash-space-period
454     *  (for replaced elipses)
455     * -Verifies that $p is preceded by , (no-space-comma) when following $n and
456     *  . (period) when following other subfields.
457     * -Performs rudimentary article check of 245 2nd indicator vs. 1st word of
458     *  245$a (for manual verification).
459     *
460     * Article checking is done by internal checkArticle method, which should work
461     * for 130, 240, 245, 440, 630, 730, and 830.
462     *
463     * @param array      $field Field to check
464     * @param MarcReader $marc  MARC record
465     *
466     * @return void
467     */
468    protected function check245(array $field, MarcReader $marc): void
469    {
470        if (!$marc->getSubfields($field, 'a')) {
471            $this->warn('245: Must have a subfield _a.');
472        }
473
474        // Convert subfields to array and set flags indicating which subfields are
475        // present while we're at it.
476        $tmp = $field['subfields'];
477        $hasSubfields = $subfields = [];
478        foreach ($tmp as $current) {
479            $subfields[] = $current;
480            $hasSubfields[$current['code']] = true;
481        }
482
483        // 245 must end in period (may want to make this less restrictive by allowing
484        // trailing spaces)
485        // do 2 checks--for final punctuation (MARC21 rule), and for period
486        // (LCRI 1.0C, Nov. 2003)
487        $lastChar = substr($subfields[count($subfields) - 1]['data'], -1);
488        if (!in_array($lastChar, ['.', '?', '!'])) {
489            $this->warn('245: Must end with . (period).');
490        } elseif ($lastChar != '.') {
491            $this->warn(
492                '245: MARC21 allows ? or ! as final punctuation but LCRI 1.0C, Nov.'
493                . ' 2003 (LCPS 1.7.1 for RDA records), requires period.'
494            );
495        }
496
497        // Check for first subfield
498        // subfield a should be first subfield (or 2nd if subfield '6' is present)
499        if (isset($hasSubfields['6'])) {
500            // make sure there are at least 2 subfields
501            if (count($subfields) < 2) {
502                $this->warn('245: May have too few subfields.');
503            } else {
504                $first = $subfields[0]['code'];
505                $second = $subfields[1]['code'];
506                if ($first != '6') {
507                    $this->warn("245: First subfield must be _6, but it is $first");
508                } elseif ($second != 'a') {
509                    $this->warn(
510                        '245: First subfield after subfield _6 must be _a, but it '
511                        . "is _$second"
512                    );
513                }
514            }
515        } else {
516            // 1st subfield must be 'a'
517            $first = $subfields[0]['code'];
518            if ($first != 'a') {
519                $this->warn("245: First subfield must be _a, but it is _$first");
520            }
521        }
522        // End check for first subfield
523
524        // subfield c, if present, must be preceded by /
525        // also look for space between initials
526        if (isset($hasSubfields['c'])) {
527            foreach ($subfields as $i => $current) {
528                // 245 subfield c must be preceded by / (space-/)
529                if ($current['code'] == 'c') {
530                    if (
531                        $i > 0
532                        && !preg_match('/\s\/$/', $subfields[$i - 1]['data'])
533                    ) {
534                        $this->warn('245: Subfield _c must be preceded by /');
535                    }
536                    // 245 subfield c initials should not have space
537                    if (preg_match('/\b\w\. \b\w\./', $current['data'])) {
538                        $this->warn(
539                            '245: Subfield _c initials should not have a space.'
540                        );
541                    }
542                    break;
543                }
544            }
545        }
546
547        // each subfield b, if present, should be preceded by :;= (colon, semicolon,
548        // or equals sign)
549        if (isset($hasSubfields['b'])) {
550            // 245 subfield b should be preceded by space-:;= (colon, semicolon, or
551            // equals sign)
552            foreach ($subfields as $i => $current) {
553                if (
554                    $current['code'] == 'b' && $i > 0
555                    && !preg_match('/ [:;=]$/', $subfields[$i - 1]['data'])
556                ) {
557                    $this->warn(
558                        '245: Subfield _b should be preceded by space-colon, '
559                        . 'space-semicolon, or space-equals sign.'
560                    );
561                }
562            }
563        }
564
565        // each subfield h, if present, should be preceded by non-space
566        if (isset($hasSubfields['h'])) {
567            // 245 subfield h should not be preceded by space
568            foreach ($subfields as $i => $current) {
569                // report error if subfield 'h' is preceded by space (unless
570                // dash-space)
571                if ($current['code'] == 'h') {
572                    $prev = $subfields[$i - 1]['data'];
573                    if ($i > 0 && !preg_match('/(\S$)|(\-\- $)/', $prev)) {
574                        $this->warn(
575                            '245: Subfield _h should not be preceded by space.'
576                        );
577                    }
578                    // report error if subfield 'h' does not start with open square
579                    // bracket with a matching close bracket; could have check
580                    // against list of valid values here
581                    $data = $current['data'];
582                    if (!preg_match('/^\[\w*\s*\w*\]/', $data)) {
583                        $this->warn(
584                            '245: Subfield _h must have matching square brackets,'
585                            . " $data."
586                        );
587                    }
588                }
589            }
590        }
591
592        // each subfield n, if present, must be preceded by . (period)
593        if (isset($hasSubfields['n'])) {
594            // 245 subfield n must be preceded by . (period)
595            foreach ($subfields as $i => $current) {
596                // report error if subfield 'n' is not preceded by non-space-period
597                // or dash-space-period
598                if ($current['code'] == 'n' && $i > 0) {
599                    $prev = $subfields[$i - 1]['data'];
600                    if (!preg_match('/(\S\.$)|(\-\- \.$)/', $prev)) {
601                        $this->warn(
602                            '245: Subfield _n must be preceded by . (period).'
603                        );
604                    }
605                }
606            }
607        }
608
609        // each subfield p, if present, must be preceded by a , (no-space-comma)
610        // if it follows subfield n, or by . (no-space-period or
611        // dash-space-period) following other subfields
612        if (isset($hasSubfields['p'])) {
613            // 245 subfield p must be preceded by . (period) or , (comma)
614            foreach ($subfields as $i => $current) {
615                if ($current['code'] == 'p' && $i > 0) {
616                    $prev = $subfields[$i - 1];
617                    // case for subfield 'n' being field before this one (allows
618                    // dash-space-comma)
619                    if (
620                        $prev['code'] == 'n'
621                        && !preg_match('/(\S,$)|(\-\- ,$)/', $prev['data'])
622                    ) {
623                        $this->warn(
624                            '245: Subfield _p must be preceded by , (comma) '
625                            . 'when it follows subfield _n.'
626                        );
627                    } elseif (
628                        $prev['code'] != 'n'
629                        && !preg_match('/(\S\.$)|(\-\- \.$)/', $prev['data'])
630                    ) {
631                        $this->warn(
632                            '245: Subfield _p must be preceded by . (period)'
633                            . ' when it follows a subfield other than _n.'
634                        );
635                    }
636                }
637            }
638        }
639
640        // check for invalid 2nd indicator
641        $this->checkArticle($field, $marc);
642    }
643
644    /**
645     * Check of articles is based on code from Ian Hamilton. This version is more
646     * limited in that it focuses on English, Spanish, French, Italian and German
647     * articles. Certain possible articles have been removed if they are valid
648     * English non-articles. This version also disregards 008_language/041 codes
649     * and just uses the list of articles to provide warnings/suggestions.
650     *
651     * Source for articles = <http://www.loc.gov/marc/bibliographic/bdapp-e.html>
652     *
653     * Should work with fields 130, 240, 245, 440, 630, 730, and 830. Reports error
654     * if another field is passed in.
655     *
656     * @param array      $field Field to check
657     * @param MarcReader $marc  MARC record
658     *
659     * @return void
660     */
661    protected function checkArticle(array $field, MarcReader $marc): void
662    {
663        // add articles here as needed
664        // Some omitted due to similarity with valid words (e.g. the German 'die').
665        static $article = [
666            'a' => 'eng glg hun por',
667            'an' => 'eng',
668            'das' => 'ger',
669            'dem' => 'ger',
670            'der' => 'ger',
671            'ein' => 'ger',
672            'eine' => 'ger',
673            'einem' => 'ger',
674            'einen' => 'ger',
675            'einer' => 'ger',
676            'eines' => 'ger',
677            'el' => 'spa',
678            'en' => 'cat dan nor swe',
679            'gl' => 'ita',
680            'gli' => 'ita',
681            'il' => 'ita mlt',
682            'l' => 'cat fre ita mlt',
683            'la' => 'cat fre ita spa',
684            'las' => 'spa',
685            'le' => 'fre ita',
686            'les' => 'cat fre',
687            'lo' => 'ita spa',
688            'los' => 'spa',
689            'os' => 'por',
690            'the' => 'eng',
691            'um' => 'por',
692            'uma' => 'por',
693            'un' => 'cat spa fre ita',
694            'una' => 'cat spa ita',
695            'une' => 'fre',
696            'uno' => 'ita',
697        ];
698
699        // add exceptions here as needed
700        // may want to make keys lowercase
701        static $exceptions = [
702            'A & E',
703            'A & ',
704            'A-',
705            'A+',
706            'A is ',
707            'A isn\'t ',
708            'A l\'',
709            'A la ',
710            'A posteriori',
711            'A priori',
712            'A to ',
713            'El Nino',
714            'El Salvador',
715            'L is ',
716            'L-',
717            'La Salle',
718            'Las Vegas',
719            'Lo cual',
720            'Lo mein',
721            'Lo que',
722            'Los Alamos',
723            'Los Angeles',
724        ];
725
726        // get tagno to determine which indicator to check and for reporting
727        $tagNo = $field['tag'];
728        // retrieve tagno from subfield 6 if 880 field
729        if ($tagNo == '880' && ($sub6 = $marc->getSubfield($field, '6'))) {
730            $tagNo = substr($sub6, 0, 3);
731        }
732
733        // $ind holds nonfiling character indicator value
734        $ind = '';
735        // $first_or_second holds which indicator is for nonfiling char value
736        $first_or_second = '';
737        if (in_array($tagNo, [130, 630, 730])) {
738            $ind = $field['i1'];
739            $first_or_second = '1st';
740        } elseif (in_array($tagNo, [240, 245, 440, 830])) {
741            $ind = $field['i2'];
742            $first_or_second = '2nd';
743        } else {
744            $this->warn(
745                'Internal error: ' . $tagNo
746                . ' is not a valid field for article checking'
747            );
748            return;
749        }
750
751        if (!is_numeric($ind)) {
752            $this->warn($tagNo . ': Non-filing indicator is non-numeric');
753            return;
754        }
755
756        // get subfield 'a' of the title field
757        $title = $marc->getSubfield($field, 'a');
758
759        // warn about out-of-range skip indicators (note: this feature is an
760        // addition to the PHP code; it is not ported directly from MARC::Lint).
761        if ($ind > strlen($title)) {
762            $this->warn($tagNo . ': Non-filing indicator is out of range');
763            return;
764        }
765
766        $char1_notalphanum = 0;
767        // check for apostrophe, quote, bracket,  or parenthesis, before first word
768        // remove if found and add to non-word counter
769        while (preg_match('/^["\'\[\(*]/', $title)) {
770            $char1_notalphanum++;
771            $title = preg_replace('/^["\'\[\(*]/', '', $title);
772        }
773        // split title into first word + rest on space, parens, bracket, apostrophe,
774        // quote, or hyphen
775        preg_match('/^([^ \(\)\[\]\'"\-]+)([ \(\)\[\]\'"\-])?(.*)/i', $title, $hits);
776        $firstword = $hits[1] ?? '';
777        $separator = $hits[2] ?? '';
778        $etc = $hits[3] ?? '';
779
780        // get length of first word plus the number of chars removed above plus one
781        // for the separator
782        $nonfilingchars = strlen($firstword) + $char1_notalphanum + 1;
783
784        // check to see if first word is an exception
785        $isan_exception = false;
786        foreach ($exceptions as $current) {
787            if (substr($title, 0, strlen($current)) == $current) {
788                $isan_exception = true;
789                break;
790            }
791        }
792
793        // lowercase chars of $firstword for comparison with article list
794        $firstword = strtolower($firstword);
795
796        // see if first word is in the list of articles and not an exception
797        $isan_article = !$isan_exception && isset($article[$firstword]);
798
799        // if article then $nonfilingchars should match $ind
800        if ($isan_article) {
801            // account for quotes, apostrophes, parens, or brackets before 2nd word
802            if (strlen($separator) && preg_match('/^[ \(\)\[\]\'"\-]+/', $etc)) {
803                while (preg_match('/^[ "\'\[\]\(\)*]/', $etc)) {
804                    $nonfilingchars++;
805                    $etc = preg_replace('/^[ "\'\[\]\(\)*]/', '', $etc);
806                }
807            }
808            if ($nonfilingchars != $ind) {
809                $this->warn(
810                    $tagNo . ": First word, $firstword, may be an article, check "
811                    . "$first_or_second indicator ($ind)."
812                );
813            }
814        } else {
815            // not an article so warn if $ind is not 0
816            if ($ind != '0') {
817                $this->warn(
818                    $tagNo . ": First word, $firstword, does not appear to be an "
819                    . "article, check $first_or_second indicator ($ind)."
820                );
821            }
822        }
823    }
824
825    /**
826     * Support method for constructor to load MARC rules.
827     *
828     * @return void
829     */
830    protected function parseRules()
831    {
832        // Break apart the rule data on line breaks:
833        $lines = explode("\n", $this->getRawRules());
834
835        // Each group of data is split by a blank line -- process one group
836        // at a time:
837        $currentGroup = [];
838        foreach ($lines as $currentLine) {
839            if (empty($currentLine)) {
840                if (!empty($currentGroup)) {
841                    $this->processRuleGroup($currentGroup);
842                    $currentGroup = [];
843                }
844            } else {
845                $currentGroup[] = preg_replace("/\s+/", ' ', $currentLine);
846            }
847        }
848
849        // Still have unprocessed data after the loop?  Handle it now:
850        if (!empty($currentGroup)) {
851            $this->processRuleGroup($currentGroup);
852        }
853    }
854
855    /**
856     * Support method for parseRules() -- process one group of lines representing
857     * a single tag.
858     *
859     * @param array $rules Rule lines to process
860     *
861     * @return void
862     */
863    protected function processRuleGroup($rules)
864    {
865        // The first line is guaranteed to exist and gives us some basic info:
866        [$tag, $repeatable, $description] = explode(' ', $rules[0]);
867        $this->rules[$tag] = [
868            'repeatable' => $repeatable,
869            'desc' => $description,
870        ];
871
872        // We may or may not have additional details:
873        $ruleCount = count($rules);
874        for ($i = 1; $i < $ruleCount; $i++) {
875            [$key, $value, $lineDesc] = explode(' ', $rules[$i] . ' ');
876            if (substr($key, 0, 3) == 'ind') {
877                // Expand ranges:
878                $value = str_replace('0-9', '0123456789', $value);
879                $this->rules[$tag][$key] = [
880                    'values' => $value,
881                    'hr_values' => $this->getHumanReadableIndicatorValues($value),
882                    'desc' => $lineDesc,
883                ];
884            } else {
885                if (strlen($key) <= 1) {
886                    $this->rules[$tag]['sub' . $key] = [
887                        'repeatable' => $value,
888                        'desc' => $lineDesc,
889                    ];
890                } elseif (strstr($key, '-')) {
891                    [$startKey, $endKey] = explode('-', $key);
892                    foreach (range($startKey, $endKey) as $sub) {
893                        $this->rules[$tag]['sub' . $sub] = [
894                            'repeatable' => $value,
895                            'desc' => $lineDesc,
896                        ];
897                    }
898                }
899            }
900        }
901    }
902
903    /**
904     * Turn a set of indicator rules into a human-readable list.
905     *
906     * @param string $rules Indicator rules
907     *
908     * @return string
909     */
910    protected function getHumanReadableIndicatorValues($rules)
911    {
912        // No processing needed for blank rule:
913        if ($rules == 'blank') {
914            return $rules;
915        }
916
917        // Create string:
918        $string = '';
919        $length = strlen($rules);
920        for ($i = 0; $i < $length; $i++) {
921            $current = substr($rules, $i, 1);
922            if ($current == 'b') {
923                $current = 'blank';
924            }
925            $string .= $current;
926            if ($length - $i == 2) {
927                $string .= ' or ';
928            } elseif ($length - $i > 2) {
929                $string .= ', ';
930            }
931        }
932
933        return $string;
934    }
935
936    /**
937     * Support method for parseRules() -- get the raw rules from MARC::Lint.
938     *
939     * @return string
940     */
941    protected function getRawRules()
942    {
943        return <<<'RULES'
944            001     NR      CONTROL NUMBER
945            ind1    blank   Undefined
946            ind2    blank   Undefined
947                    NR      Undefined
948
949
950            002     NR      LOCALLY DEFINED (UNOFFICIAL)
951            ind1    blank   Undefined
952            ind2    blank   Undefined
953                    NR      Undefined
954
955            003     NR      CONTROL NUMBER IDENTIFIER
956            ind1    blank   Undefined
957            ind2    blank   Undefined
958                    NR      Undefined
959
960            005     NR      DATE AND TIME OF LATEST TRANSACTION
961            ind1    blank   Undefined
962            ind2    blank   Undefined
963                    NR      Undefined
964
965            006     R       FIXED-LENGTH DATA ELEMENTS--ADDITIONAL MATERIAL CHARACTERISTICS--GENERAL INFORMATION
966            ind1    blank   Undefined
967            ind2    blank   Undefined
968                    R       Undefined
969
970            007     R       PHYSICAL DESCRIPTION FIXED FIELD--GENERAL INFORMATION
971            ind1    blank   Undefined
972            ind2    blank   Undefined
973                    R       Undefined
974
975            008     NR      FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION
976            ind1    blank   Undefined
977            ind2    blank   Undefined
978                    NR      Undefined
979
980            010     NR      LIBRARY OF CONGRESS CONTROL NUMBER
981            ind1    blank   Undefined
982            ind2    blank   Undefined
983            a       NR      LC control number
984            b       R       NUCMC control number
985            z       R       Canceled/invalid LC control number
986            8       R       Field link and sequence number
987
988            013     R       PATENT CONTROL INFORMATION
989            ind1    blank   Undefined
990            ind2    blank   Undefined
991            a       NR      Number
992            b       NR      Country
993            c       NR      Type of number
994            d       R       Date
995            e       R       Status
996            f       R       Party to document
997            6       NR      Linkage
998            8       R       Field link and sequence number
999
1000            015     R       NATIONAL BIBLIOGRAPHY NUMBER
1001            ind1    blank   Undefined
1002            ind2    blank   Undefined
1003            a       R       National bibliography number
1004            q       R       Qualifying information
1005            z       R       Canceled/Invalid national bibliography number
1006            2       NR      Source
1007            6       NR      Linkage
1008            8       R       Field link and sequence number
1009
1010            016     R       NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER
1011            ind1    b7      National bibliographic agency
1012            ind2    blank   Undefined
1013            a       NR      Record control number
1014            z       R       Canceled or invalid record control number
1015            2       NR      Source
1016            8       R       Field link and sequence number
1017
1018            017     R       COPYRIGHT OR LEGAL DEPOSIT NUMBER
1019            ind1    blank   Undefined
1020            ind2    b8      Display constant controller
1021            a       R       Copyright or legal deposit number
1022            b       NR      Assigning agency
1023            d       NR      Date
1024            i       NR      Display text
1025            z       R       Canceled/invalid copyright or legal deposit number
1026            2       NR      Source
1027            6       NR      Linkage
1028            8       R       Field link and sequence number
1029
1030            018     NR      COPYRIGHT ARTICLE-FEE CODE
1031            ind1    blank   Undefined
1032            ind2    blank   Undefined
1033            a       NR      Copyright article-fee code
1034            6       NR      Linkage
1035            8       R       Field link and sequence number
1036
1037            020     R       INTERNATIONAL STANDARD BOOK NUMBER
1038            ind1    blank   Undefined
1039            ind2    blank   Undefined
1040            a       NR      International Standard Book Number
1041            c       NR      Terms of availability
1042            q       R       Qualifying information
1043            z       R       Canceled/invalid ISBN
1044            6       NR      Linkage
1045            8       R       Field link and sequence number
1046
1047            022     R       INTERNATIONAL STANDARD SERIAL NUMBER
1048            ind1    b01     Level of international interest
1049            ind2    blank   Undefined
1050            a       NR      International Standard Serial Number
1051            l       NR      ISSN-L
1052            m       R       Canceled ISSN-L
1053            y       R       Incorrect ISSN
1054            z       R       Canceled ISSN
1055            2       NR      Source
1056            6       NR      Linkage
1057            8       R       Field link and sequence number
1058
1059            024     R       OTHER STANDARD IDENTIFIER
1060            ind1    0123478    Type of standard number or code
1061            ind2    b01     Difference indicator
1062            a       NR      Standard number or code
1063            c       NR      Terms of availability
1064            d       NR      Additional codes following the standard number or code
1065            q       R       Qualifying information
1066            z       R       Canceled/invalid standard number or code
1067            2       NR      Source of number or code
1068            6       NR      Linkage
1069            8       R       Field link and sequence number
1070
1071            025     R       OVERSEAS ACQUISITION NUMBER
1072            ind1    blank   Undefined
1073            ind2    blank   Undefined
1074            a       R       Overseas acquisition number
1075            8       R       Field link and sequence number
1076
1077            026     R       FINGERPRINT IDENTIFIER
1078            ind1    blank   Undefined
1079            ind2    blank   Undefined
1080            a       NR      First and second groups of characters
1081            b       NR      Third and fourth groups of characters
1082            c       NR      Date
1083            d       R       Number of volume or part
1084            e       NR      Unparsed fingerprint
1085            2       NR      Source
1086            5       R       Institution to which field applies
1087            6       NR      Linkage
1088            8       R       Field link and sequence number
1089
1090            027     R       STANDARD TECHNICAL REPORT NUMBER
1091            ind1    blank   Undefined
1092            ind2    blank   Undefined
1093            a       NR      Standard technical report number
1094            q       R       Qualifying information
1095            z       R       Canceled/invalid number
1096            6       NR      Linkage
1097            8       R       Field link and sequence number
1098
1099            028     R       PUBLISHER NUMBER OR DISTRIBUTOR NUMBER
1100            ind1    0123456   Type of number
1101            ind2    0123    Note/added entry controller
1102            a       NR      Publisher or distributor number
1103            b       NR      Source
1104            q       R       Qualifying information
1105            6       NR      Linkage
1106            8       R       Field link and sequence number
1107
1108            030     R       CODEN DESIGNATION
1109            ind1    blank   Undefined
1110            ind2    blank   Undefined
1111            a       NR      CODEN
1112            z       R       Canceled/invalid CODEN
1113            6       NR      Linkage
1114            8       R       Field link and sequence number
1115
1116            031     R       MUSICAL INCIPITS INFORMATION
1117            ind1    blank   Undefined
1118            ind2    blank   Undefined
1119            a       NR      Number of work
1120            b       NR      Number of movement
1121            c       NR      Number of excerpt
1122            d       R       Caption or heading
1123            e       NR      Role
1124            g       NR      Clef
1125            m       NR      Voice/instrument
1126            n       NR      Key signature
1127            o       NR      Time signature
1128            p       NR      Musical notation
1129            q       R       General note
1130            r       NR      Key or mode
1131            s       R       Coded validity note
1132            t       R       Text incipit
1133            u       R       Uniform Resource Identifier
1134            y       R       Link text
1135            z       R       Public note
1136            2       NR      System code
1137            6       NR      Linkage
1138            8       R       Field link and sequence number
1139
1140            032     R       POSTAL REGISTRATION NUMBER
1141            ind1    blank   Undefined
1142            ind2    blank   Undefined
1143            a       NR      Postal registration number
1144            b       NR      Source (agency assigning number)
1145            6       NR      Linkage
1146            8       R       Field link and sequence number
1147
1148            033     R       DATE/TIME AND PLACE OF AN EVENT
1149            ind1    b012    Type of date in subfield $a
1150            ind2    b012    Type of event
1151            a       R       Formatted date/time
1152            b       R       Geographic classification area code
1153            c       R       Geographic classification subarea code
1154            p       R       Place of event
1155            0       R       Authority record control number or standard number
1156            1       R       Real World Object URI
1157            2       R       Source of term
1158            3       NR      Materials specified
1159            6       NR      Linkage
1160            8       R       Field link and sequence number
1161
1162            034     R       CODED CARTOGRAPHIC MATHEMATICAL DATA
1163            ind1    013     Type of scale
1164            ind2    b01     Type of ring
1165            a       NR      Category of scale
1166            b       R       Constant ratio linear horizontal scale
1167            c       R       Constant ratio linear vertical scale
1168            d       NR      Coordinates--westernmost longitude
1169            e       NR      Coordinates--easternmost longitude
1170            f       NR      Coordinates--northernmost latitude
1171            g       NR      Coordinates--southernmost latitude
1172            h       R       Angular scale
1173            j       NR      Declination--northern limit
1174            k       NR      Declination--southern limit
1175            m       NR      Right ascension--eastern limit
1176            n       NR      Right ascension--western limit
1177            p       NR      Equinox
1178            r       NR      Distance from earth
1179            s       R       G-ring latitude
1180            t       R       G-ring longitude
1181            x       NR      Beginning date
1182            y       NR      Ending date
1183            z       NR      Name of extraterrestrial body
1184            0       R       Authority record control number or standard number
1185            1       R       Real World Object URI
1186            2       NR      Source
1187            3       NR      Materials specified
1188            6       NR      Linkage
1189            8       R       Field link and sequence number
1190
1191            035     R       SYSTEM CONTROL NUMBER
1192            ind1    blank   Undefined
1193            ind2    blank   Undefined
1194            a       NR      System control number
1195            z       R       Canceled/invalid control number
1196            6       NR      Linkage
1197            8       R       Field link and sequence number
1198
1199            036     NR      ORIGINAL STUDY NUMBER FOR COMPUTER DATA FILES
1200            ind1    blank   Undefined
1201            ind2    blank   Undefined
1202            a       NR      Original study number
1203            b       NR      Source (agency assigning number)
1204            6       NR      Linkage
1205            8       R       Field link and sequence number
1206
1207            037     R       SOURCE OF ACQUISITION
1208            ind1    b23     Source of acquisition sequence
1209            ind2    blank   Undefined
1210            a       NR      Stock number
1211            b       NR      Source of stock number/acquisition
1212            c       R       Terms of availability
1213            f       R       Form of issue
1214            g       R       Additional format characteristics
1215            n       R       Note
1216            3       NR      Materials specified
1217            5       R       Institution to which field applies
1218            6       NR      Linkage
1219            8       R       Field link and sequence number
1220
1221            038     NR      RECORD CONTENT LICENSOR
1222            ind1    blank   Undefined
1223            ind2    blank   Undefined
1224            a       NR      Record content licensor
1225            6       NR      Linkage
1226            8       R       Field link and sequence number
1227
1228            040     NR      CATALOGING SOURCE
1229            ind1    blank   Undefined
1230            ind2    blank   Undefined
1231            a       NR      Original cataloging agency
1232            b       NR      Language of cataloging
1233            c       NR      Transcribing agency
1234            d       R       Modifying agency
1235            e       R       Description conventions
1236            6       NR      Linkage
1237            8       R       Field link and sequence number
1238
1239            041     R       LANGUAGE CODE
1240            ind1    b01      Translation indication
1241            ind2    b7      Source of code
1242            a       R       Language code of text/sound track or separate title
1243            b       R       Language code of summary or abstract
1244            d       R       Language code of sung or spoken text
1245            e       R       Language code of librettos
1246            f       R       Language code of table of contents
1247            g       R       Language code of accompanying material other than librettos and transcripts
1248            h       R       Language code of original
1249            i       R       Language code of intertitles
1250            j       R       Language code of subtitles
1251            k       R       Language code of intermediate translations
1252            m       R       Language code of original accompanying materials other than librettos
1253            n       R       Language code of original libretto
1254            p       R       Language code of captions
1255            q       R       Language code of accessible audio
1256            r       R       Language code of accessible visual language (non-textual)
1257            t       R       Language code of accompanying transcripts for audiovisual materials
1258            2       NR      Source of code
1259            6       NR      Linkage
1260            8       R       Field link and sequence number
1261
1262            042     NR      AUTHENTICATION CODE
1263            ind1    blank   Undefined
1264            ind2    blank   Undefined
1265            a       R       Authentication code
1266
1267            043     NR      GEOGRAPHIC AREA CODE
1268            ind1    blank   Undefined
1269            ind2    blank   Undefined
1270            a       R       Geographic area code
1271            b       R       Local GAC code
1272            c       R       ISO code
1273            0       R       Authority record control number or standard number
1274            1       R       Real World Object URI
1275            2       R       Source of local code
1276            6       NR      Linkage
1277            8       R       Field link and sequence number
1278
1279            044     NR      COUNTRY OF PUBLISHING/PRODUCING ENTITY CODE
1280            ind1    blank   Undefined
1281            ind2    blank   Undefined
1282            a       R       MARC country code
1283            b       R       Local subentity code
1284            c       R       ISO country code
1285            2       R       Source of local subentity code
1286            6       NR      Linkage
1287            8       R       Field link and sequence number
1288
1289            045     NR      TIME PERIOD OF CONTENT
1290            ind1    b012    Type of time period in subfield $b or $c
1291            ind2    blank   Undefined
1292            a       R       Time period code
1293            b       R       Formatted 9999 B.C. through C.E. time period
1294            c       R       Formatted pre-9999 B.C. time period
1295            6       NR      Linkage
1296            8       R       Field link and sequence number
1297
1298            046     R       SPECIAL CODED DATES
1299            ind1    blank   Undefined
1300            ind2    blank   Undefined
1301            a       NR      Type of date code
1302            b       NR      Date 1 (B.C.E. date)
1303            c       NR      Date 1 (C.E. date)
1304            d       NR      Date 2 (B.C.E. date)
1305            e       NR      Date 2 (C.E. date)
1306            j       NR      Date resource modified
1307            k       NR      Beginning or single date created
1308            l       NR      Ending date created
1309            m       NR      Beginning of date valid
1310            n       NR      End of date valid
1311            o       NR      Single or starting date for aggregated content
1312            p       NR      Ending date for aggregated content
1313            2       NR      Source of date
1314            6       NR      Linkage
1315            8       R       Field link and sequence number
1316
1317            047     R       FORM OF MUSICAL COMPOSITION CODE
1318            ind1    blank   Undefined
1319            ind2    b7      Source of code
1320            a       R       Form of musical composition code
1321            2       NR      Source of code
1322            8       R       Field link and sequence number
1323
1324            048     R       NUMBER OF MUSICAL INSTRUMENTS OR VOICES CODE
1325            ind1    blank   Undefined
1326            ind2    b7      Source of code
1327            a       R       Performer or ensemble
1328            b       R       Soloist
1329            2       NR      Source of code
1330            8       R       Field link and sequence number
1331
1332            050     R       LIBRARY OF CONGRESS CALL NUMBER
1333            ind1    b01     Existence in LC collection
1334            ind2    04      Source of call number
1335            a       R       Classification number
1336            b       NR      Item number
1337            0       R       Authority record control number or standard number
1338            1       R       Real World Object URI
1339            3       NR      Materials specified
1340            6       NR      Linkage
1341            8       R       Field link and sequence number
1342
1343            051     R       LIBRARY OF CONGRESS COPY, ISSUE, OFFPRINT STATEMENT
1344            ind1    blank   Undefined
1345            ind2    blank   Undefined
1346            a       NR      Classification number
1347            b       NR      Item number
1348            c       NR      Copy information
1349            8       R       Field link and sequence number
1350
1351            052     R       GEOGRAPHIC CLASSIFICATION
1352            ind1    b17     Code source
1353            ind2    blank   Undefined
1354            a       NR      Geographic classification area code
1355            b       R       Geographic classification subarea code
1356            d       R       Populated place name
1357            0       R       Authority record control number or standard number
1358            1       R       Real World Object URI
1359            2       NR      Code source
1360            6       NR      Linkage
1361            8       R       Field link and sequence number
1362
1363            055     R       CLASSIFICATION NUMBERS ASSIGNED IN CANADA
1364            ind1    b01     Existence in LAC collection
1365            ind2    0123456789   Type, completeness, source of class/call number
1366            a       NR      Classification number
1367            b       NR      Item number
1368            0       R       Authority record control number or standard number
1369            1       R       Real World Object URI
1370            2       NR      Source of call/class number
1371            6       NR      Linkage
1372            8       R       Field link and sequence number
1373
1374            060     R       NATIONAL LIBRARY OF MEDICINE CALL NUMBER
1375            ind1    b01     Existence in NLM collection
1376            ind2    04      Source of call number
1377            a       R       Classification number
1378            b       NR      Item number
1379            0       R       Authority record control number or standard number
1380            1       R       Real World Object URI
1381            8       R       Field link and sequence number
1382
1383            061     R       NATIONAL LIBRARY OF MEDICINE COPY STATEMENT
1384            ind1    blank   Undefined
1385            ind2    blank   Undefined
1386            a       R       Classification number
1387            b       NR      Item number
1388            c       NR      Copy information
1389            8       R       Field link and sequence number
1390
1391            066     NR      CHARACTER SETS PRESENT
1392            ind1    blank   Undefined
1393            ind2    blank   Undefined
1394            a       NR      Primary G0 character set
1395            b       NR      Primary G1 character set
1396            c       R       Alternate G0 or G1 character set
1397
1398            070     R       NATIONAL AGRICULTURAL LIBRARY CALL NUMBER
1399            ind1    b01     Existence in NAL collection
1400            ind2    blank   Undefined
1401            a       R       Classification number
1402            b       NR      Item number
1403            0       R       Authority record control number or standard number
1404            1       R       Real World Object URI
1405            8       R       Field link and sequence number
1406
1407            071     R       NATIONAL AGRICULTURAL LIBRARY COPY STATEMENT
1408            ind1    blank   Undefined
1409            ind2    blank   Undefined
1410            a       R       Classification number
1411            b       NR      Item number
1412            c       NR      Copy information
1413            8       R       Field link and sequence number
1414
1415            072     R       SUBJECT CATEGORY CODE
1416            ind1    blank   Undefined
1417            ind2    07      Code source
1418            a       NR      Subject category code
1419            x       R       Subject category code subdivision
1420            2       NR      Source
1421            6       NR      Linkage
1422            8       R       Field link and sequence number
1423
1424            074     R       GPO ITEM NUMBER
1425            ind1    blank   Undefined
1426            ind2    blank   Undefined
1427            a       NR      GPO item number
1428            z       R       Canceled/invalid GPO item number
1429            8       R       Field link and sequence number
1430
1431            080     R       UNIVERSAL DECIMAL CLASSIFICATION NUMBER
1432            ind1    b01     Type of edition
1433            ind2    blank   Undefined
1434            a       NR      Universal Decimal Classification number
1435            b       NR      Item number
1436            x       R       Common auxiliary subdivision
1437            0       R       Authority record control number or standard number
1438            1       R       Real World Object URI
1439            2       NR      Edition identifier
1440            6       NR      Linkage
1441            8       R       Field link and sequence number
1442
1443            082     R       DEWEY DECIMAL CLASSIFICATION NUMBER
1444            ind1    017     Type of edition
1445            ind2    b04     Source of classification number
1446            a       R       Classification number
1447            b       NR      Item number
1448            m       NR      Standard or optional designation
1449            q       NR      Assigning agency
1450            2       NR      Edition number
1451            6       NR      Linkage
1452            8       R       Field link and sequence number
1453
1454            083     R       ADDITIONAL DEWEY DECIMAL CLASSIFICATION NUMBER
1455            ind1    017     Type of edition
1456            ind2    blank   Undefined
1457            a       R       Classification number
1458            c       R       Classification number--Ending number of span
1459            m       NR      Standard or optional designation
1460            q       NR      Assigning agency
1461            y       R       Table sequence number for internal subarrangement or add table
1462            z       R       Table identification
1463            2       NR      Edition number
1464            6       NR      Linkage
1465            8       R       Field link and sequence number
1466
1467            084     R       OTHER CLASSIFICATION NUMBER
1468            ind1    blank   Undefined
1469            ind2    blank   Undefined
1470            a       R       Classification number
1471            b       NR      Item number
1472            q       NR      Assigning agency
1473            0       R       Authority record control number or standard number
1474            1       R       Real World Object URI
1475            2       NR      Source of number
1476            6       NR      Linkage
1477            8       R       Field link and sequence number
1478
1479            085     R       SYNTHESIZED CLASSIFICATION NUMBER COMPONENTS
1480            ind1    blank   Undefined
1481            ind2    blank   Undefined
1482            a       R       Number where instructions are found-single number or beginning number of span
1483            b       R       Base number
1484            c       R       Classification number-ending number of span
1485            f       R       Facet designator
1486            r       R       Root number
1487            s       R       Digits added from classification number in schedule or external table
1488            t       R       Digits added from internal subarrangement or add table
1489            u       R       Number being analyzed
1490            v       R       Number in internal subarrangement or add table where instructions are found
1491            w       R       Table identification-Internal subarrangement or add table
1492            y       R       Table sequence number for internal subarrangement or add table
1493            z       R       Table identification
1494            0       R       Authority record control number or standard number
1495            1       R       Real World Object URI
1496            6       NR      Linkage
1497            8       R       Field link and sequence number
1498
1499            086     R       GOVERNMENT DOCUMENT CLASSIFICATION NUMBER
1500            ind1    b01     Number source
1501            ind2    blank   Undefined
1502            a       NR      Classification number
1503            z       R       Canceled/invalid classification number
1504            0       R       Authority record control number or standard number
1505            1       R       Real World Object URI
1506            2       NR      Number source
1507            6       NR      Linkage
1508            8       R       Field link and sequence number
1509
1510            088     R       REPORT NUMBER
1511            ind1    blank   Undefined
1512            ind2    blank   Undefined
1513            a       NR      Report number
1514            z       R       Canceled/invalid report number
1515            6       NR      Linkage
1516            8       R       Field link and sequence number
1517
1518            100     NR      MAIN ENTRY--PERSONAL NAME
1519            ind1    013     Type of personal name entry element
1520            ind2    blank   Undefined
1521            a       NR      Personal name
1522            b       NR      Numeration
1523            c       R       Titles and other words associated with a name
1524            d       NR      Dates associated with a name
1525            e       R       Relator term
1526            f       NR      Date of a work
1527            g       R       Miscellaneous information
1528            j       R       Attribution qualifier
1529            k       R       Form subheading
1530            l       NR      Language of a work
1531            n       R       Number of part/section of a work
1532            p       R       Name of part/section of a work
1533            q       NR      Fuller form of name
1534            t       NR      Title of a work
1535            u       NR      Affiliation
1536            0       R       Authority record control number or standard number
1537            1       R       Real World Object URI
1538            2       NR      Source of heading or term
1539            4       R       Relationship
1540            6       NR      Linkage
1541            8       R       Field link and sequence number
1542
1543            110     NR      MAIN ENTRY--CORPORATE NAME
1544            ind1    012     Type of corporate name entry element
1545            ind2    blank   Undefined
1546            a       NR      Corporate name or jurisdiction name as entry element
1547            b       R       Subordinate unit
1548            c       R       Location of meeting
1549            d       R       Date of meeting or treaty signing
1550            e       R       Relator term
1551            f       NR      Date of a work
1552            g       R       Miscellaneous information
1553            k       R       Form subheading
1554            l       NR      Language of a work
1555            n       R       Number of part/section/meeting
1556            p       R       Name of part/section of a work
1557            t       NR      Title of a work
1558            u       NR      Affiliation
1559            0       R       Authority record control number or standard number
1560            1       R       Real World Object URI
1561            2       NR      Source of heading or term
1562            4       R       Relationship
1563            6       NR      Linkage
1564            8       R       Field link and sequence number
1565
1566            111     NR      MAIN ENTRY--MEETING NAME
1567            ind1    012     Type of meeting name entry element
1568            ind2    blank   Undefined
1569            a       NR      Meeting name or jurisdiction name as entry element
1570            c       R       Location of meeting
1571            d       R       Date of meeting or treaty signing
1572            e       R       Subordinate unit
1573            f       NR      Date of a work
1574            g       R       Miscellaneous information
1575            j       R       Relator term
1576            k       R       Form subheading
1577            l       NR      Language of a work
1578            n       R       Number of part/section/meeting
1579            p       R       Name of part/section of a work
1580            q       NR      Name of meeting following jurisdiction name entry element
1581            t       NR      Title of a work
1582            u       NR      Affiliation
1583            0       R       Authority record control number or standard number
1584            1       R       Real World Object URI
1585            2       NR      Source of heading or term
1586            4       R       Relationship
1587            6       NR      Linkage
1588            8       R       Field link and sequence number
1589
1590            130     NR      MAIN ENTRY--UNIFORM TITLE
1591            ind1    0-9     Nonfiling characters
1592            ind2    blank   Undefined
1593            a       NR      Uniform title
1594            d       R       Date of treaty signing
1595            f       NR      Date of a work
1596            g       R       Miscellaneous information
1597            h       NR      Medium
1598            k       R       Form subheading
1599            l       NR      Language of a work
1600            m       R       Medium of performance for music
1601            n       R       Number of part/section of a work
1602            o       NR      Arranged statement for music
1603            p       R       Name of part/section of a work
1604            r       NR      Key for music
1605            s       R       Version
1606            t       NR      Title of a work
1607            0       R       Authority record control number or standard number
1608            1       R       Real World Object URI
1609            2       NR      Source of heading or term
1610            6       NR      Linkage
1611            8       R       Field link and sequence number
1612
1613            210     R       ABBREVIATED TITLE
1614            ind1    01      Title added entry
1615            ind2    b0      Type
1616            a       NR      Abbreviated title
1617            b       NR      Qualifying information
1618            2       R       Source
1619            6       NR      Linkage
1620            8       R       Field link and sequence number
1621
1622            222     R       KEY TITLE
1623            ind1    blank   Undefined
1624            ind2    0-9     Nonfiling characters
1625            a       NR      Key title
1626            b       NR      Qualifying information
1627            6       NR      Linkage
1628            8       R       Field link and sequence number
1629
1630            240     NR      UNIFORM TITLE
1631            ind1    01    Uniform title printed or displayed
1632            ind2    0-9    Nonfiling characters
1633            a       NR      Uniform title
1634            d       R       Date of treaty signing
1635            f       NR      Date of a work
1636            g       R       Miscellaneous information
1637            h       NR      Medium
1638            k       R       Form subheading
1639            l       NR      Language of a work
1640            m       R       Medium of performance for music
1641            n       R       Number of part/section of a work
1642            o       NR      Arranged statement for music
1643            p       R       Name of part/section of a work
1644            r       NR      Key for music
1645            s       R       Version
1646            0       R       Authority record control number or standard number
1647            1       R       Real World Object URI
1648            2       NR      Source of heading or term
1649            6       NR      Linkage
1650            8       R       Field link and sequence number
1651
1652            242     R       TRANSLATION OF TITLE BY CATALOGING AGENCY
1653            ind1    01    Title added entry
1654            ind2    0-9    Nonfiling characters
1655            a       NR      Title
1656            b       NR      Remainder of title
1657            c       NR      Statement of responsibility, etc.
1658            h       NR      Medium
1659            n       R       Number of part/section of a work
1660            p       R       Name of part/section of a work
1661            y       NR      Language code of translated title
1662            6       NR      Linkage
1663            8       R       Field link and sequence number
1664
1665            243     NR      COLLECTIVE UNIFORM TITLE
1666            ind1    01    Uniform title printed or displayed
1667            ind2    0-9    Nonfiling characters
1668            a       NR      Uniform title
1669            d       R       Date of treaty signing
1670            f       NR      Date of a work
1671            g       R       Miscellaneous information
1672            h       NR      Medium
1673            k       R       Form subheading
1674            l       NR      Language of a work
1675            m       R       Medium of performance for music
1676            n       R       Number of part/section of a work
1677            o       NR      Arranged statement for music
1678            p       R       Name of part/section of a work
1679            r       NR      Key for music
1680            s       R       Version
1681            6       NR      Linkage
1682            8       R       Field link and sequence number
1683
1684            245     NR      TITLE STATEMENT
1685            ind1    01    Title added entry
1686            ind2    0-9    Nonfiling characters
1687            a       NR      Title
1688            b       NR      Remainder of title
1689            c       NR      Statement of responsibility, etc.
1690            f       NR      Inclusive dates
1691            g       NR      Bulk dates
1692            h       NR      Medium
1693            k       R       Form
1694            n       R       Number of part/section of a work
1695            p       R       Name of part/section of a work
1696            s       NR      Version
1697            6       NR      Linkage
1698            8       R       Field link and sequence number
1699
1700            246     R       VARYING FORM OF TITLE
1701            ind1    0123    Note/added entry controller
1702            ind2    b012345678    Type of title
1703            a       NR      Title proper/short title
1704            b       NR      Remainder of title
1705            f       NR      Date or sequential designation
1706            g       R       Miscellaneous information
1707            h       NR      Medium
1708            i       NR      Display text
1709            n       R       Number of part/section of a work
1710            p       R       Name of part/section of a work
1711            5       NR      Institution to which field applies
1712            6       NR      Linkage
1713            8       R       Field link and sequence number
1714
1715            247     R       FORMER TITLE
1716            ind1    01      Title added entry
1717            ind2    01      Note controller
1718            a       NR      Title
1719            b       NR      Remainder of title
1720            f       NR      Date or sequential designation
1721            g       R       Miscellaneous information
1722            h       NR      Medium
1723            n       R       Number of part/section of a work
1724            p       R       Name of part/section of a work
1725            x       NR      International Standard Serial Number
1726            6       NR      Linkage
1727            8       R       Field link and sequence number
1728
1729            250     R       EDITION STATEMENT
1730            ind1    blank   Undefined
1731            ind2    blank   Undefined
1732            a       NR      Edition statement
1733            b       NR      Remainder of edition statement
1734            3       NR      Materials specified
1735            6       NR      Linkage
1736            8       R       Field link and sequence number
1737
1738            251     R       VERSION INFORMATION
1739            ind1    blank   Undefined
1740            ind2    blank   Undefined
1741            a       R       Version
1742            0       R       Authority record control number or standard number
1743            1       R       Real World Object URI
1744            2       NR      Source
1745            3       NR      Materials specified
1746            6       NR      Linkage
1747            8       R       Field link and sequence number
1748
1749
1750            254     NR      MUSICAL PRESENTATION STATEMENT
1751            ind1    blank   Undefined
1752            ind2    blank   Undefined
1753            a       NR      Musical presentation statement
1754            6       NR      Linkage
1755            8       R       Field link and sequence number
1756
1757            255     R       CARTOGRAPHIC MATHEMATICAL DATA
1758            ind1    blank   Undefined
1759            ind2    blank   Undefined
1760            a       NR      Statement of scale
1761            b       NR      Statement of projection
1762            c       NR      Statement of coordinates
1763            d       NR      Statement of zone
1764            e       NR      Statement of equinox
1765            f       NR      Outer G-ring coordinate pairs
1766            g       NR      Exclusion G-ring coordinate pairs
1767            6       NR      Linkage
1768            8       R       Field link and sequence number
1769
1770            256     NR      COMPUTER FILE CHARACTERISTICS
1771            ind1    blank   Undefined
1772            ind2    blank   Undefined
1773            a       NR      Computer file characteristics
1774            6       NR      Linkage
1775            8       R       Field link and sequence number
1776
1777            257     R       COUNTRY OF PRODUCING ENTITY
1778            ind1    blank   Undefined
1779            ind2    blank   Undefined
1780            a       R       Country of producing entity
1781            0       R       Authority record control number or standard number
1782            1       R       Real World Object URI
1783            2       NR      Source
1784            6       NR      Linkage
1785            8       R       Field link and sequence number
1786
1787            258     R       PHILATELIC ISSUE DATE
1788            ind1    blank   Undefined
1789            ind2    blank   Undefined
1790            a       NR      Issuing jurisdiction
1791            b       NR      Denomination
1792            6       NR      Linkage
1793            8       R       Field link and sequence number
1794
1795            260     R       PUBLICATION, DISTRIBUTION, ETC. (IMPRINT)
1796            ind1    b23     Sequence of publishing statements
1797            ind2    blank   Undefined
1798            a       R       Place of publication, distribution, etc.
1799            b       R       Name of publisher, distributor, etc.
1800            c       R       Date of publication, distribution, etc.
1801            d       NR      Plate or publisher's number for music (Pre-AACR 2)
1802            e       R       Place of manufacture
1803            f       R       Manufacturer
1804            g       R       Date of manufacture
1805            3       NR      Materials specified
1806            6       NR      Linkage
1807            8       R       Field link and sequence number
1808
1809            261     NR      IMPRINT STATEMENT FOR FILMS (Pre-AACR 1 Revised)
1810            ind1    blank   Undefined
1811            ind2    blank   Undefined
1812            a       R       Producing company
1813            b       R       Releasing company (primary distributor)
1814            d       R       Date of production, release, etc.
1815            e       R       Contractual producer
1816            f       R       Place of production, release, etc.
1817            6       NR      Linkage
1818            8       R       Field link and sequence number
1819
1820            262     NR      IMPRINT STATEMENT FOR SOUND RECORDINGS (Pre-AACR 2)
1821            ind1    blank   Undefined
1822            ind2    blank   Undefined
1823            a       NR      Place of production, release, etc.
1824            b       NR      Publisher or trade name
1825            c       NR      Date of production, release, etc.
1826            k       NR      Serial identification
1827            l       NR      Matrix and/or take number
1828            6       NR      Linkage
1829            8       R       Field link and sequence number
1830
1831            263     NR      PROJECTED PUBLICATION DATE
1832            ind1    blank   Undefined
1833            ind2    blank   Undefined
1834            a       NR      Projected publication date
1835            6       NR      Linkage
1836            8       R       Field link and sequence number
1837
1838            264     R       PRODUCTION, PUBLICATION, DISTRIBUTION, MANUFACTURE, AND COPYRIGHT NOTICE
1839            ind1    b23     Sequence of statements
1840            ind2    01234   Function of entity
1841            a       R       Place of production, publication, distribution, manufacture
1842            b       R       Name of producer, publisher, distributor, manufacturer
1843            c       R       Date of production, publication, distribution, manufacture, or copyright notice
1844            3       NR      Materials specified
1845            6       NR      Linkage
1846            8       R       Field link and sequence number
1847
1848            270     R       ADDRESS
1849            ind1    b12     Level
1850            ind2    b07     Type of address
1851            a       R       Address
1852            b       NR      City
1853            c       NR      State or province
1854            d       NR      Country
1855            e       NR      Postal code
1856            f       NR      Terms preceding attention name
1857            g       NR      Attention name
1858            h       NR      Attention position
1859            i       NR      Type of address
1860            j       R       Specialized telephone number
1861            k       R       Telephone number
1862            l       R       Fax number
1863            m       R       Electronic mail address
1864            n       R       TDD or TTY number
1865            p       R       Contact person
1866            q       R       Title of contact person
1867            r       R       Hours
1868            z       R       Public note
1869            4       R       Relationship
1870            6       NR      Linkage
1871            8       R       Field link and sequence number
1872
1873            300     R       PHYSICAL DESCRIPTION
1874            ind1    blank   Undefined
1875            ind2    blank   Undefined
1876            a       R       Extent
1877            b       NR      Other physical details
1878            c       R       Dimensions
1879            e       NR      Accompanying material
1880            f       R       Type of unit
1881            g       R       Size of unit
1882            3       NR      Materials specified
1883            6       NR      Linkage
1884            8       R       Field link and sequence number
1885
1886            306     NR      PLAYING TIME
1887            ind1    blank   Undefined
1888            ind2    blank   Undefined
1889            a       R       Playing time
1890            6       NR      Linkage
1891            8       R       Field link and sequence number
1892
1893            307     R       HOURS, ETC.
1894            ind1    b8      Display constant controller
1895            ind2    blank   Undefined
1896            a       NR      Hours
1897            b       NR      Additional information
1898            6       NR      Linkage
1899            8       R       Field link and sequence number
1900
1901            310     NR      CURRENT PUBLICATION FREQUENCY
1902            ind1    blank   Undefined
1903            ind2    blank   Undefined
1904            a       NR      Current publication frequency
1905            b       NR      Date of current publication frequency
1906            0       NR      Authority record control number or standard number
1907            1       R       Real World Object URI
1908            2       NR      Source
1909            6       NR      Linkage
1910            8       R       Field link and sequence number
1911
1912            321     R       FORMER PUBLICATION FREQUENCY
1913            ind1    blank   Undefined
1914            ind2    blank   Undefined
1915            a       NR      Former publication frequency
1916            b       NR      Dates of former publication frequency
1917            0       NR      Authority record control number or standard number
1918            1       R       Real World Object URI
1919            2       NR      Source
1920            6       NR      Linkage
1921            8       R       Field link and sequence number
1922
1923            336     R       CONTENT TYPE
1924            ind1    blank   Undefined
1925            ind2    blank   Undefined
1926            a       R       Content type term
1927            b       R       Content type code
1928            0       R       Authority record control number or standard number
1929            1       R       Real World Object URI
1930            2       NR      Source
1931            3       NR      Materials specified
1932            6       NR      Linkage
1933            8       R       Field link and sequence number
1934
1935            337     R       MEDIA TYPE
1936            ind1    blank   Undefined
1937            ind2    blank   Undefined
1938            a       R       Media type term
1939            b       R       Media type code
1940            0       R       Authority record control number or standard number
1941            1       R       Real World Object URI
1942            2       NR      Source
1943            3       NR      Materials specified
1944            6       NR      Linkage
1945            8       R       Field link and sequence number
1946
1947            338     R       CARRIER TYPE
1948            ind1    blank   Undefined
1949            ind2    blank   Undefined
1950            a       R       Carrier type term
1951            b       R       Carrier type code
1952            0       R       Authority record control number or standard number
1953            1       R       Real World Object URI
1954            2       NR      Source
1955            3       NR      Materials specified
1956            6       NR      Linkage
1957            8       R       Field link and sequence number
1958
1959            340     R       PHYSICAL MEDIUM
1960            ind1    blank   Undefined
1961            ind2    blank   Undefined
1962            a       R       Material base and configuration
1963            b       R       Dimensions
1964            c       R       Materials applied to surface
1965            d       R       Information recording technique
1966            e       R       Support
1967            f       R       Production rate/ratio
1968            g       R       Color content
1969            h       R       Location within medium
1970            i       R       Technical specifications of medium
1971            j       R       Generation
1972            k       R       Layout
1973            m       R       Book format
1974            n       R       Font size
1975            o       R       Polarity
1976            0       R       Authority record control number or standard number
1977            2       NR      Source
1978            3       NR      Materials specified
1979            6       NR      Linkage
1980            8       R       Field link and sequence number
1981
1982            341     R       ACCESSIBILITY CONTENT
1983            ind1    b01     Application
1984            ind2    blank   Undefined
1985            a       NR      Content access mode
1986            b       R       Textual assistive features
1987            c       R       Visual assistive features
1988            d       R       Auditory assistive features
1989            e       R       Tactile assistive features
1990            2       NR      Source
1991            3       NR      Materials specified
1992            6       NR      Linkage
1993            8       R       Field link and sequence number
1994
1995            342     R       GEOSPATIAL REFERENCE DATA
1996            ind1    01      Geospatial reference dimension
1997            ind2    012345678    Geospatial reference method
1998            a       NR      Name
1999            b       NR      Coordinate or distance units
2000            c       NR      Latitude resolution
2001            d       NR      Longitude resolution
2002            e       R       Standard parallel or oblique line latitude
2003            f       R       Oblique line longitude
2004            g       NR      Longitude of central meridian or projection center
2005            h       NR      Latitude of projection origin or projection center
2006            i       NR      False easting
2007            j       NR      False northing
2008            k       NR      Scale factor
2009            l       NR      Height of perspective point above surface
2010            m       NR      Azimuthal angle
2011            n       NR      Azimuth measure point longitude or straight vertical longitude from pole
2012            o       NR      Landsat number and path number
2013            p       NR      Zone identifier
2014            q       NR      Ellipsoid name
2015            r       NR      Semi-major axis
2016            s       NR      Denominator of flattening ratio
2017            t       NR      Vertical resolution
2018            u       NR      Vertical encoding method
2019            v       NR      Local planar, local, or other projection or grid description
2020            w       NR      Local planar or local georeference information
2021            2       NR      Reference method used
2022            6       NR      Linkage
2023            8       R       Field link and sequence number
2024
2025            343     R       PLANAR COORDINATE DATA
2026            ind1    blank   Undefined
2027            ind2    blank   Undefined
2028            a       NR      Planar coordinate encoding method
2029            b       NR      Planar distance units
2030            c       NR      Abscissa resolution
2031            d       NR      Ordinate resolution
2032            e       NR      Distance resolution
2033            f       NR      Bearing resolution
2034            g       NR      Bearing units
2035            h       NR      Bearing reference direction
2036            i       NR      Bearing reference meridian
2037            6       NR      Linkage
2038            8       R       Field link and sequence number
2039
2040            344     R       SOUND CHARACTERISTICS
2041            ind1    blank   Undefined
2042            ind2    blank   Undefined
2043            a       R       Type of recording
2044            b       R       Recording medium
2045            c       R       Playing speed
2046            d       R       Groove characteristic
2047            e       R       Track configuration
2048            f       R       Tape configuration
2049            g       R       Configuration of playback channels
2050            h       R       Special playback characteristics
2051            0       R       Authority record control number or standard number
2052            1       R       Real World Object URI
2053            2       NR      Source
2054            3       NR      Materials specified
2055            6       NR      Linkage
2056            8       R       Field link and sequence number
2057
2058            345     R       PROJECTION CHARACTERISTICS OF MOVING IMAGE
2059            ind1    blank   Undefined
2060            ind2    blank   Undefined
2061            a       R       Presentation format
2062            b       R       Projection speed
2063            0       R       Authority record control number or standard number
2064            1       R       Real World Object URI
2065            2       NR      Source
2066            3       NR      Materials specified
2067            6       NR      Linkage
2068            8       R       Field link and sequence number
2069
2070            346     R       VIDEO CHARACTERISTICS
2071            ind1    blank   Undefined
2072            ind2    blank   Undefined
2073            a       R       Video format
2074            b       R       Broadcast standard
2075            0       R       Authority record control number or standard number
2076            1       R       Real World Object URI
2077            2       NR      Source
2078            3       NR      Materials specified
2079            6       NR      Linkage
2080            8       R       Field link and sequence number
2081
2082            347     R       DIGITAL FILE CHARACTERISTICS
2083            ind1    blank   Undefined
2084            ind2    blank   Undefined
2085            a       R       File type
2086            b       R       Encoding format
2087            c       R       File size
2088            d       R       Resolution
2089            e       R       Regional encoding
2090            f       R       Encoded bitrate
2091            0       R       Authority record control number or standard number
2092            1       R       Real World Object URI
2093            2       NR      Source
2094            3       NR      Materials specified
2095            6       NR      Linkage
2096            8       R       Field link and sequence number
2097
2098            348     R       FORMAT OF NOTATED MUSIC
2099            ind1    blank   Undefined
2100            ind2    blank   Undefined
2101            a       R       Format of notated music term
2102            b       R       Format of notated music code
2103            0       R       Authority record control number or standard number
2104            1       R       Real World Object URI
2105            2       NR      Source of term
2106            3       NR      Materials specified
2107            6       NR      Linkage
2108            8       R       Field link and sequence number
2109
2110            351     R       ORGANIZATION AND ARRANGEMENT OF MATERIALS
2111            ind1    blank   Undefined
2112            ind2    blank   Undefined
2113            a       R       Organization
2114            b       R       Arrangement
2115            c       NR      Hierarchical level
2116            3       NR      Materials specified
2117            6       NR      Linkage
2118            8       R       Field link and sequence number
2119
2120            352     R       DIGITAL GRAPHIC REPRESENTATION
2121            ind1    blank   Undefined
2122            ind2    blank   Undefined
2123            a       NR      Direct reference method
2124            b       R       Object type
2125            c       R       Object count
2126            d       NR      Row count
2127            e       NR      Column count
2128            f       NR      Vertical count
2129            g       NR      VPF topology level
2130            i       NR      Indirect reference description
2131            q       R       Format of the digital image
2132            6       NR      Linkage
2133            8       R       Field link and sequence number
2134
2135            355     R       SECURITY CLASSIFICATION CONTROL
2136            ind1    0123458    Controlled element
2137            ind2    blank   Undefined
2138            a       NR      Security classification
2139            b       R       Handling instructions
2140            c       R       External dissemination information
2141            d       NR      Downgrading or declassification event
2142            e       NR      Classification system
2143            f       NR      Country of origin code
2144            g       NR      Downgrading date
2145            h       NR      Declassification date
2146            j       R       Authorization
2147            6       NR      Linkage
2148            8       R       Field link and sequence number
2149
2150            357     NR      ORIGINATOR DISSEMINATION CONTROL
2151            ind1    blank   Undefined
2152            ind2    blank   Undefined
2153            a       NR      Originator control term
2154            b       R       Originating agency
2155            c       R       Authorized recipients of material
2156            g       R       Other restrictions
2157            6       NR      Linkage
2158            8       R       Field link and sequence number
2159
2160            362     R       DATES OF PUBLICATION AND/OR SEQUENTIAL DESIGNATION
2161            ind1    01      Format of date
2162            ind2    blank   Undefined
2163            a       NR      Dates of publication and/or sequential designation
2164            z       NR      Source of information
2165            6       NR      Linkage
2166            8       R       Field link and sequence number
2167
2168            363     R       NORMALIZED DATE AND SEQUENTIAL DESIGNATION
2169            ind1    b01     Start/End designator
2170            ind2    b01     State of issuance
2171            a       NR      First level of enumeration
2172            b       NR      Second level of enumeration
2173            c       NR      Third level of enumeration
2174            d       NR      Fourth level of enumeration
2175            e       NR      Fifth level of enumeration
2176            f       NR      Sixth level of enumeration
2177            g       NR      Alternative numbering scheme, first level of enumeration
2178            h       NR      Alternative numbering scheme, second level of enumeration
2179            i       NR      First level of chronology
2180            j       NR      Second level of chronology
2181            k       NR      Third level of chronology
2182            l       NR      Fourth level of chronology
2183            m       NR      Alternative numbering scheme, chronology
2184            u       NR      First level textual designation
2185            v       NR      First level of chronology, issuance
2186            x       R       Nonpublic note
2187            z       R       Public note
2188            6       NR      Linkage
2189            8       NR      Field link and sequence number
2190
2191            365     R       TRADE PRICE
2192            ind1    blank   Undefined
2193            ind2    blank   Undefined
2194            a       NR      Price type code
2195            b       NR      Price amount
2196            c       NR      Currency code
2197            d       NR      Unit of pricing
2198            e       NR      Price note
2199            f       NR      Price effective from
2200            g       NR      Price effective until
2201            h       NR      Tax rate 1
2202            i       NR      Tax rate 2
2203            j       NR      ISO country code
2204            k       NR      MARC country code
2205            m       NR      Identification of pricing entity
2206            2       NR      Source of price type code
2207            6       NR      Linkage
2208            8       R       Field link and sequence number
2209
2210            366     R       TRADE AVAILABILITY INFORMATION
2211            ind1    blank   Undefined
2212            ind2    blank   Undefined
2213            a       NR      Publishers' compressed title identification
2214            b       NR      Detailed date of publication
2215            c       NR      Availability status code
2216            d       NR      Expected next availability date
2217            e       NR      Note
2218            f       NR      Publishers' discount category
2219            g       NR      Date made out of print
2220            j       NR      ISO country code
2221            k       NR      MARC country code
2222            m       NR      Identification of agency
2223            2       NR      Source of availability status code
2224            6       NR      Linkage
2225            8       R       Field link and sequence number
2226
2227            370     R       ASSOCIATED PLACE
2228            ind1    blank   Undefined
2229            ind2    blank   Undefined
2230            c       R       Associated country
2231            f       R       Other associated place
2232            g       R       Place of origin of work or expression
2233            i       R       Relationship information
2234            s       NR      Start period
2235            t       NR      End period
2236            u       R       Uniform Resource Identifier
2237            v       R       Source of information
2238            0       R       Authority record control number or standard number
2239            1       R       Real World Object URI
2240            2       NR      Source of term
2241            3       NR      Materials specified
2242            4       R       Relationship
2243            6       NR      Linkage
2244            8       R       Field link and sequence number
2245
2246            377     R       ASSOCIATED LANGUAGE
2247            ind1    blank   Undefined
2248            ind2    b7      Source of code
2249            a       R       Language code
2250            l       R       Language term
2251            0       R       Authority record control number or standard number
2252            1       R       Real World Object URI
2253            2       NR      Source
2254            3       NR      Materials specified
2255            6       NR      Linkage
2256            8       R       Field link and sequence number
2257
2258            380     R       FORM OF WORK
2259            ind1    blank   Undefined
2260            ind2    blank   Undefined
2261            a       R       Form of work
2262            0       R       Authority record control number or standard number
2263            1       R       Real World Object URI
2264            2       NR      Source of term
2265            3       NR      Materials specified
2266            6       NR      Linkage
2267            8       R       Field link and sequence number
2268
2269            381     R       OTHER DISTINGUISHING CHARACTERISTICS OF WORK OR EXPRESSION
2270            ind1    blank   Undefined
2271            ind2    blank   Undefined
2272            a       R       Other distinguishing characteristic
2273            u       R       Uniform Resource Identifier
2274            v       R       Source of information
2275            0       R       Authority record control number or standard number
2276            1       R       Real World Object URI
2277            2       NR      Source of term
2278            3       NR      Materials specified
2279            6       NR      Linkage
2280            8       R       Field link and sequence number
2281
2282            382     R       MEDIUM OF PERFORMANCE
2283            ind1    b01     Display constant controller
2284            ind2    b01     Access control
2285            a       R       Medium of performance
2286            b       R       Soloist
2287            d       R       Doubling instrument
2288            e       R       Number of ensembles of the same type
2289            n       R       Number of performers of the same medium
2290            p       R       Alternative medium of performance
2291            r       NR      Total number of individuals performing alongside ensembles
2292            s       NR      Total number of performers
2293            t       NR      Total number of ensembles
2294            v       R       Note
2295            0       R       Authority record control number or standard number
2296            1       R       Real World Object URI
2297            2       NR      Source of term
2298            3       NR      Materials specified
2299            6       NR      Linkage
2300            8       R       Field link and sequence number
2301
2302            383     R       NUMERIC DESIGNATION OF MUSICAL WORK
2303            ind1    blank   Undefined
2304            ind2    blank   Undefined
2305            a       R       Serial number
2306            b       R       Opus number
2307            c       R       Thematic index number
2308            d       NR      Thematic index code
2309            e       NR      Publisher associated with opus number
2310            2       NR      Source
2311            3       NR      Materials specified
2312            6       NR      Linkage
2313            8       R       Field link and sequence number
2314
2315            384     R       KEY
2316            ind1    b01     Key type
2317            ind2    blank   Undefined
2318            a       NR      Key
2319            3       NR      Materials specified
2320            6       NR      Linkage
2321            8       R       Field link and sequence number
2322
2323            385     R       AUDIENCE CHARACTERISTICS
2324            ind1    blank   Undefined
2325            ind2    blank   Undefined
2326            a       R       Audience term
2327            b       R       Audience code
2328            m       NR      Demographic group term
2329            n       NR      Demographic group code
2330            0       R       Authority record control number or standard number
2331            1       R       Real World Object URI
2332            2       NR      Source
2333            3       NR      Materials specified
2334            6       NR      Linkage
2335            8       R       Field link and sequence number
2336
2337            386     R       CREATOR/CONTRIBUTOR CHARACTERISTICS
2338            ind1    blank   Undefined
2339            ind2    blank   Undefined
2340            a       R       Creator/contributor term
2341            b       R       Creator/contributor code
2342            i       R       Relationship information
2343            m       NR      Demographic group term
2344            n       NR      Demographic group code
2345            0       R       Authority record control number or standard number
2346            1       R       Real World Object URI
2347            2       NR      Source
2348            3       NR      Materials specified
2349            4       R       Relationship
2350            6       NR      Linkage
2351            8       R       Field link and sequence number
2352
2353            388     R       TIME PERIOD OF CREATION
2354            ind1    b12     Type of time period
2355            ind2    blank   Undefined
2356            a       R       Time period of creation term
2357            0       R       Authority record control number or standard number
2358            1       R       Real World Object URI
2359            2       NR      Source of term
2360            3       NR      Materials specified
2361            6       NR      Linkage
2362            8       R       Field link and sequence number
2363
2364            400     R       SERIES STATEMENT/ADDED ENTRY--PERSONAL NAME
2365            ind1    013     Type of personal name entry element
2366            ind2    01      Pronoun represents main entry
2367            a       NR      Personal name
2368            b       NR      Numeration
2369            c       R       Titles and other words associated with a name
2370            d       NR      Dates associated with a name
2371            e       R       Relator term
2372            f       NR      Date of a work
2373            g       NR      Miscellaneous information
2374            k       R       Form subheading
2375            l       NR      Language of a work
2376            n       R       Number of part/section of a work
2377            p       R       Name of part/section of a work
2378            t       NR      Title of a work
2379            u       NR      Affiliation
2380            v       NR      Volume number/sequential designation
2381            x       NR      International Standard Serial Number
2382            4       R       Relator code
2383            6       NR      Linkage
2384            8       R       Field link and sequence number
2385
2386            410     R       SERIES STATEMENT/ADDED ENTRY--CORPORATE NAME
2387            ind1    012     Type of corporate name entry element
2388            ind2    01      Pronoun represents main entry
2389            a       NR      Corporate name or jurisdiction name as entry element
2390            b       R       Subordinate unit
2391            c       NR      Location of meeting
2392            d       R       Date of meeting or treaty signing
2393            e       R       Relator term
2394            f       NR      Date of a work
2395            g       NR      Miscellaneous information
2396            k       R       Form subheading
2397            l       NR      Language of a work
2398            n       R       Number of part/section/meeting
2399            p       R       Name of part/section of a work
2400            t       NR      Title of a work
2401            u       NR      Affiliation
2402            v       NR      Volume number/sequential designation
2403            x       NR      International Standard Serial Number
2404            4       R       Relator code
2405            6       NR      Linkage
2406            8       R       Field link and sequence number
2407
2408            411     R       SERIES STATEMENT/ADDED ENTRY--MEETING NAME
2409            ind1    012     Type of meeting name entry element
2410            ind2    01      Pronoun represents main entry
2411            a       NR      Meeting name or jurisdiction name as entry element
2412            c       NR      Location of meeting
2413            d       NR      Date of meeting
2414            e       R       Subordinate unit
2415            f       NR      Date of a work
2416            g       NR      Miscellaneous information
2417            k       R       Form subheading
2418            l       NR      Language of a work
2419            n       R       Number of part/section/meeting
2420            p       R       Name of part/section of a work
2421            q       NR      Name of meeting following jurisdiction name entry element
2422            t       NR      Title of a work
2423            u       NR      Affiliation
2424            v       NR      Volume number/sequential designation
2425            x       NR      International Standard Serial Number
2426            4       R       Relator code
2427            6       NR      Linkage
2428            8       R       Field link and sequence number
2429
2430            490     R       SERIES STATEMENT
2431            ind1    01      Series tracing policy
2432            ind2    blank   Undefined
2433            a       R       Series statement
2434            l       NR      Library of Congress call number
2435            v       R       Volume number/sequential designation
2436            x       R       International Standard Serial Number
2437            3       NR      Materials specified
2438            6       NR      Linkage
2439            8       R       Field link and sequence number
2440
2441            500     R       GENERAL NOTE
2442            ind1    blank   Undefined
2443            ind2    blank   Undefined
2444            a       NR      General note
2445            3       NR      Materials specified
2446            5       NR      Institution to which field applies
2447            6       NR      Linkage
2448            8       R       Field link and sequence number
2449
2450            501     R       WITH NOTE
2451            ind1    blank   Undefined
2452            ind2    blank   Undefined
2453            a       NR      With note
2454            5       NR      Institution to which field applies
2455            6       NR      Linkage
2456            8       R       Field link and sequence number
2457
2458            502     R       DISSERTATION NOTE
2459            ind1    blank   Undefined
2460            ind2    blank   Undefined
2461            a       NR      Dissertation note
2462            b       NR      Degree type
2463            c       NR      Name of granting institution
2464            d       NR      Year of degree granted
2465            g       R       Miscellaneous information
2466            o       R       Dissertation identifier
2467            6       NR      Linkage
2468            8       R       Field link and sequence number
2469
2470            504     R       BIBLIOGRAPHY, ETC. NOTE
2471            ind1    blank   Undefined
2472            ind2    blank   Undefined
2473            a       NR      Bibliography, etc. note
2474            b       NR      Number of references
2475            6       NR      Linkage
2476            8       R       Field link and sequence number
2477
2478            505     R       FORMATTED CONTENTS NOTE
2479            ind1    0128    Display constant controller
2480            ind2    b0      Level of content designation
2481            a       NR      Formatted contents note
2482            g       R       Miscellaneous information
2483            r       R       Statement of responsibility
2484            t       R       Title
2485            u       R       Uniform Resource Identifier
2486            6       NR      Linkage
2487            8       R       Field link and sequence number
2488
2489            506     R       RESTRICTIONS ON ACCESS NOTE
2490            ind1    b01     Restriction
2491            ind2    blank   Undefined
2492            a       NR      Terms governing access
2493            b       R       Jurisdiction
2494            c       R       Physical access provisions
2495            d       R       Authorized users
2496            e       R       Authorization
2497            f       R       Standardized terminology for access restiction
2498            g       R       Availability date
2499            q       R       Supplying agency
2500            u       R       Uniform Resource Identifier
2501            2       NR      Source of term
2502            3       NR      Materials specified
2503            5       NR      Institution to which field applies
2504            6       NR      Linkage
2505            8       R       Field link and sequence number
2506
2507            507     NR      SCALE NOTE FOR GRAPHIC MATERIAL
2508            ind1    blank   Undefined
2509            ind2    blank   Undefined
2510            a       NR      Representative fraction of scale note
2511            b       NR      Remainder of scale note
2512            6       NR      Linkage
2513            8       R       Field link and sequence number
2514
2515            508     R       CREATION/PRODUCTION CREDITS NOTE
2516            ind1    blank   Undefined
2517            ind2    blank   Undefined
2518            a       NR      Creation/production credits note
2519            6       NR      Linkage
2520            8       R       Field link and sequence number
2521
2522            510     R       CITATION/REFERENCES NOTE
2523            ind1    01234   Coverage/location in source
2524            ind2    blank   Undefined
2525            a       NR      Name of source
2526            b       NR      Coverage of source
2527            c       NR      Location within source
2528            u       R       Uniform Resource Identifier
2529            x       NR      International Standard Serial Number
2530            3       NR      Materials specified
2531            6       NR      Linkage
2532            8       R       Field link and sequence number
2533
2534            511     R       PARTICIPANT OR PERFORMER NOTE
2535            ind1    01      Display constant controller
2536            ind2    blank   Undefined
2537            a       NR      Participant or performer note
2538            6       NR      Linkage
2539            8       R       Field link and sequence number
2540
2541            513     R       TYPE OF REPORT AND PERIOD COVERED NOTE
2542            ind1    blank   Undefined
2543            ind2    blank   Undefined
2544            a       NR      Type of report
2545            b       NR      Period covered
2546            6       NR      Linkage
2547            8       R       Field link and sequence number
2548
2549            514     NR      DATA QUALITY NOTE
2550            ind1    blank   Undefined
2551            ind2    blank   Undefined
2552            a       NR      Attribute accuracy report
2553            b       R       Attribute accuracy value
2554            c       R       Attribute accuracy explanation
2555            d       NR      Logical consistency report
2556            e       NR      Completeness report
2557            f       NR      Horizontal position accuracy report
2558            g       R       Horizontal position accuracy value
2559            h       R       Horizontal position accuracy explanation
2560            i       NR      Vertical positional accuracy report
2561            j       R       Vertical positional accuracy value
2562            k       R       Vertical positional accuracy explanation
2563            m       NR      Cloud cover
2564            u       R       Uniform Resource Identifier
2565            z       R       Display note
2566            6       NR      Linkage
2567            8       R       Field link and sequence number
2568
2569            515     R       NUMBERING PECULIARITIES NOTE
2570            ind1    blank   Undefined
2571            ind2    blank   Undefined
2572            a       NR      Numbering peculiarities note
2573            6       NR      Linkage
2574            8       R       Field link and sequence number
2575
2576            516     R       TYPE OF COMPUTER FILE OR DATA NOTE
2577            ind1    b8      Display constant controller
2578            ind2    blank   Undefined
2579            a       NR      Type of computer file or data note
2580            6       NR      Linkage
2581            8       R       Field link and sequence number
2582
2583            518     R       DATE/TIME AND PLACE OF AN EVENT NOTE
2584            ind1    blank   Undefined
2585            ind2    blank   Undefined
2586            a       NR      Date/time and place of an event note
2587            d       R       Date of event
2588            o       R       Other event information
2589            p       R       Place of event
2590            0       R       Authority record control number or standard number
2591            1       R       Real World Object URI
2592            2       R       Source of term
2593            3       NR      Materials specified
2594            6       NR      Linkage
2595            8       R       Field link and sequence number
2596
2597            520     R       SUMMARY, ETC.
2598            ind1    b012348    Display constant controller
2599            ind2    blank   Undefined
2600            a       NR      Summary, etc. note
2601            b       NR      Expansion of summary note
2602            c       NR      Assigning agency
2603            u       R       Uniform Resource Identifier
2604            2       NR      Source
2605            3       NR      Materials specified
2606            6       NR      Linkage
2607            8       R       Field link and sequence number
2608
2609            521     R       TARGET AUDIENCE NOTE
2610            ind1    b012348    Display constant controller
2611            ind2    blank   Undefined
2612            a       R       Target audience note
2613            b       NR      Source
2614            3       NR      Materials specified
2615            6       NR      Linkage
2616            8       R       Field link and sequence number
2617
2618            522     R       GEOGRAPHIC COVERAGE NOTE
2619            ind1    b8      Display constant controller
2620            ind2    blank   Undefined
2621            a       NR      Geographic coverage note
2622            6       NR      Linkage
2623            8       R       Field link and sequence number
2624
2625            524     R       PREFERRED CITATION OF DESCRIBED MATERIALS NOTE
2626            ind1    b8      Display constant controller
2627            ind2    blank   Undefined
2628            a       NR      Preferred citation of described materials note
2629            2       NR      Source of schema used
2630            3       NR      Materials specified
2631            6       NR      Linkage
2632            8       R       Field link and sequence number
2633
2634            525     R       SUPPLEMENT NOTE
2635            ind1    blank   Undefined
2636            ind2    blank   Undefined
2637            a       NR      Supplement note
2638            6       NR      Linkage
2639            8       R       Field link and sequence number
2640
2641            526     R       STUDY PROGRAM INFORMATION NOTE
2642            ind1    08      Display constant controller
2643            ind2    blank   Undefined
2644            a       NR      Program name
2645            b       NR      Interest level
2646            c       NR      Reading level
2647            d       NR      Title point value
2648            i       NR      Display text
2649            x       R       Nonpublic note
2650            z       R       Public note
2651            5       NR      Institution to which field applies
2652            6       NR      Linkage
2653            8       R       Field link and sequence number
2654
2655            530     R       ADDITIONAL PHYSICAL FORM AVAILABLE NOTE
2656            ind1    blank   Undefined
2657            ind2    blank   Undefined
2658            a       NR      Additional physical form available note
2659            b       NR      Availability source
2660            c       NR      Availability conditions
2661            d       NR      Order number
2662            u       R       Uniform Resource Identifier
2663            3       NR      Materials specified
2664            6       NR      Linkage
2665            8       R       Field link and sequence number
2666
2667            532     R       ACCESSIBILITY NOTE
2668            ind1    0128    Display constant controller
2669            ind2    blank   Undefined
2670            a       NR      Summary of accessibility
2671            6       NR      Linkage
2672            8       R       Field link and sequence number
2673
2674            533     R       REPRODUCTION NOTE
2675            ind1    blank   Undefined
2676            ind2    blank   Undefined
2677            a       NR      Type of reproduction
2678            b       R       Place of reproduction
2679            c       R       Agency responsible for reproduction
2680            d       NR      Date of reproduction
2681            e       NR      Physical description of reproduction
2682            f       R       Series statement of reproduction
2683            m       R       Dates and/or sequential designation of issues reproduced
2684            n       R       Note about reproduction
2685            3       NR      Materials specified
2686            5       NR      Institution to which field applies
2687            6       NR      Linkage
2688            7       NR      Fixed-length data elements of reproduction
2689            8       R       Field link and sequence number
2690
2691            534     R       ORIGINAL VERSION NOTE
2692            ind1    blank   Undefined
2693            ind2    blank   Undefined
2694            a       NR      Main entry of original
2695            b       NR      Edition statement of original
2696            c       NR      Publication, distribution, etc. of original
2697            e       NR      Physical description, etc. of original
2698            f       R       Series statement of original
2699            k       R       Key title of original
2700            l       NR      Location of original
2701            m       NR      Material specific details
2702            n       R       Note about original
2703            o       R       Other resource identifier
2704            p       NR      Introductory phrase
2705            t       NR      Title statement of original
2706            x       R       International Standard Serial Number
2707            z       R       International Standard Book Number
2708            3       NR      Materials specified
2709            6       NR      Linkage
2710            8       R       Field link and sequence number
2711
2712            535     R       LOCATION OF ORIGINALS/DUPLICATES NOTE
2713            ind1    12      Additional information about custodian
2714            ind2    blank   Undefined
2715            a       NR      Custodian
2716            b       R       Postal address
2717            c       R       Country
2718            d       R       Telecommunications address
2719            g       NR      Repository location code
2720            3       NR      Materials specified
2721            6       NR      Linkage
2722            8       R       Field link and sequence number
2723
2724            536     R       FUNDING INFORMATION NOTE
2725            ind1    blank   Undefined
2726            ind2    blank   Undefined
2727            a       NR      Text of note
2728            b       R       Contract number
2729            c       R       Grant number
2730            d       R       Undifferentiated number
2731            e       R       Program element number
2732            f       R       Project number
2733            g       R       Task number
2734            h       R       Work unit number
2735            6       NR      Linkage
2736            8       R       Field link and sequence number
2737
2738            538     R       SYSTEM DETAILS NOTE
2739            ind1    blank   Undefined
2740            ind2    blank   Undefined
2741            a       NR      System details note
2742            i       NR      Display text
2743            u       R       Uniform Resource Identifier
2744            3       NR      Materials specified
2745            5       NR      Institution to which field applies
2746            6       NR      Linkage
2747            8       R       Field link and sequence number
2748
2749            540     R       TERMS GOVERNING USE AND REPRODUCTION NOTE
2750            ind1    blank   Undefined
2751            ind2    blank   Undefined
2752            a       NR      Terms governing use and reproduction
2753            b       NR      Jurisdiction
2754            c       NR      Authorization
2755            d       NR      Authorized users
2756            f       R       Use and reproduction rights
2757            g       R       Availability date
2758            q       NR      Supplying agency
2759            u       R       Uniform Resource Identifier
2760            2       NR      Source of term
2761            3       NR      Materials specified
2762            5       NR      Institution to which field applies
2763            6       NR      Linkage
2764            8       R       Field link and sequence number
2765
2766            541     R       IMMEDIATE SOURCE OF ACQUISITION NOTE
2767            ind1    b01     Privacy
2768            ind2    blank   Undefined
2769            a       NR      Source of acquisition
2770            b       NR      Address
2771            c       NR      Method of acquisition
2772            d       NR      Date of acquisition
2773            e       NR      Accession number
2774            f       NR      Owner
2775            h       NR      Purchase price
2776            n       R       Extent
2777            o       R       Type of unit
2778            3       NR      Materials specified
2779            5       NR      Institution to which field applies
2780            6       NR      Linkage
2781            8       R       Field link and sequence number
2782
2783            542     R       INFORMATION RELATING TO COPYRIGHT STATUS
2784            ind1    b01     Privacy
2785            ind2    blank   Undefined
2786            a       NR      Personal creator
2787            b       NR      Personal creator death date
2788            c       NR      Corporate creator
2789            d       R       Copyright holder
2790            e       R       Copyright holder contact information
2791            f       R       Copyright statement
2792            g       NR      Copyright date
2793            h       R       Copyright renewal date
2794            i       NR      Publication date
2795            j       NR      Creation date
2796            k       R       Publisher
2797            l       NR      Copyright status
2798            m       NR      Publication status
2799            n       R       Note
2800            o       NR      Research date
2801            p       R       Country of publication or creation
2802            q       NR      Supplying agency
2803            r       NR      Jurisdiction of copyright assessment
2804            s       NR      Source of information
2805            u       R       Uniform Resource Identifier
2806            3       NR      Materials specified
2807            6       NR      Linkage
2808            8       R       Field link and sequence number
2809
2810            544     R       LOCATION OF OTHER ARCHIVAL MATERIALS NOTE
2811            ind1    b01     Relationship
2812            ind2    blank   Undefined
2813            a       R       Custodian
2814            b       R       Address
2815            c       R       Country
2816            d       R       Title
2817            e       R       Provenance
2818            n       R       Note
2819            3       NR      Materials specified
2820            6       NR      Linkage
2821            8       R       Field link and sequence number
2822
2823            545     R       BIOGRAPHICAL OR HISTORICAL DATA
2824            ind1    b01     Type of data
2825            ind2    blank   Undefined
2826            a       NR      Biographical or historical note
2827            b       NR      Expansion
2828            u       R       Uniform Resource Identifier
2829            6       NR      Linkage
2830            8       R       Field link and sequence number
2831
2832            546     R       LANGUAGE NOTE
2833            ind1    blank   Undefined
2834            ind2    blank   Undefined
2835            a       NR      Language note
2836            b       R       Information code or alphabet
2837            3       NR      Materials specified
2838            6       NR      Linkage
2839            8       R       Field link and sequence number
2840
2841            547     R       FORMER TITLE COMPLEXITY NOTE
2842            ind1    blank   Undefined
2843            ind2    blank   Undefined
2844            a       NR      Former title complexity note
2845            6       NR      Linkage
2846            8       R       Field link and sequence number
2847
2848            550     R       ISSUING BODY NOTE
2849            ind1    blank   Undefined
2850            ind2    blank   Undefined
2851            a       NR      Issuing body note
2852            6       NR      Linkage
2853            8       R       Field link and sequence number
2854
2855            552     R       ENTITY AND ATTRIBUTE INFORMATION NOTE
2856            ind1    blank   Undefined
2857            ind2    blank   Undefined
2858            a       NR      Entity type label
2859            b       NR      Entity type definition and source
2860            c       NR      Attribute label
2861            d       NR      Attribute definition and source
2862            e       R       Enumerated domain value
2863            f       R       Enumerated domain value definition and source
2864            g       NR      Range domain minimum and maximum
2865            h       NR      Codeset name and source
2866            i       NR      Unrepresentable domain
2867            j       NR      Attribute units of measurement and resolution
2868            k       NR      Beginning date and ending date of attribute values
2869            l       NR      Attribute value accuracy
2870            m       NR      Attribute value accuracy explanation
2871            n       NR      Attribute measurement frequency
2872            o       R       Entity and attribute overview
2873            p       R       Entity and attribute detail citation
2874            u       R       Uniform Resource Identifier
2875            z       R       Display note
2876            6       NR      Linkage
2877            8       R       Field link and sequence number
2878
2879            555     R       CUMULATIVE INDEX/FINDING AIDS NOTE
2880            ind1    b08     Display constant controller
2881            ind2    blank   Undefined
2882            a       NR      Cumulative index/finding aids note
2883            b       R       Availability source
2884            c       NR      Degree of control
2885            d       NR      Bibliographic reference
2886            u       R       Uniform Resource Identifier
2887            3       NR      Materials specified
2888            6       NR      Linkage
2889            8       R       Field link and sequence number
2890
2891            556     R       INFORMATION ABOUT DOCUMENTATION NOTE
2892            ind1    b8      Display constant controller
2893            ind2    blank   Undefined
2894            a       NR      Information about documentation note
2895            z       R       International Standard Book Number
2896            6       NR      Linkage
2897            8       R       Field link and sequence number
2898
2899            561     R       OWNERSHIP AND CUSTODIAL HISTORY
2900            ind1    b01     Privacy
2901            ind2    blank   Undefined
2902            a       NR      History
2903            u       R       Uniform Resource Identifier
2904            3       NR      Materials specified
2905            5       NR      Institution to which field applies
2906            6       NR      Linkage
2907            8       R       Field link and sequence number
2908
2909            562     R       COPY AND VERSION IDENTIFICATION NOTE
2910            ind1    blank   Undefined
2911            ind2    blank   Undefined
2912            a       R       Identifying markings
2913            b       R       Copy identification
2914            c       R       Version identification
2915            d       R       Presentation format
2916            e       R       Number of copies
2917            3       NR      Materials specified
2918            5       NR      Institution to which field applies
2919            6       NR      Linkage
2920            8       R       Field link and sequence number
2921
2922            563     R       BINDING INFORMATION
2923            ind1    blank   Undefined
2924            ind2    blank   Undefined
2925            a       NR      Binding note
2926            u       R       Uniform Resource Identifier
2927            3       NR      Materials specified
2928            5       NR      Institution to which field applies
2929            6       NR      Linkage
2930            8       R       Field link and sequence number
2931
2932            565     R       CASE FILE CHARACTERISTICS NOTE
2933            ind1    b08     Display constant controller
2934            ind2    blank   Undefined
2935            a       NR      Number of cases/variables
2936            b       R       Name of variable
2937            c       R       Unit of analysis
2938            d       R       Universe of data
2939            e       R       Filing scheme or code
2940            3       NR      Materials specified
2941            6       NR      Linkage
2942            8       R       Field link and sequence number
2943
2944            567     R       METHODOLOGY NOTE
2945            ind1    b8      Display constant controller
2946            ind2    blank   Undefined
2947            a       NR      Methodology note
2948            b       R       Controlled term
2949            0       R       Authority record control number or standard number
2950            1       R       Real World Object URI
2951            2       NR      Source of term
2952            6       NR      Linkage
2953            8       R       Field link and sequence number
2954
2955            580     R       LINKING ENTRY COMPLEXITY NOTE
2956            ind1    blank   Undefined
2957            ind2    blank   Undefined
2958            a       NR      Linking entry complexity note
2959            6       NR      Linkage
2960            8       R       Field link and sequence number
2961
2962            581     R       PUBLICATIONS ABOUT DESCRIBED MATERIALS NOTE
2963            ind1    b8      Display constant controller
2964            ind2    blank   Undefined
2965            a       NR      Publications about described materials note
2966            z       R       International Standard Book Number
2967            3       NR      Materials specified
2968            6       NR      Linkage
2969            8       R       Field link and sequence number
2970
2971            583     R       ACTION NOTE
2972            ind1    b01     Privacy
2973            ind2    blank   Undefined
2974            a       NR      Action
2975            b       R       Action identification
2976            c       R       Time/date of action
2977            d       R       Action interval
2978            e       R       Contingency for action
2979            f       R       Authorization
2980            h       R       Jurisdiction
2981            i       R       Method of action
2982            j       R       Site of action
2983            k       R       Action agent
2984            l       R       Status
2985            n       R       Extent
2986            o       R       Type of unit
2987            u       R       Uniform Resource Identifier
2988            x       R       Nonpublic note
2989            z       R       Public note
2990            2       NR      Source of term
2991            3       NR      Materials specified
2992            5       NR      Institution to which field applies
2993            6       NR      Linkage
2994            8       R       Field link and sequence number
2995
2996            584     R       ACCUMULATION AND FREQUENCY OF USE NOTE
2997            ind1    blank   Undefined
2998            ind2    blank   Undefined
2999            a       R       Accumulation
3000            b       R       Frequency of use
3001            3       NR      Materials specified
3002            5       NR      Institution to which field applies
3003            6       NR      Linkage
3004            8       R       Field link and sequence number
3005
3006            585     R       EXHIBITIONS NOTE
3007            ind1    blank   Undefined
3008            ind2    blank   Undefined
3009            a       NR      Exhibitions note
3010            3       NR      Materials specified
3011            5       NR      Institution to which field applies
3012            6       NR      Linkage
3013            8       R       Field link and sequence number
3014
3015            586     R       AWARDS NOTE
3016            ind1    b8      Display constant controller
3017            ind2    blank   Undefined
3018            a       NR      Awards note
3019            3       NR      Materials specified
3020            6       NR      Linkage
3021            8       R       Field link and sequence number
3022
3023            588     R       SOURCE OF DESCRIPTION NOTE
3024            ind1    b01     Display constant controller
3025            ind2    blank   Undefined
3026            a       NR      Source of description note
3027            5       NR      Institution to which field applies
3028            6       NR      Linkage
3029            8       R       Field link and sequence number
3030
3031            600     R       SUBJECT ADDED ENTRY--PERSONAL NAME
3032            ind1    013     Type of personal name entry element
3033            ind2    01234567    Thesaurus
3034            a       NR      Personal name
3035            b       NR      Numeration
3036            c       R       Titles and other words associated with a name
3037            d       NR      Dates associated with a name
3038            e       R       Relator term
3039            f       NR      Date of a work
3040            g       R       Miscellaneous information
3041            h       NR      Medium
3042            j       R       Attribution qualifier
3043            k       R       Form subheading
3044            l       NR      Language of a work
3045            m       R       Medium of performance for music
3046            n       R       Number of part/section of a work
3047            o       NR      Arranged statement for music
3048            p       R       Name of part/section of a work
3049            q       NR      Fuller form of name
3050            r       NR      Key for music
3051            s       R       Version
3052            t       NR      Title of a work
3053            u       NR      Affiliation
3054            v       R       Form subdivision
3055            x       R       General subdivision
3056            y       R       Chronological subdivision
3057            z       R       Geographic subdivision
3058            0       R       Authority record control number or standard number
3059            1       R       Real World Object URI
3060            2       NR      Source of heading or term
3061            3       NR      Materials specified
3062            4       R       Relationship
3063            6       NR      Linkage
3064            8       R       Field link and sequence number
3065
3066            610     R       SUBJECT ADDED ENTRY--CORPORATE NAME
3067            ind1    012     Type of corporate name entry element
3068            ind2    01234567    Thesaurus
3069            a       NR      Corporate name or jurisdiction name as entry element
3070            b       R       Subordinate unit
3071            c       R       Location of meeting
3072            d       R       Date of meeting or treaty signing
3073            e       R       Relator term
3074            f       NR      Date of a work
3075            g       R       Miscellaneous information
3076            h       NR      Medium
3077            k       R       Form subheading
3078            l       NR      Language of a work
3079            m       R       Medium of performance for music
3080            n       R       Number of part/section/meeting
3081            o       NR      Arranged statement for music
3082            p       R       Name of part/section of a work
3083            r       NR      Key for music
3084            s       R       Version
3085            t       NR      Title of a work
3086            u       NR      Affiliation
3087            v       R       Form subdivision
3088            x       R       General subdivision
3089            y       R       Chronological subdivision
3090            z       R       Geographic subdivision
3091            0       R       Authority record control number or standard number
3092            1       R       Real World Object URI
3093            2       NR      Source of heading or term
3094            3       NR      Materials specified
3095            4       R       Relationship
3096            6       NR      Linkage
3097            8       R       Field link and sequence number
3098
3099            611     R       SUBJECT ADDED ENTRY--MEETING NAME
3100            ind1    012     Type of meeting name entry element
3101            ind2    01234567    Thesaurus
3102            a       NR      Meeting name or jurisdiction name as entry element
3103            c       R       Location of meeting
3104            d       R       Date of meeting or treaty signing
3105            e       R       Subordinate unit
3106            f       NR      Date of a work
3107            g       R       Miscellaneous information
3108            h       NR      Medium
3109            j       R       Relator term
3110            k       R       Form subheading
3111            l       NR      Language of a work
3112            n       R       Number of part/section/meeting
3113            p       R       Name of part/section of a work
3114            q       NR      Name of meeting following jurisdiction name entry element
3115            s       R       Version
3116            t       NR      Title of a work
3117            u       NR      Affiliation
3118            v       R       Form subdivision
3119            x       R       General subdivision
3120            y       R       Chronological subdivision
3121            z       R       Geographic subdivision
3122            0       R       Authority record control number or standard number
3123            1       R       Real World Object URI
3124            2       NR      Source of heading or term
3125            3       NR      Materials specified
3126            4       R       Relationship
3127            6       NR      Linkage
3128            8       R       Field link and sequence number
3129
3130            630     R       SUBJECT ADDED ENTRY--UNIFORM TITLE
3131            ind1    0-9     Nonfiling characters
3132            ind2    01234567    Thesaurus
3133            a       NR      Uniform title
3134            d       R       Date of treaty signing
3135            e       R       Relator term
3136            f       NR      Date of a work
3137            g       R       Miscellaneous information
3138            h       NR      Medium
3139            k       R       Form subheading
3140            l       NR      Language of a work
3141            m       R       Medium of performance for music
3142            n       R       Number of part/section of a work
3143            o       NR      Arranged statement for music
3144            p       R       Name of part/section of a work
3145            r       NR      Key for music
3146            s       R       Version
3147            t       NR      Title of a work
3148            v       R       Form subdivision
3149            x       R       General subdivision
3150            y       R       Chronological subdivision
3151            z       R       Geographic subdivision
3152            0       R       Authority record control number or standard number
3153            1       R       Real World Object URI
3154            2       NR      Source of heading or term
3155            3       NR      Materials specified
3156            4       R       Relationship
3157            6       NR      Linkage
3158            8       R       Field link and sequence number
3159
3160            647     R       SUBJECT ADDED ENTRY--NAMED EVENT
3161            ind1    blank   Undefined
3162            ind2    01234567    Thesaurus
3163            a       NR      Named event
3164            c       R       Location of named event
3165            d       NR      Date of named event
3166            g       R       Miscellaneous information
3167            v       R       Form subdivision
3168            x       R       General subdivision
3169            y       R       Chronological subdivision
3170            z       R       Geographic subdivision
3171            0       R       Authority record control number or standard number
3172            1       R       Real World Object URI
3173            2       NR      Source of heading or term
3174            3       NR      Materials specified
3175            6       NR      Linkage
3176            8       R       Field link and sequence number
3177
3178            648     R       SUBJECT ADDED ENTRY--CHRONOLOGICAL TERM
3179            ind1    blank   Undefined
3180            ind2    01234567    Thesaurus
3181            a       NR      Chronological term
3182            v       R       Form subdivision
3183            x       R       General subdivision
3184            y       R       Chronological subdivision
3185            z       R       Geographic subdivision
3186            0       R       Authority record control number or standard number
3187            1       R       Real World Object URI
3188            2       NR      Source of heading or term
3189            3       NR      Materials specified
3190            6       NR      Linkage
3191            8       R       Field link and sequence number
3192
3193            650     R       SUBJECT ADDED ENTRY--TOPICAL TERM
3194            ind1    b012    Level of subject
3195            ind2    01234567    Thesaurus
3196            a       NR      Topical term or geographic name as entry element
3197            b       NR      Topical term following geographic name as entry element
3198            c       NR      Location of event
3199            d       NR      Active dates
3200            e       NR      Relator term
3201            g       R       Miscellaneous information
3202            v       R       Form subdivision
3203            x       R       General subdivision
3204            y       R       Chronological subdivision
3205            z       R       Geographic subdivision
3206            0       R       Authority record control number or standard number
3207            1       R       Real World Object URI
3208            2       NR      Source of heading or term
3209            3       NR      Materials specified
3210            4       R       Relationship
3211            6       NR      Linkage
3212            8       R       Field link and sequence number
3213
3214            651     R       SUBJECT ADDED ENTRY--GEOGRAPHIC NAME
3215            ind1    blank   Undefined
3216            ind2    01234567    Thesaurus
3217            a       NR      Geographic name
3218            e       R       Relator term
3219            g       R       Miscellaneous information
3220            v       R       Form subdivision
3221            x       R       General subdivision
3222            y       R       Chronological subdivision
3223            z       R       Geographic subdivision
3224            0       R       Authority record control number or standard number
3225            1       R       Real World Object URI
3226            2       NR      Source of heading or term
3227            3       NR      Materials specified
3228            4       R       Relationship
3229            6       NR      Linkage
3230            8       R       Field link and sequence number
3231
3232            653     R       INDEX TERM--UNCONTROLLED
3233            ind1    b012    Level of index term
3234            ind2    b0123456   Type of term or name
3235            a       R       Uncontrolled term
3236            6       NR      Linkage
3237            8       R       Field link and sequence number
3238
3239            654     R       SUBJECT ADDED ENTRY--FACETED TOPICAL TERMS
3240            ind1    b012    Level of subject
3241            ind2    blank   Undefined
3242            a       R       Focus term
3243            b       R       Non-focus term
3244            c       R       Facet/hierarchy designation
3245            e       R       Relator term
3246            v       R       Form subdivision
3247            y       R       Chronological subdivision
3248            z       R       Geographic subdivision
3249            0       R       Authority record control number or standard number
3250            1       R       Real World Object URI
3251            2       NR      Source of heading or term
3252            3       NR      Materials specified
3253            4       R       Relationship
3254            6       NR      Linkage
3255            8       R       Field link and sequence number
3256
3257            655     R       INDEX TERM--GENRE/FORM
3258            ind1    b0      Type of heading
3259            ind2    01234567    Thesaurus
3260            a       NR      Genre/form data or focus term
3261            b       R       Non-focus term
3262            c       R       Facet/hierarchy designation
3263            v       R       Form subdivision
3264            x       R       General subdivision
3265            y       R       Chronological subdivision
3266            z       R       Geographic subdivision
3267            0       R       Authority record control number or standard number
3268            1       R       Real World Object URI
3269            2       NR      Source of term
3270            3       NR      Materials specified
3271            5       NR      Institution to which field applies
3272            6       NR      Linkage
3273            8       R       Field link and sequence number
3274
3275            656     R       INDEX TERM--OCCUPATION
3276            ind1    blank   Undefined
3277            ind2    7       Source of term
3278            a       NR      Occupation
3279            k       NR      Form
3280            v       R       Form subdivision
3281            x       R       General subdivision
3282            y       R       Chronological subdivision
3283            z       R       Geographic subdivision
3284            0       R       Authority record control number or standard number
3285            1       R       Real World Object URI
3286            2       NR      Source of term
3287            3       NR      Materials specified
3288            6       NR      Linkage
3289            8       R       Field link and sequence number
3290
3291            657     R       INDEX TERM--FUNCTION
3292            ind1    blank   Undefined
3293            ind2    7       Source of term
3294            a       NR      Function
3295            v       R       Form subdivision
3296            x       R       General subdivision
3297            y       R       Chronological subdivision
3298            z       R       Geographic subdivision
3299            0       R       Authority record control number or standard number
3300            1       R       Real World Object URI
3301            2       NR      Source of term
3302            3       NR      Materials specified
3303            6       NR      Linkage
3304            8       R       Field link and sequence number
3305
3306            658     R       INDEX TERM--CURRICULUM OBJECTIVE
3307            ind1    blank   Undefined
3308            ind2    blank   Undefined
3309            a       NR      Main curriculum objective
3310            b       R       Subordinate curriculum objective
3311            c       NR      Curriculum code
3312            d       NR      Correlation factor
3313            2       NR      Source of term or code
3314            6       NR      Linkage
3315            8       R       Field link and sequence number
3316
3317            662     R       SUBJECT ADDED ENTRY--HIERARCHICAL PLACE NAME
3318            ind1    blank   Undefined
3319            ind2    blank   Undefined
3320            a       R       Country or larger entity
3321            b       NR      First-order political jurisdiction
3322            c       R       Intermediate political jurisdiction
3323            d       NR      City
3324            e       R       Relator term
3325            f       R       City subsection
3326            g       R       Other nonjurisdictional geographic region and feature
3327            h       R       Extraterrestrial area
3328            0       R       Authority record control number or standard number
3329            1       R       Real World Object URI
3330            2       NR      Source of heading or term
3331            4       R       Relationship
3332            6       NR      Linkage
3333            8       R       Field link and sequence number
3334
3335            688     R       SUBJECT ADDED ENTRY--TYPE OF ENTITY UNSPECIFIED
3336            ind1    blank   Undefined
3337            ind2    b7      Source of name, title, or term
3338            a       NR      Name, title, or term
3339            e       R       Relator term
3340            g       R       Miscellaneous information
3341            0       R       Authority record control number or standard number
3342            1       R       Real World Object URI
3343            2       NR      Source of name, title, or term
3344            3       NR      Materials specified
3345            4       R       Relationship
3346            6       NR      Linkage
3347            8       R       Field link and sequence number
3348
3349            700     R       ADDED ENTRY--PERSONAL NAME
3350            ind1    013     Type of personal name entry element
3351            ind2    b2      Type of added entry
3352            a       NR      Personal name
3353            b       NR      Numeration
3354            c       R       Titles and other words associated with a name
3355            d       NR      Dates associated with a name
3356            e       R       Relator term
3357            f       NR      Date of a work
3358            g       R       Miscellaneous information
3359            h       NR      Medium
3360            i       R       Relationship information
3361            j       R       Attribution qualifier
3362            k       R       Form subheading
3363            l       NR      Language of a work
3364            m       R       Medium of performance for music
3365            n       R       Number of part/section of a work
3366            o       NR      Arranged statement for music
3367            p       R       Name of part/section of a work
3368            q       NR      Fuller form of name
3369            r       NR      Key for music
3370            s       R       Version
3371            t       NR      Title of a work
3372            u       NR      Affiliation
3373            x       NR      International Standard Serial Number
3374            0       R       Authority record control number or standard number
3375            1       R       Real World Object URI
3376            2       NR      Source of heading or term
3377            3       NR      Materials specified
3378            4       R       Relationship
3379            5       NR      Institution to which field applies
3380            6       NR      Linkage
3381            8       R       Field link and sequence number
3382
3383            710     R       ADDED ENTRY--CORPORATE NAME
3384            ind1    012     Type of corporate name entry element
3385            ind2    b2      Type of added entry
3386            a       NR      Corporate name or jurisdiction name as entry element
3387            b       R       Subordinate unit
3388            c       R       Location of meeting
3389            d       R       Date of meeting or treaty signing
3390            e       R       Relator term
3391            f       NR      Date of a work
3392            g       R       Miscellaneous information
3393            h       NR      Medium
3394            i       R       Relationship information
3395            k       R       Form subheading
3396            l       NR      Language of a work
3397            m       R       Medium of performance for music
3398            n       R       Number of part/section/meeting
3399            o       NR      Arranged statement for music
3400            p       R       Name of part/section of a work
3401            r       NR      Key for music
3402            s       R       Version
3403            t       NR      Title of a work
3404            u       NR      Affiliation
3405            x       NR      International Standard Serial Number
3406            0       R       Authority record control number or standard number
3407            1       R       Real World Object URI
3408            2       NR      Source of heading or term
3409            3       NR      Materials specified
3410            4       R       Relationship
3411            5       NR      Institution to which field applies
3412            6       NR      Linkage
3413            8       R       Field link and sequence number
3414
3415            711     R       ADDED ENTRY--MEETING NAME
3416            ind1    012     Type of meeting name entry element
3417            ind2    b2      Type of added entry
3418            a       NR      Meeting name or jurisdiction name as entry element
3419            c       R       Location of meeting
3420            d       R       Date of meeting or treaty signing
3421            e       R       Subordinate unit
3422            f       NR      Date of a work
3423            g       R       Miscellaneous information
3424            h       NR      Medium
3425            i       R       Relationship information
3426            j       R       Relator term
3427            k       R       Form subheading
3428            l       NR      Language of a work
3429            n       R       Number of part/section/meeting
3430            p       R       Name of part/section of a work
3431            q       NR      Name of meeting following jurisdiction name entry element
3432            s       R       Version
3433            t       NR      Title of a work
3434            u       NR      Affiliation
3435            x       NR      International Standard Serial Number
3436            0       R       Authority record control number or standard number
3437            1       R       Real World Object URI
3438            2       NR      Source of heading or term
3439            3       NR      Materials specified
3440            4       R       Relationship
3441            5       NR      Institution to which field applies
3442            6       NR      Linkage
3443            8       R       Field link and sequence number
3444
3445            720     R       ADDED ENTRY--UNCONTROLLED NAME
3446            ind1    b12     Type of name
3447            ind2    blank   Undefined
3448            a       NR      Name
3449            e       R       Relator term
3450            4       R       Relationship
3451            6       NR      Linkage
3452            8       R       Field link and sequence number
3453
3454            730     R       ADDED ENTRY--UNIFORM TITLE
3455            ind1    0-9     Nonfiling characters
3456            ind2    b2      Type of added entry
3457            a       NR      Uniform title
3458            d       R       Date of treaty signing
3459            f       NR      Date of a work
3460            g       R       Miscellaneous information
3461            h       NR      Medium
3462            i       R       Relationship information
3463            k       R       Form subheading
3464            l       NR      Language of a work
3465            m       R       Medium of performance for music
3466            n       R       Number of part/section of a work
3467            o       NR      Arranged statement for music
3468            p       R       Name of part/section of a work
3469            r       NR      Key for music
3470            s       R       Version
3471            t       NR      Title of a work
3472            x       NR      International Standard Serial Number
3473            0       R       Authority record control number or standard number
3474            1       R       Real World Object URI
3475            2       NR      Source of heading or term
3476            3       NR      Materials specified
3477            4       R       Relationship
3478            5       NR      Institution to which field applies
3479            6       NR      Linkage
3480            8       R       Field link and sequence number
3481
3482            740     R       ADDED ENTRY--UNCONTROLLED RELATED/ANALYTICAL TITLE
3483            ind1    0-9     Nonfiling characters
3484            ind2    b2      Type of added entry
3485            a       NR      Uncontrolled related/analytical title
3486            h       NR      Medium
3487            n       R       Number of part/section of a work
3488            p       R       Name of part/section of a work
3489            5       NR      Institution to which field applies
3490            6       NR      Linkage
3491            8       R       Field link and sequence number
3492
3493            751     R       ADDED ENTRY--GEOGRAPHIC NAME
3494            ind1    blank   Undefined
3495            ind2    blank   Undefined
3496            a       NR      Geographic name
3497            e       R       Relator term
3498            g       R       Miscellaneous information
3499            0       R       Authority record control number or standard number
3500            1       R       Real World Object URI
3501            2       NR      Source of heading or term
3502            3       NR      Materials specified
3503            4       R       Relationship
3504            6       NR      Linkage
3505            8       R       Field link and sequence number
3506
3507            752     R       ADDED ENTRY--HIERARCHICAL PLACE NAME
3508            ind1    blank   Undefined
3509            ind2    blank   Undefined
3510            a       R       Country or larger entity
3511            b       NR      First-order political jurisdiction
3512            c       R       Intermediate political jurisdiction
3513            d       NR      City
3514            e       R       Relator term
3515            f       R       City subsection
3516            g       R       Other nonjurisdictional geographic region and feature
3517            h       R       Extraterrestrial area
3518            0       R       Authority record control number or standard number
3519            1       R       Real World Object URI
3520            2       NR      Source of heading or term
3521            4       R       Relationship
3522            6       NR      Linkage
3523            8       R       Field link and sequence number
3524
3525            753     R       SYSTEM DETAILS ACCESS TO COMPUTER FILES
3526            ind1    blank   Undefined
3527            ind2    blank   Undefined
3528            a       NR      Make and model of machine
3529            b       NR      Programming language
3530            c       NR      Operating system
3531            0       R       Authority record control number or standard number
3532            1       R       Real World Object URI
3533            2       NR      Source of term
3534            6       NR      Linkage
3535            8       R       Field link and sequence number
3536
3537            754     R       ADDED ENTRY--TAXONOMIC IDENTIFICATION
3538            ind1    blank   Undefined
3539            ind2    blank   Undefined
3540            a       R       Taxonomic name
3541            c       R       Taxonomic category
3542            d       R       Common or alternative name
3543            x       R       Non-public note
3544            z       R       Public note
3545            0       R       Authority record control number or standard number
3546            1       R       Real World Object URI
3547            2       NR      Source of taxonomic identification
3548            6       NR      Linkage
3549            8       R       Field link and sequence number
3550
3551            758     R       RESOURCE IDENTIFIER
3552            ind1    blank   Undefined
3553            ind2    blank   Undefined
3554            a       NR      Label
3555            i       R       Relationship information
3556            0       R       Authority record control number or standard number
3557            1       R       Real World Object URI
3558            2       NR      Source of heading or term
3559            3       NR      Materials specified
3560            4       R       Relationship
3561            5       NR      Institution to which field applies
3562            6       NR      Linkage
3563            8       R       Field link and sequence number
3564
3565            760     R       MAIN SERIES ENTRY
3566            ind1    01      Note controller
3567            ind2    b8      Display constant controller
3568            a       NR      Main entry heading
3569            b       NR      Edition
3570            c       NR      Qualifying information
3571            d       NR      Place, publisher, and date of publication
3572            g       R       Related parts
3573            h       NR      Physical description
3574            i       R       Relationship information
3575            m       NR      Material-specific details
3576            n       R       Note
3577            o       R       Other item identifier
3578            s       NR      Uniform title
3579            t       NR      Title
3580            w       R       Record control number
3581            x       NR      International Standard Serial Number
3582            y       NR      CODEN designation
3583            4       R       Relationship
3584            6       NR      Linkage
3585            7       NR      Control subfield
3586            8       R       Field link and sequence number
3587
3588            762     R       SUBSERIES ENTRY
3589            ind1    01      Note controller
3590            ind2    b8      Display constant controller
3591            a       NR      Main entry heading
3592            b       NR      Edition
3593            c       NR      Qualifying information
3594            d       NR      Place, publisher, and date of publication
3595            g       R       Related parts
3596            h       NR      Physical description
3597            i       R       Relationship information
3598            m       NR      Material-specific details
3599            n       R       Note
3600            o       R       Other item identifier
3601            s       NR      Uniform title
3602            t       NR      Title
3603            w       R       Record control number
3604            x       NR      International Standard Serial Number
3605            y       NR      CODEN designation
3606            4       R       Relationship
3607            6       NR      Linkage
3608            7       NR      Control subfield
3609            8       R       Field link and sequence number
3610
3611            765     R       ORIGINAL LANGUAGE ENTRY
3612            ind1    01      Note controller
3613            ind2    b8      Display constant controller
3614            a       NR      Main entry heading
3615            b       NR      Edition
3616            c       NR      Qualifying information
3617            d       NR      Place, publisher, and date of publication
3618            g       R       Related parts
3619            h       NR      Physical description
3620            i       R       Relationship information
3621            k       R       Series data for related item
3622            m       NR      Material-specific details
3623            n       R       Note
3624            o       R       Other item identifier
3625            r       R       Report number
3626            s       NR      Uniform title
3627            t       NR      Title
3628            u       NR      Standard Technical Report Number
3629            w       R       Record control number
3630            x       NR      International Standard Serial Number
3631            y       NR      CODEN designation
3632            z       R       International Standard Book Number
3633            4       R       Relationship
3634            6       NR      Linkage
3635            7       NR      Control subfield
3636            8       R       Field link and sequence number
3637
3638            767     R       TRANSLATION ENTRY
3639            ind1    01      Note controller
3640            ind2    b8      Display constant controller
3641            a       NR      Main entry heading
3642            b       NR      Edition
3643            c       NR      Qualifying information
3644            d       NR      Place, publisher, and date of publication
3645            g       R       Related parts
3646            h       NR      Physical description
3647            i       R       Relationship information
3648            k       R       Series data for related item
3649            m       NR      Material-specific details
3650            n       R       Note
3651            o       R       Other item identifier
3652            r       R       Report number
3653            s       NR      Uniform title
3654            t       NR      Title
3655            u       NR      Standard Technical Report Number
3656            w       R       Record control number
3657            x       NR      International Standard Serial Number
3658            y       NR      CODEN designation
3659            z       R       International Standard Book Number
3660            4       R       Relationship
3661            6       NR      Linkage
3662            7       NR      Control subfield
3663            8       R       Field link and sequence number
3664
3665            770     R       SUPPLEMENT/SPECIAL ISSUE ENTRY
3666            ind1    01      Note controller
3667            ind2    b8      Display constant controller
3668            a       NR      Main entry heading
3669            b       NR      Edition
3670            c       NR      Qualifying information
3671            d       NR      Place, publisher, and date of publication
3672            g       R       Related parts
3673            h       NR      Physical description
3674            i       R       Relationship information
3675            k       R       Series data for related item
3676            m       NR      Material-specific details
3677            n       R       Note
3678            o       R       Other item identifier
3679            r       R       Report number
3680            s       NR      Uniform title
3681            t       NR      Title
3682            u       NR      Standard Technical Report Number
3683            w       R       Record control number
3684            x       NR      International Standard Serial Number
3685            y       NR      CODEN designation
3686            z       R       International Standard Book Number
3687            4       R       Relationship
3688            6       NR      Linkage
3689            7       NR      Control subfield
3690            8       R       Field link and sequence number
3691
3692            772     R       SUPPLEMENT PARENT ENTRY
3693            ind1    01      Note controller
3694            ind2    b08     Display constant controller
3695            a       NR      Main entry heading
3696            b       NR      Edition
3697            c       NR      Qualifying information
3698            d       NR      Place, publisher, and date of publication
3699            g       R       Related parts
3700            h       NR      Physical description
3701            i       R       Relationship information
3702            k       R       Series data for related item
3703            m       NR      Material-specific details
3704            n       R       Note
3705            o       R       Other item identifier
3706            r       R       Report number
3707            s       NR      Uniform title
3708            t       NR      Title
3709            u       NR      Standard Technical Report Number
3710            w       R       Record control number
3711            x       NR      International Standard Serial Number
3712            y       NR      CODEN designation
3713            z       R       International Stan dard Book Number
3714            4       R       Relationship
3715            6       NR      Linkage
3716            7       NR      Control subfield
3717            8       R       Field link and sequence number
3718
3719            773     R       HOST ITEM ENTRY
3720            ind1    01      Note controller
3721            ind2    b8      Display constant controller
3722            a       NR      Main entry heading
3723            b       NR      Edition
3724            d       NR      Place, publisher, and date of publication
3725            g       R       Related parts
3726            h       NR      Physical description
3727            i       R       Relationship information
3728            k       R       Series data for related item
3729            m       NR      Material-specific details
3730            n       R       Note
3731            o       R       Other item identifier
3732            p       NR      Abbreviated title
3733            q       NR      Enumeration and first page
3734            r       R       Report number
3735            s       NR      Uniform title
3736            t       NR      Title
3737            u       NR      Standard Technical Report Number
3738            w       R       Record control number
3739            x       NR      International Standard Serial Number
3740            y       NR      CODEN designation
3741            z       R       International Standard Book Number
3742            3       NR      Materials specified
3743            4       R       Relationship
3744            6       NR      Linkage
3745            7       NR      Control subfield
3746            8       R       Field link and sequence number
3747
3748            774     R       CONSTITUENT UNIT ENTRY
3749            ind1    01      Note controller
3750            ind2    b8      Display constant controller
3751            a       NR      Main entry heading
3752            b       NR      Edition
3753            c       NR      Qualifying information
3754            d       NR      Place, publisher, and date of publication
3755            g       R       Related parts
3756            h       NR      Physical description
3757            i       R       Relationship information
3758            k       R       Series data for related item
3759            m       NR      Material-specific details
3760            n       R       Note
3761            o       R       Other item identifier
3762            r       R       Report number
3763            s       NR      Uniform title
3764            t       NR      Title
3765            u       NR      Standard Technical Report Number
3766            w       R       Record control number
3767            x       NR      International Standard Serial Number
3768            y       NR      CODEN designation
3769            z       R       International Standard Book Number
3770            4       R       Relationship
3771            6       NR      Linkage
3772            7       NR      Control subfield
3773            8       R       Field link and sequence number
3774
3775            775     R       OTHER EDITION ENTRY
3776            ind1    01      Note controller
3777            ind2    b8      Display constant controller
3778            a       NR      Main entry heading
3779            b       NR      Edition
3780            c       NR      Qualifying information
3781            d       NR      Place, publisher, and date of publication
3782            e       NR      Language code
3783            f       NR      Country code
3784            g       R       Related parts
3785            h       NR      Physical description
3786            i       R       Relationship information
3787            k       R       Series data for related item
3788            m       NR      Material-specific details
3789            n       R       Note
3790            o       R       Other item identifier
3791            r       R       Report number
3792            s       NR      Uniform title
3793            t       NR      Title
3794            u       NR      Standard Technical Report Number
3795            w       R       Record control number
3796            x       NR      International Standard Serial Number
3797            y       NR      CODEN designation
3798            z       R       International Standard Book Number
3799            4       R       Relationship
3800            6       NR      Linkage
3801            7       NR      Control subfield
3802            8       R       Field link and sequence number
3803
3804            776     R       ADDITIONAL PHYSICAL FORM ENTRY
3805            ind1    01      Note controller
3806            ind2    b8      Display constant controller
3807            a       NR      Main entry heading
3808            b       NR      Edition
3809            c       NR      Qualifying information
3810            d       NR      Place, publisher, and date of publication
3811            g       R       Related parts
3812            h       NR      Physical description
3813            i       R       Relationship information
3814            k       R       Series data for related item
3815            m       NR      Material-specific details
3816            n       R       Note
3817            o       R       Other item identifier
3818            r       R       Report number
3819            s       NR      Uniform title
3820            t       NR      Title
3821            u       NR      Standard Technical Report Number
3822            w       R       Record control number
3823            x       NR      International Standard Serial Number
3824            y       NR      CODEN designation
3825            z       R       International Standard Book Number
3826            4       R       Relationship
3827            6       NR      Linkage
3828            7       NR      Control subfield
3829            8       R       Field link and sequence number
3830
3831            777     R       ISSUED WITH ENTRY
3832            ind1    01      Note controller
3833            ind2    b8      Display constant controller
3834            a       NR      Main entry heading
3835            b       NR      Edition
3836            c       NR      Qualifying information
3837            d       NR      Place, publisher, and date of publication
3838            g       R       Related parts
3839            h       NR      Physical description
3840            i       R       Relationship information
3841            k       R       Series data for related item
3842            m       NR      Material-specific details
3843            n       R       Note
3844            o       R       Other item identifier
3845            r       R       Report number
3846            s       NR      Uniform title
3847            t       NR      Title
3848            u       NR      Standard Technical Report Number
3849            w       R       Record control number
3850            x       NR      International Standard Serial Number
3851            y       NR      CODEN designation
3852            z       R       International Standard Book Number
3853            4       R       Relationship
3854            6       NR      Linkage
3855            7       NR      Control subfield
3856            8       R       Field link and sequence number
3857
3858            780     R       PRECEDING ENTRY
3859            ind1    01      Note controller
3860            ind2    01234567    Type of relationship
3861            a       NR      Main entry heading
3862            b       NR      Edition
3863            c       NR      Qualifying information
3864            d       NR      Place, publisher, and date of publication
3865            g       R       Related parts
3866            h       NR      Physical description
3867            i       R       Relationship information
3868            k       R       Series data for related item
3869            m       NR      Material-specific details
3870            n       R       Note
3871            o       R       Other item identifier
3872            r       R       Report number
3873            s       NR      Uniform title
3874            t       NR      Title
3875            u       NR      Standard Technical Report Number
3876            w       R       Record control number
3877            x       NR      International Standard Serial Number
3878            y       NR      CODEN designation
3879            z       R       International Standard Book Number
3880            4       R       Relationship
3881            6       NR      Linkage
3882            7       NR      Control subfield
3883            8       R       Field link and sequence number
3884
3885            785     R       SUCCEEDING ENTRY
3886            ind1    01      Note controller
3887            ind2    012345678    Type of relationship
3888            a       NR      Main entry heading
3889            b       NR      Edition
3890            c       NR      Qualifying information
3891            d       NR      Place, publisher, and date of publication
3892            g       R       Related parts
3893            h       NR      Physical description
3894            i       R       Relationship information
3895            k       R       Series data for related item
3896            m       NR      Material-specific details
3897            n       R       Note
3898            o       R       Other item identifier
3899            r       R       Report number
3900            s       NR      Uniform title
3901            t       NR      Title
3902            u       NR      Standa rd Technical Report Number
3903            w       R       Record control number
3904            x       NR      International Standard Serial Number
3905            y       NR      CODEN designation
3906            z       R       International Standard Book Number
3907            4       R       Relationship
3908            6       NR      Linkage
3909            7       NR      Control subfield
3910            8       R       Field link and sequence number
3911
3912            786     R       DATA SOURCE ENTRY
3913            ind1    01      Note controller
3914            ind2    b8      Display constant controller
3915            a       NR      Main entry heading
3916            b       NR      Edition
3917            c       NR      Qualifying information
3918            d       NR      Place, publisher, and date of publication
3919            g       R       Related parts
3920            h       NR      Physical description
3921            i       R       Relationship information
3922            j       NR      Period of content
3923            k       R       Series data for related item
3924            m       NR      Material-specific details
3925            n       R       Note
3926            o       R       Other item identifier
3927            p       NR      Abbreviated title
3928            r       R       Report number
3929            s       NR      Uniform title
3930            t       NR      Title
3931            u       NR      Standard Technical Report Number
3932            v       NR      Source Contribution
3933            w       R       Record control number
3934            x       NR      International Standard Serial Number
3935            y       NR      CODEN designation
3936            z       R       International Standard Book Number
3937            4       R       Relationship
3938            6       NR      Linkage
3939            7       NR      Control subfield
3940            8       R       Field link and sequence number
3941
3942            787     R       OTHER RELATIONSHIP ENTRY
3943            ind1    01      Note controller
3944            ind2    b8      Display constant controller
3945            a       NR      Main entry heading
3946            b       NR      Edition
3947            c       NR      Qualifying information
3948            d       NR      Place, publisher, and date of publication
3949            g       R       Related parts
3950            h       NR      Physical description
3951            i       R       Relationship information
3952            k       R       Series data for related item
3953            m       NR      Material-specific details
3954            n       R       Note
3955            o       R       Other item identifier
3956            r       R       Report number
3957            s       NR      Uniform title
3958            t       NR      Title
3959            u       NR      Standard Technical Report Number
3960            w       R       Record control number
3961            x       NR      International Standard Serial Number
3962            y       NR      CODEN designation
3963            z       R       International Standard Book Number
3964            4       R       Relationship
3965            6       NR      Linkage
3966            7       NR      Control subfield
3967            8       R       Field link and sequence number
3968
3969            800     R       SERIES ADDED ENTRY--PERSONAL NAME
3970            ind1    013     Type of personal name entry element
3971            ind2    blank   Undefined
3972            a       NR      Personal name
3973            b       NR      Numeration
3974            c       R       Titles and other words associated with a name
3975            d       NR      Dates associated with a name
3976            e       R       Relator term
3977            f       NR      Date of a work
3978            g       R       Miscellaneous information
3979            h       NR      Medium
3980            j       R       Attribution qualifier
3981            k       R       Form subheading
3982            l       NR      Language of a work
3983            m       R       Medium of performance for music
3984            n       R       Number of part/section of a work
3985            o       NR      Arranged statement for music
3986            p       R       Name of part/section of a work
3987            q       NR      Fuller form of name
3988            r       NR      Key for music
3989            s       R       Version
3990            t       NR      Title of a work
3991            u       NR      Affiliation
3992            v       NR      Volume/sequential designation
3993            w       R       Bibliographic record control number
3994            x       NR      International Standard Serial Number
3995            0       R       Authority record control number or standard number
3996            1       R       Real World Object URI
3997            2       NR      Source of heading or term
3998            3       NR      Materials specified
3999            4       R       Relationship
4000            5       R       Institution to which field applies
4001            6       NR      Linkage
4002            7       NR      Control subfield
4003            8       R       Field link and sequence number
4004
4005            810     R       SERIES ADDED ENTRY--CORPORATE NAME
4006            ind1    012     Type of corporate name entry element
4007            ind2    blank   Undefined
4008            a       NR      Corporate name or jurisdiction name as entry element
4009            b       R       Subordinate unit
4010            c       R       Location of meeting
4011            d       R       Date of meeting or treaty signing
4012            e       R       Relator term
4013            f       NR      Date of a work
4014            g       R       Miscellaneous information
4015            h       NR      Medium
4016            k       R       Form subheading
4017            l       NR      Language of a work
4018            m       R       Medium of performance for music
4019            n       R       Number of part/section/meeting
4020            o       NR      Arranged statement for music
4021            p       R       Name of part/section of a work
4022            r       NR      Key for music
4023            s       R       Version
4024            t       NR      Title of a work
4025            u       NR      Affiliation
4026            v       NR      Volume/sequential designation
4027            w       R       Bibliographic record control number
4028            x       NR      International Standard Serial Number
4029            0       R       Authority record control number or standard number
4030            1       R       Real World Object URI
4031            2       NR      Source of heading or term
4032            3       NR      Materials specified
4033            4       R       Relationship
4034            5       R       Institution to which field applies
4035            6       NR      Linkage
4036            7       NR      Control subfield
4037            8       R       Field link and sequence number
4038
4039            811     R       SERIES ADDED ENTRY--MEETING NAME
4040            ind1    012     Type of meeting name entry element
4041            ind2    blank   Undefined
4042            a       NR      Meeting name or jurisdiction name as entry element
4043            c       R       Location of meeting
4044            d       R       Date of meeting or treaty signing
4045            e       R       Subordinate unit
4046            f       NR      Date of a work
4047            g       R       Miscellaneous information
4048            h       NR      Medium
4049            j       R       Relator term
4050            k       R       Form subheading
4051            l       NR      Language of a work
4052            n       R       Number of part/section/meeting
4053            p       R       Name of part/section of a work
4054            q       NR      Name of meeting following jurisdiction name entry element
4055            s       R       Version
4056            t       NR      Title of a work
4057            u       NR      Affiliation
4058            v       NR      Volume/sequential designation
4059            w       R       Bibliographic record control number
4060            x       NR      International Standard Serial Number
4061            0       R       Authority record control number or standard number
4062            1       R       Real World Object URI
4063            2       NR      Source of heading or term
4064            3       NR      Materials specified
4065            4       R       Relationship
4066            5       R       Institution to which field applies
4067            6       NR      Linkage
4068            7       NR      Control subfield
4069            8       R       Field link and sequence number
4070
4071            830     R       SERIES ADDED ENTRY--UNIFORM TITLE
4072            ind1    blank   Undefined
4073            ind2    0-9     Nonfiling characters
4074            a       NR      Uniform title
4075            d       R       Date of treaty signing
4076            f       NR      Date of a work
4077            g       R       Miscellaneous information
4078            h       NR      Medium
4079            k       R       Form subheading
4080            l       NR      Language of a work
4081            m       R       Medium of performance for music
4082            n       R       Number of part/section of a work
4083            o       NR      Arranged statement for music
4084            p       R       Name of part/section of a work
4085            r       NR      Key for music
4086            s       R       Version
4087            t       NR      Title of a work
4088            v       NR      Volume/sequential designation
4089            w       R       Bibliographic record control number
4090            x       NR      International Standard Serial Number
4091            0       R       Authority record control number or standard number
4092            1       R       Real World Object URI
4093            2       NR      Source of heading or term
4094            3       NR      Materials specified
4095            5       R       Institution to which field applies
4096            6       NR      Linkage
4097            7       NR      Control subfield
4098            8       R       Field link and sequence number
4099
4100            841     NR      HOLDINGS CODED DATA VALUES
4101
4102            842     NR      TEXTUAL PHYSICAL FORM DESIGNATOR
4103
4104            843     R       REPRODUCTION NOTE
4105
4106            844     NR      NAME OF UNIT
4107
4108            845     R       TERMS GOVERNING USE AND REPRODUCTION NOTE
4109
4110            850     R       HOLDING INSTITUTION
4111            ind1    blank   Undefined
4112            ind2    blank   Undefined
4113            a       R       Holding institution
4114            8       R       Field link and sequence number
4115
4116            852     R       LOCATION
4117            ind1    b012345678    Shelving scheme
4118            ind2    b012    Shelving order
4119            a       NR      Location
4120            b       R       Sublocation or collection
4121            c       R       Shelving location
4122            d       R       Former shelving location
4123            e       R       Address
4124            f       R       Coded location qualifier
4125            g       R       Non-coded location qualifier
4126            h       NR      Classification part
4127            i       R       Item part
4128            j       NR      Shelving control number
4129            k       R       Call number prefix
4130            l       NR      Shelving form of title
4131            m       R       Call number suffix
4132            n       NR      Country code
4133            p       NR      Piece designation
4134            q       NR      Piece physical condition
4135            s       R       Copyright article-fee code
4136            t       NR      Copy number
4137            u       R       Uniform Resource Identifier
4138            x       R       Nonpublic note
4139            z       R       Public note
4140            2       NR      Source of classification or shelving scheme
4141            3       NR      Materials specified
4142            6       NR      Linkage
4143            8       NR      Sequence number
4144
4145            853     R       CAPTIONS AND PATTERN--BASIC BIBLIOGRAPHIC UNIT
4146
4147            854     R       CAPTIONS AND PATTERN--SUPPLEMENTARY MATERIAL
4148
4149            855     R       CAPTIONS AND PATTERN--INDEXES
4150
4151            856     R       ELECTRONIC LOCATION AND ACCESS
4152            ind1    b012347    Access method
4153            ind2    b0128   Relationship
4154            a       R       Host name
4155            b       R       Access number
4156            c       R       Compression information
4157            d       R       Path
4158            f       R       Electronic name
4159            h       NR      Processor of request
4160            i       R       Instruction
4161            j       NR      Bits per second
4162            k       NR      Password
4163            l       NR      Logon
4164            m       R       Contact for access assistance
4165            n       NR      Name of location of host
4166            o       NR      Operating system
4167            p       NR      Port
4168            q       NR      Electronic format type
4169            r       NR      Settings
4170            s       R       File size
4171            t       R       Terminal emulation
4172            u       R       Uniform Resource Identifier
4173            v       R       Hours access method available
4174            w       R       Record control number
4175            x       R       Nonpublic note
4176            y       R       Link text
4177            z       R       Public note
4178            2       NR      Access method
4179            3       NR      Materials specified
4180            6       NR      Linkage
4181            7       NR      Access status
4182            8       R       Field link and sequence number
4183
4184            863     R       ENUMERATION AND CHRONOLOGY--BASIC BIBLIOGRAPHIC UNIT
4185
4186            864     R       ENUMERATION AND CHRONOLOGY--SUPPLEMENTARY MATERIAL
4187
4188            865     R       ENUMERATION AND CHRONOLOGY--INDEXES
4189
4190            866     R       TEXTUAL HOLDINGS--BASIC BIBLIOGRAPHIC UNIT
4191
4192            867     R       TEXTUAL HOLDINGS--SUPPLEMENTARY MATERIAL
4193
4194            868     R       TEXTUAL HOLDINGS--INDEXES
4195
4196            876     R       ITEM INFORMATION--BASIC BIBLIOGRAPHIC UNIT
4197
4198            877     R       ITEM INFORMATION--SUPPLEMENTARY MATERIAL
4199
4200            878     R       ITEM INFORMATION--INDEXES
4201
4202            880     R       ALTERNATE GRAPHIC REPRESENTATION
4203            ind1            Same as associated field
4204            ind2            Same as associated field
4205            6       NR      Linkage
4206
4207            882     NR      REPLACEMENT RECORD INFORMATION
4208            ind1    blank   Undefined
4209            ind2    blank   Undefined
4210            a       R       Replacement title
4211            i       R       Explanatory text
4212            w       R       Replacement bibliographic record control number
4213            6       NR      Linkage
4214            8       R       Field link and sequence number
4215
4216            883     R       MACHINE-GENERATED METADATA PROVENANCE
4217            ind1    b012    Method of assignment
4218            ind2    blank   Undefined
4219            a       NR      Creation process
4220            c       NR      Confidence value
4221            d       NR      Creation date
4222            q       NR      Assigning or generating agency
4223            x       NR      Validity end date
4224            u       NR      Uniform Resource Identifier
4225            w       R       Bibliographic record control number
4226            0       R       Authority record control number or standard number
4227            1       R       Real World Object URI
4228            8       R       Field link and sequence number
4229
4230            884     R       DESCRIPTION CONVERSION INFORMATION
4231            ind1    blank   Undefined
4232            ind2    blank   Undefined
4233            a       NR      Conversion process
4234            g       NR      Conversion date
4235            k       NR      Identifier of source metadata
4236            q       NR      Conversion agency
4237            u       R       Uniform Resource Identifier
4238
4239            885     R       MATCHING INFORMATION
4240            ind1    blank   Undefined
4241            ind2    blank   Undefined
4242            a       NR      Matching information
4243            b       NR      Status of matching and its checking
4244            c       NR      Confidence value
4245            d       NR      Generation date
4246            w       R       Record control number
4247            x       R       Nonpublic note
4248            z       R       Public note
4249            0       R       Authority record control number or standard number
4250            1       R       Real World Object URI
4251            2       NR      Source
4252            5       NR       Institution to which field applies
4253
4254            886     R       FOREIGN MARC INFORMATION FIELD
4255            ind1    012     Type of field
4256            ind2    blank   Undefined
4257            a       NR      Tag of the foreign MARC field
4258            b       NR      Content of the foreign MARC field
4259            c       R       Foreign MARC subfield
4260            d       R       Foreign MARC subfield
4261            e       R       Foreign MARC subfield
4262            f       R       Foreign MARC subfield
4263            g       R       Foreign MARC subfield
4264            h       R       Foreign MARC subfield
4265            i       R       Foreign MARC subfield
4266            j       R       Foreign MARC subfield
4267            k       R       Foreign MARC subfield
4268            l       R       Foreign MARC subfield
4269            m       R       Foreign MARC subfield
4270            n       R       Foreign MARC subfield
4271            o       R       Foreign MARC subfield
4272            p       R       Foreign MARC subfield
4273            q       R       Foreign MARC subfield
4274            r       R       Foreign MARC subfield
4275            s       R       Foreign MARC subfield
4276            t       R       Foreign MARC subfield
4277            u       R       Foreign MARC subfield
4278            v       R       Foreign MARC subfield
4279            w       R       Foreign MARC subfield
4280            x       R       Foreign MARC subfield
4281            y       R       Foreign MARC subfield
4282            z       R       Foreign MARC subfield
4283            0       R       Foreign MARC subfield
4284            1       R       Foreign MARC subfield
4285            2       NR      Source of data
4286            4       R      Foreign MARC subfield
4287            5       R       Foreign MARC subfield
4288            6       R       Foreign MARC subfield
4289            7       R       Foreign MARC subfield
4290            8       R       Foreign MARC subfield
4291            9       R       Foreign MARC subfield
4292
4293            887     R       NON-MARC INFORMATION FIELD
4294            ind1    blank   Undefined
4295            ind2    blank   Undefined
4296            a       NR      Content of non-MARC field
4297            2       NR      Source of data
4298            RULES;
4299    }
4300}