]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/version-upgrade/2.8.4-2.9.0-upgrade-db.sql
LP1779158 Angular7 and ng-lint updates
[Evergreen.git] / Open-ILS / src / sql / Pg / version-upgrade / 2.8.4-2.9.0-upgrade-db.sql
1 --Upgrade Script for 2.8.4 to 2.9.0
2 \set eg_version '''2.9.0'''
3 BEGIN;
4 INSERT INTO config.upgrade_log (version, applied_to) VALUES ('2.9.0', :eg_version);
5
6 SELECT evergreen.upgrade_deps_block_check('0921', :eg_version);
7
8 CREATE TABLE money.account_adjustment (
9     billing BIGINT REFERENCES money.billing (id) ON DELETE SET NULL
10 ) INHERITS (money.bnm_payment);
11 ALTER TABLE money.account_adjustment ADD PRIMARY KEY (id);
12 CREATE INDEX money_adjustment_id_idx ON money.account_adjustment (id);
13 CREATE INDEX money_account_adjustment_xact_idx ON money.account_adjustment (xact);
14 CREATE INDEX money_account_adjustment_bill_idx ON money.account_adjustment (billing);
15 CREATE INDEX money_account_adjustment_payment_ts_idx ON money.account_adjustment (payment_ts);
16 CREATE INDEX money_account_adjustment_accepting_usr_idx ON money.account_adjustment (accepting_usr);
17
18 CREATE TRIGGER mat_summary_add_tgr AFTER INSERT ON money.account_adjustment FOR EACH ROW EXECUTE PROCEDURE money.materialized_summary_payment_add ('account_adjustment');
19 CREATE TRIGGER mat_summary_upd_tgr AFTER UPDATE ON money.account_adjustment FOR EACH ROW EXECUTE PROCEDURE money.materialized_summary_payment_update ('account_adjustment');
20 CREATE TRIGGER mat_summary_del_tgr BEFORE DELETE ON money.account_adjustment FOR EACH ROW EXECUTE PROCEDURE money.materialized_summary_payment_del ('account_adjustment');
21
22 -- Insert new org. unit settings.
23 INSERT INTO config.org_unit_setting_type 
24        (name, grp, datatype, label, description)
25 VALUES
26        ('bill.prohibit_negative_balance_default',
27         'finance', 'bool',
28         oils_i18n_gettext(
29             'bill.prohibit_negative_balance_default',
30             'Prohibit negative balance on bills (DEFAULT)',
31             'coust', 'label'),
32         oils_i18n_gettext(
33             'bill.prohibit_negative_balance_default',
34             'Default setting to prevent negative balances (refunds) on circulation related bills',
35             'coust', 'description')
36        ),
37        ('bill.prohibit_negative_balance_on_overdues',
38         'finance', 'bool',
39         oils_i18n_gettext(
40             'bill.prohibit_negative_balance_on_overdues',
41             'Prohibit negative balance on bills for overdue materials',
42             'coust', 'label'),
43         oils_i18n_gettext(
44             'bill.prohibit_negative_balance_on_overdues',
45             'Prevent negative balances (refunds) on bills for overdue materials',
46             'coust', 'description')
47        ),
48        ('bill.prohibit_negative_balance_on_lost',
49         'finance', 'bool',
50         oils_i18n_gettext(
51             'bill.prohibit_negative_balance_on_lost',
52             'Prohibit negative balance on bills for lost materials',
53             'coust', 'label'),
54         oils_i18n_gettext(
55             'bill.prohibit_negative_balance_on_lost',
56             'Prevent negative balances (refunds) on bills for lost/long-overdue materials',
57             'coust', 'description')
58        ),
59        ('bill.negative_balance_interval_default',
60         'finance', 'interval',
61         oils_i18n_gettext(
62             'bill.negative_balance_interval_default',
63             'Negative Balance Interval (DEFAULT)',
64             'coust', 'label'),
65         oils_i18n_gettext(
66             'bill.negative_balance_interval_default',
67             'Amount of time after which no negative balances (refunds) are allowed on circulation bills',
68             'coust', 'description')
69        ),
70        ('bill.negative_balance_interval_on_overdues',
71         'finance', 'interval',
72         oils_i18n_gettext(
73             'bill.negative_balance_interval_on_overdues',
74             'Negative Balance Interval for Overdues',
75             'coust', 'label'),
76         oils_i18n_gettext(
77             'bill.negative_balance_interval_on_overdues',
78             'Amount of time after which no negative balances (refunds) are allowed on bills for overdue materials',
79             'coust', 'description')
80        ),
81        ('bill.negative_balance_interval_on_lost',
82         'finance', 'interval',
83         oils_i18n_gettext(
84             'bill.negative_balance_interval_on_lost',
85             'Negative Balance Interval for Lost',
86             'coust', 'label'),
87         oils_i18n_gettext(
88             'bill.negative_balance_interval_on_lost',
89             'Amount of time after which no negative balances (refunds) are allowed on bills for lost/long overdue materials',
90             'coust', 'description')
91        );
92
93
94 /* LP#1479953: Adding indexes to foreign key references to
95  * vandelay.queued_bib_record will speed up deletions of vqbr records (thereby
96  * speeding up vandelay.bib_queue deletions).
97  */
98
99 SELECT evergreen.upgrade_deps_block_check('0922', :eg_version);
100
101 CREATE INDEX acq_lineitem_history_queued_record_idx ON acq.acq_lineitem_history (queued_record);
102 CREATE INDEX li_queued_record_idx ON acq.lineitem (queued_record);
103 CREATE INDEX bib_match_queued_record_idx ON vandelay.bib_match (queued_record);
104 CREATE INDEX import_item_record_idx ON vandelay.import_item (record);
105
106 -- Include bib source in XML returned by unapi.bre.
107
108 -- check whether patch can be applied
109 SELECT evergreen.upgrade_deps_block_check('0923', :eg_version);
110
111 CREATE OR REPLACE FUNCTION unapi.cbs ( obj_id BIGINT, format TEXT,  ename TEXT, includes TEXT[], org TEXT, depth INT DEFAULT NULL, slimit HSTORE DEFAULT NULL, soffset HSTORE DEFAULT NULL, include_xmlns BOOL DEFAULT TRUE ) RETURNS XML AS $F$
112     SELECT  XMLELEMENT(
113                 name bib_source,
114                 XMLATTRIBUTES(
115                     NULL AS xmlns, -- TODO needs equivalent to http://open-ils.org/spec/holdings/v1
116                     id AS ident,
117                     quality,
118                     transcendant,
119                     can_have_copies
120                 ),
121                 source
122             )
123       FROM  config.bib_source
124       WHERE id = $1;
125 $F$ LANGUAGE SQL STABLE;
126
127 CREATE OR REPLACE FUNCTION unapi.bre (
128     obj_id BIGINT,
129     format TEXT,
130     ename TEXT,
131     includes TEXT[],
132     org TEXT,
133     depth INT DEFAULT NULL,
134     slimit HSTORE DEFAULT NULL,
135     soffset HSTORE DEFAULT NULL,
136     include_xmlns BOOL DEFAULT TRUE,
137     pref_lib INT DEFAULT NULL
138 )
139 RETURNS XML AS $F$
140 DECLARE
141     me      biblio.record_entry%ROWTYPE;
142     layout  unapi.bre_output_layout%ROWTYPE;
143     xfrm    config.xml_transform%ROWTYPE;
144     ouid    INT;
145     tmp_xml TEXT;
146     top_el  TEXT;
147     output  XML;
148     hxml    XML;
149     axml    XML;
150     source  XML;
151 BEGIN
152
153     IF org = '-' OR org IS NULL THEN
154         SELECT shortname INTO org FROM evergreen.org_top();
155     END IF;
156
157     SELECT id INTO ouid FROM actor.org_unit WHERE shortname = org;
158
159     IF ouid IS NULL THEN
160         RETURN NULL::XML;
161     END IF;
162
163     IF format = 'holdings_xml' THEN -- the special case
164         output := unapi.holdings_xml( obj_id, ouid, org, depth, includes, slimit, soffset, include_xmlns);
165         RETURN output;
166     END IF;
167
168     SELECT * INTO layout FROM unapi.bre_output_layout WHERE name = format;
169
170     IF layout.name IS NULL THEN
171         RETURN NULL::XML;
172     END IF;
173
174     SELECT * INTO xfrm FROM config.xml_transform WHERE name = layout.transform;
175
176     SELECT * INTO me FROM biblio.record_entry WHERE id = obj_id;
177
178     -- grab bib_source, if any
179     IF ('cbs' = ANY (includes) AND me.source IS NOT NULL) THEN
180         source := unapi.cbs(me.source,NULL,NULL,NULL,NULL);
181     ELSE
182         source := NULL::XML;
183     END IF;
184
185     -- grab SVF if we need them
186     IF ('mra' = ANY (includes)) THEN 
187         axml := unapi.mra(obj_id,NULL,NULL,NULL,NULL);
188     ELSE
189         axml := NULL::XML;
190     END IF;
191
192     -- grab holdings if we need them
193     IF ('holdings_xml' = ANY (includes)) THEN 
194         hxml := unapi.holdings_xml(obj_id, ouid, org, depth, evergreen.array_remove_item_by_value(includes,'holdings_xml'), slimit, soffset, include_xmlns, pref_lib);
195     ELSE
196         hxml := NULL::XML;
197     END IF;
198
199
200     -- generate our item node
201
202
203     IF format = 'marcxml' THEN
204         tmp_xml := me.marc;
205         IF tmp_xml !~ E'<marc:' THEN -- If we're not using the prefixed namespace in this record, then remove all declarations of it
206            tmp_xml := REGEXP_REPLACE(tmp_xml, ' xmlns:marc="http://www.loc.gov/MARC21/slim"', '', 'g');
207         END IF; 
208     ELSE
209         tmp_xml := oils_xslt_process(me.marc, xfrm.xslt)::XML;
210     END IF;
211
212     top_el := REGEXP_REPLACE(tmp_xml, E'^.*?<((?:\\S+:)?' || layout.holdings_element || ').*$', E'\\1');
213
214     IF source IS NOT NULL THEN
215         tmp_xml := REGEXP_REPLACE(tmp_xml, '</' || top_el || '>(.*?)$', source || '</' || top_el || E'>\\1');
216     END IF;
217
218     IF axml IS NOT NULL THEN 
219         tmp_xml := REGEXP_REPLACE(tmp_xml, '</' || top_el || '>(.*?)$', axml || '</' || top_el || E'>\\1');
220     END IF;
221
222     IF hxml IS NOT NULL THEN -- XXX how do we configure the holdings position?
223         tmp_xml := REGEXP_REPLACE(tmp_xml, '</' || top_el || '>(.*?)$', hxml || '</' || top_el || E'>\\1');
224     END IF;
225
226     IF ('bre.unapi' = ANY (includes)) THEN 
227         output := REGEXP_REPLACE(
228             tmp_xml,
229             '</' || top_el || '>(.*?)',
230             XMLELEMENT(
231                 name abbr,
232                 XMLATTRIBUTES(
233                     'http://www.w3.org/1999/xhtml' AS xmlns,
234                     'unapi-id' AS class,
235                     'tag:open-ils.org:U2@bre/' || obj_id || '/' || org AS title
236                 )
237             )::TEXT || '</' || top_el || E'>\\1'
238         );
239     ELSE
240         output := tmp_xml;
241     END IF;
242
243     output := REGEXP_REPLACE(output::TEXT,E'>\\s+<','><','gs')::XML;
244     RETURN output;
245 END;
246 $F$ LANGUAGE PLPGSQL STABLE;
247
248
249 SELECT evergreen.upgrade_deps_block_check('0928', :eg_version);
250
251 CREATE OR REPLACE FUNCTION oils_xpath_tag_to_table(marc text, tag text, xpaths text[]) RETURNS SETOF record AS $function$
252
253 -- This function currently populates columns with the FIRST matching value
254 -- of each XPATH.  It would be reasonable to add a 'return_arrays' option
255 -- where each column is an array of all matching values for each path, but
256 -- that remains as a TODO
257
258 DECLARE
259     field RECORD;
260     output RECORD;
261     select_list TEXT[];
262     from_list TEXT[];
263     q TEXT;
264 BEGIN
265     -- setup query select
266     FOR i IN 1 .. ARRAY_UPPER(xpaths,1) LOOP
267         IF xpaths[i] = 'null()' THEN
268             select_list := ARRAY_APPEND(select_list, 'NULL::TEXT AS c_' || i );
269         ELSE
270             select_list := ARRAY_APPEND(select_list, '(oils_xpath(' ||
271                 quote_literal(
272                     CASE
273                         WHEN xpaths[i] ~ $re$/[^/[]*@[^/]+$$re$ -- attribute
274                             OR xpaths[i] ~ $re$text\(\)$$re$
275                         THEN xpaths[i]
276                         ELSE xpaths[i] || '//text()'
277                     END
278                 ) || ', field_marc))[1] AS cl_' || i);
279                 -- hardcoded to first value for each path
280         END IF;
281     END LOOP;
282
283     -- run query over tag set
284     q := 'SELECT ' || ARRAY_TO_STRING(select_list, ',')
285         || ' FROM UNNEST(oils_xpath(' || quote_literal('//*[@tag="' || tag
286         || '"]') || ', ' || quote_literal(marc) || ')) AS field_marc;';
287     --RAISE NOTICE '%', q;
288
289     RETURN QUERY EXECUTE q;
290 END;
291
292 $function$ LANGUAGE PLPGSQL;
293
294
295 SELECT evergreen.upgrade_deps_block_check('0929', :eg_version);
296
297 INSERT INTO vandelay.import_error ( code, description ) VALUES (
298     'import.item.invalid.stat_cat_format', oils_i18n_gettext('import.item.invalid.stat_cat_format', 'Bad format for stat cat data, should be like: CAT 1|VALUE 1', 'vie', 'description') );
299 INSERT INTO vandelay.import_error ( code, description ) VALUES (
300     'import.item.invalid.stat_cat_data', oils_i18n_gettext('import.item.invalid.stat_cat_data', 'Invalid stat cat data', 'vie', 'description') );
301
302 ALTER TABLE vandelay.import_item_attr_definition
303     ADD COLUMN stat_cat_data TEXT;
304
305 ALTER TABLE vandelay.import_item
306     ADD COLUMN stat_cat_data TEXT;
307
308 CREATE OR REPLACE FUNCTION vandelay.ingest_items ( import_id BIGINT, attr_def_id BIGINT ) RETURNS SETOF vandelay.import_item AS $$
309 DECLARE
310
311     owning_lib      TEXT;
312     circ_lib        TEXT;
313     call_number     TEXT;
314     copy_number     TEXT;
315     status          TEXT;
316     location        TEXT;
317     circulate       TEXT;
318     deposit         TEXT;
319     deposit_amount  TEXT;
320     ref             TEXT;
321     holdable        TEXT;
322     price           TEXT;
323     barcode         TEXT;
324     circ_modifier   TEXT;
325     circ_as_type    TEXT;
326     alert_message   TEXT;
327     opac_visible    TEXT;
328     pub_note        TEXT;
329     priv_note       TEXT;
330     internal_id     TEXT;
331     stat_cat_data   TEXT;
332
333     attr_def        RECORD;
334     tmp_attr_set    RECORD;
335     attr_set        vandelay.import_item%ROWTYPE;
336
337     xpaths          TEXT[];
338     tmp_str         TEXT;
339
340 BEGIN
341
342     SELECT * INTO attr_def FROM vandelay.import_item_attr_definition WHERE id = attr_def_id;
343
344     IF FOUND THEN
345
346         attr_set.definition := attr_def.id;
347
348         -- Build the combined XPath
349
350         owning_lib :=
351             CASE
352                 WHEN attr_def.owning_lib IS NULL THEN 'null()'
353                 WHEN LENGTH( attr_def.owning_lib ) = 1 THEN '*[@code="' || attr_def.owning_lib || '"]'
354                 ELSE '*' || attr_def.owning_lib
355             END;
356
357         circ_lib :=
358             CASE
359                 WHEN attr_def.circ_lib IS NULL THEN 'null()'
360                 WHEN LENGTH( attr_def.circ_lib ) = 1 THEN '*[@code="' || attr_def.circ_lib || '"]'
361                 ELSE '*' || attr_def.circ_lib
362             END;
363
364         call_number :=
365             CASE
366                 WHEN attr_def.call_number IS NULL THEN 'null()'
367                 WHEN LENGTH( attr_def.call_number ) = 1 THEN '*[@code="' || attr_def.call_number || '"]'
368                 ELSE '*' || attr_def.call_number
369             END;
370
371         copy_number :=
372             CASE
373                 WHEN attr_def.copy_number IS NULL THEN 'null()'
374                 WHEN LENGTH( attr_def.copy_number ) = 1 THEN '*[@code="' || attr_def.copy_number || '"]'
375                 ELSE '*' || attr_def.copy_number
376             END;
377
378         status :=
379             CASE
380                 WHEN attr_def.status IS NULL THEN 'null()'
381                 WHEN LENGTH( attr_def.status ) = 1 THEN '*[@code="' || attr_def.status || '"]'
382                 ELSE '*' || attr_def.status
383             END;
384
385         location :=
386             CASE
387                 WHEN attr_def.location IS NULL THEN 'null()'
388                 WHEN LENGTH( attr_def.location ) = 1 THEN '*[@code="' || attr_def.location || '"]'
389                 ELSE '*' || attr_def.location
390             END;
391
392         circulate :=
393             CASE
394                 WHEN attr_def.circulate IS NULL THEN 'null()'
395                 WHEN LENGTH( attr_def.circulate ) = 1 THEN '*[@code="' || attr_def.circulate || '"]'
396                 ELSE '*' || attr_def.circulate
397             END;
398
399         deposit :=
400             CASE
401                 WHEN attr_def.deposit IS NULL THEN 'null()'
402                 WHEN LENGTH( attr_def.deposit ) = 1 THEN '*[@code="' || attr_def.deposit || '"]'
403                 ELSE '*' || attr_def.deposit
404             END;
405
406         deposit_amount :=
407             CASE
408                 WHEN attr_def.deposit_amount IS NULL THEN 'null()'
409                 WHEN LENGTH( attr_def.deposit_amount ) = 1 THEN '*[@code="' || attr_def.deposit_amount || '"]'
410                 ELSE '*' || attr_def.deposit_amount
411             END;
412
413         ref :=
414             CASE
415                 WHEN attr_def.ref IS NULL THEN 'null()'
416                 WHEN LENGTH( attr_def.ref ) = 1 THEN '*[@code="' || attr_def.ref || '"]'
417                 ELSE '*' || attr_def.ref
418             END;
419
420         holdable :=
421             CASE
422                 WHEN attr_def.holdable IS NULL THEN 'null()'
423                 WHEN LENGTH( attr_def.holdable ) = 1 THEN '*[@code="' || attr_def.holdable || '"]'
424                 ELSE '*' || attr_def.holdable
425             END;
426
427         price :=
428             CASE
429                 WHEN attr_def.price IS NULL THEN 'null()'
430                 WHEN LENGTH( attr_def.price ) = 1 THEN '*[@code="' || attr_def.price || '"]'
431                 ELSE '*' || attr_def.price
432             END;
433
434         barcode :=
435             CASE
436                 WHEN attr_def.barcode IS NULL THEN 'null()'
437                 WHEN LENGTH( attr_def.barcode ) = 1 THEN '*[@code="' || attr_def.barcode || '"]'
438                 ELSE '*' || attr_def.barcode
439             END;
440
441         circ_modifier :=
442             CASE
443                 WHEN attr_def.circ_modifier IS NULL THEN 'null()'
444                 WHEN LENGTH( attr_def.circ_modifier ) = 1 THEN '*[@code="' || attr_def.circ_modifier || '"]'
445                 ELSE '*' || attr_def.circ_modifier
446             END;
447
448         circ_as_type :=
449             CASE
450                 WHEN attr_def.circ_as_type IS NULL THEN 'null()'
451                 WHEN LENGTH( attr_def.circ_as_type ) = 1 THEN '*[@code="' || attr_def.circ_as_type || '"]'
452                 ELSE '*' || attr_def.circ_as_type
453             END;
454
455         alert_message :=
456             CASE
457                 WHEN attr_def.alert_message IS NULL THEN 'null()'
458                 WHEN LENGTH( attr_def.alert_message ) = 1 THEN '*[@code="' || attr_def.alert_message || '"]'
459                 ELSE '*' || attr_def.alert_message
460             END;
461
462         opac_visible :=
463             CASE
464                 WHEN attr_def.opac_visible IS NULL THEN 'null()'
465                 WHEN LENGTH( attr_def.opac_visible ) = 1 THEN '*[@code="' || attr_def.opac_visible || '"]'
466                 ELSE '*' || attr_def.opac_visible
467             END;
468
469         pub_note :=
470             CASE
471                 WHEN attr_def.pub_note IS NULL THEN 'null()'
472                 WHEN LENGTH( attr_def.pub_note ) = 1 THEN '*[@code="' || attr_def.pub_note || '"]'
473                 ELSE '*' || attr_def.pub_note
474             END;
475         priv_note :=
476             CASE
477                 WHEN attr_def.priv_note IS NULL THEN 'null()'
478                 WHEN LENGTH( attr_def.priv_note ) = 1 THEN '*[@code="' || attr_def.priv_note || '"]'
479                 ELSE '*' || attr_def.priv_note
480             END;
481
482         internal_id :=
483             CASE
484                 WHEN attr_def.internal_id IS NULL THEN 'null()'
485                 WHEN LENGTH( attr_def.internal_id ) = 1 THEN '*[@code="' || attr_def.internal_id || '"]'
486                 ELSE '*' || attr_def.internal_id
487             END;
488
489         stat_cat_data :=
490             CASE
491                 WHEN attr_def.stat_cat_data IS NULL THEN 'null()'
492                 WHEN LENGTH( attr_def.stat_cat_data ) = 1 THEN '*[@code="' || attr_def.stat_cat_data || '"]'
493                 ELSE '*' || attr_def.stat_cat_data
494             END;
495
496
497
498         xpaths := ARRAY[owning_lib, circ_lib, call_number, copy_number, status, location, circulate,
499                         deposit, deposit_amount, ref, holdable, price, barcode, circ_modifier, circ_as_type,
500                         alert_message, pub_note, priv_note, internal_id, stat_cat_data, opac_visible];
501
502         FOR tmp_attr_set IN
503                 SELECT  *
504                   FROM  oils_xpath_tag_to_table( (SELECT marc FROM vandelay.queued_bib_record WHERE id = import_id), attr_def.tag, xpaths)
505                             AS t( ol TEXT, clib TEXT, cn TEXT, cnum TEXT, cs TEXT, cl TEXT, circ TEXT,
506                                   dep TEXT, dep_amount TEXT, r TEXT, hold TEXT, pr TEXT, bc TEXT, circ_mod TEXT,
507                                   circ_as TEXT, amessage TEXT, note TEXT, pnote TEXT, internal_id TEXT,
508                                   stat_cat_data TEXT, opac_vis TEXT )
509         LOOP
510
511             attr_set.import_error := NULL;
512             attr_set.error_detail := NULL;
513             attr_set.deposit_amount := NULL;
514             attr_set.copy_number := NULL;
515             attr_set.price := NULL;
516             attr_set.circ_modifier := NULL;
517             attr_set.location := NULL;
518             attr_set.barcode := NULL;
519             attr_set.call_number := NULL;
520
521             IF tmp_attr_set.pr != '' THEN
522                 tmp_str = REGEXP_REPLACE(tmp_attr_set.pr, E'[^0-9\\.]', '', 'g');
523                 IF tmp_str = '' THEN
524                     attr_set.import_error := 'import.item.invalid.price';
525                     attr_set.error_detail := tmp_attr_set.pr; -- original value
526                     RETURN NEXT attr_set; CONTINUE;
527                 END IF;
528                 attr_set.price := tmp_str::NUMERIC(8,2);
529             END IF;
530
531             IF tmp_attr_set.dep_amount != '' THEN
532                 tmp_str = REGEXP_REPLACE(tmp_attr_set.dep_amount, E'[^0-9\\.]', '', 'g');
533                 IF tmp_str = '' THEN
534                     attr_set.import_error := 'import.item.invalid.deposit_amount';
535                     attr_set.error_detail := tmp_attr_set.dep_amount;
536                     RETURN NEXT attr_set; CONTINUE;
537                 END IF;
538                 attr_set.deposit_amount := tmp_str::NUMERIC(8,2);
539             END IF;
540
541             IF tmp_attr_set.cnum != '' THEN
542                 tmp_str = REGEXP_REPLACE(tmp_attr_set.cnum, E'[^0-9]', '', 'g');
543                 IF tmp_str = '' THEN
544                     attr_set.import_error := 'import.item.invalid.copy_number';
545                     attr_set.error_detail := tmp_attr_set.cnum;
546                     RETURN NEXT attr_set; CONTINUE;
547                 END IF;
548                 attr_set.copy_number := tmp_str::INT;
549             END IF;
550
551             IF tmp_attr_set.ol != '' THEN
552                 SELECT id INTO attr_set.owning_lib FROM actor.org_unit WHERE shortname = UPPER(tmp_attr_set.ol); -- INT
553                 IF NOT FOUND THEN
554                     attr_set.import_error := 'import.item.invalid.owning_lib';
555                     attr_set.error_detail := tmp_attr_set.ol;
556                     RETURN NEXT attr_set; CONTINUE;
557                 END IF;
558             END IF;
559
560             IF tmp_attr_set.clib != '' THEN
561                 SELECT id INTO attr_set.circ_lib FROM actor.org_unit WHERE shortname = UPPER(tmp_attr_set.clib); -- INT
562                 IF NOT FOUND THEN
563                     attr_set.import_error := 'import.item.invalid.circ_lib';
564                     attr_set.error_detail := tmp_attr_set.clib;
565                     RETURN NEXT attr_set; CONTINUE;
566                 END IF;
567             END IF;
568
569             IF tmp_attr_set.cs != '' THEN
570                 SELECT id INTO attr_set.status FROM config.copy_status WHERE LOWER(name) = LOWER(tmp_attr_set.cs); -- INT
571                 IF NOT FOUND THEN
572                     attr_set.import_error := 'import.item.invalid.status';
573                     attr_set.error_detail := tmp_attr_set.cs;
574                     RETURN NEXT attr_set; CONTINUE;
575                 END IF;
576             END IF;
577
578             IF COALESCE(tmp_attr_set.circ_mod, '') = '' THEN
579
580                 -- no circ mod defined, see if we should apply a default
581                 SELECT INTO attr_set.circ_modifier TRIM(BOTH '"' FROM value)
582                     FROM actor.org_unit_ancestor_setting(
583                         'vandelay.item.circ_modifier.default',
584                         attr_set.owning_lib
585                     );
586
587                 -- make sure the value from the org setting is still valid
588                 PERFORM 1 FROM config.circ_modifier WHERE code = attr_set.circ_modifier;
589                 IF NOT FOUND THEN
590                     attr_set.import_error := 'import.item.invalid.circ_modifier';
591                     attr_set.error_detail := tmp_attr_set.circ_mod;
592                     RETURN NEXT attr_set; CONTINUE;
593                 END IF;
594
595             ELSE
596
597                 SELECT code INTO attr_set.circ_modifier FROM config.circ_modifier WHERE code = tmp_attr_set.circ_mod;
598                 IF NOT FOUND THEN
599                     attr_set.import_error := 'import.item.invalid.circ_modifier';
600                     attr_set.error_detail := tmp_attr_set.circ_mod;
601                     RETURN NEXT attr_set; CONTINUE;
602                 END IF;
603             END IF;
604
605             IF tmp_attr_set.circ_as != '' THEN
606                 SELECT code INTO attr_set.circ_as_type FROM config.coded_value_map WHERE ctype = 'item_type' AND code = tmp_attr_set.circ_as;
607                 IF NOT FOUND THEN
608                     attr_set.import_error := 'import.item.invalid.circ_as_type';
609                     attr_set.error_detail := tmp_attr_set.circ_as;
610                     RETURN NEXT attr_set; CONTINUE;
611                 END IF;
612             END IF;
613
614             IF COALESCE(tmp_attr_set.cl, '') = '' THEN
615                 -- no location specified, see if we should apply a default
616
617                 SELECT INTO attr_set.location TRIM(BOTH '"' FROM value)
618                     FROM actor.org_unit_ancestor_setting(
619                         'vandelay.item.copy_location.default',
620                         attr_set.owning_lib
621                     );
622
623                 -- make sure the value from the org setting is still valid
624                 PERFORM 1 FROM asset.copy_location WHERE id = attr_set.location;
625                 IF NOT FOUND THEN
626                     attr_set.import_error := 'import.item.invalid.location';
627                     attr_set.error_detail := tmp_attr_set.cs;
628                     RETURN NEXT attr_set; CONTINUE;
629                 END IF;
630             ELSE
631
632                 -- search up the org unit tree for a matching copy location
633                 WITH RECURSIVE anscestor_depth AS (
634                     SELECT  ou.id,
635                         out.depth AS depth,
636                         ou.parent_ou
637                     FROM  actor.org_unit ou
638                         JOIN actor.org_unit_type out ON (out.id = ou.ou_type)
639                     WHERE ou.id = COALESCE(attr_set.owning_lib, attr_set.circ_lib)
640                         UNION ALL
641                     SELECT  ou.id,
642                         out.depth,
643                         ou.parent_ou
644                     FROM  actor.org_unit ou
645                         JOIN actor.org_unit_type out ON (out.id = ou.ou_type)
646                         JOIN anscestor_depth ot ON (ot.parent_ou = ou.id)
647                 ) SELECT  cpl.id INTO attr_set.location
648                     FROM  anscestor_depth a
649                         JOIN asset.copy_location cpl ON (cpl.owning_lib = a.id)
650                     WHERE LOWER(cpl.name) = LOWER(tmp_attr_set.cl)
651                     ORDER BY a.depth DESC
652                     LIMIT 1;
653
654                 IF NOT FOUND THEN
655                     attr_set.import_error := 'import.item.invalid.location';
656                     attr_set.error_detail := tmp_attr_set.cs;
657                     RETURN NEXT attr_set; CONTINUE;
658                 END IF;
659             END IF;
660
661             attr_set.circulate      :=
662                 LOWER( SUBSTRING( tmp_attr_set.circ, 1, 1)) IN ('t','y','1')
663                 OR LOWER(tmp_attr_set.circ) = 'circulating'; -- BOOL
664
665             attr_set.deposit        :=
666                 LOWER( SUBSTRING( tmp_attr_set.dep, 1, 1 ) ) IN ('t','y','1')
667                 OR LOWER(tmp_attr_set.dep) = 'deposit'; -- BOOL
668
669             attr_set.holdable       :=
670                 LOWER( SUBSTRING( tmp_attr_set.hold, 1, 1 ) ) IN ('t','y','1')
671                 OR LOWER(tmp_attr_set.hold) = 'holdable'; -- BOOL
672
673             attr_set.opac_visible   :=
674                 LOWER( SUBSTRING( tmp_attr_set.opac_vis, 1, 1 ) ) IN ('t','y','1')
675                 OR LOWER(tmp_attr_set.opac_vis) = 'visible'; -- BOOL
676
677             attr_set.ref            :=
678                 LOWER( SUBSTRING( tmp_attr_set.r, 1, 1 ) ) IN ('t','y','1')
679                 OR LOWER(tmp_attr_set.r) = 'reference'; -- BOOL
680
681             attr_set.call_number    := tmp_attr_set.cn; -- TEXT
682             attr_set.barcode        := tmp_attr_set.bc; -- TEXT,
683             attr_set.alert_message  := tmp_attr_set.amessage; -- TEXT,
684             attr_set.pub_note       := tmp_attr_set.note; -- TEXT,
685             attr_set.priv_note      := tmp_attr_set.pnote; -- TEXT,
686             attr_set.alert_message  := tmp_attr_set.amessage; -- TEXT,
687             attr_set.internal_id    := tmp_attr_set.internal_id::BIGINT;
688             attr_set.stat_cat_data  := tmp_attr_set.stat_cat_data; -- TEXT,
689
690             RETURN NEXT attr_set;
691
692         END LOOP;
693
694     END IF;
695
696     RETURN;
697
698 END;
699 $$ LANGUAGE PLPGSQL;
700
701 CREATE OR REPLACE FUNCTION vandelay.ingest_bib_items ( ) RETURNS TRIGGER AS $func$
702 DECLARE
703     attr_def    BIGINT;
704     item_data   vandelay.import_item%ROWTYPE;
705 BEGIN
706
707     IF TG_OP IN ('INSERT','UPDATE') AND NEW.imported_as IS NOT NULL THEN
708         RETURN NEW;
709     END IF;
710
711     SELECT item_attr_def INTO attr_def FROM vandelay.bib_queue WHERE id = NEW.queue;
712
713     FOR item_data IN SELECT * FROM vandelay.ingest_items( NEW.id::BIGINT, attr_def ) LOOP
714         INSERT INTO vandelay.import_item (
715             record,
716             definition,
717             owning_lib,
718             circ_lib,
719             call_number,
720             copy_number,
721             status,
722             location,
723             circulate,
724             deposit,
725             deposit_amount,
726             ref,
727             holdable,
728             price,
729             barcode,
730             circ_modifier,
731             circ_as_type,
732             alert_message,
733             pub_note,
734             priv_note,
735             internal_id,
736             opac_visible,
737             stat_cat_data,
738             import_error,
739             error_detail
740         ) VALUES (
741             NEW.id,
742             item_data.definition,
743             item_data.owning_lib,
744             item_data.circ_lib,
745             item_data.call_number,
746             item_data.copy_number,
747             item_data.status,
748             item_data.location,
749             item_data.circulate,
750             item_data.deposit,
751             item_data.deposit_amount,
752             item_data.ref,
753             item_data.holdable,
754             item_data.price,
755             item_data.barcode,
756             item_data.circ_modifier,
757             item_data.circ_as_type,
758             item_data.alert_message,
759             item_data.pub_note,
760             item_data.priv_note,
761             item_data.internal_id,
762             item_data.opac_visible,
763             item_data.stat_cat_data,
764             item_data.import_error,
765             item_data.error_detail
766         );
767     END LOOP;
768
769     RETURN NULL;
770 END;
771 $func$ LANGUAGE PLPGSQL;
772
773
774 SELECT evergreen.upgrade_deps_block_check('0930', :eg_version);
775
776 ALTER TABLE acq.invoice_item_type
777     ADD COLUMN blanket BOOLEAN NOT NULL DEFAULT FALSE,
778     ADD CONSTRAINT aiit_not_blanket_and_prorate
779         CHECK (blanket IS FALSE OR prorate IS FALSE);
780
781
782 SELECT evergreen.upgrade_deps_block_check('0931', :eg_version);
783
784 INSERT INTO acq.invoice_item_type (code, blanket, name) VALUES (
785     'BLA', TRUE, oils_i18n_gettext('BLA', 'Blanket Order', 'aiit', 'name'));
786
787
788 SELECT evergreen.upgrade_deps_block_check('0932', :eg_version);
789
790 UPDATE config.org_unit_setting_type 
791     SET description = 'Default setting to prevent negative balances (refunds) on circulation related bills. Set to "true" to prohibit negative balances at all times or, when used in conjunction with an interval setting, to prohibit negative balances after a set period of time.'
792     WHERE name = 'bill.prohibit_negative_balance_default';
793 UPDATE config.org_unit_setting_type
794     SET description = 'Prevent negative balances (refunds) on bills for overdue materials. Set to "true" to prohibit negative balances at all times or, when used in conjunction with an interval setting, to prohibit negative balances after a set period of time.'
795     WHERE name = 'bill.prohibit_negative_balance_on_overdues';
796 UPDATE config.org_unit_setting_type
797     SET description = 'Prohibit negative balance on bills for lost materials. Set to "true" to prohibit negative balances at all times or, when used in conjunction with an interval setting, to prohibit negative balances after a set period of time.'
798     WHERE name = 'bill.prohibit_negative_balance_on_lost';
799 UPDATE config.org_unit_setting_type
800     SET description = 'Amount of time after which no negative balances (refunds) are allowed on circulation bills. The "Prohibit negative balance on bills" setting must also be set to "true".'
801     WHERE name = 'bill.negative_balance_interval_default';
802 UPDATE config.org_unit_setting_type
803     SET description = 'Amount of time after which no negative balances (refunds) are allowed on bills for overdue materials. The "Prohibit negative balance on bills for overdue materials" setting must also be set to "true".'
804     WHERE name = 'bill.negative_balance_interval_on_overdues';
805 UPDATE config.org_unit_setting_type
806     SET description = 'Amount of time after which no negative balances (refunds) are allowed on bills for lost/long overdue materials. The "Prohibit negative balance on bills for lost materials" setting must also be set to "true".'
807     WHERE name = 'bill.negative_balance_interval_on_lost';
808
809
810
811
812 SELECT evergreen.upgrade_deps_block_check('0933', :eg_version);
813
814
815 CREATE TABLE config.marc_format (
816     id                  SERIAL PRIMARY KEY,
817     code                TEXT NOT NULL,
818     name                TEXT NOT NULL
819 );
820 COMMENT ON TABLE config.marc_format IS $$
821 List of MARC formats supported by this Evergreen
822 database. This exists primarily as a hook for future
823 support of UNIMARC, though whether that will ever
824 happen remains to be seen.
825 $$;
826
827 CREATE TYPE config.marc_record_type AS ENUM ('biblio', 'authority', 'serial');
828
829 CREATE TABLE config.marc_field (
830     id                  SERIAL PRIMARY KEY,
831     marc_format         INTEGER NOT NULL
832                         REFERENCES config.marc_format (id) DEFERRABLE INITIALLY DEFERRED,
833     marc_record_type    config.marc_record_type NOT NULL,
834     tag                 CHAR(3) NOT NULL,
835     name                TEXT,
836     description         TEXT,
837     fixed_field         BOOLEAN,
838     repeatable          BOOLEAN,
839     mandatory           BOOLEAN,
840     hidden              BOOLEAN,
841     owner               INTEGER REFERENCES actor.org_unit (id)
842                         -- if the owner is null, the data about the field is
843                         -- assumed to come from the controlling MARC standard
844 );
845
846 COMMENT ON TABLE config.marc_field IS $$
847 This table stores a list of MARC fields recognized by the Evergreen
848 instance.  Note that we're not aiming for completely generic ISO2709
849 support: we're assuming things like three characters for a tag,
850 one-character subfield labels, two indicators per variable data field,
851 and the like, all of which are technically specializations of ISO2709.
852
853 Of particular significance is the owner column; if it's set to a null
854 value, the field definition is assumed to come from a national
855 standards body; if it's set to a non-null value, the field definition
856 is an OU-level addition to or override of the standard.
857 $$;
858
859 CREATE INDEX config_marc_field_tag_idx ON config.marc_field (tag);
860 CREATE INDEX config_marc_field_owner_idx ON config.marc_field (owner);
861
862 CREATE UNIQUE INDEX config_standard_marc_tags_are_unique
863     ON config.marc_field(marc_format, marc_record_type, tag)
864     WHERE owner IS NULL;
865 ALTER TABLE config.marc_field
866     ADD CONSTRAINT config_standard_marc_tags_are_fully_specified
867     CHECK ((owner IS NOT NULL) OR
868            (
869                 owner IS NULL AND
870                 repeatable IS NOT NULL AND
871                 mandatory IS NOT NULL AND
872                 hidden IS NOT NULL
873            )
874           );
875
876 CREATE TABLE config.marc_subfield (
877     id                  SERIAL PRIMARY KEY,
878     marc_format         INTEGER NOT NULL
879                         REFERENCES config.marc_format (id) DEFERRABLE INITIALLY DEFERRED,
880     marc_record_type    config.marc_record_type NOT NULL,
881     tag                 CHAR(3) NOT NULL,
882     code                CHAR(1) NOT NULL,
883     description         TEXT,
884     repeatable          BOOLEAN,
885     mandatory           BOOLEAN,
886     hidden              BOOLEAN,
887     value_ctype         TEXT
888                         REFERENCES config.record_attr_definition (name)
889                             DEFERRABLE INITIALLY DEFERRED,
890     owner               INTEGER REFERENCES actor.org_unit (id)
891                         -- if the owner is null, the data about the subfield is
892                         -- assumed to come from the controlling MARC standard
893 );
894
895 COMMENT ON TABLE config.marc_subfield IS $$
896 This table stores the list of subfields recognized by this Evergreen
897 instance.  As with config.marc_field, of particular significance is the
898 owner column; if it's set to a null value, the subfield definition is
899 assumed to come from a national standards body; if it's set to a non-null
900 value, the subfield definition is an OU-level addition to or override
901 of the standard.
902 $$;
903
904 CREATE INDEX config_marc_subfield_tag_code_idx ON config.marc_subfield (tag, code);
905 CREATE UNIQUE INDEX config_standard_marc_subfields_are_unique
906     ON config.marc_subfield(marc_format, marc_record_type, tag, code)
907     WHERE owner IS NULL;
908 ALTER TABLE config.marc_subfield
909     ADD CONSTRAINT config_standard_marc_subfields_are_fully_specified
910     CHECK ((owner IS NOT NULL) OR
911            (
912                 owner IS NULL AND
913                 repeatable IS NOT NULL AND
914                 mandatory IS NOT NULL AND
915                 hidden IS NOT NULL
916            )
917           );
918
919 CREATE OR REPLACE VIEW config.marc_field_for_ou AS
920 WITH RECURSIVE ou_marc_fields(id, marc_format, marc_record_type, tag,
921                               name, description, fixed_field, repeatable,
922                               mandatory, hidden, owner, depth) AS (
923     -- start with all MARC fields defined by the controlling national standard
924     SELECT id, marc_format, marc_record_type, tag, name, description, fixed_field, repeatable, mandatory, hidden, owner, 0
925     FROM config.marc_field
926     WHERE owner IS NULL
927     UNION
928     -- as well as any purely local ones that have been added
929     SELECT id, marc_format, marc_record_type, tag, name, description, fixed_field, repeatable, mandatory, hidden, owner, 0
930     FROM config.marc_field
931     WHERE ARRAY[marc_format::TEXT, marc_record_type::TEXT, tag] NOT IN (
932         SELECT ARRAY[marc_format::TEXT, marc_record_type::TEXT, tag]
933         FROM config.marc_field
934         WHERE owner IS NULL
935     )
936   UNION
937     -- and start walking down the org unit hierarchy,
938     -- letting entries for child OUs override field names,
939     -- descriptions, repeatability, and the like.  Letting
940     -- fixed-fieldness be overridable is something that falls
941     -- from the implementation, but is unlikely to be useful
942     SELECT c.id, marc_format, marc_record_type, tag,
943            COALESCE(c.name, p.name),
944            COALESCE(c.description, p.description),
945            COALESCE(c.fixed_field, p.fixed_field),
946            COALESCE(c.repeatable, p.repeatable),
947            COALESCE(c.mandatory, p.mandatory),
948            COALESCE(c.hidden, p.hidden),
949            c.owner,
950            depth + 1
951     FROM config.marc_field c
952     JOIN ou_marc_fields p USING (marc_format, marc_record_type, tag)
953     JOIN actor.org_unit aou ON (c.owner = aou.id)
954     WHERE (aou.parent_ou = p.owner OR (aou.parent_ou IS NULL AND p.owner IS NULL))
955 )
956 SELECT id, marc_format, marc_record_type, tag,
957        name, description, fixed_field, repeatable,
958        mandatory, hidden, owner, depth
959 FROM ou_marc_fields;
960
961 CREATE OR REPLACE VIEW config.marc_subfield_for_ou AS
962 WITH RECURSIVE ou_marc_subfields(id, marc_format, marc_record_type, tag, code,
963                               description, repeatable,
964                               mandatory, hidden, value_ctype, owner, depth) AS (
965     -- start with all MARC subfields defined by the controlling national standard
966     SELECT id, marc_format, marc_record_type, tag, code, description, repeatable, mandatory,
967            hidden, value_ctype, owner, 0
968     FROM config.marc_subfield
969     WHERE owner IS NULL
970     UNION
971     -- as well as any purely local ones that have been added
972     SELECT id, marc_format, marc_record_type, tag, code, description, repeatable, mandatory,
973            hidden, value_ctype, owner, 0
974     FROM config.marc_subfield
975     WHERE ARRAY[marc_format::TEXT, marc_record_type::TEXT, tag, code] NOT IN (
976         SELECT ARRAY[marc_format::TEXT, marc_record_type::TEXT, tag, code]
977         FROM config.marc_subfield
978         WHERE owner IS NULL
979     )
980   UNION
981     -- and start walking down the org unit hierarchy,
982     -- letting entries for child OUs override subfield
983     -- descriptions, repeatability, and the like.
984     SELECT c.id, marc_format, marc_record_type, tag, code,
985            COALESCE(c.description, p.description),
986            COALESCE(c.repeatable, p.repeatable),
987            COALESCE(c.mandatory, p.mandatory),
988            COALESCE(c.hidden, p.hidden),
989            COALESCE(c.value_ctype, p.value_ctype),
990            c.owner,
991            depth + 1
992     FROM config.marc_subfield c
993     JOIN ou_marc_subfields p USING (marc_format, marc_record_type, tag, code)
994     JOIN actor.org_unit aou ON (c.owner = aou.id)
995     WHERE (aou.parent_ou = p.owner OR (aou.parent_ou IS NULL AND p.owner IS NULL))
996 )
997 SELECT id, marc_format, marc_record_type, tag, code,
998        description, repeatable,
999        mandatory, hidden, value_ctype, owner, depth
1000 FROM ou_marc_subfields;
1001
1002 CREATE OR REPLACE FUNCTION config.ou_marc_fields(marc_format INTEGER, marc_record_type config.marc_record_type, ou INTEGER) RETURNS SETOF config.marc_field AS $func$
1003     SELECT id, marc_format, marc_record_type, tag, name, description, fixed_field, repeatable, mandatory, hidden, owner
1004     FROM (
1005         SELECT id, marc_format, marc_record_type, tag, name, description,
1006               fixed_field, repeatable, mandatory, hidden, owner, depth,
1007               MAX(depth) OVER (PARTITION BY marc_format, marc_record_type, tag) AS winner
1008         FROM config.marc_field_for_ou
1009         WHERE (owner IS NULL
1010                OR owner IN (SELECT id FROM actor.org_unit_ancestors($3)))
1011         AND   marc_format = $1
1012         AND   marc_record_type = $2
1013     ) AS s
1014     WHERE depth = winner
1015     AND not hidden;
1016 $func$ LANGUAGE SQL;
1017
1018 CREATE OR REPLACE FUNCTION config.ou_marc_subfields(marc_format INTEGER, marc_record_type config.marc_record_type, ou INTEGER) RETURNS SETOF config.marc_subfield AS $func$
1019     SELECT id, marc_format, marc_record_type, tag, code, description, repeatable, mandatory,
1020            hidden, value_ctype, owner
1021     FROM (
1022         SELECT id, marc_format, marc_record_type, tag, code, description,
1023               repeatable, mandatory, hidden, value_ctype, owner, depth,
1024               MAX(depth) OVER (PARTITION BY marc_format, marc_record_type, tag, code) AS winner
1025         FROM config.marc_subfield_for_ou
1026         WHERE (owner IS NULL
1027                OR owner IN (SELECT id FROM actor.org_unit_ancestors($3)))
1028         AND   marc_format = $1
1029         AND   marc_record_type = $2
1030     ) AS s
1031     WHERE depth = winner
1032     AND not hidden;
1033 $func$ LANGUAGE SQL;
1034
1035
1036 SELECT evergreen.upgrade_deps_block_check('0934', :eg_version);
1037
1038 INSERT INTO config.marc_format(id, code, name) VALUES (1, 'marc21', 'MARC 21');
1039 SELECT SETVAL('config.marc_format_id_seq', 100);
1040 ALTER SEQUENCE config.marc_field_id_seq RESTART WITH 1;
1041 ALTER SEQUENCE config.marc_subfield_id_seq RESTART WITH 1;
1042
1043 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
1044                               fixed_field, repeatable, mandatory, hidden)
1045 VALUES (1, 'biblio', '001', $$Control Number$$, $$Control number assigned by the organization creating, using, or distributing the record. The MARC code for the organization is contained in field 003 (Control Number Identifier).$$,
1046 TRUE, FALSE, FALSE, FALSE);
1047 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
1048                               fixed_field, repeatable, mandatory, hidden)
1049 VALUES (1, 'biblio', '003', $$Control Number Identifier$$, $$MARC code for the organization whose control number is contained in field 001 (Control Number).$$,
1050 TRUE, FALSE, FALSE, FALSE);
1051 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
1052                               fixed_field, repeatable, mandatory, hidden)
1053 VALUES (1, 'biblio', '005', $$Date and Time of Latest Transaction$$, $$Sixteen characters that indicate the date and time of the latest record transaction and serve as a version identifier for the record. They are recorded according to (ISO 8601). The date requires 8 numeric characters in the pattern . The time requires 8 numeric characters in the pattern expressed in terms of the 24-hour (00-23) clock.$$,
1054 TRUE, FALSE, FALSE, FALSE);
1055 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
1056                               fixed_field, repeatable, mandatory, hidden)
1057 VALUES (1, 'biblio', '006', $$Fixed-Length Data Elements-Additional Material Characteristics$$, $$Eighteen character positions (00-17) that provide for coding information about special aspects of the item being cataloged that cannot be coded in field 008 (Fixed-Length Data Elements). It is used in cases when an item has multiple characteristics (e.g., printed material with an accompanying cassette or a map that is issued serially) and to record the coded serial aspects of nontextual continuing resources.$$,
1058 TRUE, TRUE, FALSE, FALSE);
1059 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
1060                               fixed_field, repeatable, mandatory, hidden)
1061 VALUES (1, 'biblio', '007', $$Physical Description Fixed Field-General Information$$, $$Special information about the physical characteristics in a coded form. The information may represent the whole item or parts of an item such as accompanying material.$$,
1062 TRUE, TRUE, FALSE, FALSE);
1063 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
1064                               fixed_field, repeatable, mandatory, hidden)
1065 VALUES (1, 'biblio', '008', $$Fixed-Length Data Elements-General Information$$, $$Forty character positions (00-39) that provide coded information about the record as a whole and about special bibliographic aspects of the item being cataloged. These coded data elements are potentially useful for retrieval and data management purposes.$$,
1066 TRUE, FALSE, FALSE, FALSE);
1067 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
1068                               fixed_field, repeatable, mandatory, hidden)
1069 VALUES (1, 'biblio', '010', $$Library of Congress Control Number$$, $$Unique number assigned to a MARC record by the Library of Congress. Valid MARC prefixes for LC control numbers are published in .$$,
1070 FALSE, FALSE, FALSE, FALSE);
1071 INSERT INTO config.record_attr_definition(name, label)
1072 VALUES ('marc21_biblio_010_ind_1', 'MARC 21 biblio field 010 indicator position 1');
1073 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1074 VALUES ('marc21_biblio_010_ind_1', '#', $$Undefined$$, FALSE, TRUE);
1075 INSERT INTO config.record_attr_definition(name, label)
1076 VALUES ('marc21_biblio_010_ind_2', 'MARC 21 biblio field 010 indicator position 2');
1077 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1078 VALUES ('marc21_biblio_010_ind_2', '#', $$Undefined$$, FALSE, TRUE);
1079 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1080                                  repeatable, mandatory, hidden)
1081 VALUES (1, 'biblio', '010', 'a', $$LC control number$$,
1082 FALSE, FALSE, FALSE);
1083 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1084                                  repeatable, mandatory, hidden)
1085 VALUES (1, 'biblio', '010', 'b', $$NUCMC control number$$,
1086 TRUE, FALSE, FALSE);
1087 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1088                                  repeatable, mandatory, hidden)
1089 VALUES (1, 'biblio', '010', 'z', $$Canceled/invalid LC control number$$,
1090 TRUE, FALSE, FALSE);
1091 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1092                                  repeatable, mandatory, hidden)
1093 VALUES (1, 'biblio', '010', '8', $$Field link and sequence number$$,
1094 TRUE, FALSE, FALSE);
1095 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
1096                               fixed_field, repeatable, mandatory, hidden)
1097 VALUES (1, 'biblio', '013', $$Patent Control Information$$, $$Information used to control patent documents. In addition to information about patents, this field may contain information relating to inventors' certificates, utility certificates, utility models, patents or certificates of addition, inventors' certificates of addition, utility certificates of addition, and published applications for any of these.$$,
1098 FALSE, TRUE, FALSE, FALSE);
1099 INSERT INTO config.record_attr_definition(name, label)
1100 VALUES ('marc21_biblio_013_ind_1', 'MARC 21 biblio field 013 indicator position 1');
1101 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1102 VALUES ('marc21_biblio_013_ind_1', '#', $$Undefined$$, FALSE, TRUE);
1103 INSERT INTO config.record_attr_definition(name, label)
1104 VALUES ('marc21_biblio_013_ind_2', 'MARC 21 biblio field 013 indicator position 2');
1105 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1106 VALUES ('marc21_biblio_013_ind_2', '#', $$Undefined$$, FALSE, TRUE);
1107 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1108                                  repeatable, mandatory, hidden)
1109 VALUES (1, 'biblio', '013', 'a', $$Number$$,
1110 FALSE, FALSE, FALSE);
1111 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1112                                  repeatable, mandatory, hidden)
1113 VALUES (1, 'biblio', '013', 'b', $$Country$$,
1114 FALSE, FALSE, FALSE);
1115 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1116                                  repeatable, mandatory, hidden)
1117 VALUES (1, 'biblio', '013', 'c', $$Type of number$$,
1118 FALSE, FALSE, FALSE);
1119 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1120                                  repeatable, mandatory, hidden)
1121 VALUES (1, 'biblio', '013', 'd', $$Date$$,
1122 TRUE, FALSE, FALSE);
1123 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1124                                  repeatable, mandatory, hidden)
1125 VALUES (1, 'biblio', '013', 'e', $$Status$$,
1126 TRUE, FALSE, FALSE);
1127 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1128                                  repeatable, mandatory, hidden)
1129 VALUES (1, 'biblio', '013', 'f', $$Party to document$$,
1130 TRUE, FALSE, FALSE);
1131 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1132                                  repeatable, mandatory, hidden)
1133 VALUES (1, 'biblio', '013', '6', $$Linkage$$,
1134 FALSE, FALSE, FALSE);
1135 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1136                                  repeatable, mandatory, hidden)
1137 VALUES (1, 'biblio', '013', '8', $$Field link and sequence number$$,
1138 TRUE, FALSE, FALSE);
1139 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
1140                               fixed_field, repeatable, mandatory, hidden)
1141 VALUES (1, 'biblio', '015', $$National Bibliography Number$$, $$Bibliography entry number(s) for cataloging information that is derived from a national bibliography.$$,
1142 FALSE, TRUE, FALSE, FALSE);
1143 INSERT INTO config.record_attr_definition(name, label)
1144 VALUES ('marc21_biblio_015_ind_1', 'MARC 21 biblio field 015 indicator position 1');
1145 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1146 VALUES ('marc21_biblio_015_ind_1', '#', $$Undefined$$, FALSE, TRUE);
1147 INSERT INTO config.record_attr_definition(name, label)
1148 VALUES ('marc21_biblio_015_ind_2', 'MARC 21 biblio field 015 indicator position 2');
1149 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1150 VALUES ('marc21_biblio_015_ind_2', '#', $$Undefined$$, FALSE, TRUE);
1151 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1152                                  repeatable, mandatory, hidden)
1153 VALUES (1, 'biblio', '015', 'a', $$National bibliography number$$,
1154 TRUE, FALSE, FALSE);
1155 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1156                                  repeatable, mandatory, hidden)
1157 VALUES (1, 'biblio', '015', 'z', $$Canceled/invalid national bibliography number$$,
1158 TRUE, FALSE, FALSE);
1159 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1160                                  repeatable, mandatory, hidden)
1161 VALUES (1, 'biblio', '015', '2', $$Source$$,
1162 FALSE, FALSE, FALSE);
1163 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1164                                  repeatable, mandatory, hidden)
1165 VALUES (1, 'biblio', '015', '6', $$Linkage$$,
1166 FALSE, FALSE, FALSE);
1167 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1168                                  repeatable, mandatory, hidden)
1169 VALUES (1, 'biblio', '015', '8', $$Field link and sequence number$$,
1170 TRUE, FALSE, FALSE);
1171 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
1172                               fixed_field, repeatable, mandatory, hidden)
1173 VALUES (1, 'biblio', '016', $$National Bibliographic Agency Control Number$$, $$Unique numbers that have been assigned to a record by a national bibliographic agency other than the Library of Congress. The control number may also appear in field 001 (Control Number) in records distributed by the same national agency. This number is a record control number used in a national bibliographic agency system, rather than a number used for an entry in a national bibliographic, field 015 (National Bibliography Number).$$,
1174 FALSE, TRUE, FALSE, FALSE);
1175 INSERT INTO config.record_attr_definition(name, label)
1176 VALUES ('marc21_biblio_016_ind_1', 'MARC 21 biblio field 016 indicator position 1');
1177 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1178 VALUES ('marc21_biblio_016_ind_1', '#', $$Library and Archives Canada$$, FALSE, TRUE);
1179 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1180 VALUES ('marc21_biblio_016_ind_1', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
1181 INSERT INTO config.record_attr_definition(name, label)
1182 VALUES ('marc21_biblio_016_ind_2', 'MARC 21 biblio field 016 indicator position 2');
1183 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1184 VALUES ('marc21_biblio_016_ind_2', '#', $$Undefined$$, FALSE, TRUE);
1185 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1186                                  repeatable, mandatory, hidden)
1187 VALUES (1, 'biblio', '016', 'a', $$Record control number$$,
1188 FALSE, FALSE, FALSE);
1189 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1190                                  repeatable, mandatory, hidden)
1191 VALUES (1, 'biblio', '016', 'z', $$Canceled/invalid control number$$,
1192 TRUE, FALSE, FALSE);
1193 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1194                                  repeatable, mandatory, hidden)
1195 VALUES (1, 'biblio', '016', '2', $$Source$$,
1196 FALSE, FALSE, FALSE);
1197 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1198                                  repeatable, mandatory, hidden)
1199 VALUES (1, 'biblio', '016', '8', $$Field link and sequence number$$,
1200 TRUE, FALSE, FALSE);
1201 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
1202                               fixed_field, repeatable, mandatory, hidden)
1203 VALUES (1, 'biblio', '017', $$Copyright or Legal Deposit Number$$, $$Copyright registration or legal deposit number for an item that was acquired by copyright or legal deposit.$$,
1204 FALSE, TRUE, FALSE, FALSE);
1205 INSERT INTO config.record_attr_definition(name, label)
1206 VALUES ('marc21_biblio_017_ind_1', 'MARC 21 biblio field 017 indicator position 1');
1207 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1208 VALUES ('marc21_biblio_017_ind_1', '#', $$Undefined$$, FALSE, TRUE);
1209 INSERT INTO config.record_attr_definition(name, label)
1210 VALUES ('marc21_biblio_017_ind_2', 'MARC 21 biblio field 017 indicator position 2');
1211 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1212 VALUES ('marc21_biblio_017_ind_2', '#', $$Copyright or legal deposit number$$, FALSE, TRUE);
1213 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1214 VALUES ('marc21_biblio_017_ind_2', '8', $$No display constant generated$$, FALSE, TRUE);
1215 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1216                                  repeatable, mandatory, hidden)
1217 VALUES (1, 'biblio', '017', 'a', $$Copyright or legal deposit number$$,
1218 TRUE, FALSE, FALSE);
1219 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1220                                  repeatable, mandatory, hidden)
1221 VALUES (1, 'biblio', '017', 'b', $$Assigning agency$$,
1222 FALSE, FALSE, FALSE);
1223 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1224                                  repeatable, mandatory, hidden)
1225 VALUES (1, 'biblio', '017', 'd', $$Date$$,
1226 FALSE, FALSE, FALSE);
1227 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1228                                  repeatable, mandatory, hidden)
1229 VALUES (1, 'biblio', '017', 'i', $$Display text$$,
1230 FALSE, FALSE, FALSE);
1231 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1232                                  repeatable, mandatory, hidden)
1233 VALUES (1, 'biblio', '017', 'z', $$Canceled/invalid copyright or legal deposit number$$,
1234 TRUE, FALSE, FALSE);
1235 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1236                                  repeatable, mandatory, hidden)
1237 VALUES (1, 'biblio', '017', '2', $$Source$$,
1238 FALSE, FALSE, FALSE);
1239 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1240                                  repeatable, mandatory, hidden)
1241 VALUES (1, 'biblio', '017', '6', $$Linkage$$,
1242 FALSE, FALSE, FALSE);
1243 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1244                                  repeatable, mandatory, hidden)
1245 VALUES (1, 'biblio', '017', '8', $$Field link and sequence number$$,
1246 TRUE, FALSE, FALSE);
1247 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
1248                               fixed_field, repeatable, mandatory, hidden)
1249 VALUES (1, 'biblio', '018', $$Copyright Article-Fee Code$$, $$Unique identification code for component parts appearing in monographs or continuing resources.$$,
1250 FALSE, FALSE, FALSE, FALSE);
1251 INSERT INTO config.record_attr_definition(name, label)
1252 VALUES ('marc21_biblio_018_ind_1', 'MARC 21 biblio field 018 indicator position 1');
1253 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1254 VALUES ('marc21_biblio_018_ind_1', '#', $$Undefined$$, FALSE, TRUE);
1255 INSERT INTO config.record_attr_definition(name, label)
1256 VALUES ('marc21_biblio_018_ind_2', 'MARC 21 biblio field 018 indicator position 2');
1257 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1258 VALUES ('marc21_biblio_018_ind_2', '#', $$Undefined$$, FALSE, TRUE);
1259 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1260                                  repeatable, mandatory, hidden)
1261 VALUES (1, 'biblio', '018', 'a', $$Copyright article-fee code$$,
1262 FALSE, FALSE, FALSE);
1263 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1264                                  repeatable, mandatory, hidden)
1265 VALUES (1, 'biblio', '018', '6', $$Linkage$$,
1266 FALSE, FALSE, FALSE);
1267 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1268                                  repeatable, mandatory, hidden)
1269 VALUES (1, 'biblio', '018', '8', $$Field link and sequence number$$,
1270 TRUE, FALSE, FALSE);
1271 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
1272                               fixed_field, repeatable, mandatory, hidden)
1273 VALUES (1, 'biblio', '020', $$International Standard Book Number$$, $$International Standard Book Number (ISBN) assigned to a monographic publication by designated agencies in each country participating in the program. The field may include terms of availability and canceled or invalid ISBNs, such as ISBNs with invalid check digits or that are not applicable to the item being cataloged. It may be repeated for multiple numbers associated with the item (e.g., ISBNs for the hard bound and paperback manifestations; ISBNs for a set as a whole and for the individual parts in the set).$$,
1274 FALSE, TRUE, FALSE, FALSE);
1275 INSERT INTO config.record_attr_definition(name, label)
1276 VALUES ('marc21_biblio_020_ind_1', 'MARC 21 biblio field 020 indicator position 1');
1277 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1278 VALUES ('marc21_biblio_020_ind_1', '#', $$Undefined$$, FALSE, TRUE);
1279 INSERT INTO config.record_attr_definition(name, label)
1280 VALUES ('marc21_biblio_020_ind_2', 'MARC 21 biblio field 020 indicator position 2');
1281 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1282 VALUES ('marc21_biblio_020_ind_2', '#', $$Undefined$$, FALSE, TRUE);
1283 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1284                                  repeatable, mandatory, hidden)
1285 VALUES (1, 'biblio', '020', 'a', $$International Standard Book Number$$,
1286 FALSE, FALSE, FALSE);
1287 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1288                                  repeatable, mandatory, hidden)
1289 VALUES (1, 'biblio', '020', 'c', $$Terms of availability$$,
1290 FALSE, FALSE, FALSE);
1291 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1292                                  repeatable, mandatory, hidden)
1293 VALUES (1, 'biblio', '020', 'z', $$Canceled/invalid ISBN$$,
1294 TRUE, FALSE, FALSE);
1295 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1296                                  repeatable, mandatory, hidden)
1297 VALUES (1, 'biblio', '020', '6', $$Linkage$$,
1298 FALSE, FALSE, FALSE);
1299 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1300                                  repeatable, mandatory, hidden)
1301 VALUES (1, 'biblio', '020', '8', $$Field link and sequence number$$,
1302 TRUE, FALSE, FALSE);
1303 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
1304                               fixed_field, repeatable, mandatory, hidden)
1305 VALUES (1, 'biblio', '022', $$International Standard Serial Number$$, $$International Standard Serial Number (ISSN), a unique identification number assigned to a continuing resource, and/or any incorrect or canceled ISSN.$$,
1306 FALSE, TRUE, FALSE, FALSE);
1307 INSERT INTO config.record_attr_definition(name, label)
1308 VALUES ('marc21_biblio_022_ind_1', 'MARC 21 biblio field 022 indicator position 1');
1309 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1310 VALUES ('marc21_biblio_022_ind_1', '#', $$No level specified$$, FALSE, TRUE);
1311 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1312 VALUES ('marc21_biblio_022_ind_1', '0', $$Continuing resource of international interest$$, FALSE, TRUE);
1313 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1314 VALUES ('marc21_biblio_022_ind_1', '1', $$Continuing resource not of international interest$$, FALSE, TRUE);
1315 INSERT INTO config.record_attr_definition(name, label)
1316 VALUES ('marc21_biblio_022_ind_2', 'MARC 21 biblio field 022 indicator position 2');
1317 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1318 VALUES ('marc21_biblio_022_ind_2', '#', $$Undefined$$, FALSE, TRUE);
1319 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1320                                  repeatable, mandatory, hidden)
1321 VALUES (1, 'biblio', '022', 'a', $$International Standard Serial Number$$,
1322 FALSE, FALSE, FALSE);
1323 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1324                                  repeatable, mandatory, hidden)
1325 VALUES (1, 'biblio', '022', 'l', $$ISSN-L$$,
1326 FALSE, FALSE, FALSE);
1327 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1328                                  repeatable, mandatory, hidden)
1329 VALUES (1, 'biblio', '022', 'm', $$Canceled ISSN-L$$,
1330 TRUE, FALSE, FALSE);
1331 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1332                                  repeatable, mandatory, hidden)
1333 VALUES (1, 'biblio', '022', 'y', $$Incorrect ISSN$$,
1334 TRUE, FALSE, FALSE);
1335 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1336                                  repeatable, mandatory, hidden)
1337 VALUES (1, 'biblio', '022', 'z', $$Canceled ISSN$$,
1338 TRUE, FALSE, FALSE);
1339 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1340                                  repeatable, mandatory, hidden)
1341 VALUES (1, 'biblio', '022', '2', $$Source$$,
1342 FALSE, FALSE, FALSE);
1343 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1344                                  repeatable, mandatory, hidden)
1345 VALUES (1, 'biblio', '022', '6', $$Linkage$$,
1346 FALSE, FALSE, FALSE);
1347 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1348                                  repeatable, mandatory, hidden)
1349 VALUES (1, 'biblio', '022', '8', $$Field link and sequence number$$,
1350 TRUE, FALSE, FALSE);
1351 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
1352                               fixed_field, repeatable, mandatory, hidden)
1353 VALUES (1, 'biblio', '024', $$Other Standard Identifier$$, $$Standard number or code published on an item which cannot be accommodated in another field (e.g., field 020 (International Standard Book Number), 022 (International Standard Serial Number) , and 027 (Standard Technical Report Number)). The type of standard number or code is identified in the first indicator position or in subfield $2 (Source of number or code).$$,
1354 FALSE, TRUE, FALSE, FALSE);
1355 INSERT INTO config.record_attr_definition(name, label)
1356 VALUES ('marc21_biblio_024_ind_1', 'MARC 21 biblio field 024 indicator position 1');
1357 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1358 VALUES ('marc21_biblio_024_ind_1', '0', $$International Standard Recording Code$$, FALSE, TRUE);
1359 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1360 VALUES ('marc21_biblio_024_ind_1', '1', $$Universal Product Code$$, FALSE, TRUE);
1361 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1362 VALUES ('marc21_biblio_024_ind_1', '2', $$International Standard Music Number$$, FALSE, TRUE);
1363 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1364 VALUES ('marc21_biblio_024_ind_1', '3', $$International Article Number$$, FALSE, TRUE);
1365 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1366 VALUES ('marc21_biblio_024_ind_1', '4', $$Serial Item and Contribution Identifier$$, FALSE, TRUE);
1367 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1368 VALUES ('marc21_biblio_024_ind_1', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
1369 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1370 VALUES ('marc21_biblio_024_ind_1', '8', $$Unspecified type of standard number or code$$, FALSE, TRUE);
1371 INSERT INTO config.record_attr_definition(name, label)
1372 VALUES ('marc21_biblio_024_ind_2', 'MARC 21 biblio field 024 indicator position 2');
1373 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1374 VALUES ('marc21_biblio_024_ind_2', '#', $$No information provided$$, FALSE, TRUE);
1375 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1376 VALUES ('marc21_biblio_024_ind_2', '0', $$No difference$$, FALSE, TRUE);
1377 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1378 VALUES ('marc21_biblio_024_ind_2', '1', $$Difference$$, FALSE, TRUE);
1379 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1380                                  repeatable, mandatory, hidden)
1381 VALUES (1, 'biblio', '024', 'a', $$Standard number or code$$,
1382 FALSE, FALSE, FALSE);
1383 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1384                                  repeatable, mandatory, hidden)
1385 VALUES (1, 'biblio', '024', 'c', $$Terms of availability$$,
1386 FALSE, FALSE, FALSE);
1387 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1388                                  repeatable, mandatory, hidden)
1389 VALUES (1, 'biblio', '024', 'd', $$Additional codes following the standard number or code$$,
1390 FALSE, FALSE, FALSE);
1391 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1392                                  repeatable, mandatory, hidden)
1393 VALUES (1, 'biblio', '024', 'z', $$Canceled/invalid standard number or code$$,
1394 TRUE, FALSE, FALSE);
1395 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1396                                  repeatable, mandatory, hidden)
1397 VALUES (1, 'biblio', '024', '2', $$Source of number or code$$,
1398 FALSE, FALSE, FALSE);
1399 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1400                                  repeatable, mandatory, hidden)
1401 VALUES (1, 'biblio', '024', '6', $$Linkage$$,
1402 FALSE, FALSE, FALSE);
1403 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1404                                  repeatable, mandatory, hidden)
1405 VALUES (1, 'biblio', '024', '8', $$Field link and sequence number$$,
1406 TRUE, FALSE, FALSE);
1407 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
1408                               fixed_field, repeatable, mandatory, hidden)
1409 VALUES (1, 'biblio', '025', $$Overseas Acquisition Number$$, $$Number assigned by the Library of Congress to works acquired through one of its overseas acquisition programs.$$,
1410 FALSE, TRUE, FALSE, FALSE);
1411 INSERT INTO config.record_attr_definition(name, label)
1412 VALUES ('marc21_biblio_025_ind_1', 'MARC 21 biblio field 025 indicator position 1');
1413 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1414 VALUES ('marc21_biblio_025_ind_1', '#', $$Undefined$$, FALSE, TRUE);
1415 INSERT INTO config.record_attr_definition(name, label)
1416 VALUES ('marc21_biblio_025_ind_2', 'MARC 21 biblio field 025 indicator position 2');
1417 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1418 VALUES ('marc21_biblio_025_ind_2', '#', $$Undefined$$, FALSE, TRUE);
1419 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1420                                  repeatable, mandatory, hidden)
1421 VALUES (1, 'biblio', '025', 'a', $$Overseas acquisition number$$,
1422 TRUE, FALSE, FALSE);
1423 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1424                                  repeatable, mandatory, hidden)
1425 VALUES (1, 'biblio', '025', '8', $$Field link and sequence number$$,
1426 TRUE, FALSE, FALSE);
1427 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
1428                               fixed_field, repeatable, mandatory, hidden)
1429 VALUES (1, 'biblio', '026', $$Fingerprint Identifier$$, $$Used to assist in the identification of antiquarian books by recording information comprising groups of characters taken from specified positions on specified pages of the book, in accordance with the principles laid down in various published guidelines.$$,
1430 FALSE, TRUE, FALSE, FALSE);
1431 INSERT INTO config.record_attr_definition(name, label)
1432 VALUES ('marc21_biblio_026_ind_1', 'MARC 21 biblio field 026 indicator position 1');
1433 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1434 VALUES ('marc21_biblio_026_ind_1', '#', $$Undefined$$, FALSE, TRUE);
1435 INSERT INTO config.record_attr_definition(name, label)
1436 VALUES ('marc21_biblio_026_ind_2', 'MARC 21 biblio field 026 indicator position 2');
1437 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1438 VALUES ('marc21_biblio_026_ind_2', '#', $$Undefined$$, FALSE, TRUE);
1439 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1440                                  repeatable, mandatory, hidden)
1441 VALUES (1, 'biblio', '026', 'a', $$First and second groups of characters$$,
1442 FALSE, FALSE, FALSE);
1443 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1444                                  repeatable, mandatory, hidden)
1445 VALUES (1, 'biblio', '026', 'b', $$Third and fourth groups of characters$$,
1446 FALSE, FALSE, FALSE);
1447 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1448                                  repeatable, mandatory, hidden)
1449 VALUES (1, 'biblio', '026', 'c', $$Date$$,
1450 FALSE, FALSE, FALSE);
1451 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1452                                  repeatable, mandatory, hidden)
1453 VALUES (1, 'biblio', '026', 'd', $$Number of volume or part$$,
1454 TRUE, FALSE, FALSE);
1455 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1456                                  repeatable, mandatory, hidden)
1457 VALUES (1, 'biblio', '026', 'e', $$Unparsed fingerprint$$,
1458 FALSE, FALSE, FALSE);
1459 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1460                                  repeatable, mandatory, hidden)
1461 VALUES (1, 'biblio', '026', '2', $$Source$$,
1462 FALSE, FALSE, FALSE);
1463 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1464                                  repeatable, mandatory, hidden)
1465 VALUES (1, 'biblio', '026', '5', $$Institution to which field applies$$,
1466 TRUE, FALSE, FALSE);
1467 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1468                                  repeatable, mandatory, hidden)
1469 VALUES (1, 'biblio', '026', '6', $$Linkage$$,
1470 FALSE, FALSE, FALSE);
1471 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1472                                  repeatable, mandatory, hidden)
1473 VALUES (1, 'biblio', '026', '8', $$Field link and sequence number$$,
1474 TRUE, FALSE, FALSE);
1475 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
1476                               fixed_field, repeatable, mandatory, hidden)
1477 VALUES (1, 'biblio', '027', $$Standard Technical Report Number$$, $$International Standard Technical Report number (ISRN) or a Standard Technical Report Number (STRN)assigned to a technical report. Assignment of STRNs is coordinated by the National Technical Information Service (NTIS), which also maintains an assignment registry.$$,
1478 FALSE, TRUE, FALSE, FALSE);
1479 INSERT INTO config.record_attr_definition(name, label)
1480 VALUES ('marc21_biblio_027_ind_1', 'MARC 21 biblio field 027 indicator position 1');
1481 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1482 VALUES ('marc21_biblio_027_ind_1', '#', $$Undefined$$, FALSE, TRUE);
1483 INSERT INTO config.record_attr_definition(name, label)
1484 VALUES ('marc21_biblio_027_ind_2', 'MARC 21 biblio field 027 indicator position 2');
1485 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1486 VALUES ('marc21_biblio_027_ind_2', '#', $$Undefined$$, FALSE, TRUE);
1487 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1488                                  repeatable, mandatory, hidden)
1489 VALUES (1, 'biblio', '027', 'a', $$Standard technical report number$$,
1490 FALSE, FALSE, FALSE);
1491 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1492                                  repeatable, mandatory, hidden)
1493 VALUES (1, 'biblio', '027', 'z', $$Canceled/invalid number$$,
1494 TRUE, FALSE, FALSE);
1495 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1496                                  repeatable, mandatory, hidden)
1497 VALUES (1, 'biblio', '027', '6', $$Linkage$$,
1498 FALSE, FALSE, FALSE);
1499 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1500                                  repeatable, mandatory, hidden)
1501 VALUES (1, 'biblio', '027', '8', $$Field link and sequence number$$,
1502 TRUE, FALSE, FALSE);
1503 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
1504                               fixed_field, repeatable, mandatory, hidden)
1505 VALUES (1, 'biblio', '028', $$Publisher Number$$, $$Formatted number used for sound recordings, printed music, and videorecordings. Publisher's numbers that are given in an unformatted form are recorded in field 500 (General Note). A print constant identifying the kind of publisher number may be generated based on the value in the first indicator position.$$,
1506 FALSE, TRUE, FALSE, FALSE);
1507 INSERT INTO config.record_attr_definition(name, label)
1508 VALUES ('marc21_biblio_028_ind_1', 'MARC 21 biblio field 028 indicator position 1');
1509 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1510 VALUES ('marc21_biblio_028_ind_1', '0', $$Issue number$$, FALSE, TRUE);
1511 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1512 VALUES ('marc21_biblio_028_ind_1', '1', $$Matrix number$$, FALSE, TRUE);
1513 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1514 VALUES ('marc21_biblio_028_ind_1', '2', $$Plate number$$, FALSE, TRUE);
1515 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1516 VALUES ('marc21_biblio_028_ind_1', '3', $$Other music number$$, FALSE, TRUE);
1517 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1518 VALUES ('marc21_biblio_028_ind_1', '4', $$Videorecording number$$, FALSE, TRUE);
1519 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1520 VALUES ('marc21_biblio_028_ind_1', '5', $$Other publisher number$$, FALSE, TRUE);
1521 INSERT INTO config.record_attr_definition(name, label)
1522 VALUES ('marc21_biblio_028_ind_2', 'MARC 21 biblio field 028 indicator position 2');
1523 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1524 VALUES ('marc21_biblio_028_ind_2', '0', $$No note, no added entry$$, FALSE, TRUE);
1525 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1526 VALUES ('marc21_biblio_028_ind_2', '1', $$Note, added entry$$, FALSE, TRUE);
1527 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1528 VALUES ('marc21_biblio_028_ind_2', '2', $$Note, no added entry$$, FALSE, TRUE);
1529 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1530 VALUES ('marc21_biblio_028_ind_2', '3', $$No note, added entry$$, FALSE, TRUE);
1531 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1532                                  repeatable, mandatory, hidden)
1533 VALUES (1, 'biblio', '028', 'a', $$Publisher number$$,
1534 FALSE, FALSE, FALSE);
1535 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1536                                  repeatable, mandatory, hidden)
1537 VALUES (1, 'biblio', '028', 'b', $$Source$$,
1538 FALSE, FALSE, FALSE);
1539 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1540                                  repeatable, mandatory, hidden)
1541 VALUES (1, 'biblio', '028', '6', $$Linkage$$,
1542 FALSE, FALSE, FALSE);
1543 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1544                                  repeatable, mandatory, hidden)
1545 VALUES (1, 'biblio', '028', '8', $$Field link and sequence number$$,
1546 TRUE, FALSE, FALSE);
1547 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
1548                               fixed_field, repeatable, mandatory, hidden)
1549 VALUES (1, 'biblio', '030', $$CODEN Designation$$, $$CODEN designation for a bibliographic title. The CODEN is assigned by the International CODEN Section of Chemical Abstracts Service.$$,
1550 FALSE, TRUE, FALSE, FALSE);
1551 INSERT INTO config.record_attr_definition(name, label)
1552 VALUES ('marc21_biblio_030_ind_1', 'MARC 21 biblio field 030 indicator position 1');
1553 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1554 VALUES ('marc21_biblio_030_ind_1', '#', $$Undefined$$, FALSE, TRUE);
1555 INSERT INTO config.record_attr_definition(name, label)
1556 VALUES ('marc21_biblio_030_ind_2', 'MARC 21 biblio field 030 indicator position 2');
1557 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1558 VALUES ('marc21_biblio_030_ind_2', '#', $$Undefined$$, FALSE, TRUE);
1559 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1560                                  repeatable, mandatory, hidden)
1561 VALUES (1, 'biblio', '030', 'a', $$CODEN$$,
1562 FALSE, FALSE, FALSE);
1563 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1564                                  repeatable, mandatory, hidden)
1565 VALUES (1, 'biblio', '030', 'z', $$Canceled/invalid CODEN$$,
1566 TRUE, FALSE, FALSE);
1567 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1568                                  repeatable, mandatory, hidden)
1569 VALUES (1, 'biblio', '030', '6', $$Linkage$$,
1570 FALSE, FALSE, FALSE);
1571 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1572                                  repeatable, mandatory, hidden)
1573 VALUES (1, 'biblio', '030', '8', $$Field link and sequence number$$,
1574 TRUE, FALSE, FALSE);
1575 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
1576                               fixed_field, repeatable, mandatory, hidden)
1577 VALUES (1, 'biblio', '031', $$Musical Incipits Information$$, $$Coded data representing the musical incipit for music using established notation schemes that employ ordinary ASCII symbols. Primarily used to identify music manuscripts, but can be applied to any material containing music.$$,
1578 FALSE, TRUE, FALSE, FALSE);
1579 INSERT INTO config.record_attr_definition(name, label)
1580 VALUES ('marc21_biblio_031_ind_1', 'MARC 21 biblio field 031 indicator position 1');
1581 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1582 VALUES ('marc21_biblio_031_ind_1', '#', $$Undefined$$, FALSE, TRUE);
1583 INSERT INTO config.record_attr_definition(name, label)
1584 VALUES ('marc21_biblio_031_ind_2', 'MARC 21 biblio field 031 indicator position 2');
1585 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1586 VALUES ('marc21_biblio_031_ind_2', '#', $$Undefined$$, FALSE, TRUE);
1587 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1588                                  repeatable, mandatory, hidden)
1589 VALUES (1, 'biblio', '031', 'a', $$Number of work$$,
1590 FALSE, FALSE, FALSE);
1591 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1592                                  repeatable, mandatory, hidden)
1593 VALUES (1, 'biblio', '031', 'b', $$Number of movement$$,
1594 FALSE, FALSE, FALSE);
1595 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1596                                  repeatable, mandatory, hidden)
1597 VALUES (1, 'biblio', '031', 'c', $$Number of excerpt$$,
1598 FALSE, FALSE, FALSE);
1599 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1600                                  repeatable, mandatory, hidden)
1601 VALUES (1, 'biblio', '031', 'd', $$Caption or heading$$,
1602 TRUE, FALSE, FALSE);
1603 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1604                                  repeatable, mandatory, hidden)
1605 VALUES (1, 'biblio', '031', 'e', $$Role$$,
1606 FALSE, FALSE, FALSE);
1607 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1608                                  repeatable, mandatory, hidden)
1609 VALUES (1, 'biblio', '031', 'g', $$Clef$$,
1610 FALSE, FALSE, FALSE);
1611 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1612                                  repeatable, mandatory, hidden)
1613 VALUES (1, 'biblio', '031', 'm', $$Voice/instrument$$,
1614 FALSE, FALSE, FALSE);
1615 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1616                                  repeatable, mandatory, hidden)
1617 VALUES (1, 'biblio', '031', 'n', $$Key signature$$,
1618 FALSE, FALSE, FALSE);
1619 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1620                                  repeatable, mandatory, hidden)
1621 VALUES (1, 'biblio', '031', 'o', $$Time signature$$,
1622 FALSE, FALSE, FALSE);
1623 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1624                                  repeatable, mandatory, hidden)
1625 VALUES (1, 'biblio', '031', 'p', $$Musical notation$$,
1626 FALSE, FALSE, FALSE);
1627 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1628                                  repeatable, mandatory, hidden)
1629 VALUES (1, 'biblio', '031', 'q', $$General note$$,
1630 TRUE, FALSE, FALSE);
1631 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1632                                  repeatable, mandatory, hidden)
1633 VALUES (1, 'biblio', '031', 'r', $$Key or mode$$,
1634 FALSE, FALSE, FALSE);
1635 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1636                                  repeatable, mandatory, hidden)
1637 VALUES (1, 'biblio', '031', 's', $$Coded validity note$$,
1638 TRUE, FALSE, FALSE);
1639 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1640                                  repeatable, mandatory, hidden)
1641 VALUES (1, 'biblio', '031', 't', $$Text incipit$$,
1642 TRUE, FALSE, FALSE);
1643 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1644                                  repeatable, mandatory, hidden)
1645 VALUES (1, 'biblio', '031', 'u', $$Uniform Resource Identifier$$,
1646 TRUE, FALSE, FALSE);
1647 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1648                                  repeatable, mandatory, hidden)
1649 VALUES (1, 'biblio', '031', 'y', $$Link text$$,
1650 TRUE, FALSE, FALSE);
1651 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1652                                  repeatable, mandatory, hidden)
1653 VALUES (1, 'biblio', '031', 'z', $$Public note$$,
1654 TRUE, FALSE, FALSE);
1655 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1656                                  repeatable, mandatory, hidden)
1657 VALUES (1, 'biblio', '031', '2', $$System code$$,
1658 FALSE, FALSE, FALSE);
1659 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1660                                  repeatable, mandatory, hidden)
1661 VALUES (1, 'biblio', '031', '6', $$Linkage$$,
1662 FALSE, FALSE, FALSE);
1663 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1664                                  repeatable, mandatory, hidden)
1665 VALUES (1, 'biblio', '031', '8', $$Field link and sequence number$$,
1666 TRUE, FALSE, FALSE);
1667 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
1668                               fixed_field, repeatable, mandatory, hidden)
1669 VALUES (1, 'biblio', '032', $$Postal Registration Number$$, $$Number assigned to a publication for which the specified postal service permits the use of a special mailing class privilege.$$,
1670 FALSE, TRUE, FALSE, FALSE);
1671 INSERT INTO config.record_attr_definition(name, label)
1672 VALUES ('marc21_biblio_032_ind_1', 'MARC 21 biblio field 032 indicator position 1');
1673 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1674 VALUES ('marc21_biblio_032_ind_1', '#', $$Undefined$$, FALSE, TRUE);
1675 INSERT INTO config.record_attr_definition(name, label)
1676 VALUES ('marc21_biblio_032_ind_2', 'MARC 21 biblio field 032 indicator position 2');
1677 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1678 VALUES ('marc21_biblio_032_ind_2', '#', $$Undefined$$, FALSE, TRUE);
1679 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1680                                  repeatable, mandatory, hidden)
1681 VALUES (1, 'biblio', '032', 'a', $$Postal registration number$$,
1682 FALSE, FALSE, FALSE);
1683 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1684                                  repeatable, mandatory, hidden)
1685 VALUES (1, 'biblio', '032', 'b', $$Source agency assigning number$$,
1686 FALSE, FALSE, FALSE);
1687 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1688                                  repeatable, mandatory, hidden)
1689 VALUES (1, 'biblio', '032', '6', $$Linkage$$,
1690 FALSE, FALSE, FALSE);
1691 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1692                                  repeatable, mandatory, hidden)
1693 VALUES (1, 'biblio', '032', '8', $$Field link and sequence number$$,
1694 TRUE, FALSE, FALSE);
1695 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
1696                               fixed_field, repeatable, mandatory, hidden)
1697 VALUES (1, 'biblio', '033', $$Date/Time and Place of an Event$$, $$Formatted date/time and/or coded place of creation, capture, recording, filming, execution, or broadcast associated with an event or the finding of a naturally occurring object. This information in textual form is contained in field 518 (Date/Time and Place of an Event Note).$$,
1698 FALSE, TRUE, FALSE, FALSE);
1699 INSERT INTO config.record_attr_definition(name, label)
1700 VALUES ('marc21_biblio_033_ind_1', 'MARC 21 biblio field 033 indicator position 1');
1701 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1702 VALUES ('marc21_biblio_033_ind_1', '#', $$No date information$$, FALSE, TRUE);
1703 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1704 VALUES ('marc21_biblio_033_ind_1', '0', $$Single date$$, FALSE, TRUE);
1705 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1706 VALUES ('marc21_biblio_033_ind_1', '1', $$Multiple single dates$$, FALSE, TRUE);
1707 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1708 VALUES ('marc21_biblio_033_ind_1', '2', $$Range of dates$$, FALSE, TRUE);
1709 INSERT INTO config.record_attr_definition(name, label)
1710 VALUES ('marc21_biblio_033_ind_2', 'MARC 21 biblio field 033 indicator position 2');
1711 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1712 VALUES ('marc21_biblio_033_ind_2', '#', $$No information provided$$, FALSE, TRUE);
1713 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1714 VALUES ('marc21_biblio_033_ind_2', '0', $$Capture$$, FALSE, TRUE);
1715 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1716 VALUES ('marc21_biblio_033_ind_2', '1', $$Broadcast$$, FALSE, TRUE);
1717 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1718 VALUES ('marc21_biblio_033_ind_2', '2', $$Finding$$, FALSE, TRUE);
1719 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1720                                  repeatable, mandatory, hidden)
1721 VALUES (1, 'biblio', '033', 'a', $$Formatted date/time$$,
1722 TRUE, FALSE, FALSE);
1723 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1724                                  repeatable, mandatory, hidden)
1725 VALUES (1, 'biblio', '033', 'b', $$Geographic classification area code$$,
1726 TRUE, FALSE, FALSE);
1727 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1728                                  repeatable, mandatory, hidden)
1729 VALUES (1, 'biblio', '033', 'c', $$Geographic classification subarea code$$,
1730 TRUE, FALSE, FALSE);
1731 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1732                                  repeatable, mandatory, hidden)
1733 VALUES (1, 'biblio', '033', 'p', $$Place of event$$,
1734 TRUE, FALSE, FALSE);
1735 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1736                                  repeatable, mandatory, hidden)
1737 VALUES (1, 'biblio', '033', '0', $$Record control number$$,
1738 TRUE, FALSE, FALSE);
1739 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1740                                  repeatable, mandatory, hidden)
1741 VALUES (1, 'biblio', '033', '2', $$Source of term$$,
1742 TRUE, FALSE, FALSE);
1743 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1744                                  repeatable, mandatory, hidden)
1745 VALUES (1, 'biblio', '033', '3', $$Materials specified$$,
1746 FALSE, FALSE, FALSE);
1747 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1748                                  repeatable, mandatory, hidden)
1749 VALUES (1, 'biblio', '033', '6', $$Linkage$$,
1750 FALSE, FALSE, FALSE);
1751 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1752                                  repeatable, mandatory, hidden)
1753 VALUES (1, 'biblio', '033', '8', $$Field link and sequence number$$,
1754 TRUE, FALSE, FALSE);
1755 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
1756                               fixed_field, repeatable, mandatory, hidden)
1757 VALUES (1, 'biblio', '034', $$Coded Cartographic Mathematical Data$$, $$Coded form of the mathematical data contained in field 255 (Mathematical Data Area) of the bibliographic record.$$,
1758 FALSE, TRUE, FALSE, FALSE);
1759 INSERT INTO config.record_attr_definition(name, label)
1760 VALUES ('marc21_biblio_034_ind_1', 'MARC 21 biblio field 034 indicator position 1');
1761 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1762 VALUES ('marc21_biblio_034_ind_1', '0', $$Scale indeterminable/No scale recorded$$, FALSE, TRUE);
1763 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1764 VALUES ('marc21_biblio_034_ind_1', '1', $$Single scale$$, FALSE, TRUE);
1765 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1766 VALUES ('marc21_biblio_034_ind_1', '3', $$Range of scales$$, FALSE, TRUE);
1767 INSERT INTO config.record_attr_definition(name, label)
1768 VALUES ('marc21_biblio_034_ind_2', 'MARC 21 biblio field 034 indicator position 2');
1769 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1770 VALUES ('marc21_biblio_034_ind_2', '#', $$Not applicable$$, FALSE, TRUE);
1771 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1772 VALUES ('marc21_biblio_034_ind_2', '0', $$Outer ring$$, FALSE, TRUE);
1773 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1774 VALUES ('marc21_biblio_034_ind_2', '1', $$Exclusion ring$$, FALSE, TRUE);
1775 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1776                                  repeatable, mandatory, hidden)
1777 VALUES (1, 'biblio', '034', 'a', $$Category of scale$$,
1778 FALSE, FALSE, FALSE);
1779 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1780                                  repeatable, mandatory, hidden)
1781 VALUES (1, 'biblio', '034', 'b', $$Constant ratio linear horizontal scale$$,
1782 TRUE, FALSE, FALSE);
1783 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1784                                  repeatable, mandatory, hidden)
1785 VALUES (1, 'biblio', '034', 'c', $$Constant ratio linear vertical scale$$,
1786 TRUE, FALSE, FALSE);
1787 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1788                                  repeatable, mandatory, hidden)
1789 VALUES (1, 'biblio', '034', 'd', $$Coordinates$$,
1790 TRUE, FALSE, FALSE);
1791 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1792                                  repeatable, mandatory, hidden)
1793 VALUES (1, 'biblio', '034', 'e', $$Coordinates$$,
1794 TRUE, FALSE, FALSE);
1795 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1796                                  repeatable, mandatory, hidden)
1797 VALUES (1, 'biblio', '034', 'f', $$Coordinates$$,
1798 TRUE, FALSE, FALSE);
1799 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1800                                  repeatable, mandatory, hidden)
1801 VALUES (1, 'biblio', '034', 'g', $$Coordinates$$,
1802 TRUE, FALSE, FALSE);
1803 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1804                                  repeatable, mandatory, hidden)
1805 VALUES (1, 'biblio', '034', 'h', $$Angular scale$$,
1806 TRUE, FALSE, FALSE);
1807 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1808                                  repeatable, mandatory, hidden)
1809 VALUES (1, 'biblio', '034', 'j', $$Declination$$,
1810 TRUE, FALSE, FALSE);
1811 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1812                                  repeatable, mandatory, hidden)
1813 VALUES (1, 'biblio', '034', 'k', $$Declination$$,
1814 TRUE, FALSE, FALSE);
1815 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1816                                  repeatable, mandatory, hidden)
1817 VALUES (1, 'biblio', '034', 'm', $$Right ascension$$,
1818 TRUE, FALSE, FALSE);
1819 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1820                                  repeatable, mandatory, hidden)
1821 VALUES (1, 'biblio', '034', 'n', $$Right ascension$$,
1822 TRUE, FALSE, FALSE);
1823 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1824                                  repeatable, mandatory, hidden)
1825 VALUES (1, 'biblio', '034', 'p', $$Equinox$$,
1826 FALSE, FALSE, FALSE);
1827 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1828                                  repeatable, mandatory, hidden)
1829 VALUES (1, 'biblio', '034', 'r', $$Distance from earth$$,
1830 FALSE, FALSE, FALSE);
1831 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1832                                  repeatable, mandatory, hidden)
1833 VALUES (1, 'biblio', '034', 's', $$G-ring latitude$$,
1834 TRUE, FALSE, FALSE);
1835 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1836                                  repeatable, mandatory, hidden)
1837 VALUES (1, 'biblio', '034', 't', $$G-ring longitude$$,
1838 TRUE, FALSE, FALSE);
1839 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1840                                  repeatable, mandatory, hidden)
1841 VALUES (1, 'biblio', '034', 'x', $$Beginning date$$,
1842 FALSE, FALSE, FALSE);
1843 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1844                                  repeatable, mandatory, hidden)
1845 VALUES (1, 'biblio', '034', 'y', $$Ending date$$,
1846 FALSE, FALSE, FALSE);
1847 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1848                                  repeatable, mandatory, hidden)
1849 VALUES (1, 'biblio', '034', 'z', $$Name of extraterrestrial body$$,
1850 FALSE, FALSE, FALSE);
1851 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1852                                  repeatable, mandatory, hidden)
1853 VALUES (1, 'biblio', '034', '2', $$Source$$,
1854 FALSE, FALSE, FALSE);
1855 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1856                                  repeatable, mandatory, hidden)
1857 VALUES (1, 'biblio', '034', '3', $$Materials specified$$,
1858 FALSE, FALSE, FALSE);
1859 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1860                                  repeatable, mandatory, hidden)
1861 VALUES (1, 'biblio', '034', '6', $$Linkage$$,
1862 FALSE, FALSE, FALSE);
1863 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1864                                  repeatable, mandatory, hidden)
1865 VALUES (1, 'biblio', '034', '8', $$Field link and sequence number$$,
1866 TRUE, FALSE, FALSE);
1867 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
1868                               fixed_field, repeatable, mandatory, hidden)
1869 VALUES (1, 'biblio', '035', $$System Control Number$$, $$Control number of a system other than the one whose control number is contained in field 001 (Control Number), field 010 (Library of Congress Control Number) or field 016 (National Bibliographic Agency Control Number).$$,
1870 FALSE, TRUE, FALSE, FALSE);
1871 INSERT INTO config.record_attr_definition(name, label)
1872 VALUES ('marc21_biblio_035_ind_1', 'MARC 21 biblio field 035 indicator position 1');
1873 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1874 VALUES ('marc21_biblio_035_ind_1', '#', $$Undefined$$, FALSE, TRUE);
1875 INSERT INTO config.record_attr_definition(name, label)
1876 VALUES ('marc21_biblio_035_ind_2', 'MARC 21 biblio field 035 indicator position 2');
1877 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1878 VALUES ('marc21_biblio_035_ind_2', '#', $$Undefined$$, FALSE, TRUE);
1879 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1880                                  repeatable, mandatory, hidden)
1881 VALUES (1, 'biblio', '035', 'a', $$System control number$$,
1882 FALSE, FALSE, FALSE);
1883 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1884                                  repeatable, mandatory, hidden)
1885 VALUES (1, 'biblio', '035', 'z', $$Canceled/invalid control number$$,
1886 TRUE, FALSE, FALSE);
1887 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1888                                  repeatable, mandatory, hidden)
1889 VALUES (1, 'biblio', '035', '6', $$Linkage$$,
1890 FALSE, FALSE, FALSE);
1891 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1892                                  repeatable, mandatory, hidden)
1893 VALUES (1, 'biblio', '035', '8', $$Field link and sequence number$$,
1894 TRUE, FALSE, FALSE);
1895 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
1896                               fixed_field, repeatable, mandatory, hidden)
1897 VALUES (1, 'biblio', '036', $$Original Study Number for Computer Data Files$$, $$Original study number assigned by the producer of the computer file. Introductory phrase may be generated based on the field tag.$$,
1898 FALSE, FALSE, FALSE, FALSE);
1899 INSERT INTO config.record_attr_definition(name, label)
1900 VALUES ('marc21_biblio_036_ind_1', 'MARC 21 biblio field 036 indicator position 1');
1901 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1902 VALUES ('marc21_biblio_036_ind_1', '#', $$Undefined$$, FALSE, TRUE);
1903 INSERT INTO config.record_attr_definition(name, label)
1904 VALUES ('marc21_biblio_036_ind_2', 'MARC 21 biblio field 036 indicator position 2');
1905 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1906 VALUES ('marc21_biblio_036_ind_2', '#', $$Undefined$$, FALSE, TRUE);
1907 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1908                                  repeatable, mandatory, hidden)
1909 VALUES (1, 'biblio', '036', 'a', $$Original study number$$,
1910 FALSE, FALSE, FALSE);
1911 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1912                                  repeatable, mandatory, hidden)
1913 VALUES (1, 'biblio', '036', 'b', $$Source agency assigning number$$,
1914 FALSE, FALSE, FALSE);
1915 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1916                                  repeatable, mandatory, hidden)
1917 VALUES (1, 'biblio', '036', '6', $$Linkage$$,
1918 FALSE, FALSE, FALSE);
1919 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1920                                  repeatable, mandatory, hidden)
1921 VALUES (1, 'biblio', '036', '8', $$Field link and sequence number$$,
1922 TRUE, FALSE, FALSE);
1923 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
1924                               fixed_field, repeatable, mandatory, hidden)
1925 VALUES (1, 'biblio', '037', $$Source of Acquisition$$, $$Source of acquisition information for the item or its reproduction.$$,
1926 FALSE, TRUE, FALSE, FALSE);
1927 INSERT INTO config.record_attr_definition(name, label)
1928 VALUES ('marc21_biblio_037_ind_1', 'MARC 21 biblio field 037 indicator position 1');
1929 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1930 VALUES ('marc21_biblio_037_ind_1', '#', $$Undefined$$, FALSE, TRUE);
1931 INSERT INTO config.record_attr_definition(name, label)
1932 VALUES ('marc21_biblio_037_ind_2', 'MARC 21 biblio field 037 indicator position 2');
1933 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1934 VALUES ('marc21_biblio_037_ind_2', '#', $$Undefined$$, FALSE, TRUE);
1935 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1936                                  repeatable, mandatory, hidden)
1937 VALUES (1, 'biblio', '037', 'a', $$Stock number$$,
1938 FALSE, FALSE, FALSE);
1939 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1940                                  repeatable, mandatory, hidden)
1941 VALUES (1, 'biblio', '037', 'b', $$Source of stock number/acquisition$$,
1942 FALSE, FALSE, FALSE);
1943 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1944                                  repeatable, mandatory, hidden)
1945 VALUES (1, 'biblio', '037', 'c', $$Terms of availability$$,
1946 TRUE, FALSE, FALSE);
1947 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1948                                  repeatable, mandatory, hidden)
1949 VALUES (1, 'biblio', '037', 'f', $$Form of issue$$,
1950 TRUE, FALSE, FALSE);
1951 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1952                                  repeatable, mandatory, hidden)
1953 VALUES (1, 'biblio', '037', 'g', $$Additional format characteristics$$,
1954 TRUE, FALSE, FALSE);
1955 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1956                                  repeatable, mandatory, hidden)
1957 VALUES (1, 'biblio', '037', 'n', $$Note$$,
1958 TRUE, FALSE, FALSE);
1959 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1960                                  repeatable, mandatory, hidden)
1961 VALUES (1, 'biblio', '037', '6', $$Linkage$$,
1962 FALSE, FALSE, FALSE);
1963 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1964                                  repeatable, mandatory, hidden)
1965 VALUES (1, 'biblio', '037', '8', $$Field link and sequence number$$,
1966 TRUE, FALSE, FALSE);
1967 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
1968                               fixed_field, repeatable, mandatory, hidden)
1969 VALUES (1, 'biblio', '038', $$Record Content Licensor$$, $$MARC code of the organization that licenses the intellectual property rights to the data contained in the record, such as with contractual arrangements. See Appendix I: for a listing of sources used in MARC 21 records.$$,
1970 FALSE, FALSE, FALSE, FALSE);
1971 INSERT INTO config.record_attr_definition(name, label)
1972 VALUES ('marc21_biblio_038_ind_1', 'MARC 21 biblio field 038 indicator position 1');
1973 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1974 VALUES ('marc21_biblio_038_ind_1', '#', $$Undefined$$, FALSE, TRUE);
1975 INSERT INTO config.record_attr_definition(name, label)
1976 VALUES ('marc21_biblio_038_ind_2', 'MARC 21 biblio field 038 indicator position 2');
1977 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1978 VALUES ('marc21_biblio_038_ind_2', '#', $$Undefined$$, FALSE, TRUE);
1979 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1980                                  repeatable, mandatory, hidden)
1981 VALUES (1, 'biblio', '038', 'a', $$Record content licensor$$,
1982 FALSE, FALSE, FALSE);
1983 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1984                                  repeatable, mandatory, hidden)
1985 VALUES (1, 'biblio', '038', '6', $$Linkage$$,
1986 FALSE, FALSE, FALSE);
1987 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
1988                                  repeatable, mandatory, hidden)
1989 VALUES (1, 'biblio', '038', '8', $$Field link and sequence number$$,
1990 TRUE, FALSE, FALSE);
1991 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
1992                               fixed_field, repeatable, mandatory, hidden)
1993 VALUES (1, 'biblio', '040', $$Cataloging Source$$, $$MARC code for or the name of the organization(s) that created the original bibliographic record, assigned MARC content designation and transcribed the record into machine-readable form, or modified (except for the addition of holdings symbols) an existing MARC record. These data and the code in 008/39 (Cataloging source) specify the parties responsible for the bibliographic record. See: for a listing of sources used in MARC 21 records.$$,
1994 FALSE, FALSE, FALSE, FALSE);
1995 INSERT INTO config.record_attr_definition(name, label)
1996 VALUES ('marc21_biblio_040_ind_1', 'MARC 21 biblio field 040 indicator position 1');
1997 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
1998 VALUES ('marc21_biblio_040_ind_1', '#', $$Undefined$$, FALSE, TRUE);
1999 INSERT INTO config.record_attr_definition(name, label)
2000 VALUES ('marc21_biblio_040_ind_2', 'MARC 21 biblio field 040 indicator position 2');
2001 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2002 VALUES ('marc21_biblio_040_ind_2', '#', $$Undefined$$, FALSE, TRUE);
2003 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2004                                  repeatable, mandatory, hidden)
2005 VALUES (1, 'biblio', '040', 'a', $$Original cataloging agency$$,
2006 FALSE, FALSE, FALSE);
2007 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2008                                  repeatable, mandatory, hidden)
2009 VALUES (1, 'biblio', '040', 'b', $$Language of cataloging$$,
2010 FALSE, FALSE, FALSE);
2011 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2012                                  repeatable, mandatory, hidden)
2013 VALUES (1, 'biblio', '040', 'c', $$Transcribing agency$$,
2014 FALSE, FALSE, FALSE);
2015 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2016                                  repeatable, mandatory, hidden)
2017 VALUES (1, 'biblio', '040', 'd', $$Modifying agency$$,
2018 TRUE, FALSE, FALSE);
2019 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2020                                  repeatable, mandatory, hidden)
2021 VALUES (1, 'biblio', '040', 'e', $$Description conventions$$,
2022 TRUE, FALSE, FALSE);
2023 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2024                                  repeatable, mandatory, hidden)
2025 VALUES (1, 'biblio', '040', '6', $$Linkage$$,
2026 FALSE, FALSE, FALSE);
2027 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2028                                  repeatable, mandatory, hidden)
2029 VALUES (1, 'biblio', '040', '8', $$Field link and sequence number$$,
2030 TRUE, FALSE, FALSE);
2031 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
2032                               fixed_field, repeatable, mandatory, hidden)
2033 VALUES (1, 'biblio', '041', $$Language Code$$, $$Codes for languages associated with an item when the language code in field 008/35-37 of the record is insufficient to convey full information. Includes records for multilingual items, items that involve translation, and items where the medium of communication is a sign language. Sources of the codes are: or other code lists such as ISO 639-1 ( ).$$,
2034 FALSE, TRUE, FALSE, FALSE);
2035 INSERT INTO config.record_attr_definition(name, label)
2036 VALUES ('marc21_biblio_041_ind_1', 'MARC 21 biblio field 041 indicator position 1');
2037 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2038 VALUES ('marc21_biblio_041_ind_1', '#', $$No information provided$$, FALSE, TRUE);
2039 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2040 VALUES ('marc21_biblio_041_ind_1', '0', $$Item not a translation/does not include a translation$$, FALSE, TRUE);
2041 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2042 VALUES ('marc21_biblio_041_ind_1', '1', $$Item is or includes a translation$$, FALSE, TRUE);
2043 INSERT INTO config.record_attr_definition(name, label)
2044 VALUES ('marc21_biblio_041_ind_2', 'MARC 21 biblio field 041 indicator position 2');
2045 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2046 VALUES ('marc21_biblio_041_ind_2', '#', $$MARC language code$$, FALSE, TRUE);
2047 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2048 VALUES ('marc21_biblio_041_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
2049 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2050                                  repeatable, mandatory, hidden)
2051 VALUES (1, 'biblio', '041', 'a', $$Language code of text/sound track or separate title$$,
2052 TRUE, FALSE, FALSE);
2053 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2054                                  repeatable, mandatory, hidden)
2055 VALUES (1, 'biblio', '041', 'b', $$Language code of summary or abstract$$,
2056 TRUE, FALSE, FALSE);
2057 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2058                                  repeatable, mandatory, hidden)
2059 VALUES (1, 'biblio', '041', 'd', $$Language code of sung or spoken text$$,
2060 TRUE, FALSE, FALSE);
2061 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2062                                  repeatable, mandatory, hidden)
2063 VALUES (1, 'biblio', '041', 'e', $$Language code of librettos$$,
2064 TRUE, FALSE, FALSE);
2065 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2066                                  repeatable, mandatory, hidden)
2067 VALUES (1, 'biblio', '041', 'f', $$Language code of table of contents$$,
2068 TRUE, FALSE, FALSE);
2069 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2070                                  repeatable, mandatory, hidden)
2071 VALUES (1, 'biblio', '041', 'g', $$Language code of accompanying material other than librettos$$,
2072 TRUE, FALSE, FALSE);
2073 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2074                                  repeatable, mandatory, hidden)
2075 VALUES (1, 'biblio', '041', 'h', $$Language code of original and/or intermediate translations of text$$,
2076 TRUE, FALSE, FALSE);
2077 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2078                                  repeatable, mandatory, hidden)
2079 VALUES (1, 'biblio', '041', 'j', $$Language code of subtitles or captions$$,
2080 TRUE, FALSE, FALSE);
2081 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2082                                  repeatable, mandatory, hidden)
2083 VALUES (1, 'biblio', '041', '2', $$Source of code$$,
2084 FALSE, FALSE, FALSE);
2085 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2086                                  repeatable, mandatory, hidden)
2087 VALUES (1, 'biblio', '041', '6', $$Linkage$$,
2088 FALSE, FALSE, FALSE);
2089 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2090                                  repeatable, mandatory, hidden)
2091 VALUES (1, 'biblio', '041', '8', $$Field link and sequence number$$,
2092 TRUE, FALSE, FALSE);
2093 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
2094                               fixed_field, repeatable, mandatory, hidden)
2095 VALUES (1, 'biblio', '042', $$Authentication Code$$, $$One or more authentication codes indicating that the record, existing in a national database, has been reviewed in a specific way. Used for codes associated with specifically designated authentication agencies. Code from: .$$,
2096 FALSE, FALSE, FALSE, FALSE);
2097 INSERT INTO config.record_attr_definition(name, label)
2098 VALUES ('marc21_biblio_042_ind_1', 'MARC 21 biblio field 042 indicator position 1');
2099 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2100 VALUES ('marc21_biblio_042_ind_1', '#', $$Undefined$$, FALSE, TRUE);
2101 INSERT INTO config.record_attr_definition(name, label)
2102 VALUES ('marc21_biblio_042_ind_2', 'MARC 21 biblio field 042 indicator position 2');
2103 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2104 VALUES ('marc21_biblio_042_ind_2', '#', $$Undefined$$, FALSE, TRUE);
2105 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2106                                  repeatable, mandatory, hidden)
2107 VALUES (1, 'biblio', '042', 'a', $$Authentication code$$,
2108 TRUE, FALSE, FALSE);
2109 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
2110                               fixed_field, repeatable, mandatory, hidden)
2111 VALUES (1, 'biblio', '043', $$Geographic Area Code$$, $$Geographic area codes associated with an item. Code from: . The source of a local code in subfield $b is indicated in subfield $2. The source of codes in subfield $c is or .$$,
2112 FALSE, FALSE, FALSE, FALSE);
2113 INSERT INTO config.record_attr_definition(name, label)
2114 VALUES ('marc21_biblio_043_ind_1', 'MARC 21 biblio field 043 indicator position 1');
2115 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2116 VALUES ('marc21_biblio_043_ind_1', '#', $$Undefined$$, FALSE, TRUE);
2117 INSERT INTO config.record_attr_definition(name, label)
2118 VALUES ('marc21_biblio_043_ind_2', 'MARC 21 biblio field 043 indicator position 2');
2119 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2120 VALUES ('marc21_biblio_043_ind_2', '#', $$Undefined$$, FALSE, TRUE);
2121 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2122                                  repeatable, mandatory, hidden)
2123 VALUES (1, 'biblio', '043', 'a', $$Geographic area code$$,
2124 TRUE, FALSE, FALSE);
2125 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2126                                  repeatable, mandatory, hidden)
2127 VALUES (1, 'biblio', '043', 'b', $$Local GAC code$$,
2128 TRUE, FALSE, FALSE);
2129 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2130                                  repeatable, mandatory, hidden)
2131 VALUES (1, 'biblio', '043', 'c', $$ISO code$$,
2132 TRUE, FALSE, FALSE);
2133 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2134                                  repeatable, mandatory, hidden)
2135 VALUES (1, 'biblio', '043', '2', $$Source of local code$$,
2136 TRUE, FALSE, FALSE);
2137 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2138                                  repeatable, mandatory, hidden)
2139 VALUES (1, 'biblio', '043', '6', $$Linkage$$,
2140 FALSE, FALSE, FALSE);
2141 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2142                                  repeatable, mandatory, hidden)
2143 VALUES (1, 'biblio', '043', '8', $$Field link and sequence number$$,
2144 TRUE, FALSE, FALSE);
2145 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
2146                               fixed_field, repeatable, mandatory, hidden)
2147 VALUES (1, 'biblio', '044', $$Country of Publishing/Producing Entity Code$$, $$Two- or three-character code for the country of the publishing or producing entity when field 008/15-17 (Place of publication, production, or execution) is insufficient to convey full information for an item published or produced in more than one country. Code from: . May be used to include country and subentity codes from or .$$,
2148 FALSE, FALSE, FALSE, FALSE);
2149 INSERT INTO config.record_attr_definition(name, label)
2150 VALUES ('marc21_biblio_044_ind_1', 'MARC 21 biblio field 044 indicator position 1');
2151 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2152 VALUES ('marc21_biblio_044_ind_1', '#', $$Undefined$$, FALSE, TRUE);
2153 INSERT INTO config.record_attr_definition(name, label)
2154 VALUES ('marc21_biblio_044_ind_2', 'MARC 21 biblio field 044 indicator position 2');
2155 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2156 VALUES ('marc21_biblio_044_ind_2', '#', $$Undefined$$, FALSE, TRUE);
2157 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2158                                  repeatable, mandatory, hidden)
2159 VALUES (1, 'biblio', '044', 'a', $$MARC country code$$,
2160 TRUE, FALSE, FALSE);
2161 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2162                                  repeatable, mandatory, hidden)
2163 VALUES (1, 'biblio', '044', 'b', $$Local subentity code$$,
2164 TRUE, FALSE, FALSE);
2165 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2166                                  repeatable, mandatory, hidden)
2167 VALUES (1, 'biblio', '044', 'c', $$ISO country code$$,
2168 TRUE, FALSE, FALSE);
2169 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2170                                  repeatable, mandatory, hidden)
2171 VALUES (1, 'biblio', '044', '2', $$Source of local subentity code$$,
2172 TRUE, FALSE, FALSE);
2173 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2174                                  repeatable, mandatory, hidden)
2175 VALUES (1, 'biblio', '044', '6', $$Linkage$$,
2176 FALSE, FALSE, FALSE);
2177 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2178                                  repeatable, mandatory, hidden)
2179 VALUES (1, 'biblio', '044', '8', $$Field link and sequence number$$,
2180 TRUE, FALSE, FALSE);
2181 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
2182                               fixed_field, repeatable, mandatory, hidden)
2183 VALUES (1, 'biblio', '045', $$Time Period of Content$$, $$Time period code (subfield $a) and/or a formatted time period (subfield $b and/or $c) associated with an item.$$,
2184 FALSE, FALSE, FALSE, FALSE);
2185 INSERT INTO config.record_attr_definition(name, label)
2186 VALUES ('marc21_biblio_045_ind_1', 'MARC 21 biblio field 045 indicator position 1');
2187 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2188 VALUES ('marc21_biblio_045_ind_1', '#', $$Subfield $b or $c not present$$, FALSE, TRUE);
2189 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2190 VALUES ('marc21_biblio_045_ind_1', '0', $$Single date/time$$, FALSE, TRUE);
2191 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2192 VALUES ('marc21_biblio_045_ind_1', '1', $$Multiple single dates/times$$, FALSE, TRUE);
2193 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2194 VALUES ('marc21_biblio_045_ind_1', '2', $$Range of dates/times$$, FALSE, TRUE);
2195 INSERT INTO config.record_attr_definition(name, label)
2196 VALUES ('marc21_biblio_045_ind_2', 'MARC 21 biblio field 045 indicator position 2');
2197 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2198 VALUES ('marc21_biblio_045_ind_2', '#', $$Undefined$$, FALSE, TRUE);
2199 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2200                                  repeatable, mandatory, hidden)
2201 VALUES (1, 'biblio', '045', 'a', $$Time period code$$,
2202 TRUE, FALSE, FALSE);
2203 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2204                                  repeatable, mandatory, hidden)
2205 VALUES (1, 'biblio', '045', 'b', $$Formatted 9999 B.C. through C.E. time period$$,
2206 TRUE, FALSE, FALSE);
2207 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2208                                  repeatable, mandatory, hidden)
2209 VALUES (1, 'biblio', '045', 'c', $$Formatted pre-9999 B.C. time period$$,
2210 TRUE, FALSE, FALSE);
2211 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2212                                  repeatable, mandatory, hidden)
2213 VALUES (1, 'biblio', '045', '6', $$Linkage$$,
2214 FALSE, FALSE, FALSE);
2215 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2216                                  repeatable, mandatory, hidden)
2217 VALUES (1, 'biblio', '045', '8', $$Field link and sequence number$$,
2218 TRUE, FALSE, FALSE);
2219 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
2220                               fixed_field, repeatable, mandatory, hidden)
2221 VALUES (1, 'biblio', '046', $$Special Coded Dates$$, $$Date of item information that cannot be recorded in 008/06-14 (Type of date/Publication status, Date 1, Date 2) because such information involves one or more Before Common Era (B.C.) dates, incorrect dates, dates when resources have been modified or created, and date spans when resources are valid. When field 046 is used for B.C. dates, 008/06 is set to code b (No date given; B.C. date involved) and field 008/07-10 and 008/11-14 contain blanks (####). When field 046 is used for incorrect dates, field 008/06 is coded for the type of corrected data and field 008/07-10 and 008/11-14 contain correct dates.$$,
2222 FALSE, TRUE, FALSE, FALSE);
2223 INSERT INTO config.record_attr_definition(name, label)
2224 VALUES ('marc21_biblio_046_ind_1', 'MARC 21 biblio field 046 indicator position 1');
2225 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2226 VALUES ('marc21_biblio_046_ind_1', '#', $$Undefined$$, FALSE, TRUE);
2227 INSERT INTO config.record_attr_definition(name, label)
2228 VALUES ('marc21_biblio_046_ind_2', 'MARC 21 biblio field 046 indicator position 2');
2229 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2230 VALUES ('marc21_biblio_046_ind_2', '#', $$Undefined$$, FALSE, TRUE);
2231 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2232                                  repeatable, mandatory, hidden)
2233 VALUES (1, 'biblio', '046', 'a', $$Type of date code$$,
2234 FALSE, FALSE, FALSE);
2235 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2236                                  repeatable, mandatory, hidden)
2237 VALUES (1, 'biblio', '046', 'b', $$Date 1, B.C. date$$,
2238 FALSE, FALSE, FALSE);
2239 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2240                                  repeatable, mandatory, hidden)
2241 VALUES (1, 'biblio', '046', 'c', $$Date 1, C.E. date$$,
2242 FALSE, FALSE, FALSE);
2243 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2244                                  repeatable, mandatory, hidden)
2245 VALUES (1, 'biblio', '046', 'd', $$Date 2, B.C. date$$,
2246 FALSE, FALSE, FALSE);
2247 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2248                                  repeatable, mandatory, hidden)
2249 VALUES (1, 'biblio', '046', 'e', $$Date 2, C.E. date$$,
2250 FALSE, FALSE, FALSE);
2251 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2252                                  repeatable, mandatory, hidden)
2253 VALUES (1, 'biblio', '046', 'j', $$Date resource modified$$,
2254 FALSE, FALSE, FALSE);
2255 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2256                                  repeatable, mandatory, hidden)
2257 VALUES (1, 'biblio', '046', 'k', $$Beginning or single date created$$,
2258 FALSE, FALSE, FALSE);
2259 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2260                                  repeatable, mandatory, hidden)
2261 VALUES (1, 'biblio', '046', 'l', $$Ending date created$$,
2262 FALSE, FALSE, FALSE);
2263 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2264                                  repeatable, mandatory, hidden)
2265 VALUES (1, 'biblio', '046', 'm', $$Beginning of date valid$$,
2266 FALSE, FALSE, FALSE);
2267 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2268                                  repeatable, mandatory, hidden)
2269 VALUES (1, 'biblio', '046', 'n', $$End of date valid$$,
2270 FALSE, FALSE, FALSE);
2271 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2272                                  repeatable, mandatory, hidden)
2273 VALUES (1, 'biblio', '046', '2', $$Source of date$$,
2274 FALSE, FALSE, FALSE);
2275 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2276                                  repeatable, mandatory, hidden)
2277 VALUES (1, 'biblio', '046', '6', $$Linkage$$,
2278 FALSE, FALSE, FALSE);
2279 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2280                                  repeatable, mandatory, hidden)
2281 VALUES (1, 'biblio', '046', '8', $$Field link and sequence number$$,
2282 TRUE, FALSE, FALSE);
2283 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
2284                               fixed_field, repeatable, mandatory, hidden)
2285 VALUES (1, 'biblio', '047', $$Form of Musical Composition Code$$, $$Codes that indicate the form of musical composition of printed and manuscript music and musical sound recordings when character positions 18 and 19 (Form of composition) of field 008 (Fixed-Length Data Elements) for music contains the code for multiple forms or for non-MARC codes. MARC codes are listed under field 008 Music, /18-19 (Form of composition).$$,
2286 FALSE, TRUE, FALSE, FALSE);
2287 INSERT INTO config.record_attr_definition(name, label)
2288 VALUES ('marc21_biblio_047_ind_1', 'MARC 21 biblio field 047 indicator position 1');
2289 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2290 VALUES ('marc21_biblio_047_ind_1', '#', $$Undefined$$, FALSE, TRUE);
2291 INSERT INTO config.record_attr_definition(name, label)
2292 VALUES ('marc21_biblio_047_ind_2', 'MARC 21 biblio field 047 indicator position 2');
2293 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2294 VALUES ('marc21_biblio_047_ind_2', '#', $$MARC musical composition code$$, FALSE, TRUE);
2295 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2296 VALUES ('marc21_biblio_047_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
2297 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2298                                  repeatable, mandatory, hidden)
2299 VALUES (1, 'biblio', '047', 'a', $$Form of musical composition code$$,
2300 TRUE, FALSE, FALSE);
2301 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2302                                  repeatable, mandatory, hidden)
2303 VALUES (1, 'biblio', '047', '2', $$Source of code$$,
2304 FALSE, FALSE, FALSE);
2305 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2306                                  repeatable, mandatory, hidden)
2307 VALUES (1, 'biblio', '047', '8', $$Field link and sequence number$$,
2308 TRUE, FALSE, FALSE);
2309 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
2310                               fixed_field, repeatable, mandatory, hidden)
2311 VALUES (1, 'biblio', '048', $$Number of Musical Instruments or Voices Code$$, $$Two-character code that indicates the medium of performance for a musical composition. Also contains the of parts, indicated by a two-digit number immediately following the code for the musical instruments or voices (e.g., va02, a two-part composition for Voices - Soprano). The number of parts may be omitted if not specified.$$,
2312 FALSE, TRUE, FALSE, FALSE);
2313 INSERT INTO config.record_attr_definition(name, label)
2314 VALUES ('marc21_biblio_048_ind_1', 'MARC 21 biblio field 048 indicator position 1');
2315 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2316 VALUES ('marc21_biblio_048_ind_1', '#', $$Undefined$$, FALSE, TRUE);
2317 INSERT INTO config.record_attr_definition(name, label)
2318 VALUES ('marc21_biblio_048_ind_2', 'MARC 21 biblio field 048 indicator position 2');
2319 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2320 VALUES ('marc21_biblio_048_ind_2', '#', $$MARC code$$, FALSE, TRUE);
2321 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2322 VALUES ('marc21_biblio_048_ind_2', '7', $$Source specified in subfield â€¡2$$, FALSE, TRUE);
2323 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2324                                  repeatable, mandatory, hidden)
2325 VALUES (1, 'biblio', '048', 'a', $$Performer or ensemble$$,
2326 TRUE, FALSE, FALSE);
2327 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2328                                  repeatable, mandatory, hidden)
2329 VALUES (1, 'biblio', '048', 'b', $$Soloist$$,
2330 TRUE, FALSE, FALSE);
2331 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2332                                  repeatable, mandatory, hidden)
2333 VALUES (1, 'biblio', '048', '2', $$Source of code$$,
2334 FALSE, FALSE, FALSE);
2335 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2336                                  repeatable, mandatory, hidden)
2337 VALUES (1, 'biblio', '048', '8', $$Field link and sequence number$$,
2338 TRUE, FALSE, FALSE);
2339 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
2340                               fixed_field, repeatable, mandatory, hidden)
2341 VALUES (1, 'biblio', '050', $$Library of Congress Call Number$$, $$Classification or call number that is taken from or . The brackets that customarily surround alternate class/call numbers are not carried in the MARC record; they may be generated based on the presence of repeated â€¡a subfields.$$,
2342 FALSE, TRUE, FALSE, FALSE);
2343 INSERT INTO config.record_attr_definition(name, label)
2344 VALUES ('marc21_biblio_050_ind_1', 'MARC 21 biblio field 050 indicator position 1');
2345 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2346 VALUES ('marc21_biblio_050_ind_1', '#', $$No information provided$$, FALSE, TRUE);
2347 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2348 VALUES ('marc21_biblio_050_ind_1', '0', $$Item is in LC$$, FALSE, TRUE);
2349 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2350 VALUES ('marc21_biblio_050_ind_1', '1', $$Item is not in LC$$, FALSE, TRUE);
2351 INSERT INTO config.record_attr_definition(name, label)
2352 VALUES ('marc21_biblio_050_ind_2', 'MARC 21 biblio field 050 indicator position 2');
2353 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2354 VALUES ('marc21_biblio_050_ind_2', '0', $$Assigned by LC$$, FALSE, TRUE);
2355 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2356 VALUES ('marc21_biblio_050_ind_2', '4', $$Assigned by agency other than LC$$, FALSE, TRUE);
2357 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2358                                  repeatable, mandatory, hidden)
2359 VALUES (1, 'biblio', '050', 'a', $$Classification number$$,
2360 TRUE, FALSE, FALSE);
2361 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2362                                  repeatable, mandatory, hidden)
2363 VALUES (1, 'biblio', '050', 'b', $$Item number$$,
2364 FALSE, FALSE, FALSE);
2365 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2366                                  repeatable, mandatory, hidden)
2367 VALUES (1, 'biblio', '050', '3', $$Materials specified$$,
2368 FALSE, FALSE, FALSE);
2369 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2370                                  repeatable, mandatory, hidden)
2371 VALUES (1, 'biblio', '050', '6', $$Linkage$$,
2372 FALSE, FALSE, FALSE);
2373 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2374                                  repeatable, mandatory, hidden)
2375 VALUES (1, 'biblio', '050', '8', $$Field link and sequence number$$,
2376 TRUE, FALSE, FALSE);
2377 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
2378                               fixed_field, repeatable, mandatory, hidden)
2379 VALUES (1, 'biblio', '051', $$Library of Congress Copy, Issue, Offprint Statement$$, $$Information added to a bibliographic record by the Library of Congress that relates to copies, issues, and/or offprints, etc. of the described material that are in its collections.$$,
2380 FALSE, TRUE, FALSE, FALSE);
2381 INSERT INTO config.record_attr_definition(name, label)
2382 VALUES ('marc21_biblio_051_ind_1', 'MARC 21 biblio field 051 indicator position 1');
2383 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2384 VALUES ('marc21_biblio_051_ind_1', '#', $$Undefined$$, FALSE, TRUE);
2385 INSERT INTO config.record_attr_definition(name, label)
2386 VALUES ('marc21_biblio_051_ind_2', 'MARC 21 biblio field 051 indicator position 2');
2387 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2388 VALUES ('marc21_biblio_051_ind_2', '#', $$Undefined$$, FALSE, TRUE);
2389 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2390                                  repeatable, mandatory, hidden)
2391 VALUES (1, 'biblio', '051', 'a', $$Classification number$$,
2392 FALSE, FALSE, FALSE);
2393 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2394                                  repeatable, mandatory, hidden)
2395 VALUES (1, 'biblio', '051', 'b', $$Item number$$,
2396 FALSE, FALSE, FALSE);
2397 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2398                                  repeatable, mandatory, hidden)
2399 VALUES (1, 'biblio', '051', 'c', $$Copy information$$,
2400 FALSE, FALSE, FALSE);
2401 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2402                                  repeatable, mandatory, hidden)
2403 VALUES (1, 'biblio', '051', '8', $$Field link and sequence number$$,
2404 TRUE, FALSE, FALSE);
2405 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
2406                               fixed_field, repeatable, mandatory, hidden)
2407 VALUES (1, 'biblio', '052', $$Geographic Classification$$, $$Geographic classification code that represents the geographic area and, if applicable, the geographic subarea and populated place name covered by an item.$$,
2408 FALSE, TRUE, FALSE, FALSE);
2409 INSERT INTO config.record_attr_definition(name, label)
2410 VALUES ('marc21_biblio_052_ind_1', 'MARC 21 biblio field 052 indicator position 1');
2411 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2412 VALUES ('marc21_biblio_052_ind_1', '#', $$Library of Congress Classification$$, FALSE, TRUE);
2413 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2414 VALUES ('marc21_biblio_052_ind_1', '1', $$U.S. Dept. of Defense Classification$$, FALSE, TRUE);
2415 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2416 VALUES ('marc21_biblio_052_ind_1', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
2417 INSERT INTO config.record_attr_definition(name, label)
2418 VALUES ('marc21_biblio_052_ind_2', 'MARC 21 biblio field 052 indicator position 2');
2419 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2420 VALUES ('marc21_biblio_052_ind_2', '#', $$Undefined$$, FALSE, TRUE);
2421 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2422                                  repeatable, mandatory, hidden)
2423 VALUES (1, 'biblio', '052', 'a', $$Geographic classification area code$$,
2424 FALSE, FALSE, FALSE);
2425 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2426                                  repeatable, mandatory, hidden)
2427 VALUES (1, 'biblio', '052', 'b', $$Geographic classification subarea code$$,
2428 TRUE, FALSE, FALSE);
2429 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2430                                  repeatable, mandatory, hidden)
2431 VALUES (1, 'biblio', '052', 'd', $$Populated place name$$,
2432 TRUE, FALSE, FALSE);
2433 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2434                                  repeatable, mandatory, hidden)
2435 VALUES (1, 'biblio', '052', '2', $$Code source$$,
2436 FALSE, FALSE, FALSE);
2437 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2438                                  repeatable, mandatory, hidden)
2439 VALUES (1, 'biblio', '052', '6', $$Linkage$$,
2440 FALSE, FALSE, FALSE);
2441 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2442                                  repeatable, mandatory, hidden)
2443 VALUES (1, 'biblio', '052', '8', $$Field link and sequence number$$,
2444 TRUE, FALSE, FALSE);
2445 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
2446                               fixed_field, repeatable, mandatory, hidden)
2447 VALUES (1, 'biblio', '055', $$Classification Numbers Assigned in Canada$$, $$Complete call number or a classification number assigned by Library and Archives Canada (LAC) or a library contributing to LAC.$$,
2448 FALSE, TRUE, FALSE, FALSE);
2449 INSERT INTO config.record_attr_definition(name, label)
2450 VALUES ('marc21_biblio_055_ind_1', 'MARC 21 biblio field 055 indicator position 1');
2451 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2452 VALUES ('marc21_biblio_055_ind_1', '#', $$Information not provided$$, FALSE, TRUE);
2453 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2454 VALUES ('marc21_biblio_055_ind_1', '0', $$Work held by LAC$$, FALSE, TRUE);
2455 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2456 VALUES ('marc21_biblio_055_ind_1', '1', $$Work not held by LAC$$, FALSE, TRUE);
2457 INSERT INTO config.record_attr_definition(name, label)
2458 VALUES ('marc21_biblio_055_ind_2', 'MARC 21 biblio field 055 indicator position 2');
2459 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2460 VALUES ('marc21_biblio_055_ind_2', '0', $$LC-based call number assigned by LAC$$, FALSE, TRUE);
2461 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2462 VALUES ('marc21_biblio_055_ind_2', '1', $$Complete LC class number assigned by LAC$$, FALSE, TRUE);
2463 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2464 VALUES ('marc21_biblio_055_ind_2', '2', $$Incomplete LC class number assigned by LAC$$, FALSE, TRUE);
2465 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2466 VALUES ('marc21_biblio_055_ind_2', '3', $$LC-based call number assigned by the contributing library$$, FALSE, TRUE);
2467 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2468 VALUES ('marc21_biblio_055_ind_2', '4', $$Complete LC class number assigned by the contributing library$$, FALSE, TRUE);
2469 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2470 VALUES ('marc21_biblio_055_ind_2', '5', $$Incomplete LC class number assigned by the contributing library$$, FALSE, TRUE);
2471 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2472 VALUES ('marc21_biblio_055_ind_2', '6', $$Other call number assigned by LAC$$, FALSE, TRUE);
2473 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2474 VALUES ('marc21_biblio_055_ind_2', '7', $$Other class number assigned by LAC$$, FALSE, TRUE);
2475 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2476 VALUES ('marc21_biblio_055_ind_2', '8', $$Other call number assigned by the contributing library$$, FALSE, TRUE);
2477 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2478 VALUES ('marc21_biblio_055_ind_2', '9', $$Other class number assigned by the contributing library$$, FALSE, TRUE);
2479 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2480                                  repeatable, mandatory, hidden)
2481 VALUES (1, 'biblio', '055', 'a', $$Classification number$$,
2482 FALSE, FALSE, FALSE);
2483 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2484                                  repeatable, mandatory, hidden)
2485 VALUES (1, 'biblio', '055', 'b', $$Item number$$,
2486 FALSE, FALSE, FALSE);
2487 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2488                                  repeatable, mandatory, hidden)
2489 VALUES (1, 'biblio', '055', '2', $$Source of call/class number$$,
2490 FALSE, FALSE, FALSE);
2491 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2492                                  repeatable, mandatory, hidden)
2493 VALUES (1, 'biblio', '055', '6', $$Linkage$$,
2494 FALSE, FALSE, FALSE);
2495 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2496                                  repeatable, mandatory, hidden)
2497 VALUES (1, 'biblio', '055', '8', $$Field link and sequence number$$,
2498 TRUE, FALSE, FALSE);
2499 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
2500                               fixed_field, repeatable, mandatory, hidden)
2501 VALUES (1, 'biblio', '060', $$National Library of Medicine Call Number$$, $$Either a complete National Library of Medicine (NLM) call number or classification number assigned by either the National Library of Medicine or by other agencies using the . The second indicator values distinguish between content actually assigned by the National Library of Medicine and content assigned by an organization other than NLM.$$,
2502 FALSE, TRUE, FALSE, FALSE);
2503 INSERT INTO config.record_attr_definition(name, label)
2504 VALUES ('marc21_biblio_060_ind_1', 'MARC 21 biblio field 060 indicator position 1');
2505 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2506 VALUES ('marc21_biblio_060_ind_1', '#', $$No information provided$$, FALSE, TRUE);
2507 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2508 VALUES ('marc21_biblio_060_ind_1', '0', $$Item is in NLM$$, FALSE, TRUE);
2509 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2510 VALUES ('marc21_biblio_060_ind_1', '1', $$Item is not in NLM$$, FALSE, TRUE);
2511 INSERT INTO config.record_attr_definition(name, label)
2512 VALUES ('marc21_biblio_060_ind_2', 'MARC 21 biblio field 060 indicator position 2');
2513 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2514 VALUES ('marc21_biblio_060_ind_2', '0', $$Assigned by NLM$$, FALSE, TRUE);
2515 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2516 VALUES ('marc21_biblio_060_ind_2', '4', $$Assigned by agency other than NLM$$, FALSE, TRUE);
2517 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2518                                  repeatable, mandatory, hidden)
2519 VALUES (1, 'biblio', '060', 'a', $$Classification number$$,
2520 TRUE, FALSE, FALSE);
2521 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2522                                  repeatable, mandatory, hidden)
2523 VALUES (1, 'biblio', '060', 'b', $$Item number$$,
2524 FALSE, FALSE, FALSE);
2525 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2526                                  repeatable, mandatory, hidden)
2527 VALUES (1, 'biblio', '060', '8', $$Field link and sequence number$$,
2528 TRUE, FALSE, FALSE);
2529 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
2530                               fixed_field, repeatable, mandatory, hidden)
2531 VALUES (1, 'biblio', '061', $$National Library of Medicine Copy Statement$$, $$Information added to a bibliographic record by the National Library of Medicine that relates to second copies or sets of the described item that are in its collections.$$,
2532 FALSE, TRUE, FALSE, FALSE);
2533 INSERT INTO config.record_attr_definition(name, label)
2534 VALUES ('marc21_biblio_061_ind_1', 'MARC 21 biblio field 061 indicator position 1');
2535 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2536 VALUES ('marc21_biblio_061_ind_1', '#', $$Undefined$$, FALSE, TRUE);
2537 INSERT INTO config.record_attr_definition(name, label)
2538 VALUES ('marc21_biblio_061_ind_2', 'MARC 21 biblio field 061 indicator position 2');
2539 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2540 VALUES ('marc21_biblio_061_ind_2', '#', $$Undefined$$, FALSE, TRUE);
2541 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2542                                  repeatable, mandatory, hidden)
2543 VALUES (1, 'biblio', '061', 'a', $$Classification number$$,
2544 TRUE, FALSE, FALSE);
2545 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2546                                  repeatable, mandatory, hidden)
2547 VALUES (1, 'biblio', '061', 'b', $$Item number$$,
2548 FALSE, FALSE, FALSE);
2549 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2550                                  repeatable, mandatory, hidden)
2551 VALUES (1, 'biblio', '061', 'c', $$Copy information$$,
2552 FALSE, FALSE, FALSE);
2553 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2554                                  repeatable, mandatory, hidden)
2555 VALUES (1, 'biblio', '061', '8', $$Field link and sequence number$$,
2556 TRUE, FALSE, FALSE);
2557 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
2558                               fixed_field, repeatable, mandatory, hidden)
2559 VALUES (1, 'biblio', '066', $$Character Sets Present$$, $$Information that indicates that the records were encoded with characters from sets other than ISO 10646 (or Unicode). A detailed description of the standard escape sequences used in MARC records is provided in$$,
2560 FALSE, FALSE, FALSE, FALSE);
2561 INSERT INTO config.record_attr_definition(name, label)
2562 VALUES ('marc21_biblio_066_ind_1', 'MARC 21 biblio field 066 indicator position 1');
2563 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2564 VALUES ('marc21_biblio_066_ind_1', '#', $$Undefined$$, FALSE, TRUE);
2565 INSERT INTO config.record_attr_definition(name, label)
2566 VALUES ('marc21_biblio_066_ind_2', 'MARC 21 biblio field 066 indicator position 2');
2567 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2568 VALUES ('marc21_biblio_066_ind_2', '#', $$Undefined$$, FALSE, TRUE);
2569 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2570                                  repeatable, mandatory, hidden)
2571 VALUES (1, 'biblio', '066', 'a', $$Primary G0 character set$$,
2572 FALSE, FALSE, FALSE);
2573 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2574                                  repeatable, mandatory, hidden)
2575 VALUES (1, 'biblio', '066', 'b', $$Primary G1 character set$$,
2576 FALSE, FALSE, FALSE);
2577 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2578                                  repeatable, mandatory, hidden)
2579 VALUES (1, 'biblio', '066', 'c', $$Alternate G0 or G1 character set$$,
2580 TRUE, FALSE, FALSE);
2581 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
2582                               fixed_field, repeatable, mandatory, hidden)
2583 VALUES (1, 'biblio', '070', $$National Agricultural Library Call Number$$, $$Classification or call number that is assigned by the National Agricultural Library (NAL).$$,
2584 FALSE, TRUE, FALSE, FALSE);
2585 INSERT INTO config.record_attr_definition(name, label)
2586 VALUES ('marc21_biblio_070_ind_1', 'MARC 21 biblio field 070 indicator position 1');
2587 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2588 VALUES ('marc21_biblio_070_ind_1', '0', $$Item is in NAL$$, FALSE, TRUE);
2589 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2590 VALUES ('marc21_biblio_070_ind_1', '1', $$Item is not in NAL$$, FALSE, TRUE);
2591 INSERT INTO config.record_attr_definition(name, label)
2592 VALUES ('marc21_biblio_070_ind_2', 'MARC 21 biblio field 070 indicator position 2');
2593 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2594 VALUES ('marc21_biblio_070_ind_2', '#', $$Undefined$$, FALSE, TRUE);
2595 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2596                                  repeatable, mandatory, hidden)
2597 VALUES (1, 'biblio', '070', 'a', $$Classification number$$,
2598 TRUE, FALSE, FALSE);
2599 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2600                                  repeatable, mandatory, hidden)
2601 VALUES (1, 'biblio', '070', 'b', $$Item number$$,
2602 FALSE, FALSE, FALSE);
2603 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2604                                  repeatable, mandatory, hidden)
2605 VALUES (1, 'biblio', '070', '8', $$Field link and sequence number$$,
2606 TRUE, FALSE, FALSE);
2607 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
2608                               fixed_field, repeatable, mandatory, hidden)
2609 VALUES (1, 'biblio', '071', $$National Agricultural Library Copy Statement$$, $$Call number and other information added to a bibliographic record by the National Agricultural Library (NAL) that relates to second copies or sets of the described item that are in its collections.$$,
2610 FALSE, TRUE, FALSE, FALSE);
2611 INSERT INTO config.record_attr_definition(name, label)
2612 VALUES ('marc21_biblio_071_ind_1', 'MARC 21 biblio field 071 indicator position 1');
2613 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2614 VALUES ('marc21_biblio_071_ind_1', '#', $$Undefined$$, FALSE, TRUE);
2615 INSERT INTO config.record_attr_definition(name, label)
2616 VALUES ('marc21_biblio_071_ind_2', 'MARC 21 biblio field 071 indicator position 2');
2617 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2618 VALUES ('marc21_biblio_071_ind_2', '#', $$Undefined$$, FALSE, TRUE);
2619 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2620                                  repeatable, mandatory, hidden)
2621 VALUES (1, 'biblio', '071', 'a', $$Classification number$$,
2622 TRUE, FALSE, FALSE);
2623 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2624                                  repeatable, mandatory, hidden)
2625 VALUES (1, 'biblio', '071', 'b', $$Item number$$,
2626 FALSE, FALSE, FALSE);
2627 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2628                                  repeatable, mandatory, hidden)
2629 VALUES (1, 'biblio', '071', 'c', $$Copy information$$,
2630 TRUE, FALSE, FALSE);
2631 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2632                                  repeatable, mandatory, hidden)
2633 VALUES (1, 'biblio', '071', '8', $$Field link and sequence number$$,
2634 TRUE, FALSE, FALSE);
2635 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
2636                               fixed_field, repeatable, mandatory, hidden)
2637 VALUES (1, 'biblio', '072', $$Subject Category Code$$, $$Code for the subject category that is associated with the described item.$$,
2638 FALSE, TRUE, FALSE, FALSE);
2639 INSERT INTO config.record_attr_definition(name, label)
2640 VALUES ('marc21_biblio_072_ind_1', 'MARC 21 biblio field 072 indicator position 1');
2641 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2642 VALUES ('marc21_biblio_072_ind_1', '#', $$Undefined$$, FALSE, TRUE);
2643 INSERT INTO config.record_attr_definition(name, label)
2644 VALUES ('marc21_biblio_072_ind_2', 'MARC 21 biblio field 072 indicator position 2');
2645 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2646 VALUES ('marc21_biblio_072_ind_2', '0', $$NAL subject category code list$$, FALSE, TRUE);
2647 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2648 VALUES ('marc21_biblio_072_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
2649 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2650                                  repeatable, mandatory, hidden)
2651 VALUES (1, 'biblio', '072', 'a', $$Subject category code$$,
2652 FALSE, FALSE, FALSE);
2653 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2654                                  repeatable, mandatory, hidden)
2655 VALUES (1, 'biblio', '072', 'x', $$Subject category code subdivision$$,
2656 TRUE, FALSE, FALSE);
2657 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2658                                  repeatable, mandatory, hidden)
2659 VALUES (1, 'biblio', '072', '2', $$Source$$,
2660 FALSE, FALSE, FALSE);
2661 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2662                                  repeatable, mandatory, hidden)
2663 VALUES (1, 'biblio', '072', '6', $$Linkage$$,
2664 FALSE, FALSE, FALSE);
2665 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2666                                  repeatable, mandatory, hidden)
2667 VALUES (1, 'biblio', '072', '8', $$Field link and sequence number$$,
2668 TRUE, FALSE, FALSE);
2669 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
2670                               fixed_field, repeatable, mandatory, hidden)
2671 VALUES (1, 'biblio', '074', $$GPO Item Number$$, $$Item number assigned to publications by the U.S. Government Printing Office (GPO) to manage their distribution to libraries within its Depository Library System. Numbers are assigned from the .$$,
2672 FALSE, TRUE, FALSE, FALSE);
2673 INSERT INTO config.record_attr_definition(name, label)
2674 VALUES ('marc21_biblio_074_ind_1', 'MARC 21 biblio field 074 indicator position 1');
2675 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2676 VALUES ('marc21_biblio_074_ind_1', '#', $$Undefined$$, FALSE, TRUE);
2677 INSERT INTO config.record_attr_definition(name, label)
2678 VALUES ('marc21_biblio_074_ind_2', 'MARC 21 biblio field 074 indicator position 2');
2679 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2680 VALUES ('marc21_biblio_074_ind_2', '#', $$Undefined$$, FALSE, TRUE);
2681 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2682                                  repeatable, mandatory, hidden)
2683 VALUES (1, 'biblio', '074', 'a', $$GPO item number$$,
2684 FALSE, FALSE, FALSE);
2685 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2686                                  repeatable, mandatory, hidden)
2687 VALUES (1, 'biblio', '074', 'z', $$Canceled/invalid GPO item number$$,
2688 TRUE, FALSE, FALSE);
2689 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2690                                  repeatable, mandatory, hidden)
2691 VALUES (1, 'biblio', '074', '8', $$Field link and sequence number$$,
2692 TRUE, FALSE, FALSE);
2693 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
2694                               fixed_field, repeatable, mandatory, hidden)
2695 VALUES (1, 'biblio', '080', $$Universal Decimal Classification Number$$, $$Number taken from the Universal Decimal Classification scheme.$$,
2696 FALSE, TRUE, FALSE, FALSE);
2697 INSERT INTO config.record_attr_definition(name, label)
2698 VALUES ('marc21_biblio_080_ind_1', 'MARC 21 biblio field 080 indicator position 1');
2699 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2700 VALUES ('marc21_biblio_080_ind_1', '#', $$No information provided$$, FALSE, TRUE);
2701 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2702 VALUES ('marc21_biblio_080_ind_1', '0', $$Full$$, FALSE, TRUE);
2703 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2704 VALUES ('marc21_biblio_080_ind_1', '1', $$Abridged$$, FALSE, TRUE);
2705 INSERT INTO config.record_attr_definition(name, label)
2706 VALUES ('marc21_biblio_080_ind_2', 'MARC 21 biblio field 080 indicator position 2');
2707 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2708 VALUES ('marc21_biblio_080_ind_2', '#', $$Undefined$$, FALSE, TRUE);
2709 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2710                                  repeatable, mandatory, hidden)
2711 VALUES (1, 'biblio', '080', 'a', $$Universal Decimal Classification number$$,
2712 FALSE, FALSE, FALSE);
2713 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2714                                  repeatable, mandatory, hidden)
2715 VALUES (1, 'biblio', '080', 'b', $$Item number$$,
2716 FALSE, FALSE, FALSE);
2717 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2718                                  repeatable, mandatory, hidden)
2719 VALUES (1, 'biblio', '080', 'x', $$Common auxiliary subdivision$$,
2720 TRUE, FALSE, FALSE);
2721 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2722                                  repeatable, mandatory, hidden)
2723 VALUES (1, 'biblio', '080', '2', $$Edition identifier$$,
2724 FALSE, FALSE, FALSE);
2725 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2726                                  repeatable, mandatory, hidden)
2727 VALUES (1, 'biblio', '080', '6', $$Linkage$$,
2728 FALSE, FALSE, FALSE);
2729 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2730                                  repeatable, mandatory, hidden)
2731 VALUES (1, 'biblio', '080', '8', $$Field link and sequence number$$,
2732 TRUE, FALSE, FALSE);
2733 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
2734                               fixed_field, repeatable, mandatory, hidden)
2735 VALUES (1, 'biblio', '082', $$Dewey Decimal Classification Number$$, $$Classification number is taken from , the , and electronic updates to either edition. Through 1997, updates were issued in .$$,
2736 FALSE, TRUE, FALSE, FALSE);
2737 INSERT INTO config.record_attr_definition(name, label)
2738 VALUES ('marc21_biblio_082_ind_1', 'MARC 21 biblio field 082 indicator position 1');
2739 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2740 VALUES ('marc21_biblio_082_ind_1', '0', $$Full edition$$, FALSE, TRUE);
2741 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2742 VALUES ('marc21_biblio_082_ind_1', '1', $$Abridged edition$$, FALSE, TRUE);
2743 INSERT INTO config.record_attr_definition(name, label)
2744 VALUES ('marc21_biblio_082_ind_2', 'MARC 21 biblio field 082 indicator position 2');
2745 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2746 VALUES ('marc21_biblio_082_ind_2', '#', $$No information provided$$, FALSE, TRUE);
2747 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2748 VALUES ('marc21_biblio_082_ind_2', '0', $$Assigned by LC$$, FALSE, TRUE);
2749 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2750 VALUES ('marc21_biblio_082_ind_2', '4', $$Assigned by agency other than LC$$, FALSE, TRUE);
2751 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2752                                  repeatable, mandatory, hidden)
2753 VALUES (1, 'biblio', '082', 'a', $$Classification number$$,
2754 TRUE, FALSE, FALSE);
2755 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2756                                  repeatable, mandatory, hidden)
2757 VALUES (1, 'biblio', '082', 'b', $$Item number$$,
2758 FALSE, FALSE, FALSE);
2759 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2760                                  repeatable, mandatory, hidden)
2761 VALUES (1, 'biblio', '082', 'm', $$Standard or optional designation$$,
2762 FALSE, FALSE, FALSE);
2763 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2764                                  repeatable, mandatory, hidden)
2765 VALUES (1, 'biblio', '082', 'q', $$Assigning agency$$,
2766 FALSE, FALSE, FALSE);
2767 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2768                                  repeatable, mandatory, hidden)
2769 VALUES (1, 'biblio', '082', '2', $$Edition number$$,
2770 FALSE, FALSE, FALSE);
2771 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2772                                  repeatable, mandatory, hidden)
2773 VALUES (1, 'biblio', '082', '6', $$Linkage$$,
2774 FALSE, FALSE, FALSE);
2775 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2776                                  repeatable, mandatory, hidden)
2777 VALUES (1, 'biblio', '082', '8', $$Field link and sequence number$$,
2778 TRUE, FALSE, FALSE);
2779 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
2780                               fixed_field, repeatable, mandatory, hidden)
2781 VALUES (1, 'biblio', '083', $$Additional Dewey Decimal Classification Number$$, $$Classification number used for subject access. It is taken from , the , and electronic updates to either edition. Through 1997, updates were issued in .$$,
2782 FALSE, TRUE, FALSE, FALSE);
2783 INSERT INTO config.record_attr_definition(name, label)
2784 VALUES ('marc21_biblio_083_ind_1', 'MARC 21 biblio field 083 indicator position 1');
2785 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2786 VALUES ('marc21_biblio_083_ind_1', '0', $$Full edition$$, FALSE, TRUE);
2787 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2788 VALUES ('marc21_biblio_083_ind_1', '1', $$Abridged edition$$, FALSE, TRUE);
2789 INSERT INTO config.record_attr_definition(name, label)
2790 VALUES ('marc21_biblio_083_ind_2', 'MARC 21 biblio field 083 indicator position 2');
2791 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2792 VALUES ('marc21_biblio_083_ind_2', '#', $$Undefined$$, FALSE, TRUE);
2793 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2794                                  repeatable, mandatory, hidden)
2795 VALUES (1, 'biblio', '083', 'a', $$Classification number$$,
2796 TRUE, FALSE, FALSE);
2797 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2798                                  repeatable, mandatory, hidden)
2799 VALUES (1, 'biblio', '083', 'c', $$Classification number--Ending number of span$$,
2800 TRUE, FALSE, FALSE);
2801 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2802                                  repeatable, mandatory, hidden)
2803 VALUES (1, 'biblio', '083', 'm', $$Standard or optional designation$$,
2804 FALSE, FALSE, FALSE);
2805 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2806                                  repeatable, mandatory, hidden)
2807 VALUES (1, 'biblio', '083', 'q', $$Assigning agency$$,
2808 FALSE, FALSE, FALSE);
2809 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2810                                  repeatable, mandatory, hidden)
2811 VALUES (1, 'biblio', '083', 'y', $$Table sequence number for internal subarrangement or add table$$,
2812 TRUE, FALSE, FALSE);
2813 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2814                                  repeatable, mandatory, hidden)
2815 VALUES (1, 'biblio', '083', 'z', $$Table identification$$,
2816 TRUE, FALSE, FALSE);
2817 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2818                                  repeatable, mandatory, hidden)
2819 VALUES (1, 'biblio', '083', '2', $$Edition number$$,
2820 FALSE, FALSE, FALSE);
2821 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2822                                  repeatable, mandatory, hidden)
2823 VALUES (1, 'biblio', '083', '6', $$Linkage$$,
2824 FALSE, FALSE, FALSE);
2825 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2826                                  repeatable, mandatory, hidden)
2827 VALUES (1, 'biblio', '083', '8', $$Field link and sequence number$$,
2828 TRUE, FALSE, FALSE);
2829 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
2830                               fixed_field, repeatable, mandatory, hidden)
2831 VALUES (1, 'biblio', '084', $$Other Classification Number$$, $$Classification number from a scheme not covered by one of the other number fields. The field should not be used for classification numbers assigned from a source for which a subfield $2 source of number code would not be assigned.$$,
2832 FALSE, TRUE, FALSE, FALSE);
2833 INSERT INTO config.record_attr_definition(name, label)
2834 VALUES ('marc21_biblio_084_ind_1', 'MARC 21 biblio field 084 indicator position 1');
2835 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2836 VALUES ('marc21_biblio_084_ind_1', '#', $$Undefined$$, FALSE, TRUE);
2837 INSERT INTO config.record_attr_definition(name, label)
2838 VALUES ('marc21_biblio_084_ind_2', 'MARC 21 biblio field 084 indicator position 2');
2839 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2840 VALUES ('marc21_biblio_084_ind_2', '#', $$Undefined$$, FALSE, TRUE);
2841 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2842                                  repeatable, mandatory, hidden)
2843 VALUES (1, 'biblio', '084', 'a', $$Classification number$$,
2844 TRUE, FALSE, FALSE);
2845 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2846                                  repeatable, mandatory, hidden)
2847 VALUES (1, 'biblio', '084', 'b', $$Item number$$,
2848 FALSE, FALSE, FALSE);
2849 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2850                                  repeatable, mandatory, hidden)
2851 VALUES (1, 'biblio', '084', '2', $$Number source$$,
2852 FALSE, FALSE, FALSE);
2853 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2854                                  repeatable, mandatory, hidden)
2855 VALUES (1, 'biblio', '084', '6', $$Linkage$$,
2856 FALSE, FALSE, FALSE);
2857 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2858                                  repeatable, mandatory, hidden)
2859 VALUES (1, 'biblio', '084', '8', $$Field link and sequence number$$,
2860 TRUE, FALSE, FALSE);
2861 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
2862                               fixed_field, repeatable, mandatory, hidden)
2863 VALUES (1, 'biblio', '085', $$Synthesized Classification Number Components$$, $$Information about how a synthesized classification number or a portion of a synthesized classification number was built. It traces the different components of a synthesized number, showing the different portions of the number and where the add instructions are given. If a number was built using two or more instructions, a separate field 085 is given for each instruction.$$,
2864 FALSE, TRUE, FALSE, FALSE);
2865 INSERT INTO config.record_attr_definition(name, label)
2866 VALUES ('marc21_biblio_085_ind_1', 'MARC 21 biblio field 085 indicator position 1');
2867 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2868 VALUES ('marc21_biblio_085_ind_1', '#', $$Undefined$$, FALSE, TRUE);
2869 INSERT INTO config.record_attr_definition(name, label)
2870 VALUES ('marc21_biblio_085_ind_2', 'MARC 21 biblio field 085 indicator position 2');
2871 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2872 VALUES ('marc21_biblio_085_ind_2', '#', $$Undefined$$, FALSE, TRUE);
2873 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2874                                  repeatable, mandatory, hidden)
2875 VALUES (1, 'biblio', '085', 'a', $$Number where instructions are found-single number or beginning number of span$$,
2876 TRUE, FALSE, FALSE);
2877 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2878                                  repeatable, mandatory, hidden)
2879 VALUES (1, 'biblio', '085', 'b', $$Base number$$,
2880 TRUE, FALSE, FALSE);
2881 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2882                                  repeatable, mandatory, hidden)
2883 VALUES (1, 'biblio', '085', 'c', $$Classification number-ending number of span$$,
2884 TRUE, FALSE, FALSE);
2885 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2886                                  repeatable, mandatory, hidden)
2887 VALUES (1, 'biblio', '085', 'f', $$Facet designator$$,
2888 TRUE, FALSE, FALSE);
2889 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2890                                  repeatable, mandatory, hidden)
2891 VALUES (1, 'biblio', '085', 'r', $$Root number$$,
2892 TRUE, FALSE, FALSE);
2893 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2894                                  repeatable, mandatory, hidden)
2895 VALUES (1, 'biblio', '085', 's', $$Digits added from classification number in schedule or external table$$,
2896 TRUE, FALSE, FALSE);
2897 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2898                                  repeatable, mandatory, hidden)
2899 VALUES (1, 'biblio', '085', 't', $$Digits added from internal subarrangement or add table$$,
2900 TRUE, FALSE, FALSE);
2901 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2902                                  repeatable, mandatory, hidden)
2903 VALUES (1, 'biblio', '085', 'u', $$Number being analyzed$$,
2904 TRUE, FALSE, FALSE);
2905 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2906                                  repeatable, mandatory, hidden)
2907 VALUES (1, 'biblio', '085', 'v', $$Number in internal subarrangement or add table where instructions are found$$,
2908 TRUE, FALSE, FALSE);
2909 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2910                                  repeatable, mandatory, hidden)
2911 VALUES (1, 'biblio', '085', 'w', $$Table identification-Internal subarrangement or add table$$,
2912 TRUE, FALSE, FALSE);
2913 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2914                                  repeatable, mandatory, hidden)
2915 VALUES (1, 'biblio', '085', 'y', $$Table sequence number for internal subarrangement or add table$$,
2916 TRUE, FALSE, FALSE);
2917 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2918                                  repeatable, mandatory, hidden)
2919 VALUES (1, 'biblio', '085', 'z', $$Table identification$$,
2920 TRUE, FALSE, FALSE);
2921 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2922                                  repeatable, mandatory, hidden)
2923 VALUES (1, 'biblio', '085', '6', $$Linkage$$,
2924 FALSE, FALSE, FALSE);
2925 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2926                                  repeatable, mandatory, hidden)
2927 VALUES (1, 'biblio', '085', '8', $$Field link and sequence number$$,
2928 TRUE, FALSE, FALSE);
2929 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
2930                               fixed_field, repeatable, mandatory, hidden)
2931 VALUES (1, 'biblio', '086', $$Government Document Classification Number$$, $$Classification number assigned to documents by designated agencies in countries that have a government documents classification program.$$,
2932 FALSE, TRUE, FALSE, FALSE);
2933 INSERT INTO config.record_attr_definition(name, label)
2934 VALUES ('marc21_biblio_086_ind_1', 'MARC 21 biblio field 086 indicator position 1');
2935 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2936 VALUES ('marc21_biblio_086_ind_1', '#', $$Source specified in subfield $2$$, FALSE, TRUE);
2937 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2938 VALUES ('marc21_biblio_086_ind_1', '0', $$Superintendent of Documents Classification System$$, FALSE, TRUE);
2939 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2940 VALUES ('marc21_biblio_086_ind_1', '1', $$Government of Canada Publications: Outline of Classification$$, FALSE, TRUE);
2941 INSERT INTO config.record_attr_definition(name, label)
2942 VALUES ('marc21_biblio_086_ind_2', 'MARC 21 biblio field 086 indicator position 2');
2943 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2944 VALUES ('marc21_biblio_086_ind_2', '#', $$Undefined$$, FALSE, TRUE);
2945 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2946                                  repeatable, mandatory, hidden)
2947 VALUES (1, 'biblio', '086', 'a', $$Classification number$$,
2948 FALSE, FALSE, FALSE);
2949 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2950                                  repeatable, mandatory, hidden)
2951 VALUES (1, 'biblio', '086', 'z', $$Canceled/invalid classification number$$,
2952 TRUE, FALSE, FALSE);
2953 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2954                                  repeatable, mandatory, hidden)
2955 VALUES (1, 'biblio', '086', '2', $$Number source$$,
2956 FALSE, FALSE, FALSE);
2957 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2958                                  repeatable, mandatory, hidden)
2959 VALUES (1, 'biblio', '086', '6', $$Linkage$$,
2960 FALSE, FALSE, FALSE);
2961 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2962                                  repeatable, mandatory, hidden)
2963 VALUES (1, 'biblio', '086', '8', $$Field link and sequence number$$,
2964 TRUE, FALSE, FALSE);
2965 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
2966                               fixed_field, repeatable, mandatory, hidden)
2967 VALUES (1, 'biblio', '088', $$Report Number$$, $$Report number that is not a Standard Technical Report Number (STRN), recorded in field 027.$$,
2968 FALSE, TRUE, FALSE, FALSE);
2969 INSERT INTO config.record_attr_definition(name, label)
2970 VALUES ('marc21_biblio_088_ind_1', 'MARC 21 biblio field 088 indicator position 1');
2971 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2972 VALUES ('marc21_biblio_088_ind_1', '#', $$Undefined$$, FALSE, TRUE);
2973 INSERT INTO config.record_attr_definition(name, label)
2974 VALUES ('marc21_biblio_088_ind_2', 'MARC 21 biblio field 088 indicator position 2');
2975 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
2976 VALUES ('marc21_biblio_088_ind_2', '#', $$Undefined$$, FALSE, TRUE);
2977 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2978                                  repeatable, mandatory, hidden)
2979 VALUES (1, 'biblio', '088', 'a', $$Report number$$,
2980 FALSE, FALSE, FALSE);
2981 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2982                                  repeatable, mandatory, hidden)
2983 VALUES (1, 'biblio', '088', 'z', $$Canceled/invalid report number$$,
2984 TRUE, FALSE, FALSE);
2985 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2986                                  repeatable, mandatory, hidden)
2987 VALUES (1, 'biblio', '088', '6', $$Linkage$$,
2988 FALSE, FALSE, FALSE);
2989 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
2990                                  repeatable, mandatory, hidden)
2991 VALUES (1, 'biblio', '088', '8', $$Field link and sequence number$$,
2992 TRUE, FALSE, FALSE);
2993 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
2994                               fixed_field, repeatable, mandatory, hidden)
2995 VALUES (1, 'biblio', '100', $$Main Entry-Personal Name$$, $$Personal name used as a main entry in a bibliographic record.$$,
2996 FALSE, FALSE, FALSE, FALSE);
2997 INSERT INTO config.record_attr_definition(name, label)
2998 VALUES ('marc21_biblio_100_ind_1', 'MARC 21 biblio field 100 indicator position 1');
2999 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3000 VALUES ('marc21_biblio_100_ind_1', '0', $$Forename$$, FALSE, TRUE);
3001 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3002 VALUES ('marc21_biblio_100_ind_1', '1', $$Surname$$, FALSE, TRUE);
3003 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3004 VALUES ('marc21_biblio_100_ind_1', '3', $$Family name$$, FALSE, TRUE);
3005 INSERT INTO config.record_attr_definition(name, label)
3006 VALUES ('marc21_biblio_100_ind_2', 'MARC 21 biblio field 100 indicator position 2');
3007 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3008 VALUES ('marc21_biblio_100_ind_2', '#', $$Undefined$$, FALSE, TRUE);
3009 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3010                                  repeatable, mandatory, hidden)
3011 VALUES (1, 'biblio', '100', 'a', $$Personal name$$,
3012 FALSE, FALSE, FALSE);
3013 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3014                                  repeatable, mandatory, hidden)
3015 VALUES (1, 'biblio', '100', 'b', $$Numeration$$,
3016 FALSE, FALSE, FALSE);
3017 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3018                                  repeatable, mandatory, hidden)
3019 VALUES (1, 'biblio', '100', 'c', $$Titles and words associated with a name$$,
3020 TRUE, FALSE, FALSE);
3021 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3022                                  repeatable, mandatory, hidden)
3023 VALUES (1, 'biblio', '100', 'd', $$Dates associated with a name$$,
3024 FALSE, FALSE, FALSE);
3025 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3026                                  repeatable, mandatory, hidden)
3027 VALUES (1, 'biblio', '100', 'e', $$Relator term$$,
3028 TRUE, FALSE, FALSE);
3029 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3030                                  repeatable, mandatory, hidden)
3031 VALUES (1, 'biblio', '100', 'f', $$Date of a work$$,
3032 FALSE, FALSE, FALSE);
3033 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3034                                  repeatable, mandatory, hidden)
3035 VALUES (1, 'biblio', '100', 'g', $$Miscellaneous information$$,
3036 FALSE, FALSE, FALSE);
3037 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3038                                  repeatable, mandatory, hidden)
3039 VALUES (1, 'biblio', '100', 'j', $$Attribution qualifier$$,
3040 TRUE, FALSE, FALSE);
3041 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3042                                  repeatable, mandatory, hidden)
3043 VALUES (1, 'biblio', '100', 'k', $$Form subheading$$,
3044 TRUE, FALSE, FALSE);
3045 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3046                                  repeatable, mandatory, hidden)
3047 VALUES (1, 'biblio', '100', 'l', $$Language of a work$$,
3048 FALSE, FALSE, FALSE);
3049 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3050                                  repeatable, mandatory, hidden)
3051 VALUES (1, 'biblio', '100', 'n', $$Number of part/section of a work$$,
3052 TRUE, FALSE, FALSE);
3053 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3054                                  repeatable, mandatory, hidden)
3055 VALUES (1, 'biblio', '100', 'p', $$Name of part/section of a work$$,
3056 TRUE, FALSE, FALSE);
3057 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3058                                  repeatable, mandatory, hidden)
3059 VALUES (1, 'biblio', '100', 'q', $$Fuller form of name$$,
3060 FALSE, FALSE, FALSE);
3061 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3062                                  repeatable, mandatory, hidden)
3063 VALUES (1, 'biblio', '100', 't', $$Title of a work$$,
3064 FALSE, FALSE, FALSE);
3065 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3066                                  repeatable, mandatory, hidden)
3067 VALUES (1, 'biblio', '100', 'u', $$Affiliation$$,
3068 FALSE, FALSE, FALSE);
3069 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3070                                  repeatable, mandatory, hidden)
3071 VALUES (1, 'biblio', '100', '0', $$Authority record control number$$,
3072 TRUE, FALSE, FALSE);
3073 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3074                                  repeatable, mandatory, hidden)
3075 VALUES (1, 'biblio', '100', '4', $$Relator code$$,
3076 TRUE, FALSE, FALSE);
3077 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3078                                  repeatable, mandatory, hidden)
3079 VALUES (1, 'biblio', '100', '6', $$Linkage$$,
3080 FALSE, FALSE, FALSE);
3081 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3082                                  repeatable, mandatory, hidden)
3083 VALUES (1, 'biblio', '100', '8', $$Field link and sequence number$$,
3084 TRUE, FALSE, FALSE);
3085 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
3086                               fixed_field, repeatable, mandatory, hidden)
3087 VALUES (1, 'biblio', '110', $$Main Entry-Corporate Name$$, $$Corporate name used as a main entry in a bibliographic record.$$,
3088 FALSE, FALSE, FALSE, FALSE);
3089 INSERT INTO config.record_attr_definition(name, label)
3090 VALUES ('marc21_biblio_110_ind_1', 'MARC 21 biblio field 110 indicator position 1');
3091 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3092 VALUES ('marc21_biblio_110_ind_1', '0', $$Inverted name$$, FALSE, TRUE);
3093 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3094 VALUES ('marc21_biblio_110_ind_1', '1', $$Jurisdiction name$$, FALSE, TRUE);
3095 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3096 VALUES ('marc21_biblio_110_ind_1', '2', $$Name in direct order$$, FALSE, TRUE);
3097 INSERT INTO config.record_attr_definition(name, label)
3098 VALUES ('marc21_biblio_110_ind_2', 'MARC 21 biblio field 110 indicator position 2');
3099 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3100 VALUES ('marc21_biblio_110_ind_2', '#', $$Undefined$$, FALSE, TRUE);
3101 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3102                                  repeatable, mandatory, hidden)
3103 VALUES (1, 'biblio', '110', 'a', $$Corporate name or jurisdiction name as entry element$$,
3104 FALSE, FALSE, FALSE);
3105 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3106                                  repeatable, mandatory, hidden)
3107 VALUES (1, 'biblio', '110', 'b', $$Subordinate unit$$,
3108 TRUE, FALSE, FALSE);
3109 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3110                                  repeatable, mandatory, hidden)
3111 VALUES (1, 'biblio', '110', 'c', $$Location of meeting$$,
3112 FALSE, FALSE, FALSE);
3113 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3114                                  repeatable, mandatory, hidden)
3115 VALUES (1, 'biblio', '110', 'd', $$Date of meeting or treaty signing$$,
3116 TRUE, FALSE, FALSE);
3117 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3118                                  repeatable, mandatory, hidden)
3119 VALUES (1, 'biblio', '110', 'e', $$Relator term$$,
3120 TRUE, FALSE, FALSE);
3121 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3122                                  repeatable, mandatory, hidden)
3123 VALUES (1, 'biblio', '110', 'f', $$Date of a work$$,
3124 FALSE, FALSE, FALSE);
3125 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3126                                  repeatable, mandatory, hidden)
3127 VALUES (1, 'biblio', '110', 'g', $$Miscellaneous information$$,
3128 FALSE, FALSE, FALSE);
3129 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3130                                  repeatable, mandatory, hidden)
3131 VALUES (1, 'biblio', '110', 'k', $$Form subheading$$,
3132 TRUE, FALSE, FALSE);
3133 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3134                                  repeatable, mandatory, hidden)
3135 VALUES (1, 'biblio', '110', 'l', $$Language of a work$$,
3136 FALSE, FALSE, FALSE);
3137 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3138                                  repeatable, mandatory, hidden)
3139 VALUES (1, 'biblio', '110', 'n', $$Number of part/section/meeting$$,
3140 TRUE, FALSE, FALSE);
3141 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3142                                  repeatable, mandatory, hidden)
3143 VALUES (1, 'biblio', '110', 'p', $$Name of part/section of a work$$,
3144 TRUE, FALSE, FALSE);
3145 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3146                                  repeatable, mandatory, hidden)
3147 VALUES (1, 'biblio', '110', 't', $$Title of a work$$,
3148 FALSE, FALSE, FALSE);
3149 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3150                                  repeatable, mandatory, hidden)
3151 VALUES (1, 'biblio', '110', 'u', $$Affiliation$$,
3152 FALSE, FALSE, FALSE);
3153 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3154                                  repeatable, mandatory, hidden)
3155 VALUES (1, 'biblio', '110', '0', $$Authority record control number$$,
3156 TRUE, FALSE, FALSE);
3157 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3158                                  repeatable, mandatory, hidden)
3159 VALUES (1, 'biblio', '110', '4', $$Relator code$$,
3160 TRUE, FALSE, FALSE);
3161 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3162                                  repeatable, mandatory, hidden)
3163 VALUES (1, 'biblio', '110', '6', $$Linkage$$,
3164 FALSE, FALSE, FALSE);
3165 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3166                                  repeatable, mandatory, hidden)
3167 VALUES (1, 'biblio', '110', '8', $$Field link and sequence number$$,
3168 TRUE, FALSE, FALSE);
3169 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
3170                               fixed_field, repeatable, mandatory, hidden)
3171 VALUES (1, 'biblio', '111', $$Main Entry-Meeting Name$$, $$Meeting or conference name used as a main entry in a bibliographic record.$$,
3172 FALSE, FALSE, FALSE, FALSE);
3173 INSERT INTO config.record_attr_definition(name, label)
3174 VALUES ('marc21_biblio_111_ind_1', 'MARC 21 biblio field 111 indicator position 1');
3175 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3176 VALUES ('marc21_biblio_111_ind_1', '0', $$Inverted name$$, FALSE, TRUE);
3177 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3178 VALUES ('marc21_biblio_111_ind_1', '1', $$Jurisdiction name$$, FALSE, TRUE);
3179 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3180 VALUES ('marc21_biblio_111_ind_1', '2', $$Name in direct order$$, FALSE, TRUE);
3181 INSERT INTO config.record_attr_definition(name, label)
3182 VALUES ('marc21_biblio_111_ind_2', 'MARC 21 biblio field 111 indicator position 2');
3183 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3184 VALUES ('marc21_biblio_111_ind_2', '#', $$Undefined$$, FALSE, TRUE);
3185 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3186                                  repeatable, mandatory, hidden)
3187 VALUES (1, 'biblio', '111', 'a', $$Meeting name or jurisdiction name as entry element$$,
3188 FALSE, FALSE, FALSE);
3189 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3190                                  repeatable, mandatory, hidden)
3191 VALUES (1, 'biblio', '111', 'c', $$Location of meeting$$,
3192 FALSE, FALSE, FALSE);
3193 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3194                                  repeatable, mandatory, hidden)
3195 VALUES (1, 'biblio', '111', 'd', $$Date of meeting$$,
3196 FALSE, FALSE, FALSE);
3197 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3198                                  repeatable, mandatory, hidden)
3199 VALUES (1, 'biblio', '111', 'e', $$Subordinate unit$$,
3200 TRUE, FALSE, FALSE);
3201 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3202                                  repeatable, mandatory, hidden)
3203 VALUES (1, 'biblio', '111', 'f', $$Date of a work$$,
3204 FALSE, FALSE, FALSE);
3205 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3206                                  repeatable, mandatory, hidden)
3207 VALUES (1, 'biblio', '111', 'g', $$Miscellaneous information$$,
3208 FALSE, FALSE, FALSE);
3209 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3210                                  repeatable, mandatory, hidden)
3211 VALUES (1, 'biblio', '111', 'j', $$Relator term$$,
3212 TRUE, FALSE, FALSE);
3213 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3214                                  repeatable, mandatory, hidden)
3215 VALUES (1, 'biblio', '111', 'k', $$Form subheading$$,
3216 TRUE, FALSE, FALSE);
3217 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3218                                  repeatable, mandatory, hidden)
3219 VALUES (1, 'biblio', '111', 'l', $$Language of a work$$,
3220 FALSE, FALSE, FALSE);
3221 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3222                                  repeatable, mandatory, hidden)
3223 VALUES (1, 'biblio', '111', 'n', $$Number of part/section/meeting$$,
3224 TRUE, FALSE, FALSE);
3225 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3226                                  repeatable, mandatory, hidden)
3227 VALUES (1, 'biblio', '111', 'p', $$Name of part/section of a work$$,
3228 TRUE, FALSE, FALSE);
3229 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3230                                  repeatable, mandatory, hidden)
3231 VALUES (1, 'biblio', '111', 'q', $$Name of meeting following jurisdiction name entry element$$,
3232 FALSE, FALSE, FALSE);
3233 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3234                                  repeatable, mandatory, hidden)
3235 VALUES (1, 'biblio', '111', 't', $$Title of a work$$,
3236 FALSE, FALSE, FALSE);
3237 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3238                                  repeatable, mandatory, hidden)
3239 VALUES (1, 'biblio', '111', 'u', $$Affiliation$$,
3240 FALSE, FALSE, FALSE);
3241 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3242                                  repeatable, mandatory, hidden)
3243 VALUES (1, 'biblio', '111', '0', $$Authority record control number$$,
3244 TRUE, FALSE, FALSE);
3245 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3246                                  repeatable, mandatory, hidden)
3247 VALUES (1, 'biblio', '111', '4', $$Relator code$$,
3248 TRUE, FALSE, FALSE);
3249 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3250                                  repeatable, mandatory, hidden)
3251 VALUES (1, 'biblio', '111', '6', $$Linkage$$,
3252 FALSE, FALSE, FALSE);
3253 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3254                                  repeatable, mandatory, hidden)
3255 VALUES (1, 'biblio', '111', '8', $$Field link and sequence number$$,
3256 TRUE, FALSE, FALSE);
3257 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
3258                               fixed_field, repeatable, mandatory, hidden)
3259 VALUES (1, 'biblio', '130', $$Main Entry-Uniform Title$$, $$Uniform title used as a main entry in a bibliographic record.$$,
3260 FALSE, FALSE, FALSE, FALSE);
3261 INSERT INTO config.record_attr_definition(name, label)
3262 VALUES ('marc21_biblio_130_ind_1', 'MARC 21 biblio field 130 indicator position 1');
3263 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3264 VALUES ('marc21_biblio_130_ind_1', '0', $$No nonfiling characters$$, FALSE, TRUE);
3265 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3266 VALUES ('marc21_biblio_130_ind_1', '1', $$Number of nonfiling characters - 1$$, FALSE, TRUE);
3267 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3268 VALUES ('marc21_biblio_130_ind_1', '2', $$Number of nonfiling characters - 2$$, FALSE, TRUE);
3269 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3270 VALUES ('marc21_biblio_130_ind_1', '3', $$Number of nonfiling characters - 3$$, FALSE, TRUE);
3271 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3272 VALUES ('marc21_biblio_130_ind_1', '4', $$Number of nonfiling characters - 4$$, FALSE, TRUE);
3273 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3274 VALUES ('marc21_biblio_130_ind_1', '5', $$Number of nonfiling characters - 5$$, FALSE, TRUE);
3275 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3276 VALUES ('marc21_biblio_130_ind_1', '6', $$Number of nonfiling characters - 6$$, FALSE, TRUE);
3277 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3278 VALUES ('marc21_biblio_130_ind_1', '7', $$Number of nonfiling characters - 7$$, FALSE, TRUE);
3279 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3280 VALUES ('marc21_biblio_130_ind_1', '8', $$Number of nonfiling characters - 8$$, FALSE, TRUE);
3281 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3282 VALUES ('marc21_biblio_130_ind_1', '9', $$Number of nonfiling characters - 9$$, FALSE, TRUE);
3283 INSERT INTO config.record_attr_definition(name, label)
3284 VALUES ('marc21_biblio_130_ind_2', 'MARC 21 biblio field 130 indicator position 2');
3285 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3286 VALUES ('marc21_biblio_130_ind_2', '#', $$Undefined$$, FALSE, TRUE);
3287 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3288                                  repeatable, mandatory, hidden)
3289 VALUES (1, 'biblio', '130', 'a', $$Uniform title$$,
3290 FALSE, FALSE, FALSE);
3291 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3292                                  repeatable, mandatory, hidden)
3293 VALUES (1, 'biblio', '130', 'd', $$Date of treaty signing$$,
3294 TRUE, FALSE, FALSE);
3295 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3296                                  repeatable, mandatory, hidden)
3297 VALUES (1, 'biblio', '130', 'f', $$Date of a work$$,
3298 FALSE, FALSE, FALSE);
3299 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3300                                  repeatable, mandatory, hidden)
3301 VALUES (1, 'biblio', '130', 'g', $$Miscellaneous information$$,
3302 FALSE, FALSE, FALSE);
3303 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3304                                  repeatable, mandatory, hidden)
3305 VALUES (1, 'biblio', '130', 'h', $$Medium$$,
3306 FALSE, FALSE, FALSE);
3307 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3308                                  repeatable, mandatory, hidden)
3309 VALUES (1, 'biblio', '130', 'k', $$Form subheading$$,
3310 TRUE, FALSE, FALSE);
3311 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3312                                  repeatable, mandatory, hidden)
3313 VALUES (1, 'biblio', '130', 'l', $$Language of a work$$,
3314 FALSE, FALSE, FALSE);
3315 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3316                                  repeatable, mandatory, hidden)
3317 VALUES (1, 'biblio', '130', 'm', $$Medium of performance for music$$,
3318 TRUE, FALSE, FALSE);
3319 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3320                                  repeatable, mandatory, hidden)
3321 VALUES (1, 'biblio', '130', 'n', $$Number of part/section of a work$$,
3322 TRUE, FALSE, FALSE);
3323 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3324                                  repeatable, mandatory, hidden)
3325 VALUES (1, 'biblio', '130', 'o', $$Arranged statement for music$$,
3326 FALSE, FALSE, FALSE);
3327 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3328                                  repeatable, mandatory, hidden)
3329 VALUES (1, 'biblio', '130', 'p', $$Name of part/section of a work$$,
3330 TRUE, FALSE, FALSE);
3331 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3332                                  repeatable, mandatory, hidden)
3333 VALUES (1, 'biblio', '130', 'r', $$Key for music$$,
3334 FALSE, FALSE, FALSE);
3335 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3336                                  repeatable, mandatory, hidden)
3337 VALUES (1, 'biblio', '130', 's', $$Version$$,
3338 FALSE, FALSE, FALSE);
3339 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3340                                  repeatable, mandatory, hidden)
3341 VALUES (1, 'biblio', '130', 't', $$Title of a work$$,
3342 FALSE, FALSE, FALSE);
3343 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3344                                  repeatable, mandatory, hidden)
3345 VALUES (1, 'biblio', '130', '0', $$Authority record control number$$,
3346 TRUE, FALSE, FALSE);
3347 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3348                                  repeatable, mandatory, hidden)
3349 VALUES (1, 'biblio', '130', '6', $$Linkage$$,
3350 FALSE, FALSE, FALSE);
3351 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3352                                  repeatable, mandatory, hidden)
3353 VALUES (1, 'biblio', '130', '8', $$Field link and sequence number$$,
3354 TRUE, FALSE, FALSE);
3355 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
3356                               fixed_field, repeatable, mandatory, hidden)
3357 VALUES (1, 'biblio', '210', $$Abbreviated Title$$, $$Title as abbreviated for indexing or identification. An abbreviated title is supplied by ISSN centers, based on the Key Title (Field 222). Other abbreviated titles are supplied by cataloging agencies, including abstracting and indexing services.$$,
3358 FALSE, TRUE, FALSE, FALSE);
3359 INSERT INTO config.record_attr_definition(name, label)
3360 VALUES ('marc21_biblio_210_ind_1', 'MARC 21 biblio field 210 indicator position 1');
3361 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3362 VALUES ('marc21_biblio_210_ind_1', '0', $$No added entry$$, FALSE, TRUE);
3363 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3364 VALUES ('marc21_biblio_210_ind_1', '1', $$Added entry$$, FALSE, TRUE);
3365 INSERT INTO config.record_attr_definition(name, label)
3366 VALUES ('marc21_biblio_210_ind_2', 'MARC 21 biblio field 210 indicator position 2');
3367 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3368 VALUES ('marc21_biblio_210_ind_2', '#', $$Abbreviated key title$$, FALSE, TRUE);
3369 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3370 VALUES ('marc21_biblio_210_ind_2', '0', $$Other abbreviated title$$, FALSE, TRUE);
3371 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3372                                  repeatable, mandatory, hidden)
3373 VALUES (1, 'biblio', '210', 'a', $$Abbreviated title$$,
3374 FALSE, FALSE, FALSE);
3375 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3376                                  repeatable, mandatory, hidden)
3377 VALUES (1, 'biblio', '210', 'b', $$Qualifying information$$,
3378 FALSE, FALSE, FALSE);
3379 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3380                                  repeatable, mandatory, hidden)
3381 VALUES (1, 'biblio', '210', '2', $$Source$$,
3382 TRUE, FALSE, FALSE);
3383 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3384                                  repeatable, mandatory, hidden)
3385 VALUES (1, 'biblio', '210', '6', $$Linkage$$,
3386 FALSE, FALSE, FALSE);
3387 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3388                                  repeatable, mandatory, hidden)
3389 VALUES (1, 'biblio', '210', '8', $$Field link and sequence number$$,
3390 TRUE, FALSE, FALSE);
3391 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
3392                               fixed_field, repeatable, mandatory, hidden)
3393 VALUES (1, 'biblio', '222', $$Key Title$$, $$Unique title for a continuing resource that is assigned in conjunction with an ISSN recorded in field 022 by national centers under the auspices of the ISSN Network.$$,
3394 FALSE, TRUE, FALSE, FALSE);
3395 INSERT INTO config.record_attr_definition(name, label)
3396 VALUES ('marc21_biblio_222_ind_1', 'MARC 21 biblio field 222 indicator position 1');
3397 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3398 VALUES ('marc21_biblio_222_ind_1', '#', $$Undefined$$, FALSE, TRUE);
3399 INSERT INTO config.record_attr_definition(name, label)
3400 VALUES ('marc21_biblio_222_ind_2', 'MARC 21 biblio field 222 indicator position 2');
3401 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3402 VALUES ('marc21_biblio_222_ind_2', '0', $$No nonfiling characters$$, FALSE, TRUE);
3403 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3404 VALUES ('marc21_biblio_222_ind_2', '1', $$Number of nonfiling characters - 1$$, FALSE, TRUE);
3405 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3406 VALUES ('marc21_biblio_222_ind_2', '2', $$Number of nonfiling characters - 2$$, FALSE, TRUE);
3407 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3408 VALUES ('marc21_biblio_222_ind_2', '3', $$Number of nonfiling characters - 3$$, FALSE, TRUE);
3409 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3410 VALUES ('marc21_biblio_222_ind_2', '4', $$Number of nonfiling characters - 4$$, FALSE, TRUE);
3411 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3412 VALUES ('marc21_biblio_222_ind_2', '5', $$Number of nonfiling characters - 5$$, FALSE, TRUE);
3413 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3414 VALUES ('marc21_biblio_222_ind_2', '6', $$Number of nonfiling characters - 6$$, FALSE, TRUE);
3415 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3416 VALUES ('marc21_biblio_222_ind_2', '7', $$Number of nonfiling characters - 7$$, FALSE, TRUE);
3417 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3418 VALUES ('marc21_biblio_222_ind_2', '8', $$Number of nonfiling characters - 8$$, FALSE, TRUE);
3419 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3420 VALUES ('marc21_biblio_222_ind_2', '9', $$Number of nonfiling characters - 9$$, FALSE, TRUE);
3421 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3422                                  repeatable, mandatory, hidden)
3423 VALUES (1, 'biblio', '222', 'a', $$Key title$$,
3424 FALSE, FALSE, FALSE);
3425 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3426                                  repeatable, mandatory, hidden)
3427 VALUES (1, 'biblio', '222', 'b', $$Qualifying information$$,
3428 FALSE, FALSE, FALSE);
3429 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3430                                  repeatable, mandatory, hidden)
3431 VALUES (1, 'biblio', '222', '6', $$Linkage$$,
3432 FALSE, FALSE, FALSE);
3433 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3434                                  repeatable, mandatory, hidden)
3435 VALUES (1, 'biblio', '222', '8', $$Field link and sequence number$$,
3436 TRUE, FALSE, FALSE);
3437 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
3438                               fixed_field, repeatable, mandatory, hidden)
3439 VALUES (1, 'biblio', '240', $$Uniform Title$$, $$Uniform title for an item when the bibliographic description is entered under a main entry field that contains a personal (field 100), corporate (110), or meeting (111) name.$$,
3440 FALSE, FALSE, FALSE, FALSE);
3441 INSERT INTO config.record_attr_definition(name, label)
3442 VALUES ('marc21_biblio_240_ind_1', 'MARC 21 biblio field 240 indicator position 1');
3443 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3444 VALUES ('marc21_biblio_240_ind_1', '0', $$Not printed or displayed$$, FALSE, TRUE);
3445 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3446 VALUES ('marc21_biblio_240_ind_1', '1', $$Printed or displayed$$, FALSE, TRUE);
3447 INSERT INTO config.record_attr_definition(name, label)
3448 VALUES ('marc21_biblio_240_ind_2', 'MARC 21 biblio field 240 indicator position 2');
3449 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3450 VALUES ('marc21_biblio_240_ind_2', '0', $$No nonfiling characters$$, FALSE, TRUE);
3451 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3452 VALUES ('marc21_biblio_240_ind_2', '1', $$Number of nonfiling characters - 1$$, FALSE, TRUE);
3453 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3454 VALUES ('marc21_biblio_240_ind_2', '2', $$Number of nonfiling characters - 2$$, FALSE, TRUE);
3455 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3456 VALUES ('marc21_biblio_240_ind_2', '3', $$Number of nonfiling characters - 3$$, FALSE, TRUE);
3457 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3458 VALUES ('marc21_biblio_240_ind_2', '4', $$Number of nonfiling characters - 4$$, FALSE, TRUE);
3459 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3460 VALUES ('marc21_biblio_240_ind_2', '5', $$Number of nonfiling characters - 5$$, FALSE, TRUE);
3461 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3462 VALUES ('marc21_biblio_240_ind_2', '6', $$Number of nonfiling characters - 6$$, FALSE, TRUE);
3463 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3464 VALUES ('marc21_biblio_240_ind_2', '7', $$Number of nonfiling characters - 7$$, FALSE, TRUE);
3465 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3466 VALUES ('marc21_biblio_240_ind_2', '8', $$Number of nonfiling characters - 8$$, FALSE, TRUE);
3467 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3468 VALUES ('marc21_biblio_240_ind_2', '9', $$Number of nonfiling characters - 9$$, FALSE, TRUE);
3469 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3470                                  repeatable, mandatory, hidden)
3471 VALUES (1, 'biblio', '240', 'a', $$Uniform title$$,
3472 FALSE, FALSE, FALSE);
3473 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3474                                  repeatable, mandatory, hidden)
3475 VALUES (1, 'biblio', '240', 'd', $$Date of treaty signing$$,
3476 TRUE, FALSE, FALSE);
3477 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3478                                  repeatable, mandatory, hidden)
3479 VALUES (1, 'biblio', '240', 'f', $$Date of a work$$,
3480 FALSE, FALSE, FALSE);
3481 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3482                                  repeatable, mandatory, hidden)
3483 VALUES (1, 'biblio', '240', 'g', $$Miscellaneous information$$,
3484 FALSE, FALSE, FALSE);
3485 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3486                                  repeatable, mandatory, hidden)
3487 VALUES (1, 'biblio', '240', 'h', $$Medium$$,
3488 FALSE, FALSE, FALSE);
3489 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3490                                  repeatable, mandatory, hidden)
3491 VALUES (1, 'biblio', '240', 'k', $$Form subheading$$,
3492 TRUE, FALSE, FALSE);
3493 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3494                                  repeatable, mandatory, hidden)
3495 VALUES (1, 'biblio', '240', 'l', $$Language of a work$$,
3496 FALSE, FALSE, FALSE);
3497 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3498                                  repeatable, mandatory, hidden)
3499 VALUES (1, 'biblio', '240', 'm', $$Medium of performance for music$$,
3500 TRUE, FALSE, FALSE);
3501 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3502                                  repeatable, mandatory, hidden)
3503 VALUES (1, 'biblio', '240', 'n', $$Number of part/section of a work$$,
3504 TRUE, FALSE, FALSE);
3505 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3506                                  repeatable, mandatory, hidden)
3507 VALUES (1, 'biblio', '240', 'o', $$Arranged statement for music$$,
3508 FALSE, FALSE, FALSE);
3509 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3510                                  repeatable, mandatory, hidden)
3511 VALUES (1, 'biblio', '240', 'p', $$Name of part/section of a work$$,
3512 TRUE, FALSE, FALSE);
3513 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3514                                  repeatable, mandatory, hidden)
3515 VALUES (1, 'biblio', '240', 'r', $$Key for music$$,
3516 FALSE, FALSE, FALSE);
3517 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3518                                  repeatable, mandatory, hidden)
3519 VALUES (1, 'biblio', '240', 's', $$Version$$,
3520 FALSE, FALSE, FALSE);
3521 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3522                                  repeatable, mandatory, hidden)
3523 VALUES (1, 'biblio', '240', '0', $$Authority record control number$$,
3524 TRUE, FALSE, FALSE);
3525 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3526                                  repeatable, mandatory, hidden)
3527 VALUES (1, 'biblio', '240', '6', $$Linkage$$,
3528 FALSE, FALSE, FALSE);
3529 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3530                                  repeatable, mandatory, hidden)
3531 VALUES (1, 'biblio', '240', '8', $$Field link and sequence number$$,
3532 TRUE, FALSE, FALSE);
3533 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
3534                               fixed_field, repeatable, mandatory, hidden)
3535 VALUES (1, 'biblio', '242', $$Translation of Title by Cataloging Agency$$, $$Translation of the title proper that is made by the cataloging agency when the translated title does not appear as a parallel title on the item. For a note, the introductory phrase may be generated based on the field tag for display.$$,
3536 FALSE, TRUE, FALSE, FALSE);
3537 INSERT INTO config.record_attr_definition(name, label)
3538 VALUES ('marc21_biblio_242_ind_1', 'MARC 21 biblio field 242 indicator position 1');
3539 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3540 VALUES ('marc21_biblio_242_ind_1', '0', $$No added entry$$, FALSE, TRUE);
3541 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3542 VALUES ('marc21_biblio_242_ind_1', '1', $$Added entry$$, FALSE, TRUE);
3543 INSERT INTO config.record_attr_definition(name, label)
3544 VALUES ('marc21_biblio_242_ind_2', 'MARC 21 biblio field 242 indicator position 2');
3545 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3546 VALUES ('marc21_biblio_242_ind_2', '0', $$No nonfiling characters$$, FALSE, TRUE);
3547 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3548 VALUES ('marc21_biblio_242_ind_2', '1', $$Number of nonfiling characters - 1$$, FALSE, TRUE);
3549 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3550 VALUES ('marc21_biblio_242_ind_2', '2', $$Number of nonfiling characters - 2$$, FALSE, TRUE);
3551 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3552 VALUES ('marc21_biblio_242_ind_2', '3', $$Number of nonfiling characters - 3$$, FALSE, TRUE);
3553 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3554 VALUES ('marc21_biblio_242_ind_2', '4', $$Number of nonfiling characters - 4$$, FALSE, TRUE);
3555 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3556 VALUES ('marc21_biblio_242_ind_2', '5', $$Number of nonfiling characters - 5$$, FALSE, TRUE);
3557 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3558 VALUES ('marc21_biblio_242_ind_2', '6', $$Number of nonfiling characters - 6$$, FALSE, TRUE);
3559 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3560 VALUES ('marc21_biblio_242_ind_2', '7', $$Number of nonfiling characters - 7$$, FALSE, TRUE);
3561 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3562 VALUES ('marc21_biblio_242_ind_2', '8', $$Number of nonfiling characters - 8$$, FALSE, TRUE);
3563 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3564 VALUES ('marc21_biblio_242_ind_2', '9', $$Number of nonfiling characters - 9$$, FALSE, TRUE);
3565 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3566                                  repeatable, mandatory, hidden)
3567 VALUES (1, 'biblio', '242', 'a', $$Title$$,
3568 FALSE, FALSE, FALSE);
3569 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3570                                  repeatable, mandatory, hidden)
3571 VALUES (1, 'biblio', '242', 'b', $$Remainder of title$$,
3572 FALSE, FALSE, FALSE);
3573 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3574                                  repeatable, mandatory, hidden)
3575 VALUES (1, 'biblio', '242', 'c', $$Statement of responsibility, etc.$$,
3576 FALSE, FALSE, FALSE);
3577 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3578                                  repeatable, mandatory, hidden)
3579 VALUES (1, 'biblio', '242', 'h', $$Medium$$,
3580 FALSE, FALSE, FALSE);
3581 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3582                                  repeatable, mandatory, hidden)
3583 VALUES (1, 'biblio', '242', 'n', $$Number of part/section of a work$$,
3584 TRUE, FALSE, FALSE);
3585 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3586                                  repeatable, mandatory, hidden)
3587 VALUES (1, 'biblio', '242', 'p', $$Name of part/section of a work$$,
3588 TRUE, FALSE, FALSE);
3589 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3590                                  repeatable, mandatory, hidden)
3591 VALUES (1, 'biblio', '242', 'y', $$Language code of translated title$$,
3592 FALSE, FALSE, FALSE);
3593 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3594                                  repeatable, mandatory, hidden)
3595 VALUES (1, 'biblio', '242', '6', $$Linkage$$,
3596 FALSE, FALSE, FALSE);
3597 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3598                                  repeatable, mandatory, hidden)
3599 VALUES (1, 'biblio', '242', '8', $$Field link and sequence number$$,
3600 TRUE, FALSE, FALSE);
3601 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
3602                               fixed_field, repeatable, mandatory, hidden)
3603 VALUES (1, 'biblio', '243', $$Collective Uniform Title$$, $$Generic title that is constructed by the cataloger to collect works by a prolific author. Brackets that customarily enclose a collective uniform title are not carried in the MARC record. They may be generated based on the field tag.$$,
3604 FALSE, FALSE, FALSE, FALSE);
3605 INSERT INTO config.record_attr_definition(name, label)
3606 VALUES ('marc21_biblio_243_ind_1', 'MARC 21 biblio field 243 indicator position 1');
3607 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3608 VALUES ('marc21_biblio_243_ind_1', '0', $$Not printed or displayed$$, FALSE, TRUE);
3609 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3610 VALUES ('marc21_biblio_243_ind_1', '1', $$Printed or displayed$$, FALSE, TRUE);
3611 INSERT INTO config.record_attr_definition(name, label)
3612 VALUES ('marc21_biblio_243_ind_2', 'MARC 21 biblio field 243 indicator position 2');
3613 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3614 VALUES ('marc21_biblio_243_ind_2', '0', $$No nonfiling characters$$, FALSE, TRUE);
3615 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3616 VALUES ('marc21_biblio_243_ind_2', '1', $$Number of nonfiling characters - 1$$, FALSE, TRUE);
3617 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3618 VALUES ('marc21_biblio_243_ind_2', '2', $$Number of nonfiling characters - 2$$, FALSE, TRUE);
3619 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3620 VALUES ('marc21_biblio_243_ind_2', '3', $$Number of nonfiling characters - 3$$, FALSE, TRUE);
3621 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3622 VALUES ('marc21_biblio_243_ind_2', '4', $$Number of nonfiling characters - 4$$, FALSE, TRUE);
3623 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3624 VALUES ('marc21_biblio_243_ind_2', '5', $$Number of nonfiling characters - 5$$, FALSE, TRUE);
3625 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3626 VALUES ('marc21_biblio_243_ind_2', '6', $$Number of nonfiling characters - 6$$, FALSE, TRUE);
3627 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3628 VALUES ('marc21_biblio_243_ind_2', '7', $$Number of nonfiling characters - 7$$, FALSE, TRUE);
3629 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3630 VALUES ('marc21_biblio_243_ind_2', '8', $$Number of nonfiling characters - 8$$, FALSE, TRUE);
3631 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3632 VALUES ('marc21_biblio_243_ind_2', '9', $$Number of nonfiling characters - 9$$, FALSE, TRUE);
3633 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3634                                  repeatable, mandatory, hidden)
3635 VALUES (1, 'biblio', '243', 'a', $$Uniform title$$,
3636 FALSE, FALSE, FALSE);
3637 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3638                                  repeatable, mandatory, hidden)
3639 VALUES (1, 'biblio', '243', 'd', $$Date of treaty signing$$,
3640 TRUE, FALSE, FALSE);
3641 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3642                                  repeatable, mandatory, hidden)
3643 VALUES (1, 'biblio', '243', 'f', $$Date of a work$$,
3644 FALSE, FALSE, FALSE);
3645 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3646                                  repeatable, mandatory, hidden)
3647 VALUES (1, 'biblio', '243', 'g', $$Miscellaneous information$$,
3648 FALSE, FALSE, FALSE);
3649 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3650                                  repeatable, mandatory, hidden)
3651 VALUES (1, 'biblio', '243', 'h', $$Medium$$,
3652 FALSE, FALSE, FALSE);
3653 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3654                                  repeatable, mandatory, hidden)
3655 VALUES (1, 'biblio', '243', 'k', $$Form subheading$$,
3656 TRUE, FALSE, FALSE);
3657 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3658                                  repeatable, mandatory, hidden)
3659 VALUES (1, 'biblio', '243', 'l', $$Language of a work$$,
3660 FALSE, FALSE, FALSE);
3661 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3662                                  repeatable, mandatory, hidden)
3663 VALUES (1, 'biblio', '243', 'm', $$Medium of performance for music$$,
3664 TRUE, FALSE, FALSE);
3665 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3666                                  repeatable, mandatory, hidden)
3667 VALUES (1, 'biblio', '243', 'n', $$Number of part/section of a work$$,
3668 TRUE, FALSE, FALSE);
3669 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3670                                  repeatable, mandatory, hidden)
3671 VALUES (1, 'biblio', '243', 'o', $$Arranged statement for music$$,
3672 FALSE, FALSE, FALSE);
3673 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3674                                  repeatable, mandatory, hidden)
3675 VALUES (1, 'biblio', '243', 'p', $$Name of part/section of a work$$,
3676 TRUE, FALSE, FALSE);
3677 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3678                                  repeatable, mandatory, hidden)
3679 VALUES (1, 'biblio', '243', 'r', $$Key for music$$,
3680 FALSE, FALSE, FALSE);
3681 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3682                                  repeatable, mandatory, hidden)
3683 VALUES (1, 'biblio', '243', 's', $$Version$$,
3684 FALSE, FALSE, FALSE);
3685 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3686                                  repeatable, mandatory, hidden)
3687 VALUES (1, 'biblio', '243', '6', $$Linkage$$,
3688 FALSE, FALSE, FALSE);
3689 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3690                                  repeatable, mandatory, hidden)
3691 VALUES (1, 'biblio', '243', '8', $$Field link and sequence number$$,
3692 TRUE, FALSE, FALSE);
3693 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
3694                               fixed_field, repeatable, mandatory, hidden)
3695 VALUES (1, 'biblio', '245', $$Title Statement$$, $$Title and statement of responsibility area of the bibliographic description of a work.$$,
3696 FALSE, FALSE, FALSE, FALSE);
3697 INSERT INTO config.record_attr_definition(name, label)
3698 VALUES ('marc21_biblio_245_ind_1', 'MARC 21 biblio field 245 indicator position 1');
3699 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3700 VALUES ('marc21_biblio_245_ind_1', '0', $$No added entry$$, FALSE, TRUE);
3701 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3702 VALUES ('marc21_biblio_245_ind_1', '1', $$Added entry$$, FALSE, TRUE);
3703 INSERT INTO config.record_attr_definition(name, label)
3704 VALUES ('marc21_biblio_245_ind_2', 'MARC 21 biblio field 245 indicator position 2');
3705 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3706 VALUES ('marc21_biblio_245_ind_2', '0', $$No nonfiling characters$$, FALSE, TRUE);
3707 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3708 VALUES ('marc21_biblio_245_ind_2', '1', $$Number of nonfiling characters - 1$$, FALSE, TRUE);
3709 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3710 VALUES ('marc21_biblio_245_ind_2', '2', $$Number of nonfiling characters - 2$$, FALSE, TRUE);
3711 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3712 VALUES ('marc21_biblio_245_ind_2', '3', $$Number of nonfiling characters - 3$$, FALSE, TRUE);
3713 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3714 VALUES ('marc21_biblio_245_ind_2', '4', $$Number of nonfiling characters - 4$$, FALSE, TRUE);
3715 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3716 VALUES ('marc21_biblio_245_ind_2', '5', $$Number of nonfiling characters - 5$$, FALSE, TRUE);
3717 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3718 VALUES ('marc21_biblio_245_ind_2', '6', $$Number of nonfiling characters - 6$$, FALSE, TRUE);
3719 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3720 VALUES ('marc21_biblio_245_ind_2', '7', $$Number of nonfiling characters - 7$$, FALSE, TRUE);
3721 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3722 VALUES ('marc21_biblio_245_ind_2', '8', $$Number of nonfiling characters - 8$$, FALSE, TRUE);
3723 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3724 VALUES ('marc21_biblio_245_ind_2', '9', $$Number of nonfiling characters - 9$$, FALSE, TRUE);
3725 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3726                                  repeatable, mandatory, hidden)
3727 VALUES (1, 'biblio', '245', 'a', $$Title$$,
3728 FALSE, FALSE, FALSE);
3729 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3730                                  repeatable, mandatory, hidden)
3731 VALUES (1, 'biblio', '245', 'b', $$Remainder of title$$,
3732 FALSE, FALSE, FALSE);
3733 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3734                                  repeatable, mandatory, hidden)
3735 VALUES (1, 'biblio', '245', 'c', $$Statement of responsibility, etc.$$,
3736 FALSE, FALSE, FALSE);
3737 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3738                                  repeatable, mandatory, hidden)
3739 VALUES (1, 'biblio', '245', 'f', $$Inclusive dates$$,
3740 FALSE, FALSE, FALSE);
3741 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3742                                  repeatable, mandatory, hidden)
3743 VALUES (1, 'biblio', '245', 'g', $$Bulk dates$$,
3744 FALSE, FALSE, FALSE);
3745 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3746                                  repeatable, mandatory, hidden)
3747 VALUES (1, 'biblio', '245', 'h', $$Medium$$,
3748 FALSE, FALSE, FALSE);
3749 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3750                                  repeatable, mandatory, hidden)
3751 VALUES (1, 'biblio', '245', 'k', $$Form$$,
3752 TRUE, FALSE, FALSE);
3753 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3754                                  repeatable, mandatory, hidden)
3755 VALUES (1, 'biblio', '245', 'n', $$Number of part/section of a work$$,
3756 TRUE, FALSE, FALSE);
3757 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3758                                  repeatable, mandatory, hidden)
3759 VALUES (1, 'biblio', '245', 'p', $$Name of part/section of a work$$,
3760 TRUE, FALSE, FALSE);
3761 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3762                                  repeatable, mandatory, hidden)
3763 VALUES (1, 'biblio', '245', 's', $$Version$$,
3764 FALSE, FALSE, FALSE);
3765 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3766                                  repeatable, mandatory, hidden)
3767 VALUES (1, 'biblio', '245', '6', $$Linkage$$,
3768 FALSE, FALSE, FALSE);
3769 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3770                                  repeatable, mandatory, hidden)
3771 VALUES (1, 'biblio', '245', '8', $$Field link and sequence number$$,
3772 TRUE, FALSE, FALSE);
3773 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
3774                               fixed_field, repeatable, mandatory, hidden)
3775 VALUES (1, 'biblio', '246', $$Varying Form of Title$$, $$Varying forms of the title appearing on different parts of an item or a portion of the title proper, or an alternative form of the title when the form differs substantially from the title statement in field 245 and if they contribute to the further identification of the item.$$,
3776 FALSE, TRUE, FALSE, FALSE);
3777 INSERT INTO config.record_attr_definition(name, label)
3778 VALUES ('marc21_biblio_246_ind_1', 'MARC 21 biblio field 246 indicator position 1');
3779 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3780 VALUES ('marc21_biblio_246_ind_1', '0', $$Note, no added entry$$, FALSE, TRUE);
3781 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3782 VALUES ('marc21_biblio_246_ind_1', '1', $$Note, added entry$$, FALSE, TRUE);
3783 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3784 VALUES ('marc21_biblio_246_ind_1', '2', $$No note, no added entry$$, FALSE, TRUE);
3785 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3786 VALUES ('marc21_biblio_246_ind_1', '3', $$No note, added entry$$, FALSE, TRUE);
3787 INSERT INTO config.record_attr_definition(name, label)
3788 VALUES ('marc21_biblio_246_ind_2', 'MARC 21 biblio field 246 indicator position 2');
3789 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3790 VALUES ('marc21_biblio_246_ind_2', '#', $$No type specified$$, FALSE, TRUE);
3791 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3792 VALUES ('marc21_biblio_246_ind_2', '0', $$Portion of title$$, FALSE, TRUE);
3793 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3794 VALUES ('marc21_biblio_246_ind_2', '1', $$Parallel title$$, FALSE, TRUE);
3795 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3796 VALUES ('marc21_biblio_246_ind_2', '2', $$Distinctive title$$, FALSE, TRUE);
3797 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3798 VALUES ('marc21_biblio_246_ind_2', '3', $$Other title$$, FALSE, TRUE);
3799 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3800 VALUES ('marc21_biblio_246_ind_2', '4', $$Cover title$$, FALSE, TRUE);
3801 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3802 VALUES ('marc21_biblio_246_ind_2', '5', $$Added title page title$$, FALSE, TRUE);
3803 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3804 VALUES ('marc21_biblio_246_ind_2', '6', $$Caption title$$, FALSE, TRUE);
3805 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3806 VALUES ('marc21_biblio_246_ind_2', '7', $$Running title$$, FALSE, TRUE);
3807 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3808 VALUES ('marc21_biblio_246_ind_2', '8', $$Spine title$$, FALSE, TRUE);
3809 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3810                                  repeatable, mandatory, hidden)
3811 VALUES (1, 'biblio', '246', 'a', $$Title proper/short title$$,
3812 FALSE, FALSE, FALSE);
3813 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3814                                  repeatable, mandatory, hidden)
3815 VALUES (1, 'biblio', '246', 'b', $$Remainder of title$$,
3816 FALSE, FALSE, FALSE);
3817 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3818                                  repeatable, mandatory, hidden)
3819 VALUES (1, 'biblio', '246', 'f', $$Date or sequential designation$$,
3820 FALSE, FALSE, FALSE);
3821 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3822                                  repeatable, mandatory, hidden)
3823 VALUES (1, 'biblio', '246', 'g', $$Miscellaneous information$$,
3824 FALSE, FALSE, FALSE);
3825 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3826                                  repeatable, mandatory, hidden)
3827 VALUES (1, 'biblio', '246', 'h', $$Medium$$,
3828 FALSE, FALSE, FALSE);
3829 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3830                                  repeatable, mandatory, hidden)
3831 VALUES (1, 'biblio', '246', 'i', $$Display text$$,
3832 FALSE, FALSE, FALSE);
3833 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3834                                  repeatable, mandatory, hidden)
3835 VALUES (1, 'biblio', '246', 'n', $$Number of part/section of a work$$,
3836 TRUE, FALSE, FALSE);
3837 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3838                                  repeatable, mandatory, hidden)
3839 VALUES (1, 'biblio', '246', 'p', $$Name of part/section of a work$$,
3840 TRUE, FALSE, FALSE);
3841 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3842                                  repeatable, mandatory, hidden)
3843 VALUES (1, 'biblio', '246', '5', $$Institution to which field applies$$,
3844 FALSE, FALSE, FALSE);
3845 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3846                                  repeatable, mandatory, hidden)
3847 VALUES (1, 'biblio', '246', '6', $$Linkage$$,
3848 FALSE, FALSE, FALSE);
3849 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3850                                  repeatable, mandatory, hidden)
3851 VALUES (1, 'biblio', '246', '8', $$Field link and sequence number$$,
3852 TRUE, FALSE, FALSE);
3853 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
3854                               fixed_field, repeatable, mandatory, hidden)
3855 VALUES (1, 'biblio', '247', $$Former Title$$, $$Former title proper used when one cataloging record represents several titles associated with an entity.$$,
3856 FALSE, TRUE, FALSE, FALSE);
3857 INSERT INTO config.record_attr_definition(name, label)
3858 VALUES ('marc21_biblio_247_ind_1', 'MARC 21 biblio field 247 indicator position 1');
3859 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3860 VALUES ('marc21_biblio_247_ind_1', '0', $$No added entry$$, FALSE, TRUE);
3861 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3862 VALUES ('marc21_biblio_247_ind_1', '1', $$Added entry$$, FALSE, TRUE);
3863 INSERT INTO config.record_attr_definition(name, label)
3864 VALUES ('marc21_biblio_247_ind_2', 'MARC 21 biblio field 247 indicator position 2');
3865 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3866 VALUES ('marc21_biblio_247_ind_2', '0', $$Display note$$, FALSE, TRUE);
3867 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3868 VALUES ('marc21_biblio_247_ind_2', '1', $$Do not display note$$, FALSE, TRUE);
3869 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3870                                  repeatable, mandatory, hidden)
3871 VALUES (1, 'biblio', '247', 'a', $$Title$$,
3872 FALSE, FALSE, FALSE);
3873 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3874                                  repeatable, mandatory, hidden)
3875 VALUES (1, 'biblio', '247', 'b', $$Remainder of title$$,
3876 FALSE, FALSE, FALSE);
3877 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3878                                  repeatable, mandatory, hidden)
3879 VALUES (1, 'biblio', '247', 'f', $$Date or sequential designation$$,
3880 FALSE, FALSE, FALSE);
3881 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3882                                  repeatable, mandatory, hidden)
3883 VALUES (1, 'biblio', '247', 'g', $$Miscellaneous information$$,
3884 FALSE, FALSE, FALSE);
3885 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3886                                  repeatable, mandatory, hidden)
3887 VALUES (1, 'biblio', '247', 'h', $$Medium$$,
3888 FALSE, FALSE, FALSE);
3889 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3890                                  repeatable, mandatory, hidden)
3891 VALUES (1, 'biblio', '247', 'n', $$Number of part/section of a work$$,
3892 TRUE, FALSE, FALSE);
3893 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3894                                  repeatable, mandatory, hidden)
3895 VALUES (1, 'biblio', '247', 'p', $$Name of part/section of a work$$,
3896 TRUE, FALSE, FALSE);
3897 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3898                                  repeatable, mandatory, hidden)
3899 VALUES (1, 'biblio', '247', 'x', $$International Standard Serial Number$$,
3900 FALSE, FALSE, FALSE);
3901 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3902                                  repeatable, mandatory, hidden)
3903 VALUES (1, 'biblio', '247', '6', $$Linkage$$,
3904 FALSE, FALSE, FALSE);
3905 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3906                                  repeatable, mandatory, hidden)
3907 VALUES (1, 'biblio', '247', '8', $$Field link and sequence number$$,
3908 TRUE, FALSE, FALSE);
3909 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
3910                               fixed_field, repeatable, mandatory, hidden)
3911 VALUES (1, 'biblio', '250', $$Edition Statement$$, $$Information relating to the edition of a work as determined by applicable cataloging rules.$$,
3912 FALSE, FALSE, FALSE, FALSE);
3913 INSERT INTO config.record_attr_definition(name, label)
3914 VALUES ('marc21_biblio_250_ind_1', 'MARC 21 biblio field 250 indicator position 1');
3915 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3916 VALUES ('marc21_biblio_250_ind_1', '#', $$Undefined$$, FALSE, TRUE);
3917 INSERT INTO config.record_attr_definition(name, label)
3918 VALUES ('marc21_biblio_250_ind_2', 'MARC 21 biblio field 250 indicator position 2');
3919 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3920 VALUES ('marc21_biblio_250_ind_2', '#', $$Undefined$$, FALSE, TRUE);
3921 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3922                                  repeatable, mandatory, hidden)
3923 VALUES (1, 'biblio', '250', 'a', $$Edition statement$$,
3924 FALSE, FALSE, FALSE);
3925 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3926                                  repeatable, mandatory, hidden)
3927 VALUES (1, 'biblio', '250', 'b', $$Remainder of edition statement$$,
3928 FALSE, FALSE, FALSE);
3929 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3930                                  repeatable, mandatory, hidden)
3931 VALUES (1, 'biblio', '250', '6', $$Linkage$$,
3932 FALSE, FALSE, FALSE);
3933 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3934                                  repeatable, mandatory, hidden)
3935 VALUES (1, 'biblio', '250', '8', $$Field link and sequence number$$,
3936 TRUE, FALSE, FALSE);
3937 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
3938                               fixed_field, repeatable, mandatory, hidden)
3939 VALUES (1, 'biblio', '254', $$Musical Presentation Statement$$, $$Musical presentation statement for printed or manuscript music that describes the format of the edition, which may differ from that of another edition of the same work.$$,
3940 FALSE, FALSE, FALSE, FALSE);
3941 INSERT INTO config.record_attr_definition(name, label)
3942 VALUES ('marc21_biblio_254_ind_1', 'MARC 21 biblio field 254 indicator position 1');
3943 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3944 VALUES ('marc21_biblio_254_ind_1', '#', $$Undefined$$, FALSE, TRUE);
3945 INSERT INTO config.record_attr_definition(name, label)
3946 VALUES ('marc21_biblio_254_ind_2', 'MARC 21 biblio field 254 indicator position 2');
3947 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3948 VALUES ('marc21_biblio_254_ind_2', '#', $$Undefined$$, FALSE, TRUE);
3949 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3950                                  repeatable, mandatory, hidden)
3951 VALUES (1, 'biblio', '254', 'a', $$Musical presentation statement$$,
3952 FALSE, FALSE, FALSE);
3953 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3954                                  repeatable, mandatory, hidden)
3955 VALUES (1, 'biblio', '254', '6', $$Linkage$$,
3956 FALSE, FALSE, FALSE);
3957 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3958                                  repeatable, mandatory, hidden)
3959 VALUES (1, 'biblio', '254', '8', $$Field link and sequence number$$,
3960 TRUE, FALSE, FALSE);
3961 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
3962                               fixed_field, repeatable, mandatory, hidden)
3963 VALUES (1, 'biblio', '255', $$Cartographic Mathematical Data$$, $$Mathematical data associated with cartographic material, including celestial charts. This data may also be coded in field 034 (Coded Mathematical Data).$$,
3964 FALSE, TRUE, FALSE, FALSE);
3965 INSERT INTO config.record_attr_definition(name, label)
3966 VALUES ('marc21_biblio_255_ind_1', 'MARC 21 biblio field 255 indicator position 1');
3967 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3968 VALUES ('marc21_biblio_255_ind_1', '#', $$Undefined$$, FALSE, TRUE);
3969 INSERT INTO config.record_attr_definition(name, label)
3970 VALUES ('marc21_biblio_255_ind_2', 'MARC 21 biblio field 255 indicator position 2');
3971 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
3972 VALUES ('marc21_biblio_255_ind_2', '#', $$Undefined$$, FALSE, TRUE);
3973 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3974                                  repeatable, mandatory, hidden)
3975 VALUES (1, 'biblio', '255', 'a', $$Statement of scale$$,
3976 FALSE, FALSE, FALSE);
3977 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3978                                  repeatable, mandatory, hidden)
3979 VALUES (1, 'biblio', '255', 'b', $$Statement of projection$$,
3980 FALSE, FALSE, FALSE);
3981 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3982                                  repeatable, mandatory, hidden)
3983 VALUES (1, 'biblio', '255', 'c', $$Statement of coordinates$$,
3984 FALSE, FALSE, FALSE);
3985 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3986                                  repeatable, mandatory, hidden)
3987 VALUES (1, 'biblio', '255', 'd', $$Statement of zone$$,
3988 FALSE, FALSE, FALSE);
3989 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3990                                  repeatable, mandatory, hidden)
3991 VALUES (1, 'biblio', '255', 'e', $$Statement of equinox$$,
3992 FALSE, FALSE, FALSE);
3993 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3994                                  repeatable, mandatory, hidden)
3995 VALUES (1, 'biblio', '255', 'f', $$Outer G-ring coordinate pairs$$,
3996 FALSE, FALSE, FALSE);
3997 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
3998                                  repeatable, mandatory, hidden)
3999 VALUES (1, 'biblio', '255', 'g', $$Exclusion G-ring coordinate pairs$$,
4000 FALSE, FALSE, FALSE);
4001 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4002                                  repeatable, mandatory, hidden)
4003 VALUES (1, 'biblio', '255', '6', $$Linkage$$,
4004 FALSE, FALSE, FALSE);
4005 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4006                                  repeatable, mandatory, hidden)
4007 VALUES (1, 'biblio', '255', '8', $$Field link and sequence number$$,
4008 TRUE, FALSE, FALSE);
4009 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
4010                               fixed_field, repeatable, mandatory, hidden)
4011 VALUES (1, 'biblio', '256', $$Computer File Characteristics$$, $$Characteristics of a computer file, such as the type of file (e.g., Computer programs), the number of records, statements, etc. (e.g., 1250 records, 5076 bytes).$$,
4012 FALSE, FALSE, FALSE, FALSE);
4013 INSERT INTO config.record_attr_definition(name, label)
4014 VALUES ('marc21_biblio_256_ind_1', 'MARC 21 biblio field 256 indicator position 1');
4015 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4016 VALUES ('marc21_biblio_256_ind_1', '#', $$Undefined$$, FALSE, TRUE);
4017 INSERT INTO config.record_attr_definition(name, label)
4018 VALUES ('marc21_biblio_256_ind_2', 'MARC 21 biblio field 256 indicator position 2');
4019 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4020 VALUES ('marc21_biblio_256_ind_2', '#', $$Undefined$$, FALSE, TRUE);
4021 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4022                                  repeatable, mandatory, hidden)
4023 VALUES (1, 'biblio', '256', 'a', $$Computer file characteristics$$,
4024 FALSE, FALSE, FALSE);
4025 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4026                                  repeatable, mandatory, hidden)
4027 VALUES (1, 'biblio', '256', '6', $$Linkage$$,
4028 FALSE, FALSE, FALSE);
4029 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4030                                  repeatable, mandatory, hidden)
4031 VALUES (1, 'biblio', '256', '8', $$Field link and sequence number$$,
4032 TRUE, FALSE, FALSE);
4033 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
4034                               fixed_field, repeatable, mandatory, hidden)
4035 VALUES (1, 'biblio', '257', $$Country of Producing Entity$$, $$Name or abbreviation of the name of the country(s) where the principal offices of the producing entity(s) of a resource are located.$$,
4036 FALSE, TRUE, FALSE, FALSE);
4037 INSERT INTO config.record_attr_definition(name, label)
4038 VALUES ('marc21_biblio_257_ind_1', 'MARC 21 biblio field 257 indicator position 1');
4039 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4040 VALUES ('marc21_biblio_257_ind_1', '#', $$Undefined$$, FALSE, TRUE);
4041 INSERT INTO config.record_attr_definition(name, label)
4042 VALUES ('marc21_biblio_257_ind_2', 'MARC 21 biblio field 257 indicator position 2');
4043 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4044 VALUES ('marc21_biblio_257_ind_2', '#', $$Undefined$$, FALSE, TRUE);
4045 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4046                                  repeatable, mandatory, hidden)
4047 VALUES (1, 'biblio', '257', 'a', $$Country of producing entity$$,
4048 TRUE, FALSE, FALSE);
4049 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4050                                  repeatable, mandatory, hidden)
4051 VALUES (1, 'biblio', '257', '6', $$Linkage$$,
4052 FALSE, FALSE, FALSE);
4053 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4054                                  repeatable, mandatory, hidden)
4055 VALUES (1, 'biblio', '257', '8', $$Field link and sequence number$$,
4056 TRUE, FALSE, FALSE);
4057 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
4058                               fixed_field, repeatable, mandatory, hidden)
4059 VALUES (1, 'biblio', '258', $$Philatelic Issue Data$$, $$Issuing jurisdiction and denomination information about philatelic material, such as postage stamps, postal stationery (postal cards, etc., made available by a postal administration bearing a stamped impression (indicium) of denomination), revenue stamps (tax stamps), postage due stamps, and registered mail stamps. These are usually valid within a defined area and carry a value signifying prepayment or payment due for services or taxes.$$,
4060 FALSE, TRUE, FALSE, FALSE);
4061 INSERT INTO config.record_attr_definition(name, label)
4062 VALUES ('marc21_biblio_258_ind_1', 'MARC 21 biblio field 258 indicator position 1');
4063 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4064 VALUES ('marc21_biblio_258_ind_1', '#', $$Undefined$$, FALSE, TRUE);
4065 INSERT INTO config.record_attr_definition(name, label)
4066 VALUES ('marc21_biblio_258_ind_2', 'MARC 21 biblio field 258 indicator position 2');
4067 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4068 VALUES ('marc21_biblio_258_ind_2', '#', $$Undefined$$, FALSE, TRUE);
4069 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4070                                  repeatable, mandatory, hidden)
4071 VALUES (1, 'biblio', '258', 'a', $$Issuing jurisdiction$$,
4072 FALSE, FALSE, FALSE);
4073 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4074                                  repeatable, mandatory, hidden)
4075 VALUES (1, 'biblio', '258', 'b', $$Denomination$$,
4076 FALSE, FALSE, FALSE);
4077 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4078                                  repeatable, mandatory, hidden)
4079 VALUES (1, 'biblio', '258', '6', $$Linkage$$,
4080 FALSE, FALSE, FALSE);
4081 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4082                                  repeatable, mandatory, hidden)
4083 VALUES (1, 'biblio', '258', '8', $$Field link and sequence number$$,
4084 TRUE, FALSE, FALSE);
4085 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
4086                               fixed_field, repeatable, mandatory, hidden)
4087 VALUES (1, 'biblio', '260', $$Publication, Distribution, etc. (Imprint)$$, $$Information relating to the publication, printing, distribution, issue, release, or production of a work.$$,
4088 FALSE, TRUE, FALSE, FALSE);
4089 INSERT INTO config.record_attr_definition(name, label)
4090 VALUES ('marc21_biblio_260_ind_1', 'MARC 21 biblio field 260 indicator position 1');
4091 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4092 VALUES ('marc21_biblio_260_ind_1', '#', $$Not applicable/No information provided/Earliest available publisher$$, FALSE, TRUE);
4093 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4094 VALUES ('marc21_biblio_260_ind_1', '2', $$Intervening publisher$$, FALSE, TRUE);
4095 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4096 VALUES ('marc21_biblio_260_ind_1', '3', $$Current/latest publisher$$, FALSE, TRUE);
4097 INSERT INTO config.record_attr_definition(name, label)
4098 VALUES ('marc21_biblio_260_ind_2', 'MARC 21 biblio field 260 indicator position 2');
4099 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4100 VALUES ('marc21_biblio_260_ind_2', '#', $$Undefined$$, FALSE, TRUE);
4101 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4102                                  repeatable, mandatory, hidden)
4103 VALUES (1, 'biblio', '260', 'a', $$Place of publication, distribution, etc.$$,
4104 TRUE, FALSE, FALSE);
4105 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4106                                  repeatable, mandatory, hidden)
4107 VALUES (1, 'biblio', '260', 'b', $$Name of publisher, distributor, etc.$$,
4108 TRUE, FALSE, FALSE);
4109 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4110                                  repeatable, mandatory, hidden)
4111 VALUES (1, 'biblio', '260', 'c', $$Date of publication, distribution, etc.$$,
4112 TRUE, FALSE, FALSE);
4113 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4114                                  repeatable, mandatory, hidden)
4115 VALUES (1, 'biblio', '260', 'e', $$Place of manufacture$$,
4116 TRUE, FALSE, FALSE);
4117 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4118                                  repeatable, mandatory, hidden)
4119 VALUES (1, 'biblio', '260', 'f', $$Manufacturer$$,
4120 TRUE, FALSE, FALSE);
4121 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4122                                  repeatable, mandatory, hidden)
4123 VALUES (1, 'biblio', '260', 'g', $$Date of manufacture$$,
4124 TRUE, FALSE, FALSE);
4125 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4126                                  repeatable, mandatory, hidden)
4127 VALUES (1, 'biblio', '260', '3', $$Materials specified$$,
4128 FALSE, FALSE, FALSE);
4129 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4130                                  repeatable, mandatory, hidden)
4131 VALUES (1, 'biblio', '260', '6', $$Linkage$$,
4132 FALSE, FALSE, FALSE);
4133 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4134                                  repeatable, mandatory, hidden)
4135 VALUES (1, 'biblio', '260', '8', $$Field link and sequence number$$,
4136 TRUE, FALSE, FALSE);
4137 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
4138                               fixed_field, repeatable, mandatory, hidden)
4139 VALUES (1, 'biblio', '263', $$Projected Publication Date$$, $$Projected date of publication used in bibliographic records for works that have not yet been published.$$,
4140 FALSE, FALSE, FALSE, FALSE);
4141 INSERT INTO config.record_attr_definition(name, label)
4142 VALUES ('marc21_biblio_263_ind_1', 'MARC 21 biblio field 263 indicator position 1');
4143 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4144 VALUES ('marc21_biblio_263_ind_1', '#', $$Undefined$$, FALSE, TRUE);
4145 INSERT INTO config.record_attr_definition(name, label)
4146 VALUES ('marc21_biblio_263_ind_2', 'MARC 21 biblio field 263 indicator position 2');
4147 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4148 VALUES ('marc21_biblio_263_ind_2', '#', $$Undefined$$, FALSE, TRUE);
4149 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4150                                  repeatable, mandatory, hidden)
4151 VALUES (1, 'biblio', '263', 'a', $$Projected publication date$$,
4152 FALSE, FALSE, FALSE);
4153 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4154                                  repeatable, mandatory, hidden)
4155 VALUES (1, 'biblio', '263', '6', $$Linkage$$,
4156 FALSE, FALSE, FALSE);
4157 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4158                                  repeatable, mandatory, hidden)
4159 VALUES (1, 'biblio', '263', '8', $$Field link and sequence number$$,
4160 TRUE, FALSE, FALSE);
4161 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
4162                               fixed_field, repeatable, mandatory, hidden)
4163 VALUES (1, 'biblio', '264', $$Production, Publication, Distribution, Manufacture, and Copyright Notice$$, $$Statement relating to the publication, printing, distribution, issue, release, or production of a work.$$,
4164 FALSE, TRUE, FALSE, FALSE);
4165 INSERT INTO config.record_attr_definition(name, label)
4166 VALUES ('marc21_biblio_264_ind_1', 'MARC 21 biblio field 264 indicator position 1');
4167 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4168 VALUES ('marc21_biblio_264_ind_1', '#', $$Not applicable/No information provided/Earliest$$, FALSE, TRUE);
4169 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4170 VALUES ('marc21_biblio_264_ind_1', '2', $$Intervening$$, FALSE, TRUE);
4171 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4172 VALUES ('marc21_biblio_264_ind_1', '3', $$Current/latest$$, FALSE, TRUE);
4173 INSERT INTO config.record_attr_definition(name, label)
4174 VALUES ('marc21_biblio_264_ind_2', 'MARC 21 biblio field 264 indicator position 2');
4175 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4176 VALUES ('marc21_biblio_264_ind_2', '0', $$Production$$, FALSE, TRUE);
4177 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4178 VALUES ('marc21_biblio_264_ind_2', '1', $$Publication$$, FALSE, TRUE);
4179 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4180 VALUES ('marc21_biblio_264_ind_2', '2', $$Distribution$$, FALSE, TRUE);
4181 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4182 VALUES ('marc21_biblio_264_ind_2', '3', $$Manufacture$$, FALSE, TRUE);
4183 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4184 VALUES ('marc21_biblio_264_ind_2', '4', $$Copyright notice date$$, FALSE, TRUE);
4185 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4186                                  repeatable, mandatory, hidden)
4187 VALUES (1, 'biblio', '264', 'a', $$Place of production, publication, distribution, manufacture$$,
4188 TRUE, FALSE, FALSE);
4189 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4190                                  repeatable, mandatory, hidden)
4191 VALUES (1, 'biblio', '264', 'b', $$Name of producer, publisher, distributor, manufacturer$$,
4192 TRUE, FALSE, FALSE);
4193 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4194                                  repeatable, mandatory, hidden)
4195 VALUES (1, 'biblio', '264', 'c', $$Date of production, publication, distribution, manufacture, or copyright notice$$,
4196 TRUE, FALSE, FALSE);
4197 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4198                                  repeatable, mandatory, hidden)
4199 VALUES (1, 'biblio', '264', '3', $$Materials specified$$,
4200 FALSE, FALSE, FALSE);
4201 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4202                                  repeatable, mandatory, hidden)
4203 VALUES (1, 'biblio', '264', '6', $$Linkage$$,
4204 FALSE, FALSE, FALSE);
4205 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4206                                  repeatable, mandatory, hidden)
4207 VALUES (1, 'biblio', '264', '8', $$Field link and sequence number$$,
4208 TRUE, FALSE, FALSE);
4209 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
4210                               fixed_field, repeatable, mandatory, hidden)
4211 VALUES (1, 'biblio', '270', $$Address$$, $$An address (as well as electronic access information such as email, telephone, fax, TTY, etc. numbers) for contacts related to the content of the bibliographic item. Multiple addresses, such as mailing addresses and addresses corresponding to the physical location of an item or facilities, are recorded in separate occurrences of field 270.$$,
4212 FALSE, TRUE, FALSE, FALSE);
4213 INSERT INTO config.record_attr_definition(name, label)
4214 VALUES ('marc21_biblio_270_ind_1', 'MARC 21 biblio field 270 indicator position 1');
4215 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4216 VALUES ('marc21_biblio_270_ind_1', '#', $$No level specified$$, FALSE, TRUE);
4217 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4218 VALUES ('marc21_biblio_270_ind_1', '1', $$Primary$$, FALSE, TRUE);
4219 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4220 VALUES ('marc21_biblio_270_ind_1', '2', $$Secondary$$, FALSE, TRUE);
4221 INSERT INTO config.record_attr_definition(name, label)
4222 VALUES ('marc21_biblio_270_ind_2', 'MARC 21 biblio field 270 indicator position 2');
4223 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4224 VALUES ('marc21_biblio_270_ind_2', '#', $$No type specified$$, FALSE, TRUE);
4225 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4226 VALUES ('marc21_biblio_270_ind_2', '0', $$Mailing$$, FALSE, TRUE);
4227 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4228 VALUES ('marc21_biblio_270_ind_2', '7', $$Type specified in subfield $i$$, FALSE, TRUE);
4229 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4230                                  repeatable, mandatory, hidden)
4231 VALUES (1, 'biblio', '270', 'a', $$Address$$,
4232 TRUE, FALSE, FALSE);
4233 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4234                                  repeatable, mandatory, hidden)
4235 VALUES (1, 'biblio', '270', 'b', $$City$$,
4236 FALSE, FALSE, FALSE);
4237 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4238                                  repeatable, mandatory, hidden)
4239 VALUES (1, 'biblio', '270', 'c', $$State or province$$,
4240 FALSE, FALSE, FALSE);
4241 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4242                                  repeatable, mandatory, hidden)
4243 VALUES (1, 'biblio', '270', 'd', $$Country$$,
4244 FALSE, FALSE, FALSE);
4245 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4246                                  repeatable, mandatory, hidden)
4247 VALUES (1, 'biblio', '270', 'e', $$Postal code$$,
4248 FALSE, FALSE, FALSE);
4249 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4250                                  repeatable, mandatory, hidden)
4251 VALUES (1, 'biblio', '270', 'f', $$Terms preceding attention name$$,
4252 FALSE, FALSE, FALSE);
4253 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4254                                  repeatable, mandatory, hidden)
4255 VALUES (1, 'biblio', '270', 'g', $$Attention name$$,
4256 FALSE, FALSE, FALSE);
4257 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4258                                  repeatable, mandatory, hidden)
4259 VALUES (1, 'biblio', '270', 'h', $$Attention position$$,
4260 FALSE, FALSE, FALSE);
4261 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4262                                  repeatable, mandatory, hidden)
4263 VALUES (1, 'biblio', '270', 'i', $$Type of address$$,
4264 FALSE, FALSE, FALSE);
4265 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4266                                  repeatable, mandatory, hidden)
4267 VALUES (1, 'biblio', '270', 'j', $$Specialized telephone number$$,
4268 TRUE, FALSE, FALSE);
4269 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4270                                  repeatable, mandatory, hidden)
4271 VALUES (1, 'biblio', '270', 'k', $$Telephone number$$,
4272 TRUE, FALSE, FALSE);
4273 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4274                                  repeatable, mandatory, hidden)
4275 VALUES (1, 'biblio', '270', 'l', $$Fax number$$,
4276 TRUE, FALSE, FALSE);
4277 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4278                                  repeatable, mandatory, hidden)
4279 VALUES (1, 'biblio', '270', 'm', $$Electronic mail address$$,
4280 TRUE, FALSE, FALSE);
4281 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4282                                  repeatable, mandatory, hidden)
4283 VALUES (1, 'biblio', '270', 'n', $$TDD or TTY number$$,
4284 TRUE, FALSE, FALSE);
4285 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4286                                  repeatable, mandatory, hidden)
4287 VALUES (1, 'biblio', '270', 'p', $$Contact person$$,
4288 TRUE, FALSE, FALSE);
4289 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4290                                  repeatable, mandatory, hidden)
4291 VALUES (1, 'biblio', '270', 'q', $$Title of contact person$$,
4292 TRUE, FALSE, FALSE);
4293 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4294                                  repeatable, mandatory, hidden)
4295 VALUES (1, 'biblio', '270', 'r', $$Hours$$,
4296 TRUE, FALSE, FALSE);
4297 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4298                                  repeatable, mandatory, hidden)
4299 VALUES (1, 'biblio', '270', 'z', $$Public note$$,
4300 TRUE, FALSE, FALSE);
4301 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4302                                  repeatable, mandatory, hidden)
4303 VALUES (1, 'biblio', '270', '4', $$Relator code$$,
4304 TRUE, FALSE, FALSE);
4305 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4306                                  repeatable, mandatory, hidden)
4307 VALUES (1, 'biblio', '270', '6', $$Linkage$$,
4308 FALSE, FALSE, FALSE);
4309 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4310                                  repeatable, mandatory, hidden)
4311 VALUES (1, 'biblio', '270', '8', $$Field link and sequence number$$,
4312 TRUE, FALSE, FALSE);
4313 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
4314                               fixed_field, repeatable, mandatory, hidden)
4315 VALUES (1, 'biblio', '300', $$Physical Description$$, $$Physical description of the described item, including its extent, dimensions, and such other physical details as a description of any accompanying materials and unit type and size.$$,
4316 FALSE, TRUE, FALSE, FALSE);
4317 INSERT INTO config.record_attr_definition(name, label)
4318 VALUES ('marc21_biblio_300_ind_1', 'MARC 21 biblio field 300 indicator position 1');
4319 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4320 VALUES ('marc21_biblio_300_ind_1', '#', $$Undefined$$, FALSE, TRUE);
4321 INSERT INTO config.record_attr_definition(name, label)
4322 VALUES ('marc21_biblio_300_ind_2', 'MARC 21 biblio field 300 indicator position 2');
4323 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4324 VALUES ('marc21_biblio_300_ind_2', '#', $$Undefined$$, FALSE, TRUE);
4325 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4326                                  repeatable, mandatory, hidden)
4327 VALUES (1, 'biblio', '300', 'a', $$Extent$$,
4328 TRUE, FALSE, FALSE);
4329 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4330                                  repeatable, mandatory, hidden)
4331 VALUES (1, 'biblio', '300', 'b', $$Other physical details$$,
4332 FALSE, FALSE, FALSE);
4333 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4334                                  repeatable, mandatory, hidden)
4335 VALUES (1, 'biblio', '300', 'c', $$Dimensions$$,
4336 TRUE, FALSE, FALSE);
4337 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4338                                  repeatable, mandatory, hidden)
4339 VALUES (1, 'biblio', '300', 'e', $$Accompanying material$$,
4340 FALSE, FALSE, FALSE);
4341 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4342                                  repeatable, mandatory, hidden)
4343 VALUES (1, 'biblio', '300', 'f', $$Type of unit$$,
4344 TRUE, FALSE, FALSE);
4345 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4346                                  repeatable, mandatory, hidden)
4347 VALUES (1, 'biblio', '300', 'g', $$Size of unit$$,
4348 TRUE, FALSE, FALSE);
4349 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4350                                  repeatable, mandatory, hidden)
4351 VALUES (1, 'biblio', '300', '3', $$Materials specified$$,
4352 FALSE, FALSE, FALSE);
4353 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4354                                  repeatable, mandatory, hidden)
4355 VALUES (1, 'biblio', '300', '6', $$Linkage$$,
4356 FALSE, FALSE, FALSE);
4357 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4358                                  repeatable, mandatory, hidden)
4359 VALUES (1, 'biblio', '300', '8', $$Field link and sequence number$$,
4360 TRUE, FALSE, FALSE);
4361 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
4362                               fixed_field, repeatable, mandatory, hidden)
4363 VALUES (1, 'biblio', '306', $$Playing Time$$, $$Six numeric characters, in the pattern that represent the playing time for a sound recording, videorecording, etc. or the stated duration of performance of printed or manuscript music. If the playing time is less than 1 hour, the hour is recorded as two zeroes; if less than a minute, the minute is also recorded as two zeroes.$$,
4364 FALSE, FALSE, FALSE, FALSE);
4365 INSERT INTO config.record_attr_definition(name, label)
4366 VALUES ('marc21_biblio_306_ind_1', 'MARC 21 biblio field 306 indicator position 1');
4367 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4368 VALUES ('marc21_biblio_306_ind_1', '#', $$Undefined$$, FALSE, TRUE);
4369 INSERT INTO config.record_attr_definition(name, label)
4370 VALUES ('marc21_biblio_306_ind_2', 'MARC 21 biblio field 306 indicator position 2');
4371 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4372 VALUES ('marc21_biblio_306_ind_2', '#', $$Undefined$$, FALSE, TRUE);
4373 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4374                                  repeatable, mandatory, hidden)
4375 VALUES (1, 'biblio', '306', 'a', $$Playing time$$,
4376 TRUE, FALSE, FALSE);
4377 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4378                                  repeatable, mandatory, hidden)
4379 VALUES (1, 'biblio', '306', '6', $$Linkage$$,
4380 FALSE, FALSE, FALSE);
4381 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4382                                  repeatable, mandatory, hidden)
4383 VALUES (1, 'biblio', '306', '8', $$Field link and sequence number$$,
4384 TRUE, FALSE, FALSE);
4385 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
4386                               fixed_field, repeatable, mandatory, hidden)
4387 VALUES (1, 'biblio', '307', $$Hours, Etc.$$, $$Chronological information identifying the days and/or times an item is available or accessible. Used primarily in records for electronic resources.$$,
4388 FALSE, TRUE, FALSE, FALSE);
4389 INSERT INTO config.record_attr_definition(name, label)
4390 VALUES ('marc21_biblio_307_ind_1', 'MARC 21 biblio field 307 indicator position 1');
4391 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4392 VALUES ('marc21_biblio_307_ind_1', '#', $$Hours$$, FALSE, TRUE);
4393 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4394 VALUES ('marc21_biblio_307_ind_1', '8', $$No display constant generated$$, FALSE, TRUE);
4395 INSERT INTO config.record_attr_definition(name, label)
4396 VALUES ('marc21_biblio_307_ind_2', 'MARC 21 biblio field 307 indicator position 2');
4397 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4398 VALUES ('marc21_biblio_307_ind_2', '#', $$Undefined$$, FALSE, TRUE);
4399 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4400                                  repeatable, mandatory, hidden)
4401 VALUES (1, 'biblio', '307', 'a', $$Hours$$,
4402 FALSE, FALSE, FALSE);
4403 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4404                                  repeatable, mandatory, hidden)
4405 VALUES (1, 'biblio', '307', 'b', $$Additional information$$,
4406 FALSE, FALSE, FALSE);
4407 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4408                                  repeatable, mandatory, hidden)
4409 VALUES (1, 'biblio', '307', '6', $$Linkage$$,
4410 FALSE, FALSE, FALSE);
4411 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4412                                  repeatable, mandatory, hidden)
4413 VALUES (1, 'biblio', '307', '8', $$Field link and sequence number$$,
4414 TRUE, FALSE, FALSE);
4415 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
4416                               fixed_field, repeatable, mandatory, hidden)
4417 VALUES (1, 'biblio', '310', $$Current Publication Frequency$$, $$Current stated publication frequency of either an item or an update to an item. Dates are included when the beginning date of the current frequency is not the same as the beginning date of publication.$$,
4418 FALSE, FALSE, FALSE, FALSE);
4419 INSERT INTO config.record_attr_definition(name, label)
4420 VALUES ('marc21_biblio_310_ind_1', 'MARC 21 biblio field 310 indicator position 1');
4421 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4422 VALUES ('marc21_biblio_310_ind_1', '#', $$Undefined$$, FALSE, TRUE);
4423 INSERT INTO config.record_attr_definition(name, label)
4424 VALUES ('marc21_biblio_310_ind_2', 'MARC 21 biblio field 310 indicator position 2');
4425 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4426 VALUES ('marc21_biblio_310_ind_2', '#', $$Undefined$$, FALSE, TRUE);
4427 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4428                                  repeatable, mandatory, hidden)
4429 VALUES (1, 'biblio', '310', 'a', $$Current publication frequency$$,
4430 FALSE, FALSE, FALSE);
4431 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4432                                  repeatable, mandatory, hidden)
4433 VALUES (1, 'biblio', '310', 'b', $$Date of current publication frequency$$,
4434 FALSE, FALSE, FALSE);
4435 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4436                                  repeatable, mandatory, hidden)
4437 VALUES (1, 'biblio', '310', '6', $$Linkage$$,
4438 FALSE, FALSE, FALSE);
4439 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4440                                  repeatable, mandatory, hidden)
4441 VALUES (1, 'biblio', '310', '8', $$Field link and sequence number$$,
4442 TRUE, FALSE, FALSE);
4443 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
4444                               fixed_field, repeatable, mandatory, hidden)
4445 VALUES (1, 'biblio', '321', $$Former Publication Frequency$$, $$Former publication frequency of either an item or an update to an item when a current publication frequency is given in field 310 (Current Publication Frequency).$$,
4446 FALSE, TRUE, FALSE, FALSE);
4447 INSERT INTO config.record_attr_definition(name, label)
4448 VALUES ('marc21_biblio_321_ind_1', 'MARC 21 biblio field 321 indicator position 1');
4449 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4450 VALUES ('marc21_biblio_321_ind_1', '#', $$Undefined$$, FALSE, TRUE);
4451 INSERT INTO config.record_attr_definition(name, label)
4452 VALUES ('marc21_biblio_321_ind_2', 'MARC 21 biblio field 321 indicator position 2');
4453 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4454 VALUES ('marc21_biblio_321_ind_2', '#', $$Undefined$$, FALSE, TRUE);
4455 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4456                                  repeatable, mandatory, hidden)
4457 VALUES (1, 'biblio', '321', 'a', $$Former publication frequency$$,
4458 FALSE, FALSE, FALSE);
4459 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4460                                  repeatable, mandatory, hidden)
4461 VALUES (1, 'biblio', '321', 'b', $$Dates of former publication frequency$$,
4462 FALSE, FALSE, FALSE);
4463 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4464                                  repeatable, mandatory, hidden)
4465 VALUES (1, 'biblio', '321', '6', $$Linkage$$,
4466 FALSE, FALSE, FALSE);
4467 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4468                                  repeatable, mandatory, hidden)
4469 VALUES (1, 'biblio', '321', '8', $$Field link and sequence number$$,
4470 TRUE, FALSE, FALSE);
4471 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
4472                               fixed_field, repeatable, mandatory, hidden)
4473 VALUES (1, 'biblio', '336', $$Content Type$$, $$The form of communication through which a work is expressed. Used in conjunction with Leader /06 (Type of record), which indicates the general type of content of the resource. Field 336 information enables expression of more specific content types and content types from various lists.$$,
4474 FALSE, TRUE, FALSE, FALSE);
4475 INSERT INTO config.record_attr_definition(name, label)
4476 VALUES ('marc21_biblio_336_ind_1', 'MARC 21 biblio field 336 indicator position 1');
4477 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4478 VALUES ('marc21_biblio_336_ind_1', '#', $$Undefined$$, FALSE, TRUE);
4479 INSERT INTO config.record_attr_definition(name, label)
4480 VALUES ('marc21_biblio_336_ind_2', 'MARC 21 biblio field 336 indicator position 2');
4481 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4482 VALUES ('marc21_biblio_336_ind_2', '#', $$Undefined$$, FALSE, TRUE);
4483 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4484                                  repeatable, mandatory, hidden)
4485 VALUES (1, 'biblio', '336', 'a', $$Content type term$$,
4486 TRUE, FALSE, FALSE);
4487 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4488                                  repeatable, mandatory, hidden)
4489 VALUES (1, 'biblio', '336', 'b', $$Content type code$$,
4490 TRUE, FALSE, FALSE);
4491 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4492                                  repeatable, mandatory, hidden)
4493 VALUES (1, 'biblio', '336', '2', $$Source$$,
4494 FALSE, FALSE, FALSE);
4495 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4496                                  repeatable, mandatory, hidden)
4497 VALUES (1, 'biblio', '336', '3', $$Materials specified$$,
4498 FALSE, FALSE, FALSE);
4499 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4500                                  repeatable, mandatory, hidden)
4501 VALUES (1, 'biblio', '336', '6', $$Linkage$$,
4502 FALSE, FALSE, FALSE);
4503 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4504                                  repeatable, mandatory, hidden)
4505 VALUES (1, 'biblio', '336', '8', $$Field link and sequence number$$,
4506 TRUE, FALSE, FALSE);
4507 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
4508                               fixed_field, repeatable, mandatory, hidden)
4509 VALUES (1, 'biblio', '337', $$Media Type$$, $$Media type reflects the general type of intermediation device required to view, play, run, etc., the content of a resource. Used as an alternative to or in addition to the coded expression of Media type in field 007/00 (Category of material). Field 337 information enables indication of more specific media types and media types from various lists.$$,
4510 FALSE, TRUE, FALSE, FALSE);
4511 INSERT INTO config.record_attr_definition(name, label)
4512 VALUES ('marc21_biblio_337_ind_1', 'MARC 21 biblio field 337 indicator position 1');
4513 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4514 VALUES ('marc21_biblio_337_ind_1', '#', $$Undefined$$, FALSE, TRUE);
4515 INSERT INTO config.record_attr_definition(name, label)
4516 VALUES ('marc21_biblio_337_ind_2', 'MARC 21 biblio field 337 indicator position 2');
4517 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4518 VALUES ('marc21_biblio_337_ind_2', '#', $$Undefined$$, FALSE, TRUE);
4519 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4520                                  repeatable, mandatory, hidden)
4521 VALUES (1, 'biblio', '337', 'a', $$Media type term$$,
4522 TRUE, FALSE, FALSE);
4523 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4524                                  repeatable, mandatory, hidden)
4525 VALUES (1, 'biblio', '337', 'b', $$Media type code$$,
4526 TRUE, FALSE, FALSE);
4527 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4528                                  repeatable, mandatory, hidden)
4529 VALUES (1, 'biblio', '337', '2', $$Source$$,
4530 FALSE, FALSE, FALSE);
4531 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4532                                  repeatable, mandatory, hidden)
4533 VALUES (1, 'biblio', '337', '3', $$Materials specified$$,
4534 FALSE, FALSE, FALSE);
4535 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4536                                  repeatable, mandatory, hidden)
4537 VALUES (1, 'biblio', '337', '6', $$Linkage$$,
4538 FALSE, FALSE, FALSE);
4539 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4540                                  repeatable, mandatory, hidden)
4541 VALUES (1, 'biblio', '337', '8', $$Field link and sequence number$$,
4542 TRUE, FALSE, FALSE);
4543 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
4544                               fixed_field, repeatable, mandatory, hidden)
4545 VALUES (1, 'biblio', '338', $$Carrier Type$$, $$Carrier type reflects the format of the storage medium and housing of a carrier in combination with the media type (which indicates the intermediation device required to view, play, run, etc., the content of a resource). Used as an alternative to or in addition to the coded expression of carrier type in field 007/01 (Specific material designation). Field 338 information enables indication of more specific carrier types and carrier types from various lists.$$,
4546 FALSE, TRUE, FALSE, FALSE);
4547 INSERT INTO config.record_attr_definition(name, label)
4548 VALUES ('marc21_biblio_338_ind_1', 'MARC 21 biblio field 338 indicator position 1');
4549 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4550 VALUES ('marc21_biblio_338_ind_1', '#', $$Undefined$$, FALSE, TRUE);
4551 INSERT INTO config.record_attr_definition(name, label)
4552 VALUES ('marc21_biblio_338_ind_2', 'MARC 21 biblio field 338 indicator position 2');
4553 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4554 VALUES ('marc21_biblio_338_ind_2', '#', $$Undefined$$, FALSE, TRUE);
4555 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4556                                  repeatable, mandatory, hidden)
4557 VALUES (1, 'biblio', '338', 'a', $$Carrier type term$$,
4558 TRUE, FALSE, FALSE);
4559 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4560                                  repeatable, mandatory, hidden)
4561 VALUES (1, 'biblio', '338', 'b', $$Carrier type code$$,
4562 TRUE, FALSE, FALSE);
4563 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4564                                  repeatable, mandatory, hidden)
4565 VALUES (1, 'biblio', '338', '2', $$Source$$,
4566 FALSE, FALSE, FALSE);
4567 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4568                                  repeatable, mandatory, hidden)
4569 VALUES (1, 'biblio', '338', '3', $$Materials specified$$,
4570 FALSE, FALSE, FALSE);
4571 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4572                                  repeatable, mandatory, hidden)
4573 VALUES (1, 'biblio', '338', '6', $$Linkage$$,
4574 FALSE, FALSE, FALSE);
4575 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4576                                  repeatable, mandatory, hidden)
4577 VALUES (1, 'biblio', '338', '8', $$Field link and sequence number$$,
4578 TRUE, FALSE, FALSE);
4579 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
4580                               fixed_field, repeatable, mandatory, hidden)
4581 VALUES (1, 'biblio', '340', $$Physical Medium$$, $$Physical description information for an item that requires technical equipment for its use or an item that has special conservation or storage needs.$$,
4582 FALSE, TRUE, FALSE, FALSE);
4583 INSERT INTO config.record_attr_definition(name, label)
4584 VALUES ('marc21_biblio_340_ind_1', 'MARC 21 biblio field 340 indicator position 1');
4585 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4586 VALUES ('marc21_biblio_340_ind_1', '#', $$Undefined$$, FALSE, TRUE);
4587 INSERT INTO config.record_attr_definition(name, label)
4588 VALUES ('marc21_biblio_340_ind_2', 'MARC 21 biblio field 340 indicator position 2');
4589 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4590 VALUES ('marc21_biblio_340_ind_2', '#', $$Undefined$$, FALSE, TRUE);
4591 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4592                                  repeatable, mandatory, hidden)
4593 VALUES (1, 'biblio', '340', 'a', $$Material base and configuration$$,
4594 TRUE, FALSE, FALSE);
4595 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4596                                  repeatable, mandatory, hidden)
4597 VALUES (1, 'biblio', '340', 'b', $$Dimensions$$,
4598 TRUE, FALSE, FALSE);
4599 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4600                                  repeatable, mandatory, hidden)
4601 VALUES (1, 'biblio', '340', 'c', $$Materials applied to surface$$,
4602 TRUE, FALSE, FALSE);
4603 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4604                                  repeatable, mandatory, hidden)
4605 VALUES (1, 'biblio', '340', 'd', $$Information recording technique$$,
4606 TRUE, FALSE, FALSE);
4607 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4608                                  repeatable, mandatory, hidden)
4609 VALUES (1, 'biblio', '340', 'e', $$Support$$,
4610 TRUE, FALSE, FALSE);
4611 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4612                                  repeatable, mandatory, hidden)
4613 VALUES (1, 'biblio', '340', 'f', $$Production rate/ratio$$,
4614 TRUE, FALSE, FALSE);
4615 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4616                                  repeatable, mandatory, hidden)
4617 VALUES (1, 'biblio', '340', 'h', $$Location within medium$$,
4618 TRUE, FALSE, FALSE);
4619 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4620                                  repeatable, mandatory, hidden)
4621 VALUES (1, 'biblio', '340', 'i', $$Technical specifications of medium$$,
4622 TRUE, FALSE, FALSE);
4623 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4624                                  repeatable, mandatory, hidden)
4625 VALUES (1, 'biblio', '340', '3', $$Materials specified$$,
4626 FALSE, FALSE, FALSE);
4627 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4628                                  repeatable, mandatory, hidden)
4629 VALUES (1, 'biblio', '340', '6', $$Linkage$$,
4630 FALSE, FALSE, FALSE);
4631 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4632                                  repeatable, mandatory, hidden)
4633 VALUES (1, 'biblio', '340', '8', $$Field link and sequence number$$,
4634 TRUE, FALSE, FALSE);
4635 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
4636                               fixed_field, repeatable, mandatory, hidden)
4637 VALUES (1, 'biblio', '342', $$Geospatial Reference Data$$, $$Description of the frame of reference for the coordinates in a data set. To work with a data set a user must be able to identify how location accuracy has been affected through the application of a geospatial reference method, thus enabling the user to manipulate the data set to recover location accuracy.$$,
4638 FALSE, TRUE, FALSE, FALSE);
4639 INSERT INTO config.record_attr_definition(name, label)
4640 VALUES ('marc21_biblio_342_ind_1', 'MARC 21 biblio field 342 indicator position 1');
4641 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4642 VALUES ('marc21_biblio_342_ind_1', '0', $$Horizontal coordinate system$$, FALSE, TRUE);
4643 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4644 VALUES ('marc21_biblio_342_ind_1', '1', $$Vertical coordinate system$$, FALSE, TRUE);
4645 INSERT INTO config.record_attr_definition(name, label)
4646 VALUES ('marc21_biblio_342_ind_2', 'MARC 21 biblio field 342 indicator position 2');
4647 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4648 VALUES ('marc21_biblio_342_ind_2', '0', $$Geographic$$, FALSE, TRUE);
4649 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4650 VALUES ('marc21_biblio_342_ind_2', '1', $$Map projection$$, FALSE, TRUE);
4651 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4652 VALUES ('marc21_biblio_342_ind_2', '2', $$Grid coordinate system$$, FALSE, TRUE);
4653 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4654 VALUES ('marc21_biblio_342_ind_2', '3', $$Local planar$$, FALSE, TRUE);
4655 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4656 VALUES ('marc21_biblio_342_ind_2', '4', $$Local$$, FALSE, TRUE);
4657 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4658 VALUES ('marc21_biblio_342_ind_2', '5', $$Geodetic model$$, FALSE, TRUE);
4659 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4660 VALUES ('marc21_biblio_342_ind_2', '6', $$Altitude$$, FALSE, TRUE);
4661 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4662 VALUES ('marc21_biblio_342_ind_2', '7', $$Method specified in $2$$, FALSE, TRUE);
4663 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4664 VALUES ('marc21_biblio_342_ind_2', '8', $$Depth$$, FALSE, TRUE);
4665 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4666                                  repeatable, mandatory, hidden)
4667 VALUES (1, 'biblio', '342', 'a', $$Name$$,
4668 FALSE, FALSE, FALSE);
4669 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4670                                  repeatable, mandatory, hidden)
4671 VALUES (1, 'biblio', '342', 'b', $$Coordinate units or distance units$$,
4672 FALSE, FALSE, FALSE);
4673 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4674                                  repeatable, mandatory, hidden)
4675 VALUES (1, 'biblio', '342', 'c', $$Latitude resolution$$,
4676 FALSE, FALSE, FALSE);
4677 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4678                                  repeatable, mandatory, hidden)
4679 VALUES (1, 'biblio', '342', 'd', $$Longitude resolution$$,
4680 FALSE, FALSE, FALSE);
4681 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4682                                  repeatable, mandatory, hidden)
4683 VALUES (1, 'biblio', '342', 'e', $$Standard parallel or oblique line latitude$$,
4684 TRUE, FALSE, FALSE);
4685 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4686                                  repeatable, mandatory, hidden)
4687 VALUES (1, 'biblio', '342', 'f', $$Oblique line longitude$$,
4688 TRUE, FALSE, FALSE);
4689 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4690                                  repeatable, mandatory, hidden)
4691 VALUES (1, 'biblio', '342', 'g', $$Longitude of central meridian or projection center$$,
4692 FALSE, FALSE, FALSE);
4693 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4694                                  repeatable, mandatory, hidden)
4695 VALUES (1, 'biblio', '342', 'h', $$Latitude of projection center or projection origin$$,
4696 FALSE, FALSE, FALSE);
4697 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4698                                  repeatable, mandatory, hidden)
4699 VALUES (1, 'biblio', '342', 'i', $$False easting$$,
4700 FALSE, FALSE, FALSE);
4701 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4702                                  repeatable, mandatory, hidden)
4703 VALUES (1, 'biblio', '342', 'j', $$False northing$$,
4704 FALSE, FALSE, FALSE);
4705 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4706                                  repeatable, mandatory, hidden)
4707 VALUES (1, 'biblio', '342', 'k', $$Scale factor$$,
4708 FALSE, FALSE, FALSE);
4709 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4710                                  repeatable, mandatory, hidden)
4711 VALUES (1, 'biblio', '342', 'l', $$Height of perspective point above surface$$,
4712 FALSE, FALSE, FALSE);
4713 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4714                                  repeatable, mandatory, hidden)
4715 VALUES (1, 'biblio', '342', 'm', $$Azimuthal angle$$,
4716 FALSE, FALSE, FALSE);
4717 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4718                                  repeatable, mandatory, hidden)
4719 VALUES (1, 'biblio', '342', 'n', $$Azimuth measure point longitude or straight vertical longitude from pole$$,
4720 FALSE, FALSE, FALSE);
4721 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4722                                  repeatable, mandatory, hidden)
4723 VALUES (1, 'biblio', '342', 'o', $$Landsat number and path number$$,
4724 FALSE, FALSE, FALSE);
4725 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4726                                  repeatable, mandatory, hidden)
4727 VALUES (1, 'biblio', '342', 'p', $$Zone identifier$$,
4728 FALSE, FALSE, FALSE);
4729 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4730                                  repeatable, mandatory, hidden)
4731 VALUES (1, 'biblio', '342', 'q', $$Ellipsoid name$$,
4732 FALSE, FALSE, FALSE);
4733 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4734                                  repeatable, mandatory, hidden)
4735 VALUES (1, 'biblio', '342', 'r', $$Semi-major axis$$,
4736 FALSE, FALSE, FALSE);
4737 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4738                                  repeatable, mandatory, hidden)
4739 VALUES (1, 'biblio', '342', 's', $$Denominator of flattening ratio$$,
4740 FALSE, FALSE, FALSE);
4741 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4742                                  repeatable, mandatory, hidden)
4743 VALUES (1, 'biblio', '342', 't', $$Vertical resolution$$,
4744 FALSE, FALSE, FALSE);
4745 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4746                                  repeatable, mandatory, hidden)
4747 VALUES (1, 'biblio', '342', 'u', $$Vertical encoding method$$,
4748 FALSE, FALSE, FALSE);
4749 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4750                                  repeatable, mandatory, hidden)
4751 VALUES (1, 'biblio', '342', 'v', $$Local planar, local, or other projection or grid description$$,
4752 FALSE, FALSE, FALSE);
4753 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4754                                  repeatable, mandatory, hidden)
4755 VALUES (1, 'biblio', '342', 'w', $$Local planar or local georeference information$$,
4756 FALSE, FALSE, FALSE);
4757 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4758                                  repeatable, mandatory, hidden)
4759 VALUES (1, 'biblio', '342', '2', $$Reference method used$$,
4760 FALSE, FALSE, FALSE);
4761 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4762                                  repeatable, mandatory, hidden)
4763 VALUES (1, 'biblio', '342', '6', $$Linkage$$,
4764 FALSE, FALSE, FALSE);
4765 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4766                                  repeatable, mandatory, hidden)
4767 VALUES (1, 'biblio', '342', '8', $$Field link and sequence number$$,
4768 TRUE, FALSE, FALSE);
4769 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
4770                               fixed_field, repeatable, mandatory, hidden)
4771 VALUES (1, 'biblio', '343', $$Planar Coordinate Data$$, $$Information about the coordinate system developed on a planar surface. The information is provided to allow the user of a geospatial data set to identify the quantities of distances, or distances and angles. These define the position of a point on a reference plane onto which the surface of the Earth has been projected.$$,
4772 FALSE, TRUE, FALSE, FALSE);
4773 INSERT INTO config.record_attr_definition(name, label)
4774 VALUES ('marc21_biblio_343_ind_1', 'MARC 21 biblio field 343 indicator position 1');
4775 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4776 VALUES ('marc21_biblio_343_ind_1', '#', $$Undefined$$, FALSE, TRUE);
4777 INSERT INTO config.record_attr_definition(name, label)
4778 VALUES ('marc21_biblio_343_ind_2', 'MARC 21 biblio field 343 indicator position 2');
4779 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4780 VALUES ('marc21_biblio_343_ind_2', '#', $$Undefined$$, FALSE, TRUE);
4781 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4782                                  repeatable, mandatory, hidden)
4783 VALUES (1, 'biblio', '343', 'a', $$Planar coordinate encoding method$$,
4784 FALSE, FALSE, FALSE);
4785 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4786                                  repeatable, mandatory, hidden)
4787 VALUES (1, 'biblio', '343', 'b', $$Planar distance units$$,
4788 FALSE, FALSE, FALSE);
4789 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4790                                  repeatable, mandatory, hidden)
4791 VALUES (1, 'biblio', '343', 'c', $$Abscissa resolution$$,
4792 FALSE, FALSE, FALSE);
4793 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4794                                  repeatable, mandatory, hidden)
4795 VALUES (1, 'biblio', '343', 'd', $$Ordinate resolution$$,
4796 FALSE, FALSE, FALSE);
4797 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4798                                  repeatable, mandatory, hidden)
4799 VALUES (1, 'biblio', '343', 'e', $$Distance resolution$$,
4800 FALSE, FALSE, FALSE);
4801 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4802                                  repeatable, mandatory, hidden)
4803 VALUES (1, 'biblio', '343', 'f', $$Bearing resolution$$,
4804 FALSE, FALSE, FALSE);
4805 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4806                                  repeatable, mandatory, hidden)
4807 VALUES (1, 'biblio', '343', 'g', $$Bearing units$$,
4808 FALSE, FALSE, FALSE);
4809 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4810                                  repeatable, mandatory, hidden)
4811 VALUES (1, 'biblio', '343', 'h', $$Bearing reference direction$$,
4812 FALSE, FALSE, FALSE);
4813 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4814                                  repeatable, mandatory, hidden)
4815 VALUES (1, 'biblio', '343', 'i', $$Bearing reference meridian$$,
4816 FALSE, FALSE, FALSE);
4817 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4818                                  repeatable, mandatory, hidden)
4819 VALUES (1, 'biblio', '343', '6', $$Linkage$$,
4820 FALSE, FALSE, FALSE);
4821 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4822                                  repeatable, mandatory, hidden)
4823 VALUES (1, 'biblio', '343', '8', $$Field link and sequence number$$,
4824 TRUE, FALSE, FALSE);
4825 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
4826                               fixed_field, repeatable, mandatory, hidden)
4827 VALUES (1, 'biblio', '344', $$Sound Characteristics$$, $$Technical specifications relating to the encoding of sound in a resource.$$,
4828 FALSE, TRUE, FALSE, FALSE);
4829 INSERT INTO config.record_attr_definition(name, label)
4830 VALUES ('marc21_biblio_344_ind_1', 'MARC 21 biblio field 344 indicator position 1');
4831 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4832 VALUES ('marc21_biblio_344_ind_1', '#', $$Undefined$$, FALSE, TRUE);
4833 INSERT INTO config.record_attr_definition(name, label)
4834 VALUES ('marc21_biblio_344_ind_2', 'MARC 21 biblio field 344 indicator position 2');
4835 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4836 VALUES ('marc21_biblio_344_ind_2', '#', $$Undefined$$, FALSE, TRUE);
4837 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4838                                  repeatable, mandatory, hidden)
4839 VALUES (1, 'biblio', '344', 'a', $$Type of recording$$,
4840 TRUE, FALSE, FALSE);
4841 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4842                                  repeatable, mandatory, hidden)
4843 VALUES (1, 'biblio', '344', 'b', $$Recording medium$$,
4844 TRUE, FALSE, FALSE);
4845 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4846                                  repeatable, mandatory, hidden)
4847 VALUES (1, 'biblio', '344', 'c', $$Playing speed$$,
4848 TRUE, FALSE, FALSE);
4849 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4850                                  repeatable, mandatory, hidden)
4851 VALUES (1, 'biblio', '344', 'd', $$Groove characteristic$$,
4852 TRUE, FALSE, FALSE);
4853 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4854                                  repeatable, mandatory, hidden)
4855 VALUES (1, 'biblio', '344', 'e', $$Track configuration$$,
4856 TRUE, FALSE, FALSE);
4857 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4858                                  repeatable, mandatory, hidden)
4859 VALUES (1, 'biblio', '344', 'f', $$Tape configuration$$,
4860 TRUE, FALSE, FALSE);
4861 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4862                                  repeatable, mandatory, hidden)
4863 VALUES (1, 'biblio', '344', 'g', $$Configuration of playback channels$$,
4864 TRUE, FALSE, FALSE);
4865 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4866                                  repeatable, mandatory, hidden)
4867 VALUES (1, 'biblio', '344', 'h', $$Special playback characteristics$$,
4868 TRUE, FALSE, FALSE);
4869 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4870                                  repeatable, mandatory, hidden)
4871 VALUES (1, 'biblio', '344', '0', $$Authority record control number or standard number$$,
4872 TRUE, FALSE, FALSE);
4873 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4874                                  repeatable, mandatory, hidden)
4875 VALUES (1, 'biblio', '344', '2', $$Source$$,
4876 FALSE, FALSE, FALSE);
4877 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4878                                  repeatable, mandatory, hidden)
4879 VALUES (1, 'biblio', '344', '3', $$Materials specified$$,
4880 FALSE, FALSE, FALSE);
4881 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4882                                  repeatable, mandatory, hidden)
4883 VALUES (1, 'biblio', '344', '6', $$Linkage$$,
4884 FALSE, FALSE, FALSE);
4885 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4886                                  repeatable, mandatory, hidden)
4887 VALUES (1, 'biblio', '344', '8', $$Field link and sequence number$$,
4888 TRUE, FALSE, FALSE);
4889 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
4890                               fixed_field, repeatable, mandatory, hidden)
4891 VALUES (1, 'biblio', '345', $$Projection Characteristics of Moving Image$$, $$Technical specifications relating to the projection of a moving image resource.$$,
4892 FALSE, TRUE, FALSE, FALSE);
4893 INSERT INTO config.record_attr_definition(name, label)
4894 VALUES ('marc21_biblio_345_ind_1', 'MARC 21 biblio field 345 indicator position 1');
4895 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4896 VALUES ('marc21_biblio_345_ind_1', '#', $$Undefined$$, FALSE, TRUE);
4897 INSERT INTO config.record_attr_definition(name, label)
4898 VALUES ('marc21_biblio_345_ind_2', 'MARC 21 biblio field 345 indicator position 2');
4899 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4900 VALUES ('marc21_biblio_345_ind_2', '#', $$Undefined$$, FALSE, TRUE);
4901 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4902                                  repeatable, mandatory, hidden)
4903 VALUES (1, 'biblio', '345', 'a', $$Presentation format$$,
4904 TRUE, FALSE, FALSE);
4905 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4906                                  repeatable, mandatory, hidden)
4907 VALUES (1, 'biblio', '345', 'b', $$Projection speed$$,
4908 TRUE, FALSE, FALSE);
4909 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4910                                  repeatable, mandatory, hidden)
4911 VALUES (1, 'biblio', '345', '0', $$Authority record control number or standard number$$,
4912 TRUE, FALSE, FALSE);
4913 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4914                                  repeatable, mandatory, hidden)
4915 VALUES (1, 'biblio', '345', '2', $$Source$$,
4916 FALSE, FALSE, FALSE);
4917 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4918                                  repeatable, mandatory, hidden)
4919 VALUES (1, 'biblio', '345', '3', $$Materials specified$$,
4920 FALSE, FALSE, FALSE);
4921 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4922                                  repeatable, mandatory, hidden)
4923 VALUES (1, 'biblio', '345', '6', $$Linkage$$,
4924 FALSE, FALSE, FALSE);
4925 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4926                                  repeatable, mandatory, hidden)
4927 VALUES (1, 'biblio', '345', '8', $$Field link and sequence number$$,
4928 TRUE, FALSE, FALSE);
4929 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
4930                               fixed_field, repeatable, mandatory, hidden)
4931 VALUES (1, 'biblio', '346', $$Video Characteristics$$, $$Technical specifications relating to the encoding of video images in a resource.$$,
4932 FALSE, TRUE, FALSE, FALSE);
4933 INSERT INTO config.record_attr_definition(name, label)
4934 VALUES ('marc21_biblio_346_ind_1', 'MARC 21 biblio field 346 indicator position 1');
4935 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4936 VALUES ('marc21_biblio_346_ind_1', '#', $$Undefined$$, FALSE, TRUE);
4937 INSERT INTO config.record_attr_definition(name, label)
4938 VALUES ('marc21_biblio_346_ind_2', 'MARC 21 biblio field 346 indicator position 2');
4939 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4940 VALUES ('marc21_biblio_346_ind_2', '#', $$Undefined$$, FALSE, TRUE);
4941 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4942                                  repeatable, mandatory, hidden)
4943 VALUES (1, 'biblio', '346', 'a', $$Video format$$,
4944 TRUE, FALSE, FALSE);
4945 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4946                                  repeatable, mandatory, hidden)
4947 VALUES (1, 'biblio', '346', 'b', $$Broadcast standard$$,
4948 TRUE, FALSE, FALSE);
4949 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4950                                  repeatable, mandatory, hidden)
4951 VALUES (1, 'biblio', '346', '0', $$Authority record control number or standard number$$,
4952 TRUE, FALSE, FALSE);
4953 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4954                                  repeatable, mandatory, hidden)
4955 VALUES (1, 'biblio', '346', '2', $$Source$$,
4956 FALSE, FALSE, FALSE);
4957 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4958                                  repeatable, mandatory, hidden)
4959 VALUES (1, 'biblio', '346', '3', $$Materials specified$$,
4960 FALSE, FALSE, FALSE);
4961 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4962                                  repeatable, mandatory, hidden)
4963 VALUES (1, 'biblio', '346', '6', $$Linkage$$,
4964 FALSE, FALSE, FALSE);
4965 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4966                                  repeatable, mandatory, hidden)
4967 VALUES (1, 'biblio', '346', '8', $$Field link and sequence number$$,
4968 TRUE, FALSE, FALSE);
4969 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
4970                               fixed_field, repeatable, mandatory, hidden)
4971 VALUES (1, 'biblio', '347', $$Digital File Characteristics$$, $$Technical specification relating to the digital encoding of text, image, audio, video, and other types of data in a resource.$$,
4972 FALSE, TRUE, FALSE, FALSE);
4973 INSERT INTO config.record_attr_definition(name, label)
4974 VALUES ('marc21_biblio_347_ind_1', 'MARC 21 biblio field 347 indicator position 1');
4975 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4976 VALUES ('marc21_biblio_347_ind_1', '#', $$Undefined$$, FALSE, TRUE);
4977 INSERT INTO config.record_attr_definition(name, label)
4978 VALUES ('marc21_biblio_347_ind_2', 'MARC 21 biblio field 347 indicator position 2');
4979 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
4980 VALUES ('marc21_biblio_347_ind_2', '#', $$Undefined$$, FALSE, TRUE);
4981 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4982                                  repeatable, mandatory, hidden)
4983 VALUES (1, 'biblio', '347', 'a', $$File type$$,
4984 TRUE, FALSE, FALSE);
4985 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4986                                  repeatable, mandatory, hidden)
4987 VALUES (1, 'biblio', '347', 'b', $$Encoding format$$,
4988 TRUE, FALSE, FALSE);
4989 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4990                                  repeatable, mandatory, hidden)
4991 VALUES (1, 'biblio', '347', 'c', $$File size$$,
4992 TRUE, FALSE, FALSE);
4993 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4994                                  repeatable, mandatory, hidden)
4995 VALUES (1, 'biblio', '347', 'd', $$Resolution$$,
4996 TRUE, FALSE, FALSE);
4997 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
4998                                  repeatable, mandatory, hidden)
4999 VALUES (1, 'biblio', '347', 'e', $$Regional encoding$$,
5000 TRUE, FALSE, FALSE);
5001 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5002                                  repeatable, mandatory, hidden)
5003 VALUES (1, 'biblio', '347', 'f', $$Encoded bitrate$$,
5004 TRUE, FALSE, FALSE);
5005 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5006                                  repeatable, mandatory, hidden)
5007 VALUES (1, 'biblio', '347', '0', $$Authority record control number or standard number$$,
5008 TRUE, FALSE, FALSE);
5009 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5010                                  repeatable, mandatory, hidden)
5011 VALUES (1, 'biblio', '347', '2', $$Source$$,
5012 FALSE, FALSE, FALSE);
5013 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5014                                  repeatable, mandatory, hidden)
5015 VALUES (1, 'biblio', '347', '3', $$Materials specified$$,
5016 FALSE, FALSE, FALSE);
5017 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5018                                  repeatable, mandatory, hidden)
5019 VALUES (1, 'biblio', '347', '6', $$Linkage$$,
5020 FALSE, FALSE, FALSE);
5021 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5022                                  repeatable, mandatory, hidden)
5023 VALUES (1, 'biblio', '347', '8', $$Field link and sequence number$$,
5024 TRUE, FALSE, FALSE);
5025 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
5026                               fixed_field, repeatable, mandatory, hidden)
5027 VALUES (1, 'biblio', '351', $$Organization and Arrangement of Materials$$, $$Information about the organization and arrangement of a collection of items.$$,
5028 FALSE, TRUE, FALSE, FALSE);
5029 INSERT INTO config.record_attr_definition(name, label)
5030 VALUES ('marc21_biblio_351_ind_1', 'MARC 21 biblio field 351 indicator position 1');
5031 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5032 VALUES ('marc21_biblio_351_ind_1', '#', $$Undefined$$, FALSE, TRUE);
5033 INSERT INTO config.record_attr_definition(name, label)
5034 VALUES ('marc21_biblio_351_ind_2', 'MARC 21 biblio field 351 indicator position 2');
5035 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5036 VALUES ('marc21_biblio_351_ind_2', '#', $$Undefined$$, FALSE, TRUE);
5037 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5038                                  repeatable, mandatory, hidden)
5039 VALUES (1, 'biblio', '351', 'a', $$Organization$$,
5040 TRUE, FALSE, FALSE);
5041 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5042                                  repeatable, mandatory, hidden)
5043 VALUES (1, 'biblio', '351', 'b', $$Arrangement$$,
5044 TRUE, FALSE, FALSE);
5045 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5046                                  repeatable, mandatory, hidden)
5047 VALUES (1, 'biblio', '351', 'c', $$Hierarchical level$$,
5048 FALSE, FALSE, FALSE);
5049 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5050                                  repeatable, mandatory, hidden)
5051 VALUES (1, 'biblio', '351', '3', $$Materials specified$$,
5052 FALSE, FALSE, FALSE);
5053 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5054                                  repeatable, mandatory, hidden)
5055 VALUES (1, 'biblio', '351', '6', $$Linkage$$,
5056 FALSE, FALSE, FALSE);
5057 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5058                                  repeatable, mandatory, hidden)
5059 VALUES (1, 'biblio', '351', '8', $$Field link and sequence number$$,
5060 TRUE, FALSE, FALSE);
5061 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
5062                               fixed_field, repeatable, mandatory, hidden)
5063 VALUES (1, 'biblio', '352', $$Digital Graphic Representation$$, $$Description of the method of referencing and the mechanism used to represent graphic information in a data set. This information consists of the type of storage technique used, the number of items in the data set, and the format in which the data is stored.$$,
5064 FALSE, TRUE, FALSE, FALSE);
5065 INSERT INTO config.record_attr_definition(name, label)
5066 VALUES ('marc21_biblio_352_ind_1', 'MARC 21 biblio field 352 indicator position 1');
5067 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5068 VALUES ('marc21_biblio_352_ind_1', '#', $$Undefined$$, FALSE, TRUE);
5069 INSERT INTO config.record_attr_definition(name, label)
5070 VALUES ('marc21_biblio_352_ind_2', 'MARC 21 biblio field 352 indicator position 2');
5071 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5072 VALUES ('marc21_biblio_352_ind_2', '#', $$Undefined$$, FALSE, TRUE);
5073 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5074                                  repeatable, mandatory, hidden)
5075 VALUES (1, 'biblio', '352', 'a', $$Direct reference method$$,
5076 FALSE, FALSE, FALSE);
5077 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5078                                  repeatable, mandatory, hidden)
5079 VALUES (1, 'biblio', '352', 'b', $$Object type$$,
5080 TRUE, FALSE, FALSE);
5081 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5082                                  repeatable, mandatory, hidden)
5083 VALUES (1, 'biblio', '352', 'c', $$Object count$$,
5084 TRUE, FALSE, FALSE);
5085 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5086                                  repeatable, mandatory, hidden)
5087 VALUES (1, 'biblio', '352', 'd', $$Row count$$,
5088 FALSE, FALSE, FALSE);
5089 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5090                                  repeatable, mandatory, hidden)
5091 VALUES (1, 'biblio', '352', 'e', $$Column count$$,
5092 FALSE, FALSE, FALSE);
5093 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5094                                  repeatable, mandatory, hidden)
5095 VALUES (1, 'biblio', '352', 'f', $$Vertical count$$,
5096 FALSE, FALSE, FALSE);
5097 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5098                                  repeatable, mandatory, hidden)
5099 VALUES (1, 'biblio', '352', 'g', $$VPF topology level$$,
5100 FALSE, FALSE, FALSE);
5101 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5102                                  repeatable, mandatory, hidden)
5103 VALUES (1, 'biblio', '352', 'i', $$Indirect reference description$$,
5104 FALSE, FALSE, FALSE);
5105 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5106                                  repeatable, mandatory, hidden)
5107 VALUES (1, 'biblio', '352', 'q', $$Format of the digital image$$,
5108 FALSE, FALSE, FALSE);
5109 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5110                                  repeatable, mandatory, hidden)
5111 VALUES (1, 'biblio', '352', '6', $$Linkage$$,
5112 FALSE, FALSE, FALSE);
5113 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5114                                  repeatable, mandatory, hidden)
5115 VALUES (1, 'biblio', '352', '8', $$Field link and sequence number$$,
5116 TRUE, FALSE, FALSE);
5117 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
5118                               fixed_field, repeatable, mandatory, hidden)
5119 VALUES (1, 'biblio', '355', $$Security Classification Control$$, $$Specifics pertaining to the security classification associated with the document, title, abstract, contents note, and/or the author. In addition, it can contain handling instructions and external dissemination information pertaining to the dissemination of the document, title, abstract, contents note, and author. The field may also contain downgrading or declassification data, the name of the classification system, and a country of origin code.$$,
5120 FALSE, TRUE, FALSE, FALSE);
5121 INSERT INTO config.record_attr_definition(name, label)
5122 VALUES ('marc21_biblio_355_ind_1', 'MARC 21 biblio field 355 indicator position 1');
5123 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5124 VALUES ('marc21_biblio_355_ind_1', '0', $$Document$$, FALSE, TRUE);
5125 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5126 VALUES ('marc21_biblio_355_ind_1', '1', $$Title$$, FALSE, TRUE);
5127 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5128 VALUES ('marc21_biblio_355_ind_1', '2', $$Abstract$$, FALSE, TRUE);
5129 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5130 VALUES ('marc21_biblio_355_ind_1', '3', $$Contents note$$, FALSE, TRUE);
5131 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5132 VALUES ('marc21_biblio_355_ind_1', '4', $$Author$$, FALSE, TRUE);
5133 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5134 VALUES ('marc21_biblio_355_ind_1', '5', $$Record$$, FALSE, TRUE);
5135 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5136 VALUES ('marc21_biblio_355_ind_1', '8', $$None of the above$$, FALSE, TRUE);
5137 INSERT INTO config.record_attr_definition(name, label)
5138 VALUES ('marc21_biblio_355_ind_2', 'MARC 21 biblio field 355 indicator position 2');
5139 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5140 VALUES ('marc21_biblio_355_ind_2', '#', $$Undefined$$, FALSE, TRUE);
5141 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5142                                  repeatable, mandatory, hidden)
5143 VALUES (1, 'biblio', '355', 'a', $$Security classification$$,
5144 FALSE, FALSE, FALSE);
5145 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5146                                  repeatable, mandatory, hidden)
5147 VALUES (1, 'biblio', '355', 'b', $$Handling instructions$$,
5148 TRUE, FALSE, FALSE);
5149 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5150                                  repeatable, mandatory, hidden)
5151 VALUES (1, 'biblio', '355', 'c', $$External dissemination information$$,
5152 TRUE, FALSE, FALSE);
5153 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5154                                  repeatable, mandatory, hidden)
5155 VALUES (1, 'biblio', '355', 'd', $$Downgrading or declassification event$$,
5156 FALSE, FALSE, FALSE);
5157 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5158                                  repeatable, mandatory, hidden)
5159 VALUES (1, 'biblio', '355', 'e', $$Classification system$$,
5160 FALSE, FALSE, FALSE);
5161 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5162                                  repeatable, mandatory, hidden)
5163 VALUES (1, 'biblio', '355', 'f', $$Country of origin code$$,
5164 FALSE, FALSE, FALSE);
5165 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5166                                  repeatable, mandatory, hidden)
5167 VALUES (1, 'biblio', '355', 'g', $$Downgrading date$$,
5168 FALSE, FALSE, FALSE);
5169 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5170                                  repeatable, mandatory, hidden)
5171 VALUES (1, 'biblio', '355', 'h', $$Declassification date$$,
5172 FALSE, FALSE, FALSE);
5173 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5174                                  repeatable, mandatory, hidden)
5175 VALUES (1, 'biblio', '355', 'j', $$Authorization$$,
5176 TRUE, FALSE, FALSE);
5177 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5178                                  repeatable, mandatory, hidden)
5179 VALUES (1, 'biblio', '355', '6', $$Linkage$$,
5180 FALSE, FALSE, FALSE);
5181 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5182                                  repeatable, mandatory, hidden)
5183 VALUES (1, 'biblio', '355', '8', $$Field link and sequence number$$,
5184 TRUE, FALSE, FALSE);
5185 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
5186                               fixed_field, repeatable, mandatory, hidden)
5187 VALUES (1, 'biblio', '357', $$Originator Dissemination Control$$, $$Specifics pertaining to originator (i.e., author, producer) control of dissemination of the material in hand. Subfield $a contains a specific term denoting that the originator has control over the material.$$,
5188 FALSE, FALSE, FALSE, FALSE);
5189 INSERT INTO config.record_attr_definition(name, label)
5190 VALUES ('marc21_biblio_357_ind_1', 'MARC 21 biblio field 357 indicator position 1');
5191 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5192 VALUES ('marc21_biblio_357_ind_1', '#', $$Undefined$$, FALSE, TRUE);
5193 INSERT INTO config.record_attr_definition(name, label)
5194 VALUES ('marc21_biblio_357_ind_2', 'MARC 21 biblio field 357 indicator position 2');
5195 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5196 VALUES ('marc21_biblio_357_ind_2', '#', $$Undefined$$, FALSE, TRUE);
5197 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5198                                  repeatable, mandatory, hidden)
5199 VALUES (1, 'biblio', '357', 'a', $$Originator control term$$,
5200 FALSE, FALSE, FALSE);
5201 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5202                                  repeatable, mandatory, hidden)
5203 VALUES (1, 'biblio', '357', 'b', $$Originating agency$$,
5204 TRUE, FALSE, FALSE);
5205 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5206                                  repeatable, mandatory, hidden)
5207 VALUES (1, 'biblio', '357', 'c', $$Authorized recipients of material$$,
5208 TRUE, FALSE, FALSE);
5209 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5210                                  repeatable, mandatory, hidden)
5211 VALUES (1, 'biblio', '357', 'g', $$Other restrictions$$,
5212 TRUE, FALSE, FALSE);
5213 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5214                                  repeatable, mandatory, hidden)
5215 VALUES (1, 'biblio', '357', '6', $$Linkage$$,
5216 FALSE, FALSE, FALSE);
5217 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5218                                  repeatable, mandatory, hidden)
5219 VALUES (1, 'biblio', '357', '8', $$Field link and sequence number$$,
5220 TRUE, FALSE, FALSE);
5221 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
5222                               fixed_field, repeatable, mandatory, hidden)
5223 VALUES (1, 'biblio', '362', $$Dates of Publication and/or Sequential Designation$$, $$Beginning/ending date(s) of an item and/or the sequential designations used on each part. Dates to be used in this field are chronological designations that identify individual issues of the continuing resource. The sequential designations are usually numeric but can be alphabetic as well. The information may be formatted or unformatted. If the date information has been obtained from a source other than the first and/or last issue of the item published, the information is given in an unformatted note and the source of the information is usually cited.$$,
5224 FALSE, TRUE, FALSE, FALSE);
5225 INSERT INTO config.record_attr_definition(name, label)
5226 VALUES ('marc21_biblio_362_ind_1', 'MARC 21 biblio field 362 indicator position 1');
5227 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5228 VALUES ('marc21_biblio_362_ind_1', '0', $$Formatted style$$, FALSE, TRUE);
5229 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5230 VALUES ('marc21_biblio_362_ind_1', '1', $$Unformatted note$$, FALSE, TRUE);
5231 INSERT INTO config.record_attr_definition(name, label)
5232 VALUES ('marc21_biblio_362_ind_2', 'MARC 21 biblio field 362 indicator position 2');
5233 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5234 VALUES ('marc21_biblio_362_ind_2', '#', $$Undefined$$, FALSE, TRUE);
5235 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5236                                  repeatable, mandatory, hidden)
5237 VALUES (1, 'biblio', '362', 'a', $$Dates of publication and/or sequential designation$$,
5238 FALSE, FALSE, FALSE);
5239 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5240                                  repeatable, mandatory, hidden)
5241 VALUES (1, 'biblio', '362', 'z', $$Source of information$$,
5242 FALSE, FALSE, FALSE);
5243 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5244                                  repeatable, mandatory, hidden)
5245 VALUES (1, 'biblio', '362', '6', $$Linkage$$,
5246 FALSE, FALSE, FALSE);
5247 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5248                                  repeatable, mandatory, hidden)
5249 VALUES (1, 'biblio', '362', '8', $$Field link and sequence number$$,
5250 TRUE, FALSE, FALSE);
5251 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
5252                               fixed_field, repeatable, mandatory, hidden)
5253 VALUES (1, 'biblio', '363', $$Normalized Date and Sequential Designation$$, $$The numeric, alphabetic and/or normalized date designation used on the bibliographic item that identifies its parts and shows the relationship of the parts to the whole.$$,
5254 FALSE, TRUE, FALSE, FALSE);
5255 INSERT INTO config.record_attr_definition(name, label)
5256 VALUES ('marc21_biblio_363_ind_1', 'MARC 21 biblio field 363 indicator position 1');
5257 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5258 VALUES ('marc21_biblio_363_ind_1', '#', $$No information provided$$, FALSE, TRUE);
5259 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5260 VALUES ('marc21_biblio_363_ind_1', '0', $$Starting information$$, FALSE, TRUE);
5261 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5262 VALUES ('marc21_biblio_363_ind_1', '1', $$Ending information$$, FALSE, TRUE);
5263 INSERT INTO config.record_attr_definition(name, label)
5264 VALUES ('marc21_biblio_363_ind_2', 'MARC 21 biblio field 363 indicator position 2');
5265 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5266 VALUES ('marc21_biblio_363_ind_2', '#', $$Not specified$$, FALSE, TRUE);
5267 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5268 VALUES ('marc21_biblio_363_ind_2', '0', $$Closed$$, FALSE, TRUE);
5269 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5270 VALUES ('marc21_biblio_363_ind_2', '1', $$Open$$, FALSE, TRUE);
5271 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5272                                  repeatable, mandatory, hidden)
5273 VALUES (1, 'biblio', '363', 'a', $$First level of enumeration$$,
5274 FALSE, FALSE, FALSE);
5275 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5276                                  repeatable, mandatory, hidden)
5277 VALUES (1, 'biblio', '363', 'b', $$Second level of enumeration$$,
5278 FALSE, FALSE, FALSE);
5279 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5280                                  repeatable, mandatory, hidden)
5281 VALUES (1, 'biblio', '363', 'c', $$Third level of enumeration$$,
5282 FALSE, FALSE, FALSE);
5283 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5284                                  repeatable, mandatory, hidden)
5285 VALUES (1, 'biblio', '363', 'd', $$Fourth level of enumeration$$,
5286 FALSE, FALSE, FALSE);
5287 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5288                                  repeatable, mandatory, hidden)
5289 VALUES (1, 'biblio', '363', 'e', $$Fifth level of enumeration$$,
5290 FALSE, FALSE, FALSE);
5291 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5292                                  repeatable, mandatory, hidden)
5293 VALUES (1, 'biblio', '363', 'f', $$Sixth level of enumeration$$,
5294 FALSE, FALSE, FALSE);
5295 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5296                                  repeatable, mandatory, hidden)
5297 VALUES (1, 'biblio', '363', 'g', $$Alternative numbering scheme, first level of enumeration$$,
5298 FALSE, FALSE, FALSE);
5299 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5300                                  repeatable, mandatory, hidden)
5301 VALUES (1, 'biblio', '363', 'h', $$Alternative numbering scheme, second level of enumeration$$,
5302 FALSE, FALSE, FALSE);
5303 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5304                                  repeatable, mandatory, hidden)
5305 VALUES (1, 'biblio', '363', 'i', $$First level of chronology$$,
5306 FALSE, FALSE, FALSE);
5307 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5308                                  repeatable, mandatory, hidden)
5309 VALUES (1, 'biblio', '363', 'j', $$Second level of chronology$$,
5310 FALSE, FALSE, FALSE);
5311 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5312                                  repeatable, mandatory, hidden)
5313 VALUES (1, 'biblio', '363', 'k', $$Third level of chronology$$,
5314 FALSE, FALSE, FALSE);
5315 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5316                                  repeatable, mandatory, hidden)
5317 VALUES (1, 'biblio', '363', 'l', $$Fourth level of chronology$$,
5318 FALSE, FALSE, FALSE);
5319 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5320                                  repeatable, mandatory, hidden)
5321 VALUES (1, 'biblio', '363', 'm', $$Alternative numbering scheme, chronology$$,
5322 FALSE, FALSE, FALSE);
5323 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5324                                  repeatable, mandatory, hidden)
5325 VALUES (1, 'biblio', '363', 'u', $$First level textual designation$$,
5326 FALSE, FALSE, FALSE);
5327 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5328                                  repeatable, mandatory, hidden)
5329 VALUES (1, 'biblio', '363', 'v', $$First level of chronology, issuance$$,
5330 FALSE, FALSE, FALSE);
5331 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5332                                  repeatable, mandatory, hidden)
5333 VALUES (1, 'biblio', '363', 'x', $$Nonpublic note$$,
5334 TRUE, FALSE, FALSE);
5335 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5336                                  repeatable, mandatory, hidden)
5337 VALUES (1, 'biblio', '363', 'z', $$Public note$$,
5338 TRUE, FALSE, FALSE);
5339 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5340                                  repeatable, mandatory, hidden)
5341 VALUES (1, 'biblio', '363', '6', $$Linkage$$,
5342 FALSE, FALSE, FALSE);
5343 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5344                                  repeatable, mandatory, hidden)
5345 VALUES (1, 'biblio', '363', '8', $$Field link and sequence number$$,
5346 FALSE, FALSE, FALSE);
5347 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
5348                               fixed_field, repeatable, mandatory, hidden)
5349 VALUES (1, 'biblio', '365', $$Trade Price$$, $$Current price of an item or the special export price of an item in any currency.$$,
5350 FALSE, TRUE, FALSE, FALSE);
5351 INSERT INTO config.record_attr_definition(name, label)
5352 VALUES ('marc21_biblio_365_ind_1', 'MARC 21 biblio field 365 indicator position 1');
5353 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5354 VALUES ('marc21_biblio_365_ind_1', '#', $$Undefined$$, FALSE, TRUE);
5355 INSERT INTO config.record_attr_definition(name, label)
5356 VALUES ('marc21_biblio_365_ind_2', 'MARC 21 biblio field 365 indicator position 2');
5357 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5358 VALUES ('marc21_biblio_365_ind_2', '#', $$Undefined$$, FALSE, TRUE);
5359 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5360                                  repeatable, mandatory, hidden)
5361 VALUES (1, 'biblio', '365', 'a', $$Price type code$$,
5362 FALSE, FALSE, FALSE);
5363 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5364                                  repeatable, mandatory, hidden)
5365 VALUES (1, 'biblio', '365', 'b', $$Price amount$$,
5366 FALSE, FALSE, FALSE);
5367 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5368                                  repeatable, mandatory, hidden)
5369 VALUES (1, 'biblio', '365', 'c', $$Currency code$$,
5370 FALSE, FALSE, FALSE);
5371 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5372                                  repeatable, mandatory, hidden)
5373 VALUES (1, 'biblio', '365', 'd', $$Unit of pricing$$,
5374 FALSE, FALSE, FALSE);
5375 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5376                                  repeatable, mandatory, hidden)
5377 VALUES (1, 'biblio', '365', 'e', $$Price note$$,
5378 FALSE, FALSE, FALSE);
5379 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5380                                  repeatable, mandatory, hidden)
5381 VALUES (1, 'biblio', '365', 'f', $$Price effective from$$,
5382 FALSE, FALSE, FALSE);
5383 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5384                                  repeatable, mandatory, hidden)
5385 VALUES (1, 'biblio', '365', 'g', $$Price effective until$$,
5386 FALSE, FALSE, FALSE);
5387 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5388                                  repeatable, mandatory, hidden)
5389 VALUES (1, 'biblio', '365', 'h', $$Tax rate 1$$,
5390 FALSE, FALSE, FALSE);
5391 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5392                                  repeatable, mandatory, hidden)
5393 VALUES (1, 'biblio', '365', 'i', $$Tax rate 2$$,
5394 FALSE, FALSE, FALSE);
5395 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5396                                  repeatable, mandatory, hidden)
5397 VALUES (1, 'biblio', '365', 'j', $$ISO country code$$,
5398 FALSE, FALSE, FALSE);
5399 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5400                                  repeatable, mandatory, hidden)
5401 VALUES (1, 'biblio', '365', 'k', $$MARC country code$$,
5402 FALSE, FALSE, FALSE);
5403 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5404                                  repeatable, mandatory, hidden)
5405 VALUES (1, 'biblio', '365', 'm', $$Identification of pricing entity$$,
5406 FALSE, FALSE, FALSE);
5407 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5408                                  repeatable, mandatory, hidden)
5409 VALUES (1, 'biblio', '365', '2', $$Source of price type code$$,
5410 FALSE, FALSE, FALSE);
5411 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5412                                  repeatable, mandatory, hidden)
5413 VALUES (1, 'biblio', '365', '6', $$Linkage$$,
5414 FALSE, FALSE, FALSE);
5415 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5416                                  repeatable, mandatory, hidden)
5417 VALUES (1, 'biblio', '365', '8', $$Field link and sequence number$$,
5418 TRUE, FALSE, FALSE);
5419 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
5420                               fixed_field, repeatable, mandatory, hidden)
5421 VALUES (1, 'biblio', '366', $$Trade Availability Information$$, $$Detailed information relating to the availability of items from publishers.$$,
5422 FALSE, TRUE, FALSE, FALSE);
5423 INSERT INTO config.record_attr_definition(name, label)
5424 VALUES ('marc21_biblio_366_ind_1', 'MARC 21 biblio field 366 indicator position 1');
5425 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5426 VALUES ('marc21_biblio_366_ind_1', '#', $$Undefined$$, FALSE, TRUE);
5427 INSERT INTO config.record_attr_definition(name, label)
5428 VALUES ('marc21_biblio_366_ind_2', 'MARC 21 biblio field 366 indicator position 2');
5429 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5430 VALUES ('marc21_biblio_366_ind_2', '#', $$Undefined$$, FALSE, TRUE);
5431 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5432                                  repeatable, mandatory, hidden)
5433 VALUES (1, 'biblio', '366', 'a', $$Publishers' compressed title identification$$,
5434 FALSE, FALSE, FALSE);
5435 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5436                                  repeatable, mandatory, hidden)
5437 VALUES (1, 'biblio', '366', 'b', $$Detailed date of publication$$,
5438 FALSE, FALSE, FALSE);
5439 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5440                                  repeatable, mandatory, hidden)
5441 VALUES (1, 'biblio', '366', 'c', $$Availability status code$$,
5442 FALSE, FALSE, FALSE);
5443 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5444                                  repeatable, mandatory, hidden)
5445 VALUES (1, 'biblio', '366', 'd', $$Expected next availability date$$,
5446 FALSE, FALSE, FALSE);
5447 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5448                                  repeatable, mandatory, hidden)
5449 VALUES (1, 'biblio', '366', 'e', $$Note$$,
5450 FALSE, FALSE, FALSE);
5451 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5452                                  repeatable, mandatory, hidden)
5453 VALUES (1, 'biblio', '366', 'f', $$Publisher's discount category$$,
5454 FALSE, FALSE, FALSE);
5455 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5456                                  repeatable, mandatory, hidden)
5457 VALUES (1, 'biblio', '366', 'g', $$Date made out of print$$,
5458 FALSE, FALSE, FALSE);
5459 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5460                                  repeatable, mandatory, hidden)
5461 VALUES (1, 'biblio', '366', 'j', $$ISO country code$$,
5462 FALSE, FALSE, FALSE);
5463 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5464                                  repeatable, mandatory, hidden)
5465 VALUES (1, 'biblio', '366', 'k', $$MARC country code$$,
5466 FALSE, FALSE, FALSE);
5467 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5468                                  repeatable, mandatory, hidden)
5469 VALUES (1, 'biblio', '366', 'm', $$Identification of agency$$,
5470 FALSE, FALSE, FALSE);
5471 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5472                                  repeatable, mandatory, hidden)
5473 VALUES (1, 'biblio', '366', '2', $$Source of availability status code$$,
5474 FALSE, FALSE, FALSE);
5475 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5476                                  repeatable, mandatory, hidden)
5477 VALUES (1, 'biblio', '366', '6', $$Linkage$$,
5478 FALSE, FALSE, FALSE);
5479 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5480                                  repeatable, mandatory, hidden)
5481 VALUES (1, 'biblio', '366', '8', $$Field link and sequence number$$,
5482 TRUE, FALSE, FALSE);
5483 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
5484                               fixed_field, repeatable, mandatory, hidden)
5485 VALUES (1, 'biblio', '380', $$Form of Work$$, $$A class or genre to which a work belongs. May be used to differentiate a work from another work with the same title.$$,
5486 FALSE, TRUE, FALSE, FALSE);
5487 INSERT INTO config.record_attr_definition(name, label)
5488 VALUES ('marc21_biblio_380_ind_1', 'MARC 21 biblio field 380 indicator position 1');
5489 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5490 VALUES ('marc21_biblio_380_ind_1', '#', $$Undefined$$, FALSE, TRUE);
5491 INSERT INTO config.record_attr_definition(name, label)
5492 VALUES ('marc21_biblio_380_ind_2', 'MARC 21 biblio field 380 indicator position 2');
5493 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5494 VALUES ('marc21_biblio_380_ind_2', '#', $$Undefined$$, FALSE, TRUE);
5495 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5496                                  repeatable, mandatory, hidden)
5497 VALUES (1, 'biblio', '380', 'a', $$Form of work$$,
5498 TRUE, FALSE, FALSE);
5499 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5500                                  repeatable, mandatory, hidden)
5501 VALUES (1, 'biblio', '380', '0', $$Record control number$$,
5502 TRUE, FALSE, FALSE);
5503 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5504                                  repeatable, mandatory, hidden)
5505 VALUES (1, 'biblio', '380', '2', $$Source of term$$,
5506 FALSE, FALSE, FALSE);
5507 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5508                                  repeatable, mandatory, hidden)
5509 VALUES (1, 'biblio', '380', '6', $$Linkage$$,
5510 FALSE, FALSE, FALSE);
5511 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5512                                  repeatable, mandatory, hidden)
5513 VALUES (1, 'biblio', '380', '8', $$Field link and sequence number$$,
5514 TRUE, FALSE, FALSE);
5515 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
5516                               fixed_field, repeatable, mandatory, hidden)
5517 VALUES (1, 'biblio', '381', $$Other Distinguishing Characteristics of Work or Expression$$, $$Any characteristic that is not accommodated in a special field that serves to characterize a work or expression. Examples are an issuing body, arranged statement of music, version, or a geographic term. May be used to differentiate a work from another work with the same title.$$,
5518 FALSE, TRUE, FALSE, FALSE);
5519 INSERT INTO config.record_attr_definition(name, label)
5520 VALUES ('marc21_biblio_381_ind_1', 'MARC 21 biblio field 381 indicator position 1');
5521 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5522 VALUES ('marc21_biblio_381_ind_1', '#', $$Undefined$$, FALSE, TRUE);
5523 INSERT INTO config.record_attr_definition(name, label)
5524 VALUES ('marc21_biblio_381_ind_2', 'MARC 21 biblio field 381 indicator position 2');
5525 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5526 VALUES ('marc21_biblio_381_ind_2', '#', $$Undefined$$, FALSE, TRUE);
5527 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5528                                  repeatable, mandatory, hidden)
5529 VALUES (1, 'biblio', '381', 'a', $$Other distinguishing characteristic$$,
5530 TRUE, FALSE, FALSE);
5531 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5532                                  repeatable, mandatory, hidden)
5533 VALUES (1, 'biblio', '381', 'u', $$Uniform Resource Identifier$$,
5534 TRUE, FALSE, FALSE);
5535 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5536                                  repeatable, mandatory, hidden)
5537 VALUES (1, 'biblio', '381', 'v', $$Source of information$$,
5538 TRUE, FALSE, FALSE);
5539 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5540                                  repeatable, mandatory, hidden)
5541 VALUES (1, 'biblio', '381', '0', $$Record control number$$,
5542 TRUE, FALSE, FALSE);
5543 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5544                                  repeatable, mandatory, hidden)
5545 VALUES (1, 'biblio', '381', '2', $$Source of term$$,
5546 FALSE, FALSE, FALSE);
5547 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5548                                  repeatable, mandatory, hidden)
5549 VALUES (1, 'biblio', '381', '6', $$Linkage$$,
5550 FALSE, FALSE, FALSE);
5551 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5552                                  repeatable, mandatory, hidden)
5553 VALUES (1, 'biblio', '381', '8', $$Field link and sequence number$$,
5554 TRUE, FALSE, FALSE);
5555 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
5556                               fixed_field, repeatable, mandatory, hidden)
5557 VALUES (1, 'biblio', '382', $$Medium of Performance$$, $$The instrumental, vocal, and/or other medium of performance for which a musical work was originally conceived or for which a musical expression is written or performed. May be used to differentiate a musical work or expression from another with the same title.$$,
5558 FALSE, TRUE, FALSE, FALSE);
5559 INSERT INTO config.record_attr_definition(name, label)
5560 VALUES ('marc21_biblio_382_ind_1', 'MARC 21 biblio field 382 indicator position 1');
5561 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5562 VALUES ('marc21_biblio_382_ind_1', '#', $$Undefined$$, FALSE, TRUE);
5563 INSERT INTO config.record_attr_definition(name, label)
5564 VALUES ('marc21_biblio_382_ind_2', 'MARC 21 biblio field 382 indicator position 2');
5565 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5566 VALUES ('marc21_biblio_382_ind_2', '#', $$Undefined$$, FALSE, TRUE);
5567 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5568                                  repeatable, mandatory, hidden)
5569 VALUES (1, 'biblio', '382', 'a', $$Medium of performance$$,
5570 TRUE, FALSE, FALSE);
5571 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5572                                  repeatable, mandatory, hidden)
5573 VALUES (1, 'biblio', '382', '0', $$Record control number$$,
5574 TRUE, FALSE, FALSE);
5575 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5576                                  repeatable, mandatory, hidden)
5577 VALUES (1, 'biblio', '382', '2', $$Source of term$$,
5578 FALSE, FALSE, FALSE);
5579 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5580                                  repeatable, mandatory, hidden)
5581 VALUES (1, 'biblio', '382', '6', $$Linkage$$,
5582 FALSE, FALSE, FALSE);
5583 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5584                                  repeatable, mandatory, hidden)
5585 VALUES (1, 'biblio', '382', '8', $$Field link and sequence number$$,
5586 TRUE, FALSE, FALSE);
5587 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
5588                               fixed_field, repeatable, mandatory, hidden)
5589 VALUES (1, 'biblio', '383', $$Numeric Designation of Musical Work$$, $$A serial number, opus number, or thematic index number assigned to a musical work by the composer, publisher, or a musicologist. May be used to differentiate a musical work from another with the same title.$$,
5590 FALSE, TRUE, FALSE, FALSE);
5591 INSERT INTO config.record_attr_definition(name, label)
5592 VALUES ('marc21_biblio_383_ind_1', 'MARC 21 biblio field 383 indicator position 1');
5593 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5594 VALUES ('marc21_biblio_383_ind_1', '#', $$Undefined$$, FALSE, TRUE);
5595 INSERT INTO config.record_attr_definition(name, label)
5596 VALUES ('marc21_biblio_383_ind_2', 'MARC 21 biblio field 383 indicator position 2');
5597 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5598 VALUES ('marc21_biblio_383_ind_2', '#', $$Undefined$$, FALSE, TRUE);
5599 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5600                                  repeatable, mandatory, hidden)
5601 VALUES (1, 'biblio', '383', 'a', $$Serial number$$,
5602 TRUE, FALSE, FALSE);
5603 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5604                                  repeatable, mandatory, hidden)
5605 VALUES (1, 'biblio', '383', 'b', $$Opus number$$,
5606 TRUE, FALSE, FALSE);
5607 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5608                                  repeatable, mandatory, hidden)
5609 VALUES (1, 'biblio', '383', 'c', $$Thematic index number$$,
5610 TRUE, FALSE, FALSE);
5611 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5612                                  repeatable, mandatory, hidden)
5613 VALUES (1, 'biblio', '383', '6', $$Linkage$$,
5614 FALSE, FALSE, FALSE);
5615 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5616                                  repeatable, mandatory, hidden)
5617 VALUES (1, 'biblio', '383', '8', $$Field link and sequence number$$,
5618 TRUE, FALSE, FALSE);
5619 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
5620                               fixed_field, repeatable, mandatory, hidden)
5621 VALUES (1, 'biblio', '384', $$Key$$, $$The set of pitch relationships that establishes a single pitch class as a tonal centre for a musical work or expression. May be used to differentiate a musical work or expression from another with the same title.$$,
5622 FALSE, FALSE, FALSE, FALSE);
5623 INSERT INTO config.record_attr_definition(name, label)
5624 VALUES ('marc21_biblio_384_ind_1', 'MARC 21 biblio field 384 indicator position 1');
5625 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5626 VALUES ('marc21_biblio_384_ind_1', '#', $$Relationship to original unknown$$, FALSE, TRUE);
5627 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5628 VALUES ('marc21_biblio_384_ind_1', '0', $$Original key$$, FALSE, TRUE);
5629 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5630 VALUES ('marc21_biblio_384_ind_1', '1', $$Transposed key$$, FALSE, TRUE);
5631 INSERT INTO config.record_attr_definition(name, label)
5632 VALUES ('marc21_biblio_384_ind_2', 'MARC 21 biblio field 384 indicator position 2');
5633 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5634 VALUES ('marc21_biblio_384_ind_2', '#', $$Undefined$$, FALSE, TRUE);
5635 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5636                                  repeatable, mandatory, hidden)
5637 VALUES (1, 'biblio', '384', 'a', $$Key$$,
5638 FALSE, FALSE, FALSE);
5639 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5640                                  repeatable, mandatory, hidden)
5641 VALUES (1, 'biblio', '384', '6', $$Linkage$$,
5642 FALSE, FALSE, FALSE);
5643 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5644                                  repeatable, mandatory, hidden)
5645 VALUES (1, 'biblio', '384', '8', $$Field link and sequence number$$,
5646 TRUE, FALSE, FALSE);
5647 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
5648                               fixed_field, repeatable, mandatory, hidden)
5649 VALUES (1, 'biblio', '440', $$Series Statement/Added Entry-Title$$, $$Series statement consisting of a series title alone.$$,
5650 FALSE, TRUE, FALSE, FALSE);
5651 INSERT INTO config.record_attr_definition(name, label)
5652 VALUES ('marc21_biblio_440_ind_1', 'MARC 21 biblio field 440 indicator position 1');
5653 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5654 VALUES ('marc21_biblio_440_ind_1', '#', $$Undefined$$, FALSE, TRUE);
5655 INSERT INTO config.record_attr_definition(name, label)
5656 VALUES ('marc21_biblio_440_ind_2', 'MARC 21 biblio field 440 indicator position 2');
5657 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5658 VALUES ('marc21_biblio_440_ind_2', '0', $$No nonfiling characters$$, FALSE, TRUE);
5659 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5660 VALUES ('marc21_biblio_440_ind_2', '1', $$Number of nonfiling characters - 1$$, FALSE, TRUE);
5661 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5662 VALUES ('marc21_biblio_440_ind_2', '2', $$Number of nonfiling characters - 2$$, FALSE, TRUE);
5663 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5664 VALUES ('marc21_biblio_440_ind_2', '3', $$Number of nonfiling characters - 3$$, FALSE, TRUE);
5665 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5666 VALUES ('marc21_biblio_440_ind_2', '4', $$Number of nonfiling characters - 4$$, FALSE, TRUE);
5667 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5668 VALUES ('marc21_biblio_440_ind_2', '5', $$Number of nonfiling characters - 5$$, FALSE, TRUE);
5669 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5670 VALUES ('marc21_biblio_440_ind_2', '6', $$Number of nonfiling characters - 6$$, FALSE, TRUE);
5671 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5672 VALUES ('marc21_biblio_440_ind_2', '7', $$Number of nonfiling characters - 7$$, FALSE, TRUE);
5673 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5674 VALUES ('marc21_biblio_440_ind_2', '8', $$Number of nonfiling characters - 8$$, FALSE, TRUE);
5675 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5676 VALUES ('marc21_biblio_440_ind_2', '9', $$Number of nonfiling characters - 9$$, FALSE, TRUE);
5677 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5678                                  repeatable, mandatory, hidden)
5679 VALUES (1, 'biblio', '440', 'a', $$Title$$,
5680 FALSE, FALSE, FALSE);
5681 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5682                                  repeatable, mandatory, hidden)
5683 VALUES (1, 'biblio', '440', 'n', $$Number of part/section of a work$$,
5684 TRUE, FALSE, FALSE);
5685 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5686                                  repeatable, mandatory, hidden)
5687 VALUES (1, 'biblio', '440', 'p', $$Name of part/section of a work$$,
5688 TRUE, FALSE, FALSE);
5689 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5690                                  repeatable, mandatory, hidden)
5691 VALUES (1, 'biblio', '440', 'v', $$Volume/sequential designation$$,
5692 FALSE, FALSE, FALSE);
5693 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5694                                  repeatable, mandatory, hidden)
5695 VALUES (1, 'biblio', '440', 'w', $$Bibliographic record control number$$,
5696 TRUE, FALSE, FALSE);
5697 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5698                                  repeatable, mandatory, hidden)
5699 VALUES (1, 'biblio', '440', 'x', $$International Standard Serial Number$$,
5700 FALSE, FALSE, FALSE);
5701 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5702                                  repeatable, mandatory, hidden)
5703 VALUES (1, 'biblio', '440', '0', $$Authority record control number$$,
5704 TRUE, FALSE, FALSE);
5705 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5706                                  repeatable, mandatory, hidden)
5707 VALUES (1, 'biblio', '440', '6', $$Linkage$$,
5708 FALSE, FALSE, FALSE);
5709 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5710                                  repeatable, mandatory, hidden)
5711 VALUES (1, 'biblio', '440', '8', $$Field link and sequence number$$,
5712 TRUE, FALSE, FALSE);
5713 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
5714                               fixed_field, repeatable, mandatory, hidden)
5715 VALUES (1, 'biblio', '490', $$Series Statement$$, $$Series statement for a series title.$$,
5716 FALSE, TRUE, FALSE, FALSE);
5717 INSERT INTO config.record_attr_definition(name, label)
5718 VALUES ('marc21_biblio_490_ind_1', 'MARC 21 biblio field 490 indicator position 1');
5719 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5720 VALUES ('marc21_biblio_490_ind_1', '0', $$Series not traced$$, FALSE, TRUE);
5721 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5722 VALUES ('marc21_biblio_490_ind_1', '1', $$Series traced$$, FALSE, TRUE);
5723 INSERT INTO config.record_attr_definition(name, label)
5724 VALUES ('marc21_biblio_490_ind_2', 'MARC 21 biblio field 490 indicator position 2');
5725 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5726 VALUES ('marc21_biblio_490_ind_2', '#', $$Undefined$$, FALSE, TRUE);
5727 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5728                                  repeatable, mandatory, hidden)
5729 VALUES (1, 'biblio', '490', 'a', $$Series statement$$,
5730 TRUE, FALSE, FALSE);
5731 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5732                                  repeatable, mandatory, hidden)
5733 VALUES (1, 'biblio', '490', 'l', $$Library of Congress call number$$,
5734 FALSE, FALSE, FALSE);
5735 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5736                                  repeatable, mandatory, hidden)
5737 VALUES (1, 'biblio', '490', 'v', $$Volume/sequential designation$$,
5738 TRUE, FALSE, FALSE);
5739 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5740                                  repeatable, mandatory, hidden)
5741 VALUES (1, 'biblio', '490', 'x', $$International Standard Serial Number$$,
5742 TRUE, FALSE, FALSE);
5743 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5744                                  repeatable, mandatory, hidden)
5745 VALUES (1, 'biblio', '490', '3', $$Materials specified$$,
5746 FALSE, FALSE, FALSE);
5747 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5748                                  repeatable, mandatory, hidden)
5749 VALUES (1, 'biblio', '490', '6', $$Linkage$$,
5750 FALSE, FALSE, FALSE);
5751 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5752                                  repeatable, mandatory, hidden)
5753 VALUES (1, 'biblio', '490', '8', $$Field link and sequence number$$,
5754 TRUE, FALSE, FALSE);
5755 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
5756                               fixed_field, repeatable, mandatory, hidden)
5757 VALUES (1, 'biblio', '500', $$General Note$$, $$General information for which a specialized 5XX note field has not been defined.$$,
5758 FALSE, TRUE, FALSE, FALSE);
5759 INSERT INTO config.record_attr_definition(name, label)
5760 VALUES ('marc21_biblio_500_ind_1', 'MARC 21 biblio field 500 indicator position 1');
5761 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5762 VALUES ('marc21_biblio_500_ind_1', '#', $$Undefined$$, FALSE, TRUE);
5763 INSERT INTO config.record_attr_definition(name, label)
5764 VALUES ('marc21_biblio_500_ind_2', 'MARC 21 biblio field 500 indicator position 2');
5765 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5766 VALUES ('marc21_biblio_500_ind_2', '#', $$Undefined$$, FALSE, TRUE);
5767 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5768                                  repeatable, mandatory, hidden)
5769 VALUES (1, 'biblio', '500', 'a', $$General note$$,
5770 FALSE, FALSE, FALSE);
5771 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5772                                  repeatable, mandatory, hidden)
5773 VALUES (1, 'biblio', '500', '3', $$Materials specified$$,
5774 FALSE, FALSE, FALSE);
5775 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5776                                  repeatable, mandatory, hidden)
5777 VALUES (1, 'biblio', '500', '5', $$Institution to which field applies$$,
5778 FALSE, FALSE, FALSE);
5779 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5780                                  repeatable, mandatory, hidden)
5781 VALUES (1, 'biblio', '500', '6', $$Linkage$$,
5782 FALSE, FALSE, FALSE);
5783 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5784                                  repeatable, mandatory, hidden)
5785 VALUES (1, 'biblio', '500', '8', $$Field link and sequence number$$,
5786 TRUE, FALSE, FALSE);
5787 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
5788                               fixed_field, repeatable, mandatory, hidden)
5789 VALUES (1, 'biblio', '501', $$With Note$$, $$Note indicating that more than one bibliographical work is contained in the physical item at the time of publishing, release, issue, or execution. The works that are contained in the item usually have distinctive titles and lack a collective title.$$,
5790 FALSE, TRUE, FALSE, FALSE);
5791 INSERT INTO config.record_attr_definition(name, label)
5792 VALUES ('marc21_biblio_501_ind_1', 'MARC 21 biblio field 501 indicator position 1');
5793 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5794 VALUES ('marc21_biblio_501_ind_1', '#', $$Undefined$$, FALSE, TRUE);
5795 INSERT INTO config.record_attr_definition(name, label)
5796 VALUES ('marc21_biblio_501_ind_2', 'MARC 21 biblio field 501 indicator position 2');
5797 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5798 VALUES ('marc21_biblio_501_ind_2', '#', $$Undefined$$, FALSE, TRUE);
5799 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5800                                  repeatable, mandatory, hidden)
5801 VALUES (1, 'biblio', '501', 'a', $$With note$$,
5802 FALSE, FALSE, FALSE);
5803 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5804                                  repeatable, mandatory, hidden)
5805 VALUES (1, 'biblio', '501', '5', $$Institution to which field applies$$,
5806 FALSE, FALSE, FALSE);
5807 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5808                                  repeatable, mandatory, hidden)
5809 VALUES (1, 'biblio', '501', '6', $$Linkage$$,
5810 FALSE, FALSE, FALSE);
5811 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5812                                  repeatable, mandatory, hidden)
5813 VALUES (1, 'biblio', '501', '8', $$Field link and sequence number$$,
5814 TRUE, FALSE, FALSE);
5815 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
5816                               fixed_field, repeatable, mandatory, hidden)
5817 VALUES (1, 'biblio', '502', $$Dissertation Note$$, $$Designation of an academic dissertation or thesis and the institution to which it was presented. Other notes indicating the relationship between the item being cataloged and the author's dissertation or thesis, such as statements indicating that the work represents or is based on the author's thesis (e.g., ) are recorded in field 500 (General Note).$$,
5818 FALSE, TRUE, FALSE, FALSE);
5819 INSERT INTO config.record_attr_definition(name, label)
5820 VALUES ('marc21_biblio_502_ind_1', 'MARC 21 biblio field 502 indicator position 1');
5821 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5822 VALUES ('marc21_biblio_502_ind_1', '#', $$Undefined$$, FALSE, TRUE);
5823 INSERT INTO config.record_attr_definition(name, label)
5824 VALUES ('marc21_biblio_502_ind_2', 'MARC 21 biblio field 502 indicator position 2');
5825 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5826 VALUES ('marc21_biblio_502_ind_2', '#', $$Undefined$$, FALSE, TRUE);
5827 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5828                                  repeatable, mandatory, hidden)
5829 VALUES (1, 'biblio', '502', 'a', $$Dissertation note$$,
5830 FALSE, FALSE, FALSE);
5831 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5832                                  repeatable, mandatory, hidden)
5833 VALUES (1, 'biblio', '502', 'b', $$Degree type$$,
5834 FALSE, FALSE, FALSE);
5835 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5836                                  repeatable, mandatory, hidden)
5837 VALUES (1, 'biblio', '502', 'c', $$Name of granting institution$$,
5838 FALSE, FALSE, FALSE);
5839 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5840                                  repeatable, mandatory, hidden)
5841 VALUES (1, 'biblio', '502', 'd', $$Year degree granted$$,
5842 FALSE, FALSE, FALSE);
5843 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5844                                  repeatable, mandatory, hidden)
5845 VALUES (1, 'biblio', '502', 'g', $$Miscellaneous information$$,
5846 TRUE, FALSE, FALSE);
5847 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5848                                  repeatable, mandatory, hidden)
5849 VALUES (1, 'biblio', '502', 'o', $$Dissertation identifier$$,
5850 TRUE, FALSE, FALSE);
5851 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5852                                  repeatable, mandatory, hidden)
5853 VALUES (1, 'biblio', '502', '6', $$Linkage$$,
5854 FALSE, FALSE, FALSE);
5855 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5856                                  repeatable, mandatory, hidden)
5857 VALUES (1, 'biblio', '502', '8', $$Field link and sequence number$$,
5858 TRUE, FALSE, FALSE);
5859 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
5860                               fixed_field, repeatable, mandatory, hidden)
5861 VALUES (1, 'biblio', '504', $$Bibliography, Etc. Note$$, $$Information on the presence of one or more bibliographies, discographies, filmographies, and/or other bibliographic references in a described item or in accompanying material.$$,
5862 FALSE, TRUE, FALSE, FALSE);
5863 INSERT INTO config.record_attr_definition(name, label)
5864 VALUES ('marc21_biblio_504_ind_1', 'MARC 21 biblio field 504 indicator position 1');
5865 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5866 VALUES ('marc21_biblio_504_ind_1', '#', $$Undefined$$, FALSE, TRUE);
5867 INSERT INTO config.record_attr_definition(name, label)
5868 VALUES ('marc21_biblio_504_ind_2', 'MARC 21 biblio field 504 indicator position 2');
5869 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5870 VALUES ('marc21_biblio_504_ind_2', '#', $$Undefined$$, FALSE, TRUE);
5871 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5872                                  repeatable, mandatory, hidden)
5873 VALUES (1, 'biblio', '504', 'a', $$Bibliography, etc. note$$,
5874 FALSE, FALSE, FALSE);
5875 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5876                                  repeatable, mandatory, hidden)
5877 VALUES (1, 'biblio', '504', 'b', $$Number of references$$,
5878 FALSE, FALSE, FALSE);
5879 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5880                                  repeatable, mandatory, hidden)
5881 VALUES (1, 'biblio', '504', '6', $$Linkage$$,
5882 FALSE, FALSE, FALSE);
5883 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5884                                  repeatable, mandatory, hidden)
5885 VALUES (1, 'biblio', '504', '8', $$Field link and sequence number$$,
5886 TRUE, FALSE, FALSE);
5887 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
5888                               fixed_field, repeatable, mandatory, hidden)
5889 VALUES (1, 'biblio', '505', $$Formatted Contents Note$$, $$Titles of separate works or parts of an item or the table of contents. The field may also contain statements of responsibility and volume numbers or other sequential designations.$$,
5890 FALSE, TRUE, FALSE, FALSE);
5891 INSERT INTO config.record_attr_definition(name, label)
5892 VALUES ('marc21_biblio_505_ind_1', 'MARC 21 biblio field 505 indicator position 1');
5893 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5894 VALUES ('marc21_biblio_505_ind_1', '0', $$Contents$$, FALSE, TRUE);
5895 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5896 VALUES ('marc21_biblio_505_ind_1', '1', $$Incomplete contents$$, FALSE, TRUE);
5897 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5898 VALUES ('marc21_biblio_505_ind_1', '2', $$Partial contents$$, FALSE, TRUE);
5899 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5900 VALUES ('marc21_biblio_505_ind_1', '8', $$No display constant generated$$, FALSE, TRUE);
5901 INSERT INTO config.record_attr_definition(name, label)
5902 VALUES ('marc21_biblio_505_ind_2', 'MARC 21 biblio field 505 indicator position 2');
5903 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5904 VALUES ('marc21_biblio_505_ind_2', '#', $$Basic$$, FALSE, TRUE);
5905 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5906 VALUES ('marc21_biblio_505_ind_2', '0', $$Enhanced$$, FALSE, TRUE);
5907 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5908                                  repeatable, mandatory, hidden)
5909 VALUES (1, 'biblio', '505', 'a', $$Formatted contents note$$,
5910 FALSE, FALSE, FALSE);
5911 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5912                                  repeatable, mandatory, hidden)
5913 VALUES (1, 'biblio', '505', 'g', $$Miscellaneous information$$,
5914 TRUE, FALSE, FALSE);
5915 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5916                                  repeatable, mandatory, hidden)
5917 VALUES (1, 'biblio', '505', 'r', $$Statement of responsibility$$,
5918 TRUE, FALSE, FALSE);
5919 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5920                                  repeatable, mandatory, hidden)
5921 VALUES (1, 'biblio', '505', 't', $$Title$$,
5922 TRUE, FALSE, FALSE);
5923 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5924                                  repeatable, mandatory, hidden)
5925 VALUES (1, 'biblio', '505', 'u', $$Uniform Resource Identifier$$,
5926 TRUE, FALSE, FALSE);
5927 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5928                                  repeatable, mandatory, hidden)
5929 VALUES (1, 'biblio', '505', '6', $$Linkage$$,
5930 FALSE, FALSE, FALSE);
5931 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5932                                  repeatable, mandatory, hidden)
5933 VALUES (1, 'biblio', '505', '8', $$Field link and sequence number$$,
5934 TRUE, FALSE, FALSE);
5935 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
5936                               fixed_field, repeatable, mandatory, hidden)
5937 VALUES (1, 'biblio', '506', $$Restrictions on Access Note$$, $$Information about restrictions imposed on access to the described materials.$$,
5938 FALSE, TRUE, FALSE, FALSE);
5939 INSERT INTO config.record_attr_definition(name, label)
5940 VALUES ('marc21_biblio_506_ind_1', 'MARC 21 biblio field 506 indicator position 1');
5941 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5942 VALUES ('marc21_biblio_506_ind_1', '#', $$No information provided$$, FALSE, TRUE);
5943 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5944 VALUES ('marc21_biblio_506_ind_1', '0', $$No restrictions$$, FALSE, TRUE);
5945 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5946 VALUES ('marc21_biblio_506_ind_1', '1', $$Restrictions apply$$, FALSE, TRUE);
5947 INSERT INTO config.record_attr_definition(name, label)
5948 VALUES ('marc21_biblio_506_ind_2', 'MARC 21 biblio field 506 indicator position 2');
5949 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
5950 VALUES ('marc21_biblio_506_ind_2', '#', $$Undefined$$, FALSE, TRUE);
5951 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5952                                  repeatable, mandatory, hidden)
5953 VALUES (1, 'biblio', '506', 'a', $$Terms governing access$$,
5954 FALSE, FALSE, FALSE);
5955 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5956                                  repeatable, mandatory, hidden)
5957 VALUES (1, 'biblio', '506', 'b', $$Jurisdiction$$,
5958 TRUE, FALSE, FALSE);
5959 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5960                                  repeatable, mandatory, hidden)
5961 VALUES (1, 'biblio', '506', 'c', $$Physical access provisions$$,
5962 TRUE, FALSE, FALSE);
5963 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5964                                  repeatable, mandatory, hidden)
5965 VALUES (1, 'biblio', '506', 'd', $$Authorized users$$,
5966 TRUE, FALSE, FALSE);
5967 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5968                                  repeatable, mandatory, hidden)
5969 VALUES (1, 'biblio', '506', 'e', $$Authorization$$,
5970 TRUE, FALSE, FALSE);
5971 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5972                                  repeatable, mandatory, hidden)
5973 VALUES (1, 'biblio', '506', 'f', $$Standardized terminology for access restriction$$,
5974 TRUE, FALSE, FALSE);
5975 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5976                                  repeatable, mandatory, hidden)
5977 VALUES (1, 'biblio', '506', 'u', $$Uniform Resource Identifier$$,
5978 TRUE, FALSE, FALSE);
5979 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5980                                  repeatable, mandatory, hidden)
5981 VALUES (1, 'biblio', '506', '2', $$Source of term$$,
5982 FALSE, FALSE, FALSE);
5983 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5984                                  repeatable, mandatory, hidden)
5985 VALUES (1, 'biblio', '506', '3', $$Materials specified$$,
5986 FALSE, FALSE, FALSE);
5987 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5988                                  repeatable, mandatory, hidden)
5989 VALUES (1, 'biblio', '506', '5', $$Institution to which field applies$$,
5990 FALSE, FALSE, FALSE);
5991 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5992                                  repeatable, mandatory, hidden)
5993 VALUES (1, 'biblio', '506', '6', $$Linkage$$,
5994 FALSE, FALSE, FALSE);
5995 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
5996                                  repeatable, mandatory, hidden)
5997 VALUES (1, 'biblio', '506', '8', $$Field link and sequence number$$,
5998 TRUE, FALSE, FALSE);
5999 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
6000                               fixed_field, repeatable, mandatory, hidden)
6001 VALUES (1, 'biblio', '507', $$Scale Note for Graphic Material$$, $$Scale of a graphic material item given as a note. For , this field contains the scale of architectural drawings or three-dimensional artifacts. For , the scale of an item is contained in this field only in pre-AACR 2 cataloging records. Scale information is contained in field 255 (Mathematical Data Area) in AACR 2 formulated records.$$,
6002 FALSE, FALSE, FALSE, FALSE);
6003 INSERT INTO config.record_attr_definition(name, label)
6004 VALUES ('marc21_biblio_507_ind_1', 'MARC 21 biblio field 507 indicator position 1');
6005 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6006 VALUES ('marc21_biblio_507_ind_1', '#', $$Undefined$$, FALSE, TRUE);
6007 INSERT INTO config.record_attr_definition(name, label)
6008 VALUES ('marc21_biblio_507_ind_2', 'MARC 21 biblio field 507 indicator position 2');
6009 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6010 VALUES ('marc21_biblio_507_ind_2', '#', $$Undefined$$, FALSE, TRUE);
6011 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6012                                  repeatable, mandatory, hidden)
6013 VALUES (1, 'biblio', '507', 'a', $$Representative fraction of scale note$$,
6014 FALSE, FALSE, FALSE);
6015 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6016                                  repeatable, mandatory, hidden)
6017 VALUES (1, 'biblio', '507', 'b', $$Remainder of scale note$$,
6018 FALSE, FALSE, FALSE);
6019 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6020                                  repeatable, mandatory, hidden)
6021 VALUES (1, 'biblio', '507', '6', $$Linkage$$,
6022 FALSE, FALSE, FALSE);
6023 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6024                                  repeatable, mandatory, hidden)
6025 VALUES (1, 'biblio', '507', '8', $$Field link and sequence number$$,
6026 TRUE, FALSE, FALSE);
6027 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
6028                               fixed_field, repeatable, mandatory, hidden)
6029 VALUES (1, 'biblio', '508', $$Creation/Production Credits Note$$, $$Credits for persons or organizations, other than members of the cast, who have participated in the creation and/or production of the work. The introductory term is usually generated as a display constant.$$,
6030 FALSE, TRUE, FALSE, FALSE);
6031 INSERT INTO config.record_attr_definition(name, label)
6032 VALUES ('marc21_biblio_508_ind_1', 'MARC 21 biblio field 508 indicator position 1');
6033 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6034 VALUES ('marc21_biblio_508_ind_1', '#', $$Undefined$$, FALSE, TRUE);
6035 INSERT INTO config.record_attr_definition(name, label)
6036 VALUES ('marc21_biblio_508_ind_2', 'MARC 21 biblio field 508 indicator position 2');
6037 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6038 VALUES ('marc21_biblio_508_ind_2', '#', $$Undefined$$, FALSE, TRUE);
6039 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6040                                  repeatable, mandatory, hidden)
6041 VALUES (1, 'biblio', '508', 'a', $$Creation/production credits note$$,
6042 FALSE, FALSE, FALSE);
6043 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6044                                  repeatable, mandatory, hidden)
6045 VALUES (1, 'biblio', '508', '6', $$Linkage$$,
6046 FALSE, FALSE, FALSE);
6047 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6048                                  repeatable, mandatory, hidden)
6049 VALUES (1, 'biblio', '508', '8', $$Field link and sequence number$$,
6050 TRUE, FALSE, FALSE);
6051 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
6052                               fixed_field, repeatable, mandatory, hidden)
6053 VALUES (1, 'biblio', '510', $$Citation/References Note$$, $$Citations or references to published bibliographic descriptions, reviews, abstracts, or indexes of the content of the described item.$$,
6054 FALSE, TRUE, FALSE, FALSE);
6055 INSERT INTO config.record_attr_definition(name, label)
6056 VALUES ('marc21_biblio_510_ind_1', 'MARC 21 biblio field 510 indicator position 1');
6057 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6058 VALUES ('marc21_biblio_510_ind_1', '0', $$Coverage unknown$$, FALSE, TRUE);
6059 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6060 VALUES ('marc21_biblio_510_ind_1', '1', $$Coverage complete$$, FALSE, TRUE);
6061 INSERT INTO config.record_attr_definition(name, label)
6062 VALUES ('marc21_biblio_510_ind_2', 'MARC 21 biblio field 510 indicator position 2');
6063 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6064 VALUES ('marc21_biblio_510_ind_2', '#', $$Undefined$$, FALSE, TRUE);
6065 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6066                                  repeatable, mandatory, hidden)
6067 VALUES (1, 'biblio', '510', 'a', $$Name of source$$,
6068 FALSE, FALSE, FALSE);
6069 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6070                                  repeatable, mandatory, hidden)
6071 VALUES (1, 'biblio', '510', 'b', $$Coverage of source$$,
6072 FALSE, FALSE, FALSE);
6073 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6074                                  repeatable, mandatory, hidden)
6075 VALUES (1, 'biblio', '510', 'c', $$Location within source$$,
6076 FALSE, FALSE, FALSE);
6077 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6078                                  repeatable, mandatory, hidden)
6079 VALUES (1, 'biblio', '510', 'x', $$International Standard Serial Number$$,
6080 FALSE, FALSE, FALSE);
6081 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6082                                  repeatable, mandatory, hidden)
6083 VALUES (1, 'biblio', '510', '3', $$Materials specified$$,
6084 FALSE, FALSE, FALSE);
6085 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6086                                  repeatable, mandatory, hidden)
6087 VALUES (1, 'biblio', '510', '6', $$Linkage$$,
6088 FALSE, FALSE, FALSE);
6089 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6090                                  repeatable, mandatory, hidden)
6091 VALUES (1, 'biblio', '510', '8', $$Field link and sequence number$$,
6092 TRUE, FALSE, FALSE);
6093 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
6094                               fixed_field, repeatable, mandatory, hidden)
6095 VALUES (1, 'biblio', '511', $$Participant or Performer Note$$, $$Information about the participants, players, narrators, presenters, or performers.$$,
6096 FALSE, TRUE, FALSE, FALSE);
6097 INSERT INTO config.record_attr_definition(name, label)
6098 VALUES ('marc21_biblio_511_ind_1', 'MARC 21 biblio field 511 indicator position 1');
6099 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6100 VALUES ('marc21_biblio_511_ind_1', '0', $$No display constant generated$$, FALSE, TRUE);
6101 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6102 VALUES ('marc21_biblio_511_ind_1', '1', $$Cast$$, FALSE, TRUE);
6103 INSERT INTO config.record_attr_definition(name, label)
6104 VALUES ('marc21_biblio_511_ind_2', 'MARC 21 biblio field 511 indicator position 2');
6105 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6106 VALUES ('marc21_biblio_511_ind_2', '#', $$Undefined$$, FALSE, TRUE);
6107 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6108                                  repeatable, mandatory, hidden)
6109 VALUES (1, 'biblio', '511', 'a', $$Participant or performer note$$,
6110 FALSE, FALSE, FALSE);
6111 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6112                                  repeatable, mandatory, hidden)
6113 VALUES (1, 'biblio', '511', '6', $$Linkage$$,
6114 FALSE, FALSE, FALSE);
6115 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6116                                  repeatable, mandatory, hidden)
6117 VALUES (1, 'biblio', '511', '8', $$Field link and sequence number$$,
6118 TRUE, FALSE, FALSE);
6119 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
6120                               fixed_field, repeatable, mandatory, hidden)
6121 VALUES (1, 'biblio', '513', $$Type of Report and Period Covered Note$$, $$Information on the type of report and the period covered by the report.$$,
6122 FALSE, TRUE, FALSE, FALSE);
6123 INSERT INTO config.record_attr_definition(name, label)
6124 VALUES ('marc21_biblio_513_ind_1', 'MARC 21 biblio field 513 indicator position 1');
6125 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6126 VALUES ('marc21_biblio_513_ind_1', '#', $$Undefined$$, FALSE, TRUE);
6127 INSERT INTO config.record_attr_definition(name, label)
6128 VALUES ('marc21_biblio_513_ind_2', 'MARC 21 biblio field 513 indicator position 2');
6129 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6130 VALUES ('marc21_biblio_513_ind_2', '#', $$Undefined$$, FALSE, TRUE);
6131 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6132                                  repeatable, mandatory, hidden)
6133 VALUES (1, 'biblio', '513', 'a', $$Type of report$$,
6134 FALSE, FALSE, FALSE);
6135 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6136                                  repeatable, mandatory, hidden)
6137 VALUES (1, 'biblio', '513', 'b', $$Period covered$$,
6138 FALSE, FALSE, FALSE);
6139 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6140                                  repeatable, mandatory, hidden)
6141 VALUES (1, 'biblio', '513', '6', $$Linkage$$,
6142 FALSE, FALSE, FALSE);
6143 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6144                                  repeatable, mandatory, hidden)
6145 VALUES (1, 'biblio', '513', '8', $$Field link and sequence number$$,
6146 TRUE, FALSE, FALSE);
6147 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
6148                               fixed_field, repeatable, mandatory, hidden)
6149 VALUES (1, 'biblio', '514', $$Data Quality Note$$, $$Provides a general assessment of the quality of the data set constituting the item.$$,
6150 FALSE, FALSE, FALSE, FALSE);
6151 INSERT INTO config.record_attr_definition(name, label)
6152 VALUES ('marc21_biblio_514_ind_1', 'MARC 21 biblio field 514 indicator position 1');
6153 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6154 VALUES ('marc21_biblio_514_ind_1', '#', $$Undefined$$, FALSE, TRUE);
6155 INSERT INTO config.record_attr_definition(name, label)
6156 VALUES ('marc21_biblio_514_ind_2', 'MARC 21 biblio field 514 indicator position 2');
6157 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6158 VALUES ('marc21_biblio_514_ind_2', '#', $$Undefined$$, FALSE, TRUE);
6159 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6160                                  repeatable, mandatory, hidden)
6161 VALUES (1, 'biblio', '514', 'a', $$Attribute accuracy report$$,
6162 FALSE, FALSE, FALSE);
6163 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6164                                  repeatable, mandatory, hidden)
6165 VALUES (1, 'biblio', '514', 'b', $$Attribute accuracy value$$,
6166 TRUE, FALSE, FALSE);
6167 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6168                                  repeatable, mandatory, hidden)
6169 VALUES (1, 'biblio', '514', 'c', $$Attribute accuracy explanation$$,
6170 TRUE, FALSE, FALSE);
6171 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6172                                  repeatable, mandatory, hidden)
6173 VALUES (1, 'biblio', '514', 'd', $$Logical consistency report$$,
6174 FALSE, FALSE, FALSE);
6175 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6176                                  repeatable, mandatory, hidden)
6177 VALUES (1, 'biblio', '514', 'e', $$Completeness report$$,
6178 FALSE, FALSE, FALSE);
6179 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6180                                  repeatable, mandatory, hidden)
6181 VALUES (1, 'biblio', '514', 'f', $$Horizontal position accuracy report$$,
6182 FALSE, FALSE, FALSE);
6183 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6184                                  repeatable, mandatory, hidden)
6185 VALUES (1, 'biblio', '514', 'g', $$Horizontal position accuracy value$$,
6186 TRUE, FALSE, FALSE);
6187 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6188                                  repeatable, mandatory, hidden)
6189 VALUES (1, 'biblio', '514', 'h', $$Horizontal position accuracy explanation$$,
6190 TRUE, FALSE, FALSE);
6191 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6192                                  repeatable, mandatory, hidden)
6193 VALUES (1, 'biblio', '514', 'i', $$Vertical positional accuracy report$$,
6194 FALSE, FALSE, FALSE);
6195 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6196                                  repeatable, mandatory, hidden)
6197 VALUES (1, 'biblio', '514', 'j', $$Vertical positional accuracy value$$,
6198 TRUE, FALSE, FALSE);
6199 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6200                                  repeatable, mandatory, hidden)
6201 VALUES (1, 'biblio', '514', 'k', $$Vertical positional accuracy explanation$$,
6202 TRUE, FALSE, FALSE);
6203 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6204                                  repeatable, mandatory, hidden)
6205 VALUES (1, 'biblio', '514', 'm', $$Cloud cover$$,
6206 FALSE, FALSE, FALSE);
6207 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6208                                  repeatable, mandatory, hidden)
6209 VALUES (1, 'biblio', '514', 'u', $$Uniform Resource Identifier$$,
6210 TRUE, FALSE, FALSE);
6211 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6212                                  repeatable, mandatory, hidden)
6213 VALUES (1, 'biblio', '514', 'z', $$Display note$$,
6214 TRUE, FALSE, FALSE);
6215 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6216                                  repeatable, mandatory, hidden)
6217 VALUES (1, 'biblio', '514', '6', $$Linkage$$,
6218 FALSE, FALSE, FALSE);
6219 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6220                                  repeatable, mandatory, hidden)
6221 VALUES (1, 'biblio', '514', '8', $$Field link and sequence number$$,
6222 TRUE, FALSE, FALSE);
6223 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
6224                               fixed_field, repeatable, mandatory, hidden)
6225 VALUES (1, 'biblio', '515', $$Numbering Peculiarities Note$$, $$Unformatted note giving irregularities and peculiarities in numbering or publishing patterns, report year coverage, revised editions, and/or issuance in parts.$$,
6226 FALSE, TRUE, FALSE, FALSE);
6227 INSERT INTO config.record_attr_definition(name, label)
6228 VALUES ('marc21_biblio_515_ind_1', 'MARC 21 biblio field 515 indicator position 1');
6229 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6230 VALUES ('marc21_biblio_515_ind_1', '#', $$Undefined$$, FALSE, TRUE);
6231 INSERT INTO config.record_attr_definition(name, label)
6232 VALUES ('marc21_biblio_515_ind_2', 'MARC 21 biblio field 515 indicator position 2');
6233 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6234 VALUES ('marc21_biblio_515_ind_2', '#', $$Undefined$$, FALSE, TRUE);
6235 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6236                                  repeatable, mandatory, hidden)
6237 VALUES (1, 'biblio', '515', 'a', $$Numbering peculiarities note$$,
6238 FALSE, FALSE, FALSE);
6239 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6240                                  repeatable, mandatory, hidden)
6241 VALUES (1, 'biblio', '515', '6', $$Linkage$$,
6242 FALSE, FALSE, FALSE);
6243 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6244                                  repeatable, mandatory, hidden)
6245 VALUES (1, 'biblio', '515', '8', $$Field link and sequence number$$,
6246 TRUE, FALSE, FALSE);
6247 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
6248                               fixed_field, repeatable, mandatory, hidden)
6249 VALUES (1, 'biblio', '516', $$Type of Computer File or Data Note$$, $$General descriptor that characterizes the file (e.g., text, computer program, numeric). Specific information, such as the form or genre of textual material (e.g., biography, dictionaries, indexes) may be included. The general type of computer file information in coded form is recorded in 008/26 (Type of computer file).$$,
6250 FALSE, TRUE, FALSE, FALSE);
6251 INSERT INTO config.record_attr_definition(name, label)
6252 VALUES ('marc21_biblio_516_ind_1', 'MARC 21 biblio field 516 indicator position 1');
6253 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6254 VALUES ('marc21_biblio_516_ind_1', '#', $$Type of file$$, FALSE, TRUE);
6255 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6256 VALUES ('marc21_biblio_516_ind_1', '8', $$No display constant generated$$, FALSE, TRUE);
6257 INSERT INTO config.record_attr_definition(name, label)
6258 VALUES ('marc21_biblio_516_ind_2', 'MARC 21 biblio field 516 indicator position 2');
6259 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6260 VALUES ('marc21_biblio_516_ind_2', '#', $$Undefined$$, FALSE, TRUE);
6261 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6262                                  repeatable, mandatory, hidden)
6263 VALUES (1, 'biblio', '516', 'a', $$Type of computer file or data note$$,
6264 FALSE, FALSE, FALSE);
6265 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6266                                  repeatable, mandatory, hidden)
6267 VALUES (1, 'biblio', '516', '6', $$Linkage$$,
6268 FALSE, FALSE, FALSE);
6269 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6270                                  repeatable, mandatory, hidden)
6271 VALUES (1, 'biblio', '516', '8', $$Field link and sequence number$$,
6272 TRUE, FALSE, FALSE);
6273 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
6274                               fixed_field, repeatable, mandatory, hidden)
6275 VALUES (1, 'biblio', '518', $$Date/Time and Place of an Event Note$$, $$Note on the date/time and/or place of creation, capture, recording, filming, execution, or broadcast associated with an event or the finding of a naturally occurring object. Field 033 (Date/Time and Place of an Event) contains the same information in coded form.$$,
6276 FALSE, TRUE, FALSE, FALSE);
6277 INSERT INTO config.record_attr_definition(name, label)
6278 VALUES ('marc21_biblio_518_ind_1', 'MARC 21 biblio field 518 indicator position 1');
6279 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6280 VALUES ('marc21_biblio_518_ind_1', '#', $$Undefined$$, FALSE, TRUE);
6281 INSERT INTO config.record_attr_definition(name, label)
6282 VALUES ('marc21_biblio_518_ind_2', 'MARC 21 biblio field 518 indicator position 2');
6283 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6284 VALUES ('marc21_biblio_518_ind_2', '#', $$Undefined$$, FALSE, TRUE);
6285 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6286                                  repeatable, mandatory, hidden)
6287 VALUES (1, 'biblio', '518', 'a', $$Date/time and place of an event note$$,
6288 FALSE, FALSE, FALSE);
6289 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6290                                  repeatable, mandatory, hidden)
6291 VALUES (1, 'biblio', '518', 'd', $$Date of event$$,
6292 TRUE, FALSE, FALSE);
6293 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6294                                  repeatable, mandatory, hidden)
6295 VALUES (1, 'biblio', '518', 'o', $$Other event information$$,
6296 FALSE, FALSE, FALSE);
6297 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6298                                  repeatable, mandatory, hidden)
6299 VALUES (1, 'biblio', '518', 'p', $$Place of event$$,
6300 TRUE, FALSE, FALSE);
6301 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6302                                  repeatable, mandatory, hidden)
6303 VALUES (1, 'biblio', '518', '0', $$Record control number$$,
6304 TRUE, FALSE, FALSE);
6305 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6306                                  repeatable, mandatory, hidden)
6307 VALUES (1, 'biblio', '518', '2', $$Source of term$$,
6308 TRUE, FALSE, FALSE);
6309 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6310                                  repeatable, mandatory, hidden)
6311 VALUES (1, 'biblio', '518', '3', $$Materials specified$$,
6312 FALSE, FALSE, FALSE);
6313 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6314                                  repeatable, mandatory, hidden)
6315 VALUES (1, 'biblio', '518', '6', $$Linkage$$,
6316 FALSE, FALSE, FALSE);
6317 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6318                                  repeatable, mandatory, hidden)
6319 VALUES (1, 'biblio', '518', '8', $$Field link and sequence number$$,
6320 TRUE, FALSE, FALSE);
6321 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
6322                               fixed_field, repeatable, mandatory, hidden)
6323 VALUES (1, 'biblio', '520', $$Summary, Etc.$$, $$Unformatted information that describes the scope and general contents of the materials.$$,
6324 FALSE, TRUE, FALSE, FALSE);
6325 INSERT INTO config.record_attr_definition(name, label)
6326 VALUES ('marc21_biblio_520_ind_1', 'MARC 21 biblio field 520 indicator position 1');
6327 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6328 VALUES ('marc21_biblio_520_ind_1', '#', $$Summary$$, FALSE, TRUE);
6329 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6330 VALUES ('marc21_biblio_520_ind_1', '0', $$Subject$$, FALSE, TRUE);
6331 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6332 VALUES ('marc21_biblio_520_ind_1', '1', $$Review$$, FALSE, TRUE);
6333 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6334 VALUES ('marc21_biblio_520_ind_1', '2', $$Scope and content$$, FALSE, TRUE);
6335 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6336 VALUES ('marc21_biblio_520_ind_1', '3', $$Abstract$$, FALSE, TRUE);
6337 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6338 VALUES ('marc21_biblio_520_ind_1', '4', $$Content advice$$, FALSE, TRUE);
6339 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6340 VALUES ('marc21_biblio_520_ind_1', '8', $$No display constant generated$$, FALSE, TRUE);
6341 INSERT INTO config.record_attr_definition(name, label)
6342 VALUES ('marc21_biblio_520_ind_2', 'MARC 21 biblio field 520 indicator position 2');
6343 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6344 VALUES ('marc21_biblio_520_ind_2', '#', $$Undefined$$, FALSE, TRUE);
6345 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6346                                  repeatable, mandatory, hidden)
6347 VALUES (1, 'biblio', '520', 'a', $$Summary, etc.$$,
6348 FALSE, FALSE, FALSE);
6349 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6350                                  repeatable, mandatory, hidden)
6351 VALUES (1, 'biblio', '520', 'b', $$Expansion of summary note$$,
6352 FALSE, FALSE, FALSE);
6353 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6354                                  repeatable, mandatory, hidden)
6355 VALUES (1, 'biblio', '520', 'c', $$Assigning source$$,
6356 FALSE, FALSE, FALSE);
6357 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6358                                  repeatable, mandatory, hidden)
6359 VALUES (1, 'biblio', '520', 'u', $$Uniform Resource Identifier$$,
6360 TRUE, FALSE, FALSE);
6361 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6362                                  repeatable, mandatory, hidden)
6363 VALUES (1, 'biblio', '520', '2', $$Source$$,
6364 FALSE, FALSE, FALSE);
6365 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6366                                  repeatable, mandatory, hidden)
6367 VALUES (1, 'biblio', '520', '3', $$Materials specified$$,
6368 FALSE, FALSE, FALSE);
6369 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6370                                  repeatable, mandatory, hidden)
6371 VALUES (1, 'biblio', '520', '6', $$Linkage$$,
6372 FALSE, FALSE, FALSE);
6373 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6374                                  repeatable, mandatory, hidden)
6375 VALUES (1, 'biblio', '520', '8', $$Field link and sequence number$$,
6376 TRUE, FALSE, FALSE);
6377 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
6378                               fixed_field, repeatable, mandatory, hidden)
6379 VALUES (1, 'biblio', '521', $$Target Audience Note$$, $$Information that identifies the specific audience or intellectual level for which the content of the described item is considered appropriate.$$,
6380 FALSE, TRUE, FALSE, FALSE);
6381 INSERT INTO config.record_attr_definition(name, label)
6382 VALUES ('marc21_biblio_521_ind_1', 'MARC 21 biblio field 521 indicator position 1');
6383 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6384 VALUES ('marc21_biblio_521_ind_1', '#', $$Audience$$, FALSE, TRUE);
6385 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6386 VALUES ('marc21_biblio_521_ind_1', '0', $$Reading grade level$$, FALSE, TRUE);
6387 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6388 VALUES ('marc21_biblio_521_ind_1', '1', $$Interest age level$$, FALSE, TRUE);
6389 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6390 VALUES ('marc21_biblio_521_ind_1', '2', $$Interest grade level$$, FALSE, TRUE);
6391 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6392 VALUES ('marc21_biblio_521_ind_1', '3', $$Special audience characteristics$$, FALSE, TRUE);
6393 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6394 VALUES ('marc21_biblio_521_ind_1', '4', $$Motivation/interest level$$, FALSE, TRUE);
6395 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6396 VALUES ('marc21_biblio_521_ind_1', '8', $$No display constant generated$$, FALSE, TRUE);
6397 INSERT INTO config.record_attr_definition(name, label)
6398 VALUES ('marc21_biblio_521_ind_2', 'MARC 21 biblio field 521 indicator position 2');
6399 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6400 VALUES ('marc21_biblio_521_ind_2', '#', $$Undefined$$, FALSE, TRUE);
6401 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6402                                  repeatable, mandatory, hidden)
6403 VALUES (1, 'biblio', '521', 'a', $$Target audience note$$,
6404 TRUE, FALSE, FALSE);
6405 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6406                                  repeatable, mandatory, hidden)
6407 VALUES (1, 'biblio', '521', 'b', $$Source$$,
6408 FALSE, FALSE, FALSE);
6409 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6410                                  repeatable, mandatory, hidden)
6411 VALUES (1, 'biblio', '521', '3', $$Materials specified$$,
6412 FALSE, FALSE, FALSE);
6413 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6414                                  repeatable, mandatory, hidden)
6415 VALUES (1, 'biblio', '521', '6', $$Linkage$$,
6416 FALSE, FALSE, FALSE);
6417 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6418                                  repeatable, mandatory, hidden)
6419 VALUES (1, 'biblio', '521', '8', $$Field link and sequence number$$,
6420 TRUE, FALSE, FALSE);
6421 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
6422                               fixed_field, repeatable, mandatory, hidden)
6423 VALUES (1, 'biblio', '522', $$Geographic Coverage Note$$, $$Information about the geographic coverage of the described material (usually survey material). This information in coded form may be contained in field 052 (Geographic Classification Code).$$,
6424 FALSE, TRUE, FALSE, FALSE);
6425 INSERT INTO config.record_attr_definition(name, label)
6426 VALUES ('marc21_biblio_522_ind_1', 'MARC 21 biblio field 522 indicator position 1');
6427 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6428 VALUES ('marc21_biblio_522_ind_1', '#', $$Geographic coverage$$, FALSE, TRUE);
6429 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6430 VALUES ('marc21_biblio_522_ind_1', '8', $$No display constant generated$$, FALSE, TRUE);
6431 INSERT INTO config.record_attr_definition(name, label)
6432 VALUES ('marc21_biblio_522_ind_2', 'MARC 21 biblio field 522 indicator position 2');
6433 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6434 VALUES ('marc21_biblio_522_ind_2', '#', $$Undefined$$, FALSE, TRUE);
6435 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6436                                  repeatable, mandatory, hidden)
6437 VALUES (1, 'biblio', '522', 'a', $$Geographic coverage note$$,
6438 FALSE, FALSE, FALSE);
6439 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6440                                  repeatable, mandatory, hidden)
6441 VALUES (1, 'biblio', '522', '6', $$Linkage$$,
6442 FALSE, FALSE, FALSE);
6443 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6444                                  repeatable, mandatory, hidden)
6445 VALUES (1, 'biblio', '522', '8', $$Field link and sequence number$$,
6446 TRUE, FALSE, FALSE);
6447 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
6448                               fixed_field, repeatable, mandatory, hidden)
6449 VALUES (1, 'biblio', '524', $$Preferred Citation of Described Materials Note$$, $$Format for the citation of the described materials that is preferred by the custodian.$$,
6450 FALSE, TRUE, FALSE, FALSE);
6451 INSERT INTO config.record_attr_definition(name, label)
6452 VALUES ('marc21_biblio_524_ind_1', 'MARC 21 biblio field 524 indicator position 1');
6453 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6454 VALUES ('marc21_biblio_524_ind_1', '#', $$Cite as$$, FALSE, TRUE);
6455 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6456 VALUES ('marc21_biblio_524_ind_1', '8', $$No display constant generated$$, FALSE, TRUE);
6457 INSERT INTO config.record_attr_definition(name, label)
6458 VALUES ('marc21_biblio_524_ind_2', 'MARC 21 biblio field 524 indicator position 2');
6459 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6460 VALUES ('marc21_biblio_524_ind_2', '#', $$Undefined$$, FALSE, TRUE);
6461 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6462                                  repeatable, mandatory, hidden)
6463 VALUES (1, 'biblio', '524', 'a', $$Preferred citation of described materials note$$,
6464 FALSE, FALSE, FALSE);
6465 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6466                                  repeatable, mandatory, hidden)
6467 VALUES (1, 'biblio', '524', '2', $$Source of schema used$$,
6468 FALSE, FALSE, FALSE);
6469 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6470                                  repeatable, mandatory, hidden)
6471 VALUES (1, 'biblio', '524', '3', $$Materials specified$$,
6472 FALSE, FALSE, FALSE);
6473 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6474                                  repeatable, mandatory, hidden)
6475 VALUES (1, 'biblio', '524', '6', $$Linkage$$,
6476 FALSE, FALSE, FALSE);
6477 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6478                                  repeatable, mandatory, hidden)
6479 VALUES (1, 'biblio', '524', '8', $$Field link and sequence number$$,
6480 TRUE, FALSE, FALSE);
6481 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
6482                               fixed_field, repeatable, mandatory, hidden)
6483 VALUES (1, 'biblio', '525', $$Supplement Note$$, $$Information on the existence of supplements or special issues that are neither cataloged in separate records nor recorded in a linking entry field 770 (Supplement/Special Issue Entry).$$,
6484 FALSE, TRUE, FALSE, FALSE);
6485 INSERT INTO config.record_attr_definition(name, label)
6486 VALUES ('marc21_biblio_525_ind_1', 'MARC 21 biblio field 525 indicator position 1');
6487 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6488 VALUES ('marc21_biblio_525_ind_1', '#', $$Undefined$$, FALSE, TRUE);
6489 INSERT INTO config.record_attr_definition(name, label)
6490 VALUES ('marc21_biblio_525_ind_2', 'MARC 21 biblio field 525 indicator position 2');
6491 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6492 VALUES ('marc21_biblio_525_ind_2', '#', $$Undefined$$, FALSE, TRUE);
6493 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6494                                  repeatable, mandatory, hidden)
6495 VALUES (1, 'biblio', '525', 'a', $$Supplement note$$,
6496 FALSE, FALSE, FALSE);
6497 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6498                                  repeatable, mandatory, hidden)
6499 VALUES (1, 'biblio', '525', '6', $$Linkage$$,
6500 FALSE, FALSE, FALSE);
6501 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6502                                  repeatable, mandatory, hidden)
6503 VALUES (1, 'biblio', '525', '8', $$Field link and sequence number$$,
6504 TRUE, FALSE, FALSE);
6505 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
6506                               fixed_field, repeatable, mandatory, hidden)
6507 VALUES (1, 'biblio', '526', $$Study Program Information Note$$, $$Note giving the name of a study program which uses the title described in the record. Details about the study program data elements are also contained in the field. Field 526 is generally used for formal curriculum-based study or reading programs.$$,
6508 FALSE, TRUE, FALSE, FALSE);
6509 INSERT INTO config.record_attr_definition(name, label)
6510 VALUES ('marc21_biblio_526_ind_1', 'MARC 21 biblio field 526 indicator position 1');
6511 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6512 VALUES ('marc21_biblio_526_ind_1', '0', $$Reading program$$, FALSE, TRUE);
6513 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6514 VALUES ('marc21_biblio_526_ind_1', '8', $$No display constant generated$$, FALSE, TRUE);
6515 INSERT INTO config.record_attr_definition(name, label)
6516 VALUES ('marc21_biblio_526_ind_2', 'MARC 21 biblio field 526 indicator position 2');
6517 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6518 VALUES ('marc21_biblio_526_ind_2', '#', $$Undefined$$, FALSE, TRUE);
6519 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6520                                  repeatable, mandatory, hidden)
6521 VALUES (1, 'biblio', '526', 'a', $$Program name$$,
6522 FALSE, FALSE, FALSE);
6523 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6524                                  repeatable, mandatory, hidden)
6525 VALUES (1, 'biblio', '526', 'b', $$Interest level$$,
6526 FALSE, FALSE, FALSE);
6527 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6528                                  repeatable, mandatory, hidden)
6529 VALUES (1, 'biblio', '526', 'c', $$Reading level$$,
6530 FALSE, FALSE, FALSE);
6531 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6532                                  repeatable, mandatory, hidden)
6533 VALUES (1, 'biblio', '526', 'd', $$Title point value$$,
6534 FALSE, FALSE, FALSE);
6535 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6536                                  repeatable, mandatory, hidden)
6537 VALUES (1, 'biblio', '526', 'i', $$Display text$$,
6538 FALSE, FALSE, FALSE);
6539 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6540                                  repeatable, mandatory, hidden)
6541 VALUES (1, 'biblio', '526', 'x', $$Nonpublic note$$,
6542 TRUE, FALSE, FALSE);
6543 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6544                                  repeatable, mandatory, hidden)
6545 VALUES (1, 'biblio', '526', 'z', $$Public note$$,
6546 TRUE, FALSE, FALSE);
6547 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6548                                  repeatable, mandatory, hidden)
6549 VALUES (1, 'biblio', '526', '5', $$Institution to which field applies$$,
6550 FALSE, FALSE, FALSE);
6551 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6552                                  repeatable, mandatory, hidden)
6553 VALUES (1, 'biblio', '526', '6', $$Linkage$$,
6554 FALSE, FALSE, FALSE);
6555 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6556                                  repeatable, mandatory, hidden)
6557 VALUES (1, 'biblio', '526', '8', $$Field link and sequence number$$,
6558 TRUE, FALSE, FALSE);
6559 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
6560                               fixed_field, repeatable, mandatory, hidden)
6561 VALUES (1, 'biblio', '530', $$Additional Physical Form Available Note$$, $$Information concerning a different physical format in which the described item is available.$$,
6562 FALSE, TRUE, FALSE, FALSE);
6563 INSERT INTO config.record_attr_definition(name, label)
6564 VALUES ('marc21_biblio_530_ind_1', 'MARC 21 biblio field 530 indicator position 1');
6565 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6566 VALUES ('marc21_biblio_530_ind_1', '#', $$Undefined$$, FALSE, TRUE);
6567 INSERT INTO config.record_attr_definition(name, label)
6568 VALUES ('marc21_biblio_530_ind_2', 'MARC 21 biblio field 530 indicator position 2');
6569 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6570 VALUES ('marc21_biblio_530_ind_2', '#', $$Undefined$$, FALSE, TRUE);
6571 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6572                                  repeatable, mandatory, hidden)
6573 VALUES (1, 'biblio', '530', 'a', $$Additional physical form available note$$,
6574 FALSE, FALSE, FALSE);
6575 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6576                                  repeatable, mandatory, hidden)
6577 VALUES (1, 'biblio', '530', 'b', $$Availability source$$,
6578 FALSE, FALSE, FALSE);
6579 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6580                                  repeatable, mandatory, hidden)
6581 VALUES (1, 'biblio', '530', 'c', $$Availability conditions$$,
6582 FALSE, FALSE, FALSE);
6583 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6584                                  repeatable, mandatory, hidden)
6585 VALUES (1, 'biblio', '530', 'd', $$Order number$$,
6586 FALSE, FALSE, FALSE);
6587 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6588                                  repeatable, mandatory, hidden)
6589 VALUES (1, 'biblio', '530', 'u', $$Uniform Resource Identifier$$,
6590 TRUE, FALSE, FALSE);
6591 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6592                                  repeatable, mandatory, hidden)
6593 VALUES (1, 'biblio', '530', '3', $$Materials specified$$,
6594 FALSE, FALSE, FALSE);
6595 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6596                                  repeatable, mandatory, hidden)
6597 VALUES (1, 'biblio', '530', '6', $$Linkage$$,
6598 FALSE, FALSE, FALSE);
6599 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6600                                  repeatable, mandatory, hidden)
6601 VALUES (1, 'biblio', '530', '8', $$Field link and sequence number$$,
6602 TRUE, FALSE, FALSE);
6603 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
6604                               fixed_field, repeatable, mandatory, hidden)
6605 VALUES (1, 'biblio', '533', $$Reproduction Note$$, $$Descriptive data for a reproduction of an original item when the main portion of the bibliographic record describes the original item and the data differ.$$,
6606 FALSE, TRUE, FALSE, FALSE);
6607 INSERT INTO config.record_attr_definition(name, label)
6608 VALUES ('marc21_biblio_533_ind_1', 'MARC 21 biblio field 533 indicator position 1');
6609 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6610 VALUES ('marc21_biblio_533_ind_1', '#', $$Undefined$$, FALSE, TRUE);
6611 INSERT INTO config.record_attr_definition(name, label)
6612 VALUES ('marc21_biblio_533_ind_2', 'MARC 21 biblio field 533 indicator position 2');
6613 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6614 VALUES ('marc21_biblio_533_ind_2', '#', $$Undefined$$, FALSE, TRUE);
6615 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6616                                  repeatable, mandatory, hidden)
6617 VALUES (1, 'biblio', '533', 'a', $$Type of reproduction$$,
6618 FALSE, FALSE, FALSE);
6619 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6620                                  repeatable, mandatory, hidden)
6621 VALUES (1, 'biblio', '533', 'b', $$Place of reproduction$$,
6622 TRUE, FALSE, FALSE);
6623 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6624                                  repeatable, mandatory, hidden)
6625 VALUES (1, 'biblio', '533', 'c', $$Agency responsible for reproduction$$,
6626 TRUE, FALSE, FALSE);
6627 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6628                                  repeatable, mandatory, hidden)
6629 VALUES (1, 'biblio', '533', 'd', $$Date of reproduction$$,
6630 FALSE, FALSE, FALSE);
6631 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6632                                  repeatable, mandatory, hidden)
6633 VALUES (1, 'biblio', '533', 'e', $$Physical description of reproduction$$,
6634 FALSE, FALSE, FALSE);
6635 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6636                                  repeatable, mandatory, hidden)
6637 VALUES (1, 'biblio', '533', 'f', $$Series statement of reproduction$$,
6638 TRUE, FALSE, FALSE);
6639 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6640                                  repeatable, mandatory, hidden)
6641 VALUES (1, 'biblio', '533', 'm', $$Dates and/or sequential designation of issues reproduced$$,
6642 TRUE, FALSE, FALSE);
6643 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6644                                  repeatable, mandatory, hidden)
6645 VALUES (1, 'biblio', '533', 'n', $$Note about reproduction$$,
6646 TRUE, FALSE, FALSE);
6647 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6648                                  repeatable, mandatory, hidden)
6649 VALUES (1, 'biblio', '533', '3', $$Materials specified$$,
6650 FALSE, FALSE, FALSE);
6651 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6652                                  repeatable, mandatory, hidden)
6653 VALUES (1, 'biblio', '533', '5', $$Institution to which field applies$$,
6654 FALSE, FALSE, FALSE);
6655 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6656                                  repeatable, mandatory, hidden)
6657 VALUES (1, 'biblio', '533', '7', $$Fixed-length data elements of reproduction$$,
6658 FALSE, FALSE, FALSE);
6659 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6660                                  repeatable, mandatory, hidden)
6661 VALUES (1, 'biblio', '533', '6', $$Linkage$$,
6662 FALSE, FALSE, FALSE);
6663 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6664                                  repeatable, mandatory, hidden)
6665 VALUES (1, 'biblio', '533', '8', $$Field link and sequence number$$,
6666 TRUE, FALSE, FALSE);
6667 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
6668                               fixed_field, repeatable, mandatory, hidden)
6669 VALUES (1, 'biblio', '534', $$Original Version Note$$, $$Descriptive data for an original item when the main portion of the bibliographic record describes a reproduction of that item and the data differ. Details relevant to the original are given in field 534.$$,
6670 FALSE, TRUE, FALSE, FALSE);
6671 INSERT INTO config.record_attr_definition(name, label)
6672 VALUES ('marc21_biblio_534_ind_1', 'MARC 21 biblio field 534 indicator position 1');
6673 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6674 VALUES ('marc21_biblio_534_ind_1', '#', $$Undefined$$, FALSE, TRUE);
6675 INSERT INTO config.record_attr_definition(name, label)
6676 VALUES ('marc21_biblio_534_ind_2', 'MARC 21 biblio field 534 indicator position 2');
6677 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6678 VALUES ('marc21_biblio_534_ind_2', '#', $$Undefined$$, FALSE, TRUE);
6679 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6680                                  repeatable, mandatory, hidden)
6681 VALUES (1, 'biblio', '534', 'a', $$Main entry of original$$,
6682 FALSE, FALSE, FALSE);
6683 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6684                                  repeatable, mandatory, hidden)
6685 VALUES (1, 'biblio', '534', 'b', $$Edition statement of original$$,
6686 FALSE, FALSE, FALSE);
6687 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6688                                  repeatable, mandatory, hidden)
6689 VALUES (1, 'biblio', '534', 'c', $$Publication, distribution, etc. of original$$,
6690 FALSE, FALSE, FALSE);
6691 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6692                                  repeatable, mandatory, hidden)
6693 VALUES (1, 'biblio', '534', 'e', $$Physical description, etc. of original$$,
6694 FALSE, FALSE, FALSE);
6695 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6696                                  repeatable, mandatory, hidden)
6697 VALUES (1, 'biblio', '534', 'f', $$Series statement of original$$,
6698 TRUE, FALSE, FALSE);
6699 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6700                                  repeatable, mandatory, hidden)
6701 VALUES (1, 'biblio', '534', 'k', $$Key title of original$$,
6702 TRUE, FALSE, FALSE);
6703 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6704                                  repeatable, mandatory, hidden)
6705 VALUES (1, 'biblio', '534', 'l', $$Location of original$$,
6706 FALSE, FALSE, FALSE);
6707 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6708                                  repeatable, mandatory, hidden)
6709 VALUES (1, 'biblio', '534', 'm', $$Material specific details$$,
6710 FALSE, FALSE, FALSE);
6711 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6712                                  repeatable, mandatory, hidden)
6713 VALUES (1, 'biblio', '534', 'n', $$Note about original$$,
6714 TRUE, FALSE, FALSE);
6715 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6716                                  repeatable, mandatory, hidden)
6717 VALUES (1, 'biblio', '534', 'o', $$Other resource identifier$$,
6718 TRUE, FALSE, FALSE);
6719 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6720                                  repeatable, mandatory, hidden)
6721 VALUES (1, 'biblio', '534', 'p', $$Introductory phrase$$,
6722 FALSE, FALSE, FALSE);
6723 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6724                                  repeatable, mandatory, hidden)
6725 VALUES (1, 'biblio', '534', 't', $$Title statement of original$$,
6726 FALSE, FALSE, FALSE);
6727 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6728                                  repeatable, mandatory, hidden)
6729 VALUES (1, 'biblio', '534', 'x', $$International Standard Serial Number$$,
6730 TRUE, FALSE, FALSE);
6731 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6732                                  repeatable, mandatory, hidden)
6733 VALUES (1, 'biblio', '534', 'z', $$International Standard Book Number$$,
6734 TRUE, FALSE, FALSE);
6735 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6736                                  repeatable, mandatory, hidden)
6737 VALUES (1, 'biblio', '534', '3', $$Materials specified$$,
6738 FALSE, FALSE, FALSE);
6739 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6740                                  repeatable, mandatory, hidden)
6741 VALUES (1, 'biblio', '534', '6', $$Linkage$$,
6742 FALSE, FALSE, FALSE);
6743 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6744                                  repeatable, mandatory, hidden)
6745 VALUES (1, 'biblio', '534', '8', $$Field link and sequence number$$,
6746 TRUE, FALSE, FALSE);
6747 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
6748                               fixed_field, repeatable, mandatory, hidden)
6749 VALUES (1, 'biblio', '535', $$Location of Originals/Duplicates Note$$, $$Name and address of the repository with custody over originals or duplicates of the described materials. This field is used only when the originals or duplicates are housed in a repository different from that of the materials being described.$$,
6750 FALSE, TRUE, FALSE, FALSE);
6751 INSERT INTO config.record_attr_definition(name, label)
6752 VALUES ('marc21_biblio_535_ind_1', 'MARC 21 biblio field 535 indicator position 1');
6753 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6754 VALUES ('marc21_biblio_535_ind_1', '1', $$Holder of originals$$, FALSE, TRUE);
6755 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6756 VALUES ('marc21_biblio_535_ind_1', '2', $$Holder of duplicates$$, FALSE, TRUE);
6757 INSERT INTO config.record_attr_definition(name, label)
6758 VALUES ('marc21_biblio_535_ind_2', 'MARC 21 biblio field 535 indicator position 2');
6759 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6760 VALUES ('marc21_biblio_535_ind_2', '#', $$Undefined$$, FALSE, TRUE);
6761 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6762                                  repeatable, mandatory, hidden)
6763 VALUES (1, 'biblio', '535', 'a', $$Custodian$$,
6764 FALSE, FALSE, FALSE);
6765 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6766                                  repeatable, mandatory, hidden)
6767 VALUES (1, 'biblio', '535', 'b', $$Postal address$$,
6768 TRUE, FALSE, FALSE);
6769 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6770                                  repeatable, mandatory, hidden)
6771 VALUES (1, 'biblio', '535', 'c', $$Country$$,
6772 TRUE, FALSE, FALSE);
6773 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6774                                  repeatable, mandatory, hidden)
6775 VALUES (1, 'biblio', '535', 'd', $$Telecommunications address$$,
6776 TRUE, FALSE, FALSE);
6777 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6778                                  repeatable, mandatory, hidden)
6779 VALUES (1, 'biblio', '535', 'g', $$Repository location code$$,
6780 FALSE, FALSE, FALSE);
6781 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6782                                  repeatable, mandatory, hidden)
6783 VALUES (1, 'biblio', '535', '3', $$Materials specified$$,
6784 FALSE, FALSE, FALSE);
6785 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6786                                  repeatable, mandatory, hidden)
6787 VALUES (1, 'biblio', '535', '6', $$Linkage$$,
6788 FALSE, FALSE, FALSE);
6789 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6790                                  repeatable, mandatory, hidden)
6791 VALUES (1, 'biblio', '535', '8', $$Field link and sequence number$$,
6792 TRUE, FALSE, FALSE);
6793 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
6794                               fixed_field, repeatable, mandatory, hidden)
6795 VALUES (1, 'biblio', '536', $$Funding Information Note$$, $$Contract, grant, and project numbers when the material results from a funded project. Information concerning the sponsor or funding agency also may be included.$$,
6796 FALSE, TRUE, FALSE, FALSE);
6797 INSERT INTO config.record_attr_definition(name, label)
6798 VALUES ('marc21_biblio_536_ind_1', 'MARC 21 biblio field 536 indicator position 1');
6799 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6800 VALUES ('marc21_biblio_536_ind_1', '#', $$Undefined$$, FALSE, TRUE);
6801 INSERT INTO config.record_attr_definition(name, label)
6802 VALUES ('marc21_biblio_536_ind_2', 'MARC 21 biblio field 536 indicator position 2');
6803 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6804 VALUES ('marc21_biblio_536_ind_2', '#', $$Undefined$$, FALSE, TRUE);
6805 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6806                                  repeatable, mandatory, hidden)
6807 VALUES (1, 'biblio', '536', 'a', $$Text of note$$,
6808 FALSE, FALSE, FALSE);
6809 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6810                                  repeatable, mandatory, hidden)
6811 VALUES (1, 'biblio', '536', 'b', $$Contract number$$,
6812 TRUE, FALSE, FALSE);
6813 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6814                                  repeatable, mandatory, hidden)
6815 VALUES (1, 'biblio', '536', 'c', $$Grant number$$,
6816 TRUE, FALSE, FALSE);
6817 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6818                                  repeatable, mandatory, hidden)
6819 VALUES (1, 'biblio', '536', 'd', $$Undifferentiated number$$,
6820 TRUE, FALSE, FALSE);
6821 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6822                                  repeatable, mandatory, hidden)
6823 VALUES (1, 'biblio', '536', 'e', $$Program element number$$,
6824 TRUE, FALSE, FALSE);
6825 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6826                                  repeatable, mandatory, hidden)
6827 VALUES (1, 'biblio', '536', 'f', $$Project number$$,
6828 TRUE, FALSE, FALSE);
6829 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6830                                  repeatable, mandatory, hidden)
6831 VALUES (1, 'biblio', '536', 'g', $$Task number$$,
6832 TRUE, FALSE, FALSE);
6833 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6834                                  repeatable, mandatory, hidden)
6835 VALUES (1, 'biblio', '536', 'h', $$Work unit number$$,
6836 TRUE, FALSE, FALSE);
6837 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6838                                  repeatable, mandatory, hidden)
6839 VALUES (1, 'biblio', '536', '6', $$Linkage$$,
6840 FALSE, FALSE, FALSE);
6841 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6842                                  repeatable, mandatory, hidden)
6843 VALUES (1, 'biblio', '536', '8', $$Field link and sequence number$$,
6844 TRUE, FALSE, FALSE);
6845 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
6846                               fixed_field, repeatable, mandatory, hidden)
6847 VALUES (1, 'biblio', '538', $$System Details Note$$, $$Technical information about an item, such as the presence or absence of certain kinds of codes; or the physical characteristics of a computer file, such as recording densities, parity, blocking factors, mode of access, software programming language, computer requirements, peripheral requirements, trade name or recording systems, number of lines of resolution, and modulation frequency. For sound and videorecordings, information about the trade name or recording system(s) (e.g., VHS), modulation frequency and number of lines of resolution may be included.$$,
6848 FALSE, TRUE, FALSE, FALSE);
6849 INSERT INTO config.record_attr_definition(name, label)
6850 VALUES ('marc21_biblio_538_ind_1', 'MARC 21 biblio field 538 indicator position 1');
6851 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6852 VALUES ('marc21_biblio_538_ind_1', '#', $$Undefined$$, FALSE, TRUE);
6853 INSERT INTO config.record_attr_definition(name, label)
6854 VALUES ('marc21_biblio_538_ind_2', 'MARC 21 biblio field 538 indicator position 2');
6855 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6856 VALUES ('marc21_biblio_538_ind_2', '#', $$Undefined$$, FALSE, TRUE);
6857 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6858                                  repeatable, mandatory, hidden)
6859 VALUES (1, 'biblio', '538', 'a', $$System details note$$,
6860 FALSE, FALSE, FALSE);
6861 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6862                                  repeatable, mandatory, hidden)
6863 VALUES (1, 'biblio', '538', 'i', $$Display text$$,
6864 FALSE, FALSE, FALSE);
6865 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6866                                  repeatable, mandatory, hidden)
6867 VALUES (1, 'biblio', '538', 'u', $$Uniform Resource Identifier$$,
6868 TRUE, FALSE, FALSE);
6869 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6870                                  repeatable, mandatory, hidden)
6871 VALUES (1, 'biblio', '538', '3', $$Materials specified$$,
6872 FALSE, FALSE, FALSE);
6873 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6874                                  repeatable, mandatory, hidden)
6875 VALUES (1, 'biblio', '538', '5', $$Institution to which field applies$$,
6876 TRUE, FALSE, FALSE);
6877 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6878                                  repeatable, mandatory, hidden)
6879 VALUES (1, 'biblio', '538', '6', $$Linkage$$,
6880 FALSE, FALSE, FALSE);
6881 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6882                                  repeatable, mandatory, hidden)
6883 VALUES (1, 'biblio', '538', '8', $$Field link and sequence number$$,
6884 TRUE, FALSE, FALSE);
6885 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
6886                               fixed_field, repeatable, mandatory, hidden)
6887 VALUES (1, 'biblio', '540', $$Terms Governing Use and Reproduction Note$$, $$Terms governing the use of the materials after access has been provided. The field includes, but is not limited to, copyrights, film rights, trade restrictions, etc. that restrict the right to reproduce, exhibit, fictionalize, quote, etc.$$,
6888 FALSE, TRUE, FALSE, FALSE);
6889 INSERT INTO config.record_attr_definition(name, label)
6890 VALUES ('marc21_biblio_540_ind_1', 'MARC 21 biblio field 540 indicator position 1');
6891 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6892 VALUES ('marc21_biblio_540_ind_1', '#', $$Undefined$$, FALSE, TRUE);
6893 INSERT INTO config.record_attr_definition(name, label)
6894 VALUES ('marc21_biblio_540_ind_2', 'MARC 21 biblio field 540 indicator position 2');
6895 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6896 VALUES ('marc21_biblio_540_ind_2', '#', $$Undefined$$, FALSE, TRUE);
6897 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6898                                  repeatable, mandatory, hidden)
6899 VALUES (1, 'biblio', '540', 'a', $$Terms governing use and reproduction$$,
6900 FALSE, FALSE, FALSE);
6901 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6902                                  repeatable, mandatory, hidden)
6903 VALUES (1, 'biblio', '540', 'b', $$Jurisdiction$$,
6904 FALSE, FALSE, FALSE);
6905 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6906                                  repeatable, mandatory, hidden)
6907 VALUES (1, 'biblio', '540', 'c', $$Authorization$$,
6908 FALSE, FALSE, FALSE);
6909 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6910                                  repeatable, mandatory, hidden)
6911 VALUES (1, 'biblio', '540', 'd', $$Authorized users$$,
6912 FALSE, FALSE, FALSE);
6913 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6914                                  repeatable, mandatory, hidden)
6915 VALUES (1, 'biblio', '540', 'u', $$Uniform Resource Identifier$$,
6916 TRUE, FALSE, FALSE);
6917 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6918                                  repeatable, mandatory, hidden)
6919 VALUES (1, 'biblio', '540', '3', $$Materials specified$$,
6920 FALSE, FALSE, FALSE);
6921 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6922                                  repeatable, mandatory, hidden)
6923 VALUES (1, 'biblio', '540', '5', $$Institution to which field applies$$,
6924 FALSE, FALSE, FALSE);
6925 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6926                                  repeatable, mandatory, hidden)
6927 VALUES (1, 'biblio', '540', '6', $$Linkage$$,
6928 FALSE, FALSE, FALSE);
6929 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6930                                  repeatable, mandatory, hidden)
6931 VALUES (1, 'biblio', '540', '8', $$Field link and sequence number$$,
6932 TRUE, FALSE, FALSE);
6933 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
6934                               fixed_field, repeatable, mandatory, hidden)
6935 VALUES (1, 'biblio', '541', $$Immediate Source of Acquisition Note$$, $$Information about the immediate source of acquisition of the described materials and is used primarily with original or historical items, or other archival collections.$$,
6936 FALSE, TRUE, FALSE, FALSE);
6937 INSERT INTO config.record_attr_definition(name, label)
6938 VALUES ('marc21_biblio_541_ind_1', 'MARC 21 biblio field 541 indicator position 1');
6939 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6940 VALUES ('marc21_biblio_541_ind_1', '#', $$No information provided$$, FALSE, TRUE);
6941 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6942 VALUES ('marc21_biblio_541_ind_1', '0', $$Private$$, FALSE, TRUE);
6943 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6944 VALUES ('marc21_biblio_541_ind_1', '1', $$Not private$$, FALSE, TRUE);
6945 INSERT INTO config.record_attr_definition(name, label)
6946 VALUES ('marc21_biblio_541_ind_2', 'MARC 21 biblio field 541 indicator position 2');
6947 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
6948 VALUES ('marc21_biblio_541_ind_2', '#', $$Undefined$$, FALSE, TRUE);
6949 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6950                                  repeatable, mandatory, hidden)
6951 VALUES (1, 'biblio', '541', 'a', $$Source of acquisition$$,
6952 FALSE, FALSE, FALSE);
6953 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6954                                  repeatable, mandatory, hidden)
6955 VALUES (1, 'biblio', '541', 'b', $$Address$$,
6956 FALSE, FALSE, FALSE);
6957 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6958                                  repeatable, mandatory, hidden)
6959 VALUES (1, 'biblio', '541', 'c', $$Method of acquisition$$,
6960 FALSE, FALSE, FALSE);
6961 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6962                                  repeatable, mandatory, hidden)
6963 VALUES (1, 'biblio', '541', 'd', $$Date of acquisition$$,
6964 FALSE, FALSE, FALSE);
6965 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6966                                  repeatable, mandatory, hidden)
6967 VALUES (1, 'biblio', '541', 'e', $$Accession number$$,
6968 FALSE, FALSE, FALSE);
6969 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6970                                  repeatable, mandatory, hidden)
6971 VALUES (1, 'biblio', '541', 'f', $$Owner$$,
6972 FALSE, FALSE, FALSE);
6973 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6974                                  repeatable, mandatory, hidden)
6975 VALUES (1, 'biblio', '541', 'h', $$Purchase price$$,
6976 FALSE, FALSE, FALSE);
6977 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6978                                  repeatable, mandatory, hidden)
6979 VALUES (1, 'biblio', '541', 'n', $$Extent$$,
6980 TRUE, FALSE, FALSE);
6981 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6982                                  repeatable, mandatory, hidden)
6983 VALUES (1, 'biblio', '541', 'o', $$Type of unit$$,
6984 TRUE, FALSE, FALSE);
6985 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6986                                  repeatable, mandatory, hidden)
6987 VALUES (1, 'biblio', '541', '3', $$Materials specified$$,
6988 FALSE, FALSE, FALSE);
6989 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6990                                  repeatable, mandatory, hidden)
6991 VALUES (1, 'biblio', '541', '5', $$Institution to which field applies$$,
6992 FALSE, FALSE, FALSE);
6993 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6994                                  repeatable, mandatory, hidden)
6995 VALUES (1, 'biblio', '541', '6', $$Linkage$$,
6996 FALSE, FALSE, FALSE);
6997 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
6998                                  repeatable, mandatory, hidden)
6999 VALUES (1, 'biblio', '541', '8', $$Field link and sequence number$$,
7000 TRUE, FALSE, FALSE);
7001 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
7002                               fixed_field, repeatable, mandatory, hidden)
7003 VALUES (1, 'biblio', '542', $$Information Relating to Copyright Status$$, $$Information known about the item that may be used to determine copyright status.$$,
7004 FALSE, TRUE, FALSE, FALSE);
7005 INSERT INTO config.record_attr_definition(name, label)
7006 VALUES ('marc21_biblio_542_ind_1', 'MARC 21 biblio field 542 indicator position 1');
7007 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7008 VALUES ('marc21_biblio_542_ind_1', '#', $$No information provided$$, FALSE, TRUE);
7009 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7010 VALUES ('marc21_biblio_542_ind_1', '0', $$Private$$, FALSE, TRUE);
7011 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7012 VALUES ('marc21_biblio_542_ind_1', '1', $$Not private$$, FALSE, TRUE);
7013 INSERT INTO config.record_attr_definition(name, label)
7014 VALUES ('marc21_biblio_542_ind_2', 'MARC 21 biblio field 542 indicator position 2');
7015 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7016 VALUES ('marc21_biblio_542_ind_2', '#', $$Undefined$$, FALSE, TRUE);
7017 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7018                                  repeatable, mandatory, hidden)
7019 VALUES (1, 'biblio', '542', 'a', $$Personal creator$$,
7020 FALSE, FALSE, FALSE);
7021 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7022                                  repeatable, mandatory, hidden)
7023 VALUES (1, 'biblio', '542', 'b', $$Personal creator death date$$,
7024 FALSE, FALSE, FALSE);
7025 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7026                                  repeatable, mandatory, hidden)
7027 VALUES (1, 'biblio', '542', 'c', $$Corporate creator$$,
7028 FALSE, FALSE, FALSE);
7029 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7030                                  repeatable, mandatory, hidden)
7031 VALUES (1, 'biblio', '542', 'd', $$Copyright holder$$,
7032 TRUE, FALSE, FALSE);
7033 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7034                                  repeatable, mandatory, hidden)
7035 VALUES (1, 'biblio', '542', 'e', $$Copyright holder contact information$$,
7036 TRUE, FALSE, FALSE);
7037 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7038                                  repeatable, mandatory, hidden)
7039 VALUES (1, 'biblio', '542', 'f', $$Copyright statement$$,
7040 TRUE, FALSE, FALSE);
7041 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7042                                  repeatable, mandatory, hidden)
7043 VALUES (1, 'biblio', '542', 'g', $$Copyright date$$,
7044 FALSE, FALSE, FALSE);
7045 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7046                                  repeatable, mandatory, hidden)
7047 VALUES (1, 'biblio', '542', 'h', $$Copyright renewal date$$,
7048 TRUE, FALSE, FALSE);
7049 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7050                                  repeatable, mandatory, hidden)
7051 VALUES (1, 'biblio', '542', 'i', $$Publication date$$,
7052 FALSE, FALSE, FALSE);
7053 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7054                                  repeatable, mandatory, hidden)
7055 VALUES (1, 'biblio', '542', 'j', $$Creation date$$,
7056 FALSE, FALSE, FALSE);
7057 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7058                                  repeatable, mandatory, hidden)
7059 VALUES (1, 'biblio', '542', 'k', $$Publisher$$,
7060 TRUE, FALSE, FALSE);
7061 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7062                                  repeatable, mandatory, hidden)
7063 VALUES (1, 'biblio', '542', 'l', $$Copyright status$$,
7064 FALSE, FALSE, FALSE);
7065 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7066                                  repeatable, mandatory, hidden)
7067 VALUES (1, 'biblio', '542', 'm', $$Publication status$$,
7068 FALSE, FALSE, FALSE);
7069 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7070                                  repeatable, mandatory, hidden)
7071 VALUES (1, 'biblio', '542', 'n', $$Note$$,
7072 TRUE, FALSE, FALSE);
7073 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7074                                  repeatable, mandatory, hidden)
7075 VALUES (1, 'biblio', '542', 'o', $$Research date$$,
7076 FALSE, FALSE, FALSE);
7077 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7078                                  repeatable, mandatory, hidden)
7079 VALUES (1, 'biblio', '542', 'p', $$Country of publication or creation$$,
7080 TRUE, FALSE, FALSE);
7081 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7082                                  repeatable, mandatory, hidden)
7083 VALUES (1, 'biblio', '542', 'q', $$Supplying agency$$,
7084 FALSE, FALSE, FALSE);
7085 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7086                                  repeatable, mandatory, hidden)
7087 VALUES (1, 'biblio', '542', 'r', $$Jurisdiction of copyright assessment$$,
7088 FALSE, FALSE, FALSE);
7089 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7090                                  repeatable, mandatory, hidden)
7091 VALUES (1, 'biblio', '542', 's', $$Source of information$$,
7092 FALSE, FALSE, FALSE);
7093 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7094                                  repeatable, mandatory, hidden)
7095 VALUES (1, 'biblio', '542', 'u', $$Uniform Resource Identifier$$,
7096 TRUE, FALSE, FALSE);
7097 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7098                                  repeatable, mandatory, hidden)
7099 VALUES (1, 'biblio', '542', '3', $$Materials specified$$,
7100 FALSE, FALSE, FALSE);
7101 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7102                                  repeatable, mandatory, hidden)
7103 VALUES (1, 'biblio', '542', '6', $$Linkage$$,
7104 FALSE, FALSE, FALSE);
7105 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7106                                  repeatable, mandatory, hidden)
7107 VALUES (1, 'biblio', '542', '8', $$Field link and sequence number$$,
7108 TRUE, FALSE, FALSE);
7109 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
7110                               fixed_field, repeatable, mandatory, hidden)
7111 VALUES (1, 'biblio', '544', $$Location of Other Archival Materials Note$$, $$Name and address of custodians of archival materials related to the described materials by provenance, specifically by having been, at a previous time, a part of the same collection or record group.$$,
7112 FALSE, TRUE, FALSE, FALSE);
7113 INSERT INTO config.record_attr_definition(name, label)
7114 VALUES ('marc21_biblio_544_ind_1', 'MARC 21 biblio field 544 indicator position 1');
7115 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7116 VALUES ('marc21_biblio_544_ind_1', '#', $$No information provided$$, FALSE, TRUE);
7117 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7118 VALUES ('marc21_biblio_544_ind_1', '0', $$Associated materials$$, FALSE, TRUE);
7119 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7120 VALUES ('marc21_biblio_544_ind_1', '1', $$Related materials$$, FALSE, TRUE);
7121 INSERT INTO config.record_attr_definition(name, label)
7122 VALUES ('marc21_biblio_544_ind_2', 'MARC 21 biblio field 544 indicator position 2');
7123 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7124 VALUES ('marc21_biblio_544_ind_2', '#', $$Undefined$$, FALSE, TRUE);
7125 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7126                                  repeatable, mandatory, hidden)
7127 VALUES (1, 'biblio', '544', 'a', $$Custodian$$,
7128 TRUE, FALSE, FALSE);
7129 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7130                                  repeatable, mandatory, hidden)
7131 VALUES (1, 'biblio', '544', 'b', $$Address$$,
7132 TRUE, FALSE, FALSE);
7133 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7134                                  repeatable, mandatory, hidden)
7135 VALUES (1, 'biblio', '544', 'c', $$Country$$,
7136 TRUE, FALSE, FALSE);
7137 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7138                                  repeatable, mandatory, hidden)
7139 VALUES (1, 'biblio', '544', 'd', $$Title$$,
7140 TRUE, FALSE, FALSE);
7141 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7142                                  repeatable, mandatory, hidden)
7143 VALUES (1, 'biblio', '544', 'e', $$Provenance$$,
7144 TRUE, FALSE, FALSE);
7145 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7146                                  repeatable, mandatory, hidden)
7147 VALUES (1, 'biblio', '544', 'n', $$Note$$,
7148 TRUE, FALSE, FALSE);
7149 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7150                                  repeatable, mandatory, hidden)
7151 VALUES (1, 'biblio', '544', '3', $$Materials specified$$,
7152 FALSE, FALSE, FALSE);
7153 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7154                                  repeatable, mandatory, hidden)
7155 VALUES (1, 'biblio', '544', '6', $$Linkage$$,
7156 FALSE, FALSE, FALSE);
7157 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7158                                  repeatable, mandatory, hidden)
7159 VALUES (1, 'biblio', '544', '8', $$Field link and sequence number$$,
7160 TRUE, FALSE, FALSE);
7161 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
7162                               fixed_field, repeatable, mandatory, hidden)
7163 VALUES (1, 'biblio', '545', $$Biographical or Historical Data$$, $$Biographical information about an individual or historical information about an institution or event used as the main entry for the item being cataloged. When a distinction between levels of detail is required, a brief summary is given in subfield $a and a fuller annotation is given in subfield $b.$$,
7164 FALSE, TRUE, FALSE, FALSE);
7165 INSERT INTO config.record_attr_definition(name, label)
7166 VALUES ('marc21_biblio_545_ind_1', 'MARC 21 biblio field 545 indicator position 1');
7167 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7168 VALUES ('marc21_biblio_545_ind_1', '#', $$No information provided$$, FALSE, TRUE);
7169 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7170 VALUES ('marc21_biblio_545_ind_1', '0', $$Biographical sketch$$, FALSE, TRUE);
7171 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7172 VALUES ('marc21_biblio_545_ind_1', '1', $$Administrative history$$, FALSE, TRUE);
7173 INSERT INTO config.record_attr_definition(name, label)
7174 VALUES ('marc21_biblio_545_ind_2', 'MARC 21 biblio field 545 indicator position 2');
7175 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7176 VALUES ('marc21_biblio_545_ind_2', '#', $$Undefined$$, FALSE, TRUE);
7177 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7178                                  repeatable, mandatory, hidden)
7179 VALUES (1, 'biblio', '545', 'a', $$Biographical or historical data$$,
7180 FALSE, FALSE, FALSE);
7181 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7182                                  repeatable, mandatory, hidden)
7183 VALUES (1, 'biblio', '545', 'b', $$Expansion$$,
7184 FALSE, FALSE, FALSE);
7185 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7186                                  repeatable, mandatory, hidden)
7187 VALUES (1, 'biblio', '545', 'u', $$Uniform Resource Identifier$$,
7188 TRUE, FALSE, FALSE);
7189 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7190                                  repeatable, mandatory, hidden)
7191 VALUES (1, 'biblio', '545', '6', $$Linkage$$,
7192 FALSE, FALSE, FALSE);
7193 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7194                                  repeatable, mandatory, hidden)
7195 VALUES (1, 'biblio', '545', '8', $$Field link and sequence number$$,
7196 TRUE, FALSE, FALSE);
7197 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
7198                               fixed_field, repeatable, mandatory, hidden)
7199 VALUES (1, 'biblio', '546', $$Language Note$$, $$Textual information on the language of the described materials. A description of the alphabet, script, or other symbol system (e.g., arabic alphabet, ASCII, musical notation system, bar code, logarithmic graphing) may also be included. Coded language information is contained in fields 008/35-37 (Language) and/or 041 (Language code).$$,
7200 FALSE, TRUE, FALSE, FALSE);
7201 INSERT INTO config.record_attr_definition(name, label)
7202 VALUES ('marc21_biblio_546_ind_1', 'MARC 21 biblio field 546 indicator position 1');
7203 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7204 VALUES ('marc21_biblio_546_ind_1', '#', $$Undefined$$, FALSE, TRUE);
7205 INSERT INTO config.record_attr_definition(name, label)
7206 VALUES ('marc21_biblio_546_ind_2', 'MARC 21 biblio field 546 indicator position 2');
7207 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7208 VALUES ('marc21_biblio_546_ind_2', '#', $$Undefined$$, FALSE, TRUE);
7209 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7210                                  repeatable, mandatory, hidden)
7211 VALUES (1, 'biblio', '546', 'a', $$Language note$$,
7212 FALSE, FALSE, FALSE);
7213 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7214                                  repeatable, mandatory, hidden)
7215 VALUES (1, 'biblio', '546', 'b', $$Information code or alphabet$$,
7216 TRUE, FALSE, FALSE);
7217 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7218                                  repeatable, mandatory, hidden)
7219 VALUES (1, 'biblio', '546', '3', $$Materials specified$$,
7220 FALSE, FALSE, FALSE);
7221 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7222                                  repeatable, mandatory, hidden)
7223 VALUES (1, 'biblio', '546', '6', $$Linkage$$,
7224 FALSE, FALSE, FALSE);
7225 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7226                                  repeatable, mandatory, hidden)
7227 VALUES (1, 'biblio', '546', '8', $$Field link and sequence number$$,
7228 TRUE, FALSE, FALSE);
7229 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
7230                               fixed_field, repeatable, mandatory, hidden)
7231 VALUES (1, 'biblio', '547', $$Former Title Complexity Note$$, $$Description of the complex relationship between titles proper whenever an intelligible note cannot be system generated from the data in field 247 (Former Title).$$,
7232 FALSE, TRUE, FALSE, FALSE);
7233 INSERT INTO config.record_attr_definition(name, label)
7234 VALUES ('marc21_biblio_547_ind_1', 'MARC 21 biblio field 547 indicator position 1');
7235 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7236 VALUES ('marc21_biblio_547_ind_1', '#', $$Undefined$$, FALSE, TRUE);
7237 INSERT INTO config.record_attr_definition(name, label)
7238 VALUES ('marc21_biblio_547_ind_2', 'MARC 21 biblio field 547 indicator position 2');
7239 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7240 VALUES ('marc21_biblio_547_ind_2', '#', $$Undefined$$, FALSE, TRUE);
7241 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7242                                  repeatable, mandatory, hidden)
7243 VALUES (1, 'biblio', '547', 'a', $$Former title complexity note$$,
7244 FALSE, FALSE, FALSE);
7245 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7246                                  repeatable, mandatory, hidden)
7247 VALUES (1, 'biblio', '547', '6', $$Linkage$$,
7248 FALSE, FALSE, FALSE);
7249 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7250                                  repeatable, mandatory, hidden)
7251 VALUES (1, 'biblio', '547', '8', $$Field link and sequence number$$,
7252 TRUE, FALSE, FALSE);
7253 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
7254                               fixed_field, repeatable, mandatory, hidden)
7255 VALUES (1, 'biblio', '550', $$Issuing Body Note$$, $$Information about the current and former issuing bodies of a continuing resource.$$,
7256 FALSE, TRUE, FALSE, FALSE);
7257 INSERT INTO config.record_attr_definition(name, label)
7258 VALUES ('marc21_biblio_550_ind_1', 'MARC 21 biblio field 550 indicator position 1');
7259 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7260 VALUES ('marc21_biblio_550_ind_1', '#', $$Undefined$$, FALSE, TRUE);
7261 INSERT INTO config.record_attr_definition(name, label)
7262 VALUES ('marc21_biblio_550_ind_2', 'MARC 21 biblio field 550 indicator position 2');
7263 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7264 VALUES ('marc21_biblio_550_ind_2', '#', $$Undefined$$, FALSE, TRUE);
7265 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7266                                  repeatable, mandatory, hidden)
7267 VALUES (1, 'biblio', '550', 'a', $$Issuing body note$$,
7268 FALSE, FALSE, FALSE);
7269 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7270                                  repeatable, mandatory, hidden)
7271 VALUES (1, 'biblio', '550', '6', $$Linkage$$,
7272 FALSE, FALSE, FALSE);
7273 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7274                                  repeatable, mandatory, hidden)
7275 VALUES (1, 'biblio', '550', '8', $$Field link and sequence number$$,
7276 TRUE, FALSE, FALSE);
7277 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
7278                               fixed_field, repeatable, mandatory, hidden)
7279 VALUES (1, 'biblio', '552', $$Entity and Attribute Information Note$$, $$Description of the information content of the data set, including the entity types, their attributes, and the domains from which attribute values may be assigned.$$,
7280 FALSE, TRUE, FALSE, FALSE);
7281 INSERT INTO config.record_attr_definition(name, label)
7282 VALUES ('marc21_biblio_552_ind_1', 'MARC 21 biblio field 552 indicator position 1');
7283 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7284 VALUES ('marc21_biblio_552_ind_1', '#', $$Undefined$$, FALSE, TRUE);
7285 INSERT INTO config.record_attr_definition(name, label)
7286 VALUES ('marc21_biblio_552_ind_2', 'MARC 21 biblio field 552 indicator position 2');
7287 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7288 VALUES ('marc21_biblio_552_ind_2', '#', $$Undefined$$, FALSE, TRUE);
7289 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7290                                  repeatable, mandatory, hidden)
7291 VALUES (1, 'biblio', '552', 'a', $$Entity type label$$,
7292 FALSE, FALSE, FALSE);
7293 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7294                                  repeatable, mandatory, hidden)
7295 VALUES (1, 'biblio', '552', 'b', $$Entity type definition and source$$,
7296 FALSE, FALSE, FALSE);
7297 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7298                                  repeatable, mandatory, hidden)
7299 VALUES (1, 'biblio', '552', 'c', $$Attribute label$$,
7300 FALSE, FALSE, FALSE);
7301 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7302                                  repeatable, mandatory, hidden)
7303 VALUES (1, 'biblio', '552', 'd', $$Attribute definition and source$$,
7304 FALSE, FALSE, FALSE);
7305 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7306                                  repeatable, mandatory, hidden)
7307 VALUES (1, 'biblio', '552', 'e', $$Enumerated domain value$$,
7308 TRUE, FALSE, FALSE);
7309 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7310                                  repeatable, mandatory, hidden)
7311 VALUES (1, 'biblio', '552', 'f', $$Enumerated domain value definition and source$$,
7312 TRUE, FALSE, FALSE);
7313 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7314                                  repeatable, mandatory, hidden)
7315 VALUES (1, 'biblio', '552', 'g', $$Range domain minimum and maximum$$,
7316 FALSE, FALSE, FALSE);
7317 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7318                                  repeatable, mandatory, hidden)
7319 VALUES (1, 'biblio', '552', 'h', $$Codeset name and source$$,
7320 FALSE, FALSE, FALSE);
7321 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7322                                  repeatable, mandatory, hidden)
7323 VALUES (1, 'biblio', '552', 'i', $$Unrepresentable domain$$,
7324 FALSE, FALSE, FALSE);
7325 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7326                                  repeatable, mandatory, hidden)
7327 VALUES (1, 'biblio', '552', 'j', $$Attribute units of measurement and resolution$$,
7328 FALSE, FALSE, FALSE);
7329 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7330                                  repeatable, mandatory, hidden)
7331 VALUES (1, 'biblio', '552', 'k', $$Beginning and ending date of attribute values$$,
7332 FALSE, FALSE, FALSE);
7333 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7334                                  repeatable, mandatory, hidden)
7335 VALUES (1, 'biblio', '552', 'l', $$Attribute value accuracy$$,
7336 FALSE, FALSE, FALSE);
7337 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7338                                  repeatable, mandatory, hidden)
7339 VALUES (1, 'biblio', '552', 'm', $$Attribute value accuracy explanation$$,
7340 FALSE, FALSE, FALSE);
7341 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7342                                  repeatable, mandatory, hidden)
7343 VALUES (1, 'biblio', '552', 'n', $$Attribute measurement frequency$$,
7344 FALSE, FALSE, FALSE);
7345 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7346                                  repeatable, mandatory, hidden)
7347 VALUES (1, 'biblio', '552', 'o', $$Entity and attribute overview$$,
7348 TRUE, FALSE, FALSE);
7349 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7350                                  repeatable, mandatory, hidden)
7351 VALUES (1, 'biblio', '552', 'p', $$Entity and attribute detail citation$$,
7352 TRUE, FALSE, FALSE);
7353 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7354                                  repeatable, mandatory, hidden)
7355 VALUES (1, 'biblio', '552', 'u', $$Uniform Resource Identifier$$,
7356 TRUE, FALSE, FALSE);
7357 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7358                                  repeatable, mandatory, hidden)
7359 VALUES (1, 'biblio', '552', 'z', $$Display note$$,
7360 TRUE, FALSE, FALSE);
7361 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7362                                  repeatable, mandatory, hidden)
7363 VALUES (1, 'biblio', '552', '6', $$Linkage$$,
7364 FALSE, FALSE, FALSE);
7365 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7366                                  repeatable, mandatory, hidden)
7367 VALUES (1, 'biblio', '552', '8', $$Field link and sequence number$$,
7368 TRUE, FALSE, FALSE);
7369 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
7370                               fixed_field, repeatable, mandatory, hidden)
7371 VALUES (1, 'biblio', '555', $$Cumulative Index/Finding Aids Note$$, $$Information on the availability of cumulative indexes for continuing resources or finding aids and similar control materials for archival and manuscripts control and visual materials whose only or major focus is the described material.$$,
7372 FALSE, TRUE, FALSE, FALSE);
7373 INSERT INTO config.record_attr_definition(name, label)
7374 VALUES ('marc21_biblio_555_ind_1', 'MARC 21 biblio field 555 indicator position 1');
7375 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7376 VALUES ('marc21_biblio_555_ind_1', '#', $$Indexes$$, FALSE, TRUE);
7377 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7378 VALUES ('marc21_biblio_555_ind_1', '0', $$Finding aids$$, FALSE, TRUE);
7379 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7380 VALUES ('marc21_biblio_555_ind_1', '8', $$No display constant generated$$, FALSE, TRUE);
7381 INSERT INTO config.record_attr_definition(name, label)
7382 VALUES ('marc21_biblio_555_ind_2', 'MARC 21 biblio field 555 indicator position 2');
7383 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7384 VALUES ('marc21_biblio_555_ind_2', '#', $$Undefined$$, FALSE, TRUE);
7385 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7386                                  repeatable, mandatory, hidden)
7387 VALUES (1, 'biblio', '555', 'a', $$Cumulative index/finding aids note$$,
7388 FALSE, FALSE, FALSE);
7389 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7390                                  repeatable, mandatory, hidden)
7391 VALUES (1, 'biblio', '555', 'b', $$Availability source$$,
7392 TRUE, FALSE, FALSE);
7393 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7394                                  repeatable, mandatory, hidden)
7395 VALUES (1, 'biblio', '555', 'c', $$Degree of control$$,
7396 FALSE, FALSE, FALSE);
7397 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7398                                  repeatable, mandatory, hidden)
7399 VALUES (1, 'biblio', '555', 'd', $$Bibliographic reference$$,
7400 FALSE, FALSE, FALSE);
7401 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7402                                  repeatable, mandatory, hidden)
7403 VALUES (1, 'biblio', '555', 'u', $$Uniform Resource Identifier$$,
7404 TRUE, FALSE, FALSE);
7405 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7406                                  repeatable, mandatory, hidden)
7407 VALUES (1, 'biblio', '555', '3', $$Materials specified$$,
7408 FALSE, FALSE, FALSE);
7409 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7410                                  repeatable, mandatory, hidden)
7411 VALUES (1, 'biblio', '555', '6', $$Linkage$$,
7412 FALSE, FALSE, FALSE);
7413 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7414                                  repeatable, mandatory, hidden)
7415 VALUES (1, 'biblio', '555', '8', $$Field link and sequence number$$,
7416 TRUE, FALSE, FALSE);
7417 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
7418                               fixed_field, repeatable, mandatory, hidden)
7419 VALUES (1, 'biblio', '556', $$Information About Documentation Note$$, $$Information about the documentation of the described materials, such as codebooks which explain the contents and use of the file or a users’ manual to a serial.$$,
7420 FALSE, TRUE, FALSE, FALSE);
7421 INSERT INTO config.record_attr_definition(name, label)
7422 VALUES ('marc21_biblio_556_ind_1', 'MARC 21 biblio field 556 indicator position 1');
7423 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7424 VALUES ('marc21_biblio_556_ind_1', '#', $$Documentation$$, FALSE, TRUE);
7425 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7426 VALUES ('marc21_biblio_556_ind_1', '8', $$No display constant generated$$, FALSE, TRUE);
7427 INSERT INTO config.record_attr_definition(name, label)
7428 VALUES ('marc21_biblio_556_ind_2', 'MARC 21 biblio field 556 indicator position 2');
7429 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7430 VALUES ('marc21_biblio_556_ind_2', '#', $$Undefined$$, FALSE, TRUE);
7431 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7432                                  repeatable, mandatory, hidden)
7433 VALUES (1, 'biblio', '556', 'a', $$Information about documentation note$$,
7434 FALSE, FALSE, FALSE);
7435 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7436                                  repeatable, mandatory, hidden)
7437 VALUES (1, 'biblio', '556', 'z', $$International Standard Book Number$$,
7438 TRUE, FALSE, FALSE);
7439 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7440                                  repeatable, mandatory, hidden)
7441 VALUES (1, 'biblio', '556', '6', $$Linkage$$,
7442 FALSE, FALSE, FALSE);
7443 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7444                                  repeatable, mandatory, hidden)
7445 VALUES (1, 'biblio', '556', '8', $$Field link and sequence number$$,
7446 TRUE, FALSE, FALSE);
7447 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
7448                               fixed_field, repeatable, mandatory, hidden)
7449 VALUES (1, 'biblio', '561', $$Ownership and Custodial History$$, $$Copy-specific field that contains information concerning the ownership and custodial history of the described materials from the time of their creation to the time of their accessioning, including the time at which individual items or groups of items were first brought together in their current arrangement or collation.$$,
7450 FALSE, TRUE, FALSE, FALSE);
7451 INSERT INTO config.record_attr_definition(name, label)
7452 VALUES ('marc21_biblio_561_ind_1', 'MARC 21 biblio field 561 indicator position 1');
7453 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7454 VALUES ('marc21_biblio_561_ind_1', '#', $$No information provided$$, FALSE, TRUE);
7455 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7456 VALUES ('marc21_biblio_561_ind_1', '0', $$Private$$, FALSE, TRUE);
7457 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7458 VALUES ('marc21_biblio_561_ind_1', '1', $$Not private$$, FALSE, TRUE);
7459 INSERT INTO config.record_attr_definition(name, label)
7460 VALUES ('marc21_biblio_561_ind_2', 'MARC 21 biblio field 561 indicator position 2');
7461 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7462 VALUES ('marc21_biblio_561_ind_2', '#', $$Undefined$$, FALSE, TRUE);
7463 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7464                                  repeatable, mandatory, hidden)
7465 VALUES (1, 'biblio', '561', 'a', $$History$$,
7466 FALSE, FALSE, FALSE);
7467 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7468                                  repeatable, mandatory, hidden)
7469 VALUES (1, 'biblio', '561', '3', $$Materials specified$$,
7470 FALSE, FALSE, FALSE);
7471 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7472                                  repeatable, mandatory, hidden)
7473 VALUES (1, 'biblio', '561', '5', $$Institution to which field applies$$,
7474 FALSE, FALSE, FALSE);
7475 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7476                                  repeatable, mandatory, hidden)
7477 VALUES (1, 'biblio', '561', '6', $$Linkage$$,
7478 FALSE, FALSE, FALSE);
7479 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7480                                  repeatable, mandatory, hidden)
7481 VALUES (1, 'biblio', '561', '8', $$Field link and sequence number$$,
7482 TRUE, FALSE, FALSE);
7483 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
7484                               fixed_field, repeatable, mandatory, hidden)
7485 VALUES (1, 'biblio', '562', $$Copy and Version Identification Note$$, $$Information that distinguishes the copy(s) or version(s) of materials held by an archive or manuscript repository when more than one copy or version exists or could exist.$$,
7486 FALSE, TRUE, FALSE, FALSE);
7487 INSERT INTO config.record_attr_definition(name, label)
7488 VALUES ('marc21_biblio_562_ind_1', 'MARC 21 biblio field 562 indicator position 1');
7489 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7490 VALUES ('marc21_biblio_562_ind_1', '#', $$Undefined$$, FALSE, TRUE);
7491 INSERT INTO config.record_attr_definition(name, label)
7492 VALUES ('marc21_biblio_562_ind_2', 'MARC 21 biblio field 562 indicator position 2');
7493 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7494 VALUES ('marc21_biblio_562_ind_2', '#', $$Undefined$$, FALSE, TRUE);
7495 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7496                                  repeatable, mandatory, hidden)
7497 VALUES (1, 'biblio', '562', 'a', $$Identifying markings$$,
7498 TRUE, FALSE, FALSE);
7499 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7500                                  repeatable, mandatory, hidden)
7501 VALUES (1, 'biblio', '562', 'b', $$Copy identification$$,
7502 TRUE, FALSE, FALSE);
7503 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7504                                  repeatable, mandatory, hidden)
7505 VALUES (1, 'biblio', '562', 'c', $$Version identification$$,
7506 TRUE, FALSE, FALSE);
7507 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7508                                  repeatable, mandatory, hidden)
7509 VALUES (1, 'biblio', '562', 'd', $$Presentation format$$,
7510 TRUE, FALSE, FALSE);
7511 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7512                                  repeatable, mandatory, hidden)
7513 VALUES (1, 'biblio', '562', 'e', $$Number of copies$$,
7514 TRUE, FALSE, FALSE);
7515 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7516                                  repeatable, mandatory, hidden)
7517 VALUES (1, 'biblio', '562', '3', $$Materials specified$$,
7518 FALSE, FALSE, FALSE);
7519 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7520                                  repeatable, mandatory, hidden)
7521 VALUES (1, 'biblio', '562', '5', $$Institution to which field applies$$,
7522 FALSE, FALSE, FALSE);
7523 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7524                                  repeatable, mandatory, hidden)
7525 VALUES (1, 'biblio', '562', '6', $$Linkage$$,
7526 FALSE, FALSE, FALSE);
7527 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7528                                  repeatable, mandatory, hidden)
7529 VALUES (1, 'biblio', '562', '8', $$Field link and sequence number$$,
7530 TRUE, FALSE, FALSE);
7531 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
7532                               fixed_field, repeatable, mandatory, hidden)
7533 VALUES (1, 'biblio', '563', $$Binding Information$$, $$Binding information intended primarily for use with antiquarian materials, rare books and other special collections.$$,
7534 FALSE, TRUE, FALSE, FALSE);
7535 INSERT INTO config.record_attr_definition(name, label)
7536 VALUES ('marc21_biblio_563_ind_1', 'MARC 21 biblio field 563 indicator position 1');
7537 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7538 VALUES ('marc21_biblio_563_ind_1', '#', $$Undefined$$, FALSE, TRUE);
7539 INSERT INTO config.record_attr_definition(name, label)
7540 VALUES ('marc21_biblio_563_ind_2', 'MARC 21 biblio field 563 indicator position 2');
7541 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7542 VALUES ('marc21_biblio_563_ind_2', '#', $$Undefined$$, FALSE, TRUE);
7543 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7544                                  repeatable, mandatory, hidden)
7545 VALUES (1, 'biblio', '563', 'a', $$Binding note$$,
7546 FALSE, FALSE, FALSE);
7547 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7548                                  repeatable, mandatory, hidden)
7549 VALUES (1, 'biblio', '563', 'u', $$Uniform Resource Identifier$$,
7550 TRUE, FALSE, FALSE);
7551 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7552                                  repeatable, mandatory, hidden)
7553 VALUES (1, 'biblio', '563', '3', $$Materials specified$$,
7554 FALSE, FALSE, FALSE);
7555 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7556                                  repeatable, mandatory, hidden)
7557 VALUES (1, 'biblio', '563', '5', $$Institution to which field applies$$,
7558 FALSE, FALSE, FALSE);
7559 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7560                                  repeatable, mandatory, hidden)
7561 VALUES (1, 'biblio', '563', '6', $$Linkage$$,
7562 FALSE, FALSE, FALSE);
7563 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7564                                  repeatable, mandatory, hidden)
7565 VALUES (1, 'biblio', '563', '8', $$Field link and sequence number$$,
7566 TRUE, FALSE, FALSE);
7567 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
7568                               fixed_field, repeatable, mandatory, hidden)
7569 VALUES (1, 'biblio', '565', $$Case File Characteristics Note$$, $$Information about the content and characteristics of case files and/or the number of cases or variables making up a case file or a database.$$,
7570 FALSE, TRUE, FALSE, FALSE);
7571 INSERT INTO config.record_attr_definition(name, label)
7572 VALUES ('marc21_biblio_565_ind_1', 'MARC 21 biblio field 565 indicator position 1');
7573 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7574 VALUES ('marc21_biblio_565_ind_1', '#', $$File size$$, FALSE, TRUE);
7575 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7576 VALUES ('marc21_biblio_565_ind_1', '0', $$Case file characteristics$$, FALSE, TRUE);
7577 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7578 VALUES ('marc21_biblio_565_ind_1', '8', $$No display constant generated$$, FALSE, TRUE);
7579 INSERT INTO config.record_attr_definition(name, label)
7580 VALUES ('marc21_biblio_565_ind_2', 'MARC 21 biblio field 565 indicator position 2');
7581 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7582 VALUES ('marc21_biblio_565_ind_2', '#', $$Undefined$$, FALSE, TRUE);
7583 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7584                                  repeatable, mandatory, hidden)
7585 VALUES (1, 'biblio', '565', 'a', $$Number of cases/variables$$,
7586 FALSE, FALSE, FALSE);
7587 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7588                                  repeatable, mandatory, hidden)
7589 VALUES (1, 'biblio', '565', 'b', $$Name of variable$$,
7590 TRUE, FALSE, FALSE);
7591 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7592                                  repeatable, mandatory, hidden)
7593 VALUES (1, 'biblio', '565', 'c', $$Unit of analysis$$,
7594 TRUE, FALSE, FALSE);
7595 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7596                                  repeatable, mandatory, hidden)
7597 VALUES (1, 'biblio', '565', 'd', $$Universe of data$$,
7598 TRUE, FALSE, FALSE);
7599 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7600                                  repeatable, mandatory, hidden)
7601 VALUES (1, 'biblio', '565', 'e', $$Filing scheme or code$$,
7602 TRUE, FALSE, FALSE);
7603 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7604                                  repeatable, mandatory, hidden)
7605 VALUES (1, 'biblio', '565', '3', $$Materials specified$$,
7606 FALSE, FALSE, FALSE);
7607 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7608                                  repeatable, mandatory, hidden)
7609 VALUES (1, 'biblio', '565', '6', $$Linkage$$,
7610 FALSE, FALSE, FALSE);
7611 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7612                                  repeatable, mandatory, hidden)
7613 VALUES (1, 'biblio', '565', '8', $$Field link and sequence number$$,
7614 TRUE, FALSE, FALSE);
7615 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
7616                               fixed_field, repeatable, mandatory, hidden)
7617 VALUES (1, 'biblio', '567', $$Methodology Note$$, $$Information concerning significant methodological characteristics of the material, such as the algorithm, universe description, sampling procedures, classification, or validation characteristics.$$,
7618 FALSE, TRUE, FALSE, FALSE);
7619 INSERT INTO config.record_attr_definition(name, label)
7620 VALUES ('marc21_biblio_567_ind_1', 'MARC 21 biblio field 567 indicator position 1');
7621 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7622 VALUES ('marc21_biblio_567_ind_1', '#', $$Methodology$$, FALSE, TRUE);
7623 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7624 VALUES ('marc21_biblio_567_ind_1', '8', $$No display constant generated$$, FALSE, TRUE);
7625 INSERT INTO config.record_attr_definition(name, label)
7626 VALUES ('marc21_biblio_567_ind_2', 'MARC 21 biblio field 567 indicator position 2');
7627 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7628 VALUES ('marc21_biblio_567_ind_2', '#', $$Undefined$$, FALSE, TRUE);
7629 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7630                                  repeatable, mandatory, hidden)
7631 VALUES (1, 'biblio', '567', 'a', $$Methodology note$$,
7632 FALSE, FALSE, FALSE);
7633 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7634                                  repeatable, mandatory, hidden)
7635 VALUES (1, 'biblio', '567', '6', $$Linkage$$,
7636 FALSE, FALSE, FALSE);
7637 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7638                                  repeatable, mandatory, hidden)
7639 VALUES (1, 'biblio', '567', '8', $$Field link and sequence number$$,
7640 TRUE, FALSE, FALSE);
7641 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
7642                               fixed_field, repeatable, mandatory, hidden)
7643 VALUES (1, 'biblio', '580', $$Linking Entry Complexity Note$$, $$Description of the complex relationship between the item described in the record and other items that cannot be adequately generated from the linking entry fields 760-787.$$,
7644 FALSE, TRUE, FALSE, FALSE);
7645 INSERT INTO config.record_attr_definition(name, label)
7646 VALUES ('marc21_biblio_580_ind_1', 'MARC 21 biblio field 580 indicator position 1');
7647 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7648 VALUES ('marc21_biblio_580_ind_1', '#', $$Undefined$$, FALSE, TRUE);
7649 INSERT INTO config.record_attr_definition(name, label)
7650 VALUES ('marc21_biblio_580_ind_2', 'MARC 21 biblio field 580 indicator position 2');
7651 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7652 VALUES ('marc21_biblio_580_ind_2', '#', $$Undefined$$, FALSE, TRUE);
7653 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7654                                  repeatable, mandatory, hidden)
7655 VALUES (1, 'biblio', '580', 'a', $$Linking entry complexity note$$,
7656 FALSE, FALSE, FALSE);
7657 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7658                                  repeatable, mandatory, hidden)
7659 VALUES (1, 'biblio', '580', '6', $$Linkage$$,
7660 FALSE, FALSE, FALSE);
7661 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7662                                  repeatable, mandatory, hidden)
7663 VALUES (1, 'biblio', '580', '8', $$Field link and sequence number$$,
7664 TRUE, FALSE, FALSE);
7665 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
7666                               fixed_field, repeatable, mandatory, hidden)
7667 VALUES (1, 'biblio', '581', $$Publications About Described Materials Note$$, $$Citation or information about a publication that is based on the use, study, or analysis of the materials described in the record.$$,
7668 FALSE, TRUE, FALSE, FALSE);
7669 INSERT INTO config.record_attr_definition(name, label)
7670 VALUES ('marc21_biblio_581_ind_1', 'MARC 21 biblio field 581 indicator position 1');
7671 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7672 VALUES ('marc21_biblio_581_ind_1', '#', $$Publications$$, FALSE, TRUE);
7673 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7674 VALUES ('marc21_biblio_581_ind_1', '8', $$No display constant generated$$, FALSE, TRUE);
7675 INSERT INTO config.record_attr_definition(name, label)
7676 VALUES ('marc21_biblio_581_ind_2', 'MARC 21 biblio field 581 indicator position 2');
7677 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7678 VALUES ('marc21_biblio_581_ind_2', '#', $$Undefined$$, FALSE, TRUE);
7679 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7680                                  repeatable, mandatory, hidden)
7681 VALUES (1, 'biblio', '581', 'a', $$Publications about described materials note$$,
7682 FALSE, FALSE, FALSE);
7683 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7684                                  repeatable, mandatory, hidden)
7685 VALUES (1, 'biblio', '581', 'z', $$International Standard Book Number$$,
7686 TRUE, FALSE, FALSE);
7687 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7688                                  repeatable, mandatory, hidden)
7689 VALUES (1, 'biblio', '581', '3', $$Materials specified$$,
7690 FALSE, FALSE, FALSE);
7691 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7692                                  repeatable, mandatory, hidden)
7693 VALUES (1, 'biblio', '581', '6', $$Linkage$$,
7694 FALSE, FALSE, FALSE);
7695 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7696                                  repeatable, mandatory, hidden)
7697 VALUES (1, 'biblio', '581', '8', $$Field link and sequence number$$,
7698 TRUE, FALSE, FALSE);
7699 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
7700                               fixed_field, repeatable, mandatory, hidden)
7701 VALUES (1, 'biblio', '583', $$Action Note$$, $$Information about processing, reference, and preservation actions.$$,
7702 FALSE, TRUE, FALSE, FALSE);
7703 INSERT INTO config.record_attr_definition(name, label)
7704 VALUES ('marc21_biblio_583_ind_1', 'MARC 21 biblio field 583 indicator position 1');
7705 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7706 VALUES ('marc21_biblio_583_ind_1', '#', $$No information provided$$, FALSE, TRUE);
7707 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7708 VALUES ('marc21_biblio_583_ind_1', '0', $$Private$$, FALSE, TRUE);
7709 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7710 VALUES ('marc21_biblio_583_ind_1', '1', $$Not private$$, FALSE, TRUE);
7711 INSERT INTO config.record_attr_definition(name, label)
7712 VALUES ('marc21_biblio_583_ind_2', 'MARC 21 biblio field 583 indicator position 2');
7713 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7714 VALUES ('marc21_biblio_583_ind_2', '#', $$Undefined$$, FALSE, TRUE);
7715 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7716                                  repeatable, mandatory, hidden)
7717 VALUES (1, 'biblio', '583', 'a', $$Action$$,
7718 FALSE, FALSE, FALSE);
7719 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7720                                  repeatable, mandatory, hidden)
7721 VALUES (1, 'biblio', '583', 'b', $$Action identification$$,
7722 TRUE, FALSE, FALSE);
7723 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7724                                  repeatable, mandatory, hidden)
7725 VALUES (1, 'biblio', '583', 'c', $$Time/date of action$$,
7726 TRUE, FALSE, FALSE);
7727 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7728                                  repeatable, mandatory, hidden)
7729 VALUES (1, 'biblio', '583', 'd', $$Action interval$$,
7730 TRUE, FALSE, FALSE);
7731 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7732                                  repeatable, mandatory, hidden)
7733 VALUES (1, 'biblio', '583', 'e', $$Contingency for action$$,
7734 TRUE, FALSE, FALSE);
7735 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7736                                  repeatable, mandatory, hidden)
7737 VALUES (1, 'biblio', '583', 'f', $$Authorization$$,
7738 TRUE, FALSE, FALSE);
7739 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7740                                  repeatable, mandatory, hidden)
7741 VALUES (1, 'biblio', '583', 'h', $$Jurisdiction$$,
7742 TRUE, FALSE, FALSE);
7743 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7744                                  repeatable, mandatory, hidden)
7745 VALUES (1, 'biblio', '583', 'i', $$Method of action$$,
7746 TRUE, FALSE, FALSE);
7747 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7748                                  repeatable, mandatory, hidden)
7749 VALUES (1, 'biblio', '583', 'j', $$Site of action$$,
7750 TRUE, FALSE, FALSE);
7751 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7752                                  repeatable, mandatory, hidden)
7753 VALUES (1, 'biblio', '583', 'k', $$Action agent$$,
7754 TRUE, FALSE, FALSE);
7755 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7756                                  repeatable, mandatory, hidden)
7757 VALUES (1, 'biblio', '583', 'l', $$Status$$,
7758 TRUE, FALSE, FALSE);
7759 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7760                                  repeatable, mandatory, hidden)
7761 VALUES (1, 'biblio', '583', 'n', $$Extent$$,
7762 TRUE, FALSE, FALSE);
7763 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7764                                  repeatable, mandatory, hidden)
7765 VALUES (1, 'biblio', '583', 'o', $$Type of unit$$,
7766 TRUE, FALSE, FALSE);
7767 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7768                                  repeatable, mandatory, hidden)
7769 VALUES (1, 'biblio', '583', 'u', $$Uniform Resource Identifier$$,
7770 TRUE, FALSE, FALSE);
7771 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7772                                  repeatable, mandatory, hidden)
7773 VALUES (1, 'biblio', '583', 'x', $$Nonpublic note$$,
7774 TRUE, FALSE, FALSE);
7775 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7776                                  repeatable, mandatory, hidden)
7777 VALUES (1, 'biblio', '583', 'z', $$Public note$$,
7778 TRUE, FALSE, FALSE);
7779 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7780                                  repeatable, mandatory, hidden)
7781 VALUES (1, 'biblio', '583', '2', $$Source of term$$,
7782 FALSE, FALSE, FALSE);
7783 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7784                                  repeatable, mandatory, hidden)
7785 VALUES (1, 'biblio', '583', '3', $$Materials specified$$,
7786 FALSE, FALSE, FALSE);
7787 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7788                                  repeatable, mandatory, hidden)
7789 VALUES (1, 'biblio', '583', '5', $$Institution to which field applies$$,
7790 FALSE, FALSE, FALSE);
7791 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7792                                  repeatable, mandatory, hidden)
7793 VALUES (1, 'biblio', '583', '6', $$Linkage$$,
7794 FALSE, FALSE, FALSE);
7795 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7796                                  repeatable, mandatory, hidden)
7797 VALUES (1, 'biblio', '583', '8', $$Field link and sequence number$$,
7798 TRUE, FALSE, FALSE);
7799 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
7800                               fixed_field, repeatable, mandatory, hidden)
7801 VALUES (1, 'biblio', '584', $$Accumulation and Frequency of Use Note$$, $$Measurements of and information about the rates of accumulation (for continuing, open-ended accessions) and/or the rate of reference use of the described materials.$$,
7802 FALSE, TRUE, FALSE, FALSE);
7803 INSERT INTO config.record_attr_definition(name, label)
7804 VALUES ('marc21_biblio_584_ind_1', 'MARC 21 biblio field 584 indicator position 1');
7805 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7806 VALUES ('marc21_biblio_584_ind_1', '#', $$Undefined$$, FALSE, TRUE);
7807 INSERT INTO config.record_attr_definition(name, label)
7808 VALUES ('marc21_biblio_584_ind_2', 'MARC 21 biblio field 584 indicator position 2');
7809 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7810 VALUES ('marc21_biblio_584_ind_2', '#', $$Undefined$$, FALSE, TRUE);
7811 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7812                                  repeatable, mandatory, hidden)
7813 VALUES (1, 'biblio', '584', 'a', $$Accumulation$$,
7814 TRUE, FALSE, FALSE);
7815 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7816                                  repeatable, mandatory, hidden)
7817 VALUES (1, 'biblio', '584', 'b', $$Frequency of use$$,
7818 TRUE, FALSE, FALSE);
7819 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7820                                  repeatable, mandatory, hidden)
7821 VALUES (1, 'biblio', '584', '3', $$Materials specified$$,
7822 FALSE, FALSE, FALSE);
7823 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7824                                  repeatable, mandatory, hidden)
7825 VALUES (1, 'biblio', '584', '5', $$Institution to which field applies$$,
7826 FALSE, FALSE, FALSE);
7827 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7828                                  repeatable, mandatory, hidden)
7829 VALUES (1, 'biblio', '584', '6', $$Linkage$$,
7830 FALSE, FALSE, FALSE);
7831 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7832                                  repeatable, mandatory, hidden)
7833 VALUES (1, 'biblio', '584', '8', $$Field link and sequence number$$,
7834 TRUE, FALSE, FALSE);
7835 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
7836                               fixed_field, repeatable, mandatory, hidden)
7837 VALUES (1, 'biblio', '585', $$Exhibitions Note$$, $$Copy-specific field that contains a note which cites exhibitions where the material described has been shown.$$,
7838 FALSE, TRUE, FALSE, FALSE);
7839 INSERT INTO config.record_attr_definition(name, label)
7840 VALUES ('marc21_biblio_585_ind_1', 'MARC 21 biblio field 585 indicator position 1');
7841 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7842 VALUES ('marc21_biblio_585_ind_1', '#', $$Undefined$$, FALSE, TRUE);
7843 INSERT INTO config.record_attr_definition(name, label)
7844 VALUES ('marc21_biblio_585_ind_2', 'MARC 21 biblio field 585 indicator position 2');
7845 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7846 VALUES ('marc21_biblio_585_ind_2', '#', $$Undefined$$, FALSE, TRUE);
7847 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7848                                  repeatable, mandatory, hidden)
7849 VALUES (1, 'biblio', '585', 'a', $$Exhibitions note$$,
7850 FALSE, FALSE, FALSE);
7851 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7852                                  repeatable, mandatory, hidden)
7853 VALUES (1, 'biblio', '585', '3', $$Materials specified$$,
7854 FALSE, FALSE, FALSE);
7855 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7856                                  repeatable, mandatory, hidden)
7857 VALUES (1, 'biblio', '585', '5', $$Institution to which field applies$$,
7858 FALSE, FALSE, FALSE);
7859 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7860                                  repeatable, mandatory, hidden)
7861 VALUES (1, 'biblio', '585', '6', $$Linkage$$,
7862 FALSE, FALSE, FALSE);
7863 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7864                                  repeatable, mandatory, hidden)
7865 VALUES (1, 'biblio', '585', '8', $$Field link and sequence number$$,
7866 TRUE, FALSE, FALSE);
7867 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
7868                               fixed_field, repeatable, mandatory, hidden)
7869 VALUES (1, 'biblio', '586', $$Awards Note$$, $$Information on awards associated with the described item.$$,
7870 FALSE, TRUE, FALSE, FALSE);
7871 INSERT INTO config.record_attr_definition(name, label)
7872 VALUES ('marc21_biblio_586_ind_1', 'MARC 21 biblio field 586 indicator position 1');
7873 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7874 VALUES ('marc21_biblio_586_ind_1', '#', $$Awards$$, FALSE, TRUE);
7875 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7876 VALUES ('marc21_biblio_586_ind_1', '8', $$No display constant generated$$, FALSE, TRUE);
7877 INSERT INTO config.record_attr_definition(name, label)
7878 VALUES ('marc21_biblio_586_ind_2', 'MARC 21 biblio field 586 indicator position 2');
7879 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7880 VALUES ('marc21_biblio_586_ind_2', '#', $$Undefined$$, FALSE, TRUE);
7881 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7882                                  repeatable, mandatory, hidden)
7883 VALUES (1, 'biblio', '586', 'a', $$Awards note$$,
7884 FALSE, FALSE, FALSE);
7885 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7886                                  repeatable, mandatory, hidden)
7887 VALUES (1, 'biblio', '586', '3', $$Materials specified$$,
7888 FALSE, FALSE, FALSE);
7889 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7890                                  repeatable, mandatory, hidden)
7891 VALUES (1, 'biblio', '586', '6', $$Linkage$$,
7892 FALSE, FALSE, FALSE);
7893 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7894                                  repeatable, mandatory, hidden)
7895 VALUES (1, 'biblio', '586', '8', $$Field link and sequence number$$,
7896 TRUE, FALSE, FALSE);
7897 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
7898                               fixed_field, repeatable, mandatory, hidden)
7899 VALUES (1, 'biblio', '588', $$Source of Description Note$$, $$Information used for tracking and controlling the metadata contained in the record. It includes general and specific source of description notes that are especially of interest to other catalogers.$$,
7900 FALSE, TRUE, FALSE, FALSE);
7901 INSERT INTO config.record_attr_definition(name, label)
7902 VALUES ('marc21_biblio_588_ind_1', 'MARC 21 biblio field 588 indicator position 1');
7903 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7904 VALUES ('marc21_biblio_588_ind_1', '#', $$Undefined$$, FALSE, TRUE);
7905 INSERT INTO config.record_attr_definition(name, label)
7906 VALUES ('marc21_biblio_588_ind_2', 'MARC 21 biblio field 588 indicator position 2');
7907 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7908 VALUES ('marc21_biblio_588_ind_2', '#', $$Undefined$$, FALSE, TRUE);
7909 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7910                                  repeatable, mandatory, hidden)
7911 VALUES (1, 'biblio', '588', 'a', $$Source of description note$$,
7912 FALSE, FALSE, FALSE);
7913 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7914                                  repeatable, mandatory, hidden)
7915 VALUES (1, 'biblio', '588', '5', $$Institution to which field applies$$,
7916 FALSE, FALSE, FALSE);
7917 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7918                                  repeatable, mandatory, hidden)
7919 VALUES (1, 'biblio', '588', '6', $$Linkage$$,
7920 FALSE, FALSE, FALSE);
7921 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7922                                  repeatable, mandatory, hidden)
7923 VALUES (1, 'biblio', '588', '8', $$Field link and sequence number$$,
7924 TRUE, FALSE, FALSE);
7925 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
7926                               fixed_field, repeatable, mandatory, hidden)
7927 VALUES (1, 'biblio', '600', $$Subject Added Entry-Personal Name$$, $$Subject added entry in which the entry element is a personal name.$$,
7928 FALSE, TRUE, FALSE, FALSE);
7929 INSERT INTO config.record_attr_definition(name, label)
7930 VALUES ('marc21_biblio_600_ind_1', 'MARC 21 biblio field 600 indicator position 1');
7931 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7932 VALUES ('marc21_biblio_600_ind_1', '0', $$Forename$$, FALSE, TRUE);
7933 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7934 VALUES ('marc21_biblio_600_ind_1', '1', $$Surname$$, FALSE, TRUE);
7935 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7936 VALUES ('marc21_biblio_600_ind_1', '3', $$Family name$$, FALSE, TRUE);
7937 INSERT INTO config.record_attr_definition(name, label)
7938 VALUES ('marc21_biblio_600_ind_2', 'MARC 21 biblio field 600 indicator position 2');
7939 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7940 VALUES ('marc21_biblio_600_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE);
7941 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7942 VALUES ('marc21_biblio_600_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE);
7943 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7944 VALUES ('marc21_biblio_600_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE);
7945 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7946 VALUES ('marc21_biblio_600_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE);
7947 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7948 VALUES ('marc21_biblio_600_ind_2', '4', $$Source not specified$$, FALSE, TRUE);
7949 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7950 VALUES ('marc21_biblio_600_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE);
7951 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7952 VALUES ('marc21_biblio_600_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE);
7953 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
7954 VALUES ('marc21_biblio_600_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
7955 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7956                                  repeatable, mandatory, hidden)
7957 VALUES (1, 'biblio', '600', 'a', $$Personal name$$,
7958 FALSE, FALSE, FALSE);
7959 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7960                                  repeatable, mandatory, hidden)
7961 VALUES (1, 'biblio', '600', 'b', $$Numeration$$,
7962 FALSE, FALSE, FALSE);
7963 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7964                                  repeatable, mandatory, hidden)
7965 VALUES (1, 'biblio', '600', 'c', $$Titles and other words associated with a name$$,
7966 TRUE, FALSE, FALSE);
7967 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7968                                  repeatable, mandatory, hidden)
7969 VALUES (1, 'biblio', '600', 'd', $$Dates associated with a name$$,
7970 FALSE, FALSE, FALSE);
7971 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7972                                  repeatable, mandatory, hidden)
7973 VALUES (1, 'biblio', '600', 'e', $$Relator term$$,
7974 TRUE, FALSE, FALSE);
7975 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7976                                  repeatable, mandatory, hidden)
7977 VALUES (1, 'biblio', '600', 'f', $$Date of a work$$,
7978 FALSE, FALSE, FALSE);
7979 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7980                                  repeatable, mandatory, hidden)
7981 VALUES (1, 'biblio', '600', 'g', $$Miscellaneous information$$,
7982 FALSE, FALSE, FALSE);
7983 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7984                                  repeatable, mandatory, hidden)
7985 VALUES (1, 'biblio', '600', 'h', $$Medium$$,
7986 FALSE, FALSE, FALSE);
7987 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7988                                  repeatable, mandatory, hidden)
7989 VALUES (1, 'biblio', '600', 'j', $$Attribution qualifier$$,
7990 TRUE, FALSE, FALSE);
7991 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7992                                  repeatable, mandatory, hidden)
7993 VALUES (1, 'biblio', '600', 'k', $$Form subheading$$,
7994 TRUE, FALSE, FALSE);
7995 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
7996                                  repeatable, mandatory, hidden)
7997 VALUES (1, 'biblio', '600', 'l', $$Language of a work$$,
7998 FALSE, FALSE, FALSE);
7999 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8000                                  repeatable, mandatory, hidden)
8001 VALUES (1, 'biblio', '600', 'm', $$Medium of performance for music$$,
8002 TRUE, FALSE, FALSE);
8003 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8004                                  repeatable, mandatory, hidden)
8005 VALUES (1, 'biblio', '600', 'n', $$Number of part/section of a work$$,
8006 TRUE, FALSE, FALSE);
8007 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8008                                  repeatable, mandatory, hidden)
8009 VALUES (1, 'biblio', '600', 'o', $$Arranged statement for music$$,
8010 FALSE, FALSE, FALSE);
8011 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8012                                  repeatable, mandatory, hidden)
8013 VALUES (1, 'biblio', '600', 'p', $$Name of part/section of a work$$,
8014 TRUE, FALSE, FALSE);
8015 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8016                                  repeatable, mandatory, hidden)
8017 VALUES (1, 'biblio', '600', 'q', $$Fuller form of name$$,
8018 FALSE, FALSE, FALSE);
8019 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8020                                  repeatable, mandatory, hidden)
8021 VALUES (1, 'biblio', '600', 'r', $$Key for music$$,
8022 FALSE, FALSE, FALSE);
8023 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8024                                  repeatable, mandatory, hidden)
8025 VALUES (1, 'biblio', '600', 's', $$Version$$,
8026 FALSE, FALSE, FALSE);
8027 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8028                                  repeatable, mandatory, hidden)
8029 VALUES (1, 'biblio', '600', 't', $$Title of a work$$,
8030 FALSE, FALSE, FALSE);
8031 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8032                                  repeatable, mandatory, hidden)
8033 VALUES (1, 'biblio', '600', 'u', $$Affiliation$$,
8034 FALSE, FALSE, FALSE);
8035 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8036                                  repeatable, mandatory, hidden)
8037 VALUES (1, 'biblio', '600', 'v', $$Form subdivision$$,
8038 TRUE, FALSE, FALSE);
8039 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8040                                  repeatable, mandatory, hidden)
8041 VALUES (1, 'biblio', '600', 'x', $$General subdivision$$,
8042 TRUE, FALSE, FALSE);
8043 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8044                                  repeatable, mandatory, hidden)
8045 VALUES (1, 'biblio', '600', 'y', $$Chronological subdivision$$,
8046 TRUE, FALSE, FALSE);
8047 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8048                                  repeatable, mandatory, hidden)
8049 VALUES (1, 'biblio', '600', 'z', $$Geographic subdivision$$,
8050 TRUE, FALSE, FALSE);
8051 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8052                                  repeatable, mandatory, hidden)
8053 VALUES (1, 'biblio', '600', '0', $$Authority record control number$$,
8054 TRUE, FALSE, FALSE);
8055 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8056                                  repeatable, mandatory, hidden)
8057 VALUES (1, 'biblio', '600', '2', $$Source of heading or term$$,
8058 FALSE, FALSE, FALSE);
8059 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8060                                  repeatable, mandatory, hidden)
8061 VALUES (1, 'biblio', '600', '3', $$Materials specified$$,
8062 FALSE, FALSE, FALSE);
8063 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8064                                  repeatable, mandatory, hidden)
8065 VALUES (1, 'biblio', '600', '4', $$Relator code$$,
8066 TRUE, FALSE, FALSE);
8067 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8068                                  repeatable, mandatory, hidden)
8069 VALUES (1, 'biblio', '600', '6', $$Linkage$$,
8070 FALSE, FALSE, FALSE);
8071 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8072                                  repeatable, mandatory, hidden)
8073 VALUES (1, 'biblio', '600', '8', $$Field link and sequence number$$,
8074 TRUE, FALSE, FALSE);
8075 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
8076                               fixed_field, repeatable, mandatory, hidden)
8077 VALUES (1, 'biblio', '610', $$Subject Added Entry-Corporate Name$$, $$Subject added entry in which the entry element is a corporate name.$$,
8078 FALSE, TRUE, FALSE, FALSE);
8079 INSERT INTO config.record_attr_definition(name, label)
8080 VALUES ('marc21_biblio_610_ind_1', 'MARC 21 biblio field 610 indicator position 1');
8081 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8082 VALUES ('marc21_biblio_610_ind_1', '0', $$Inverted name$$, FALSE, TRUE);
8083 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8084 VALUES ('marc21_biblio_610_ind_1', '1', $$Jurisdiction name$$, FALSE, TRUE);
8085 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8086 VALUES ('marc21_biblio_610_ind_1', '2', $$Name in direct order$$, FALSE, TRUE);
8087 INSERT INTO config.record_attr_definition(name, label)
8088 VALUES ('marc21_biblio_610_ind_2', 'MARC 21 biblio field 610 indicator position 2');
8089 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8090 VALUES ('marc21_biblio_610_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE);
8091 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8092 VALUES ('marc21_biblio_610_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE);
8093 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8094 VALUES ('marc21_biblio_610_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE);
8095 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8096 VALUES ('marc21_biblio_610_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE);
8097 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8098 VALUES ('marc21_biblio_610_ind_2', '4', $$Source not specified$$, FALSE, TRUE);
8099 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8100 VALUES ('marc21_biblio_610_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE);
8101 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8102 VALUES ('marc21_biblio_610_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE);
8103 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8104 VALUES ('marc21_biblio_610_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
8105 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8106                                  repeatable, mandatory, hidden)
8107 VALUES (1, 'biblio', '610', 'a', $$Corporate name or jurisdiction name as entry element$$,
8108 FALSE, FALSE, FALSE);
8109 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8110                                  repeatable, mandatory, hidden)
8111 VALUES (1, 'biblio', '610', 'b', $$Subordinate unit$$,
8112 TRUE, FALSE, FALSE);
8113 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8114                                  repeatable, mandatory, hidden)
8115 VALUES (1, 'biblio', '610', 'c', $$Location of meeting$$,
8116 FALSE, FALSE, FALSE);
8117 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8118                                  repeatable, mandatory, hidden)
8119 VALUES (1, 'biblio', '610', 'd', $$Date of meeting or treaty signing$$,
8120 TRUE, FALSE, FALSE);
8121 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8122                                  repeatable, mandatory, hidden)
8123 VALUES (1, 'biblio', '610', 'e', $$Relator term$$,
8124 TRUE, FALSE, FALSE);
8125 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8126                                  repeatable, mandatory, hidden)
8127 VALUES (1, 'biblio', '610', 'f', $$Date of a work$$,
8128 FALSE, FALSE, FALSE);
8129 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8130                                  repeatable, mandatory, hidden)
8131 VALUES (1, 'biblio', '610', 'g', $$Miscellaneous information$$,
8132 FALSE, FALSE, FALSE);
8133 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8134                                  repeatable, mandatory, hidden)
8135 VALUES (1, 'biblio', '610', 'h', $$Medium$$,
8136 FALSE, FALSE, FALSE);
8137 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8138                                  repeatable, mandatory, hidden)
8139 VALUES (1, 'biblio', '610', 'k', $$Form subheading$$,
8140 TRUE, FALSE, FALSE);
8141 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8142                                  repeatable, mandatory, hidden)
8143 VALUES (1, 'biblio', '610', 'l', $$Language of a work$$,
8144 FALSE, FALSE, FALSE);
8145 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8146                                  repeatable, mandatory, hidden)
8147 VALUES (1, 'biblio', '610', 'm', $$Medium of performance for music$$,
8148 TRUE, FALSE, FALSE);
8149 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8150                                  repeatable, mandatory, hidden)
8151 VALUES (1, 'biblio', '610', 'n', $$Number of part/section/meeting$$,
8152 TRUE, FALSE, FALSE);
8153 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8154                                  repeatable, mandatory, hidden)
8155 VALUES (1, 'biblio', '610', 'o', $$Arranged statement for music$$,
8156 FALSE, FALSE, FALSE);
8157 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8158                                  repeatable, mandatory, hidden)
8159 VALUES (1, 'biblio', '610', 'p', $$Name of part/section of a work$$,
8160 TRUE, FALSE, FALSE);
8161 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8162                                  repeatable, mandatory, hidden)
8163 VALUES (1, 'biblio', '610', 'r', $$Key for music$$,
8164 FALSE, FALSE, FALSE);
8165 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8166                                  repeatable, mandatory, hidden)
8167 VALUES (1, 'biblio', '610', 's', $$Version$$,
8168 FALSE, FALSE, FALSE);
8169 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8170                                  repeatable, mandatory, hidden)
8171 VALUES (1, 'biblio', '610', 't', $$Title of a work$$,
8172 FALSE, FALSE, FALSE);
8173 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8174                                  repeatable, mandatory, hidden)
8175 VALUES (1, 'biblio', '610', 'u', $$Affiliation$$,
8176 FALSE, FALSE, FALSE);
8177 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8178                                  repeatable, mandatory, hidden)
8179 VALUES (1, 'biblio', '610', 'v', $$Form subdivision$$,
8180 TRUE, FALSE, FALSE);
8181 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8182                                  repeatable, mandatory, hidden)
8183 VALUES (1, 'biblio', '610', 'x', $$General subdivision$$,
8184 TRUE, FALSE, FALSE);
8185 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8186                                  repeatable, mandatory, hidden)
8187 VALUES (1, 'biblio', '610', 'y', $$Chronological subdivision$$,
8188 TRUE, FALSE, FALSE);
8189 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8190                                  repeatable, mandatory, hidden)
8191 VALUES (1, 'biblio', '610', 'z', $$Geographic subdivision$$,
8192 TRUE, FALSE, FALSE);
8193 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8194                                  repeatable, mandatory, hidden)
8195 VALUES (1, 'biblio', '610', '0', $$Authority record control number$$,
8196 TRUE, FALSE, FALSE);
8197 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8198                                  repeatable, mandatory, hidden)
8199 VALUES (1, 'biblio', '610', '2', $$Source of heading or term$$,
8200 FALSE, FALSE, FALSE);
8201 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8202                                  repeatable, mandatory, hidden)
8203 VALUES (1, 'biblio', '610', '3', $$Materials specified$$,
8204 FALSE, FALSE, FALSE);
8205 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8206                                  repeatable, mandatory, hidden)
8207 VALUES (1, 'biblio', '610', '4', $$Relator code$$,
8208 TRUE, FALSE, FALSE);
8209 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8210                                  repeatable, mandatory, hidden)
8211 VALUES (1, 'biblio', '610', '6', $$Linkage$$,
8212 FALSE, FALSE, FALSE);
8213 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8214                                  repeatable, mandatory, hidden)
8215 VALUES (1, 'biblio', '610', '8', $$Field link and sequence number$$,
8216 TRUE, FALSE, FALSE);
8217 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
8218                               fixed_field, repeatable, mandatory, hidden)
8219 VALUES (1, 'biblio', '611', $$Subject Added Entry-Meeting Name$$, $$Subject added entry in which the entry element is a meeting or conference name.$$,
8220 FALSE, TRUE, FALSE, FALSE);
8221 INSERT INTO config.record_attr_definition(name, label)
8222 VALUES ('marc21_biblio_611_ind_1', 'MARC 21 biblio field 611 indicator position 1');
8223 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8224 VALUES ('marc21_biblio_611_ind_1', '0', $$Inverted name$$, FALSE, TRUE);
8225 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8226 VALUES ('marc21_biblio_611_ind_1', '1', $$Jurisdiction name$$, FALSE, TRUE);
8227 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8228 VALUES ('marc21_biblio_611_ind_1', '2', $$Name in direct order$$, FALSE, TRUE);
8229 INSERT INTO config.record_attr_definition(name, label)
8230 VALUES ('marc21_biblio_611_ind_2', 'MARC 21 biblio field 611 indicator position 2');
8231 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8232 VALUES ('marc21_biblio_611_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE);
8233 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8234 VALUES ('marc21_biblio_611_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE);
8235 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8236 VALUES ('marc21_biblio_611_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE);
8237 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8238 VALUES ('marc21_biblio_611_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE);
8239 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8240 VALUES ('marc21_biblio_611_ind_2', '4', $$Source not specified$$, FALSE, TRUE);
8241 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8242 VALUES ('marc21_biblio_611_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE);
8243 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8244 VALUES ('marc21_biblio_611_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE);
8245 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8246 VALUES ('marc21_biblio_611_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
8247 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8248                                  repeatable, mandatory, hidden)
8249 VALUES (1, 'biblio', '611', 'a', $$Meeting name or jurisdiction name as entry element$$,
8250 FALSE, FALSE, FALSE);
8251 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8252                                  repeatable, mandatory, hidden)
8253 VALUES (1, 'biblio', '611', 'c', $$Location of meeting$$,
8254 FALSE, FALSE, FALSE);
8255 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8256                                  repeatable, mandatory, hidden)
8257 VALUES (1, 'biblio', '611', 'd', $$Date of meeting$$,
8258 FALSE, FALSE, FALSE);
8259 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8260                                  repeatable, mandatory, hidden)
8261 VALUES (1, 'biblio', '611', 'e', $$Subordinate unit$$,
8262 TRUE, FALSE, FALSE);
8263 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8264                                  repeatable, mandatory, hidden)
8265 VALUES (1, 'biblio', '611', 'f', $$Date of a work$$,
8266 FALSE, FALSE, FALSE);
8267 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8268                                  repeatable, mandatory, hidden)
8269 VALUES (1, 'biblio', '611', 'g', $$Miscellaneous information$$,
8270 FALSE, FALSE, FALSE);
8271 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8272                                  repeatable, mandatory, hidden)
8273 VALUES (1, 'biblio', '611', 'h', $$Medium$$,
8274 FALSE, FALSE, FALSE);
8275 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8276                                  repeatable, mandatory, hidden)
8277 VALUES (1, 'biblio', '611', 'j', $$Relator term$$,
8278 TRUE, FALSE, FALSE);
8279 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8280                                  repeatable, mandatory, hidden)
8281 VALUES (1, 'biblio', '611', 'k', $$Form subheading$$,
8282 TRUE, FALSE, FALSE);
8283 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8284                                  repeatable, mandatory, hidden)
8285 VALUES (1, 'biblio', '611', 'l', $$Language of a work$$,
8286 FALSE, FALSE, FALSE);
8287 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8288                                  repeatable, mandatory, hidden)
8289 VALUES (1, 'biblio', '611', 'n', $$Number of part/section/meeting$$,
8290 TRUE, FALSE, FALSE);
8291 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8292                                  repeatable, mandatory, hidden)
8293 VALUES (1, 'biblio', '611', 'p', $$Name of part/section of a work$$,
8294 TRUE, FALSE, FALSE);
8295 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8296                                  repeatable, mandatory, hidden)
8297 VALUES (1, 'biblio', '611', 'q', $$Name of meeting following jurisdiction name entry element$$,
8298 FALSE, FALSE, FALSE);
8299 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8300                                  repeatable, mandatory, hidden)
8301 VALUES (1, 'biblio', '611', 's', $$Version$$,
8302 FALSE, FALSE, FALSE);
8303 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8304                                  repeatable, mandatory, hidden)
8305 VALUES (1, 'biblio', '611', 't', $$Title of a work$$,
8306 FALSE, FALSE, FALSE);
8307 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8308                                  repeatable, mandatory, hidden)
8309 VALUES (1, 'biblio', '611', 'u', $$Affiliation$$,
8310 FALSE, FALSE, FALSE);
8311 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8312                                  repeatable, mandatory, hidden)
8313 VALUES (1, 'biblio', '611', 'v', $$Form subdivision$$,
8314 TRUE, FALSE, FALSE);
8315 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8316                                  repeatable, mandatory, hidden)
8317 VALUES (1, 'biblio', '611', 'x', $$General subdivision$$,
8318 TRUE, FALSE, FALSE);
8319 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8320                                  repeatable, mandatory, hidden)
8321 VALUES (1, 'biblio', '611', 'y', $$Chronological subdivision$$,
8322 TRUE, FALSE, FALSE);
8323 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8324                                  repeatable, mandatory, hidden)
8325 VALUES (1, 'biblio', '611', 'z', $$Geographic subdivision$$,
8326 TRUE, FALSE, FALSE);
8327 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8328                                  repeatable, mandatory, hidden)
8329 VALUES (1, 'biblio', '611', '0', $$Authority record control number$$,
8330 TRUE, FALSE, FALSE);
8331 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8332                                  repeatable, mandatory, hidden)
8333 VALUES (1, 'biblio', '611', '2', $$Source of heading or term$$,
8334 FALSE, FALSE, FALSE);
8335 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8336                                  repeatable, mandatory, hidden)
8337 VALUES (1, 'biblio', '611', '3', $$Materials specified$$,
8338 FALSE, FALSE, FALSE);
8339 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8340                                  repeatable, mandatory, hidden)
8341 VALUES (1, 'biblio', '611', '4', $$Relator code$$,
8342 TRUE, FALSE, FALSE);
8343 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8344                                  repeatable, mandatory, hidden)
8345 VALUES (1, 'biblio', '611', '6', $$Linkage$$,
8346 FALSE, FALSE, FALSE);
8347 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8348                                  repeatable, mandatory, hidden)
8349 VALUES (1, 'biblio', '611', '8', $$Field link and sequence number$$,
8350 TRUE, FALSE, FALSE);
8351 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
8352                               fixed_field, repeatable, mandatory, hidden)
8353 VALUES (1, 'biblio', '630', $$Subject Added Entry-Uniform Title$$, $$Subject added entry in which the entry element is a uniform title.$$,
8354 FALSE, TRUE, FALSE, FALSE);
8355 INSERT INTO config.record_attr_definition(name, label)
8356 VALUES ('marc21_biblio_630_ind_1', 'MARC 21 biblio field 630 indicator position 1');
8357 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8358 VALUES ('marc21_biblio_630_ind_1', '0', $$No nonfiling characters$$, FALSE, TRUE);
8359 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8360 VALUES ('marc21_biblio_630_ind_1', '1', $$Number of nonfiling characters - 1$$, FALSE, TRUE);
8361 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8362 VALUES ('marc21_biblio_630_ind_1', '2', $$Number of nonfiling characters - 2$$, FALSE, TRUE);
8363 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8364 VALUES ('marc21_biblio_630_ind_1', '3', $$Number of nonfiling characters - 3$$, FALSE, TRUE);
8365 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8366 VALUES ('marc21_biblio_630_ind_1', '4', $$Number of nonfiling characters - 4$$, FALSE, TRUE);
8367 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8368 VALUES ('marc21_biblio_630_ind_1', '5', $$Number of nonfiling characters - 5$$, FALSE, TRUE);
8369 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8370 VALUES ('marc21_biblio_630_ind_1', '6', $$Number of nonfiling characters - 6$$, FALSE, TRUE);
8371 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8372 VALUES ('marc21_biblio_630_ind_1', '7', $$Number of nonfiling characters - 7$$, FALSE, TRUE);
8373 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8374 VALUES ('marc21_biblio_630_ind_1', '8', $$Number of nonfiling characters - 8$$, FALSE, TRUE);
8375 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8376 VALUES ('marc21_biblio_630_ind_1', '9', $$Number of nonfiling characters - 9$$, FALSE, TRUE);
8377 INSERT INTO config.record_attr_definition(name, label)
8378 VALUES ('marc21_biblio_630_ind_2', 'MARC 21 biblio field 630 indicator position 2');
8379 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8380 VALUES ('marc21_biblio_630_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE);
8381 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8382 VALUES ('marc21_biblio_630_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE);
8383 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8384 VALUES ('marc21_biblio_630_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE);
8385 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8386 VALUES ('marc21_biblio_630_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE);
8387 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8388 VALUES ('marc21_biblio_630_ind_2', '4', $$Source not specified$$, FALSE, TRUE);
8389 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8390 VALUES ('marc21_biblio_630_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE);
8391 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8392 VALUES ('marc21_biblio_630_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE);
8393 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8394 VALUES ('marc21_biblio_630_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
8395 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8396                                  repeatable, mandatory, hidden)
8397 VALUES (1, 'biblio', '630', 'a', $$Uniform title$$,
8398 FALSE, FALSE, FALSE);
8399 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8400                                  repeatable, mandatory, hidden)
8401 VALUES (1, 'biblio', '630', 'd', $$Date of treaty signing$$,
8402 TRUE, FALSE, FALSE);
8403 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8404                                  repeatable, mandatory, hidden)
8405 VALUES (1, 'biblio', '630', 'e', $$Relator term$$,
8406 TRUE, FALSE, FALSE);
8407 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8408                                  repeatable, mandatory, hidden)
8409 VALUES (1, 'biblio', '630', 'f', $$Date of a work$$,
8410 FALSE, FALSE, FALSE);
8411 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8412                                  repeatable, mandatory, hidden)
8413 VALUES (1, 'biblio', '630', 'g', $$Miscellaneous information$$,
8414 FALSE, FALSE, FALSE);
8415 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8416                                  repeatable, mandatory, hidden)
8417 VALUES (1, 'biblio', '630', 'h', $$Medium$$,
8418 FALSE, FALSE, FALSE);
8419 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8420                                  repeatable, mandatory, hidden)
8421 VALUES (1, 'biblio', '630', 'k', $$Form subheading$$,
8422 TRUE, FALSE, FALSE);
8423 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8424                                  repeatable, mandatory, hidden)
8425 VALUES (1, 'biblio', '630', 'l', $$Language of a work$$,
8426 FALSE, FALSE, FALSE);
8427 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8428                                  repeatable, mandatory, hidden)
8429 VALUES (1, 'biblio', '630', 'm', $$Medium of performance for music$$,
8430 TRUE, FALSE, FALSE);
8431 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8432                                  repeatable, mandatory, hidden)
8433 VALUES (1, 'biblio', '630', 'n', $$Number of part/section of a work$$,
8434 TRUE, FALSE, FALSE);
8435 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8436                                  repeatable, mandatory, hidden)
8437 VALUES (1, 'biblio', '630', 'o', $$Arranged statement for music$$,
8438 FALSE, FALSE, FALSE);
8439 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8440                                  repeatable, mandatory, hidden)
8441 VALUES (1, 'biblio', '630', 'p', $$Name of part/section of a work$$,
8442 TRUE, FALSE, FALSE);
8443 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8444                                  repeatable, mandatory, hidden)
8445 VALUES (1, 'biblio', '630', 'r', $$Key for music$$,
8446 FALSE, FALSE, FALSE);
8447 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8448                                  repeatable, mandatory, hidden)
8449 VALUES (1, 'biblio', '630', 's', $$Version$$,
8450 FALSE, FALSE, FALSE);
8451 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8452                                  repeatable, mandatory, hidden)
8453 VALUES (1, 'biblio', '630', 't', $$Title of a work$$,
8454 FALSE, FALSE, FALSE);
8455 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8456                                  repeatable, mandatory, hidden)
8457 VALUES (1, 'biblio', '630', 'v', $$Form subdivision$$,
8458 TRUE, FALSE, FALSE);
8459 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8460                                  repeatable, mandatory, hidden)
8461 VALUES (1, 'biblio', '630', 'x', $$General subdivision$$,
8462 TRUE, FALSE, FALSE);
8463 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8464                                  repeatable, mandatory, hidden)
8465 VALUES (1, 'biblio', '630', 'y', $$Chronological subdivision$$,
8466 TRUE, FALSE, FALSE);
8467 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8468                                  repeatable, mandatory, hidden)
8469 VALUES (1, 'biblio', '630', 'z', $$Geographic subdivision$$,
8470 TRUE, FALSE, FALSE);
8471 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8472                                  repeatable, mandatory, hidden)
8473 VALUES (1, 'biblio', '630', '0', $$Authority record control number$$,
8474 TRUE, FALSE, FALSE);
8475 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8476                                  repeatable, mandatory, hidden)
8477 VALUES (1, 'biblio', '630', '2', $$Source of heading or term$$,
8478 FALSE, FALSE, FALSE);
8479 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8480                                  repeatable, mandatory, hidden)
8481 VALUES (1, 'biblio', '630', '3', $$Materials specified$$,
8482 FALSE, FALSE, FALSE);
8483 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8484                                  repeatable, mandatory, hidden)
8485 VALUES (1, 'biblio', '630', '4', $$Relator code$$,
8486 TRUE, FALSE, FALSE);
8487 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8488                                  repeatable, mandatory, hidden)
8489 VALUES (1, 'biblio', '630', '6', $$Linkage$$,
8490 FALSE, FALSE, FALSE);
8491 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8492                                  repeatable, mandatory, hidden)
8493 VALUES (1, 'biblio', '630', '8', $$Field link and sequence number$$,
8494 TRUE, FALSE, FALSE);
8495 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
8496                               fixed_field, repeatable, mandatory, hidden)
8497 VALUES (1, 'biblio', '648', $$Subject Added Entry-Chronological Term$$, $$Subject added entry in which the entry element is a chronological term.$$,
8498 FALSE, TRUE, FALSE, FALSE);
8499 INSERT INTO config.record_attr_definition(name, label)
8500 VALUES ('marc21_biblio_648_ind_1', 'MARC 21 biblio field 648 indicator position 1');
8501 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8502 VALUES ('marc21_biblio_648_ind_1', '#', $$Undefined$$, FALSE, TRUE);
8503 INSERT INTO config.record_attr_definition(name, label)
8504 VALUES ('marc21_biblio_648_ind_2', 'MARC 21 biblio field 648 indicator position 2');
8505 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8506 VALUES ('marc21_biblio_648_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE);
8507 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8508 VALUES ('marc21_biblio_648_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE);
8509 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8510 VALUES ('marc21_biblio_648_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE);
8511 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8512 VALUES ('marc21_biblio_648_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE);
8513 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8514 VALUES ('marc21_biblio_648_ind_2', '4', $$Source not specified$$, FALSE, TRUE);
8515 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8516 VALUES ('marc21_biblio_648_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE);
8517 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8518 VALUES ('marc21_biblio_648_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE);
8519 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8520 VALUES ('marc21_biblio_648_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
8521 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8522                                  repeatable, mandatory, hidden)
8523 VALUES (1, 'biblio', '648', 'a', $$Chronological term$$,
8524 FALSE, FALSE, FALSE);
8525 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8526                                  repeatable, mandatory, hidden)
8527 VALUES (1, 'biblio', '648', 'v', $$Form subdivision$$,
8528 TRUE, FALSE, FALSE);
8529 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8530                                  repeatable, mandatory, hidden)
8531 VALUES (1, 'biblio', '648', 'x', $$General subdivision$$,
8532 TRUE, FALSE, FALSE);
8533 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8534                                  repeatable, mandatory, hidden)
8535 VALUES (1, 'biblio', '648', 'y', $$Chronological subdivision$$,
8536 TRUE, FALSE, FALSE);
8537 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8538                                  repeatable, mandatory, hidden)
8539 VALUES (1, 'biblio', '648', 'z', $$Geographic subdivision$$,
8540 TRUE, FALSE, FALSE);
8541 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8542                                  repeatable, mandatory, hidden)
8543 VALUES (1, 'biblio', '648', '0', $$Authority record control number$$,
8544 TRUE, FALSE, FALSE);
8545 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8546                                  repeatable, mandatory, hidden)
8547 VALUES (1, 'biblio', '648', '2', $$Source of heading or term$$,
8548 FALSE, FALSE, FALSE);
8549 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8550                                  repeatable, mandatory, hidden)
8551 VALUES (1, 'biblio', '648', '3', $$Materials specified$$,
8552 FALSE, FALSE, FALSE);
8553 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8554                                  repeatable, mandatory, hidden)
8555 VALUES (1, 'biblio', '648', '6', $$Linkage$$,
8556 FALSE, FALSE, FALSE);
8557 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8558                                  repeatable, mandatory, hidden)
8559 VALUES (1, 'biblio', '648', '8', $$Field link and sequence number$$,
8560 TRUE, FALSE, FALSE);
8561 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
8562                               fixed_field, repeatable, mandatory, hidden)
8563 VALUES (1, 'biblio', '650', $$Subject Added Entry-Topical Term$$, $$Subject added entry in which the entry element is a topical term.$$,
8564 FALSE, TRUE, FALSE, FALSE);
8565 INSERT INTO config.record_attr_definition(name, label)
8566 VALUES ('marc21_biblio_650_ind_1', 'MARC 21 biblio field 650 indicator position 1');
8567 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8568 VALUES ('marc21_biblio_650_ind_1', '#', $$No information provided$$, FALSE, TRUE);
8569 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8570 VALUES ('marc21_biblio_650_ind_1', '0', $$No level specified$$, FALSE, TRUE);
8571 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8572 VALUES ('marc21_biblio_650_ind_1', '1', $$Primary$$, FALSE, TRUE);
8573 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8574 VALUES ('marc21_biblio_650_ind_1', '2', $$Secondary$$, FALSE, TRUE);
8575 INSERT INTO config.record_attr_definition(name, label)
8576 VALUES ('marc21_biblio_650_ind_2', 'MARC 21 biblio field 650 indicator position 2');
8577 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8578 VALUES ('marc21_biblio_650_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE);
8579 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8580 VALUES ('marc21_biblio_650_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE);
8581 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8582 VALUES ('marc21_biblio_650_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE);
8583 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8584 VALUES ('marc21_biblio_650_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE);
8585 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8586 VALUES ('marc21_biblio_650_ind_2', '4', $$Source not specified$$, FALSE, TRUE);
8587 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8588 VALUES ('marc21_biblio_650_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE);
8589 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8590 VALUES ('marc21_biblio_650_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE);
8591 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8592 VALUES ('marc21_biblio_650_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
8593 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8594                                  repeatable, mandatory, hidden)
8595 VALUES (1, 'biblio', '650', 'a', $$Topical term or geographic name entry element$$,
8596 FALSE, FALSE, FALSE);
8597 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8598                                  repeatable, mandatory, hidden)
8599 VALUES (1, 'biblio', '650', 'b', $$Topical term following geographic name entry element$$,
8600 FALSE, FALSE, FALSE);
8601 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8602                                  repeatable, mandatory, hidden)
8603 VALUES (1, 'biblio', '650', 'c', $$Location of event$$,
8604 FALSE, FALSE, FALSE);
8605 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8606                                  repeatable, mandatory, hidden)
8607 VALUES (1, 'biblio', '650', 'd', $$Active dates$$,
8608 FALSE, FALSE, FALSE);
8609 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8610                                  repeatable, mandatory, hidden)
8611 VALUES (1, 'biblio', '650', 'e', $$Relator term$$,
8612 TRUE, FALSE, FALSE);
8613 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8614                                  repeatable, mandatory, hidden)
8615 VALUES (1, 'biblio', '650', 'v', $$Form subdivision$$,
8616 TRUE, FALSE, FALSE);
8617 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8618                                  repeatable, mandatory, hidden)
8619 VALUES (1, 'biblio', '650', 'x', $$General subdivision$$,
8620 TRUE, FALSE, FALSE);
8621 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8622                                  repeatable, mandatory, hidden)
8623 VALUES (1, 'biblio', '650', 'y', $$Chronological subdivision$$,
8624 TRUE, FALSE, FALSE);
8625 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8626                                  repeatable, mandatory, hidden)
8627 VALUES (1, 'biblio', '650', 'z', $$Geographic subdivision$$,
8628 TRUE, FALSE, FALSE);
8629 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8630                                  repeatable, mandatory, hidden)
8631 VALUES (1, 'biblio', '650', '0', $$Authority record control number$$,
8632 TRUE, FALSE, FALSE);
8633 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8634                                  repeatable, mandatory, hidden)
8635 VALUES (1, 'biblio', '650', '2', $$Source of heading or term$$,
8636 FALSE, FALSE, FALSE);
8637 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8638                                  repeatable, mandatory, hidden)
8639 VALUES (1, 'biblio', '650', '3', $$Materials specified$$,
8640 FALSE, FALSE, FALSE);
8641 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8642                                  repeatable, mandatory, hidden)
8643 VALUES (1, 'biblio', '650', '4', $$Relator code$$,
8644 TRUE, FALSE, FALSE);
8645 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8646                                  repeatable, mandatory, hidden)
8647 VALUES (1, 'biblio', '650', '6', $$Linkage$$,
8648 FALSE, FALSE, FALSE);
8649 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8650                                  repeatable, mandatory, hidden)
8651 VALUES (1, 'biblio', '650', '8', $$Field link and sequence number$$,
8652 TRUE, FALSE, FALSE);
8653 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
8654                               fixed_field, repeatable, mandatory, hidden)
8655 VALUES (1, 'biblio', '651', $$Subject Added Entry-Geographic Name$$, $$Subject added entry in which the entry element is a geographic name.$$,
8656 FALSE, TRUE, FALSE, FALSE);
8657 INSERT INTO config.record_attr_definition(name, label)
8658 VALUES ('marc21_biblio_651_ind_1', 'MARC 21 biblio field 651 indicator position 1');
8659 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8660 VALUES ('marc21_biblio_651_ind_1', '#', $$Undefined$$, FALSE, TRUE);
8661 INSERT INTO config.record_attr_definition(name, label)
8662 VALUES ('marc21_biblio_651_ind_2', 'MARC 21 biblio field 651 indicator position 2');
8663 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8664 VALUES ('marc21_biblio_651_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE);
8665 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8666 VALUES ('marc21_biblio_651_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE);
8667 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8668 VALUES ('marc21_biblio_651_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE);
8669 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8670 VALUES ('marc21_biblio_651_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE);
8671 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8672 VALUES ('marc21_biblio_651_ind_2', '4', $$Source not specified$$, FALSE, TRUE);
8673 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8674 VALUES ('marc21_biblio_651_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE);
8675 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8676 VALUES ('marc21_biblio_651_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE);
8677 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8678 VALUES ('marc21_biblio_651_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
8679 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8680                                  repeatable, mandatory, hidden)
8681 VALUES (1, 'biblio', '651', 'a', $$Geographic name$$,
8682 FALSE, FALSE, FALSE);
8683 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8684                                  repeatable, mandatory, hidden)
8685 VALUES (1, 'biblio', '651', 'e', $$Relator term$$,
8686 TRUE, FALSE, FALSE);
8687 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8688                                  repeatable, mandatory, hidden)
8689 VALUES (1, 'biblio', '651', 'v', $$Form subdivision$$,
8690 TRUE, FALSE, FALSE);
8691 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8692                                  repeatable, mandatory, hidden)
8693 VALUES (1, 'biblio', '651', 'x', $$General subdivision$$,
8694 TRUE, FALSE, FALSE);
8695 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8696                                  repeatable, mandatory, hidden)
8697 VALUES (1, 'biblio', '651', 'y', $$Chronological subdivision$$,
8698 TRUE, FALSE, FALSE);
8699 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8700                                  repeatable, mandatory, hidden)
8701 VALUES (1, 'biblio', '651', 'z', $$Geographic subdivision$$,
8702 TRUE, FALSE, FALSE);
8703 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8704                                  repeatable, mandatory, hidden)
8705 VALUES (1, 'biblio', '651', '0', $$Authority record control number$$,
8706 TRUE, FALSE, FALSE);
8707 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8708                                  repeatable, mandatory, hidden)
8709 VALUES (1, 'biblio', '651', '2', $$Source of heading or term$$,
8710 FALSE, FALSE, FALSE);
8711 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8712                                  repeatable, mandatory, hidden)
8713 VALUES (1, 'biblio', '651', '3', $$Materials specified$$,
8714 FALSE, FALSE, FALSE);
8715 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8716                                  repeatable, mandatory, hidden)
8717 VALUES (1, 'biblio', '651', '4', $$Relator code$$,
8718 TRUE, FALSE, FALSE);
8719 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8720                                  repeatable, mandatory, hidden)
8721 VALUES (1, 'biblio', '651', '6', $$Linkage$$,
8722 FALSE, FALSE, FALSE);
8723 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8724                                  repeatable, mandatory, hidden)
8725 VALUES (1, 'biblio', '651', '8', $$Field link and sequence number$$,
8726 TRUE, FALSE, FALSE);
8727 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
8728                               fixed_field, repeatable, mandatory, hidden)
8729 VALUES (1, 'biblio', '653', $$Index Term-Uncontrolled$$, $$Index term added entry that is not constructed by standard subject heading/thesaurus-building conventions.$$,
8730 FALSE, TRUE, FALSE, FALSE);
8731 INSERT INTO config.record_attr_definition(name, label)
8732 VALUES ('marc21_biblio_653_ind_1', 'MARC 21 biblio field 653 indicator position 1');
8733 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8734 VALUES ('marc21_biblio_653_ind_1', '#', $$No information provided$$, FALSE, TRUE);
8735 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8736 VALUES ('marc21_biblio_653_ind_1', '0', $$No level specified$$, FALSE, TRUE);
8737 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8738 VALUES ('marc21_biblio_653_ind_1', '1', $$Primary$$, FALSE, TRUE);
8739 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8740 VALUES ('marc21_biblio_653_ind_1', '2', $$Secondary$$, FALSE, TRUE);
8741 INSERT INTO config.record_attr_definition(name, label)
8742 VALUES ('marc21_biblio_653_ind_2', 'MARC 21 biblio field 653 indicator position 2');
8743 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8744 VALUES ('marc21_biblio_653_ind_2', '#', $$No information provided$$, FALSE, TRUE);
8745 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8746 VALUES ('marc21_biblio_653_ind_2', '0', $$Topical term$$, FALSE, TRUE);
8747 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8748 VALUES ('marc21_biblio_653_ind_2', '1', $$Personal name$$, FALSE, TRUE);
8749 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8750 VALUES ('marc21_biblio_653_ind_2', '2', $$Corporate name$$, FALSE, TRUE);
8751 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8752 VALUES ('marc21_biblio_653_ind_2', '3', $$Meeting name$$, FALSE, TRUE);
8753 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8754 VALUES ('marc21_biblio_653_ind_2', '4', $$Chronological term$$, FALSE, TRUE);
8755 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8756 VALUES ('marc21_biblio_653_ind_2', '5', $$Geographic name$$, FALSE, TRUE);
8757 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8758 VALUES ('marc21_biblio_653_ind_2', '6', $$Genre/form term$$, FALSE, TRUE);
8759 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8760                                  repeatable, mandatory, hidden)
8761 VALUES (1, 'biblio', '653', 'a', $$Uncontrolled term$$,
8762 TRUE, FALSE, FALSE);
8763 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8764                                  repeatable, mandatory, hidden)
8765 VALUES (1, 'biblio', '653', '6', $$Linkage$$,
8766 FALSE, FALSE, FALSE);
8767 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8768                                  repeatable, mandatory, hidden)
8769 VALUES (1, 'biblio', '653', '8', $$Field link and sequence number$$,
8770 TRUE, FALSE, FALSE);
8771 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
8772                               fixed_field, repeatable, mandatory, hidden)
8773 VALUES (1, 'biblio', '654', $$Subject Added Entry-Faceted Topical Terms$$, $$Topical subject constructed from a faceted vocabulary.$$,
8774 FALSE, TRUE, FALSE, FALSE);
8775 INSERT INTO config.record_attr_definition(name, label)
8776 VALUES ('marc21_biblio_654_ind_1', 'MARC 21 biblio field 654 indicator position 1');
8777 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8778 VALUES ('marc21_biblio_654_ind_1', '#', $$No information provided$$, FALSE, TRUE);
8779 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8780 VALUES ('marc21_biblio_654_ind_1', '0', $$No level specified$$, FALSE, TRUE);
8781 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8782 VALUES ('marc21_biblio_654_ind_1', '1', $$Primary$$, FALSE, TRUE);
8783 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8784 VALUES ('marc21_biblio_654_ind_1', '2', $$Secondary$$, FALSE, TRUE);
8785 INSERT INTO config.record_attr_definition(name, label)
8786 VALUES ('marc21_biblio_654_ind_2', 'MARC 21 biblio field 654 indicator position 2');
8787 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8788 VALUES ('marc21_biblio_654_ind_2', '#', $$Undefined$$, FALSE, TRUE);
8789 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8790                                  repeatable, mandatory, hidden)
8791 VALUES (1, 'biblio', '654', 'a', $$Focus term$$,
8792 TRUE, FALSE, FALSE);
8793 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8794                                  repeatable, mandatory, hidden)
8795 VALUES (1, 'biblio', '654', 'b', $$Non-focus term$$,
8796 TRUE, FALSE, FALSE);
8797 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8798                                  repeatable, mandatory, hidden)
8799 VALUES (1, 'biblio', '654', 'c', $$Facet/hierarchy designation$$,
8800 TRUE, FALSE, FALSE);
8801 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8802                                  repeatable, mandatory, hidden)
8803 VALUES (1, 'biblio', '654', 'e', $$Relator term$$,
8804 TRUE, FALSE, FALSE);
8805 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8806                                  repeatable, mandatory, hidden)
8807 VALUES (1, 'biblio', '654', 'v', $$Form subdivision$$,
8808 TRUE, FALSE, FALSE);
8809 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8810                                  repeatable, mandatory, hidden)
8811 VALUES (1, 'biblio', '654', 'y', $$Chronological subdivision$$,
8812 TRUE, FALSE, FALSE);
8813 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8814                                  repeatable, mandatory, hidden)
8815 VALUES (1, 'biblio', '654', 'z', $$Geographic subdivision$$,
8816 TRUE, FALSE, FALSE);
8817 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8818                                  repeatable, mandatory, hidden)
8819 VALUES (1, 'biblio', '654', '0', $$Authority record control number$$,
8820 TRUE, FALSE, FALSE);
8821 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8822                                  repeatable, mandatory, hidden)
8823 VALUES (1, 'biblio', '654', '2', $$Source of heading or term$$,
8824 FALSE, FALSE, FALSE);
8825 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8826                                  repeatable, mandatory, hidden)
8827 VALUES (1, 'biblio', '654', '3', $$Materials specified$$,
8828 FALSE, FALSE, FALSE);
8829 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8830                                  repeatable, mandatory, hidden)
8831 VALUES (1, 'biblio', '654', '4', $$Relator code$$,
8832 TRUE, FALSE, FALSE);
8833 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8834                                  repeatable, mandatory, hidden)
8835 VALUES (1, 'biblio', '654', '6', $$Linkage$$,
8836 FALSE, FALSE, FALSE);
8837 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8838                                  repeatable, mandatory, hidden)
8839 VALUES (1, 'biblio', '654', '8', $$Field link and sequence number$$,
8840 TRUE, FALSE, FALSE);
8841 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
8842                               fixed_field, repeatable, mandatory, hidden)
8843 VALUES (1, 'biblio', '655', $$Index Term-Genre/Form$$, $$Terms indicating the genre, form, and/or physical characteristics of the materials being described. A designates the style or technique of the intellectual content of textual materials or, for graphic materials, aspects such as vantage point, intended purpose, characteristics of the creator, publication status, or method of representation. A designates historically and functionally specific kinds of materials distinguished by their physical character, the subject of their intellectual content, or the order of information within them. terms designate historically and functionally specific kinds of materials as distinguished by an examination of their physical character, subject of their intellectual content, or the order of information with them.$$,
8844 FALSE, TRUE, FALSE, FALSE);
8845 INSERT INTO config.record_attr_definition(name, label)
8846 VALUES ('marc21_biblio_655_ind_1', 'MARC 21 biblio field 655 indicator position 1');
8847 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8848 VALUES ('marc21_biblio_655_ind_1', '#', $$Basic$$, FALSE, TRUE);
8849 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8850 VALUES ('marc21_biblio_655_ind_1', '0', $$Faceted$$, FALSE, TRUE);
8851 INSERT INTO config.record_attr_definition(name, label)
8852 VALUES ('marc21_biblio_655_ind_2', 'MARC 21 biblio field 655 indicator position 2');
8853 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8854 VALUES ('marc21_biblio_655_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE);
8855 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8856 VALUES ('marc21_biblio_655_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE);
8857 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8858 VALUES ('marc21_biblio_655_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE);
8859 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8860 VALUES ('marc21_biblio_655_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE);
8861 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8862 VALUES ('marc21_biblio_655_ind_2', '4', $$Source not specified$$, FALSE, TRUE);
8863 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8864 VALUES ('marc21_biblio_655_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE);
8865 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8866 VALUES ('marc21_biblio_655_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE);
8867 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8868 VALUES ('marc21_biblio_655_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
8869 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8870                                  repeatable, mandatory, hidden)
8871 VALUES (1, 'biblio', '655', 'a', $$Genre/form data or focus term$$,
8872 FALSE, FALSE, FALSE);
8873 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8874                                  repeatable, mandatory, hidden)
8875 VALUES (1, 'biblio', '655', 'b', $$Non-focus term$$,
8876 TRUE, FALSE, FALSE);
8877 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8878                                  repeatable, mandatory, hidden)
8879 VALUES (1, 'biblio', '655', 'c', $$Facet/hierarchy designation$$,
8880 TRUE, FALSE, FALSE);
8881 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8882                                  repeatable, mandatory, hidden)
8883 VALUES (1, 'biblio', '655', 'v', $$Form subdivision$$,
8884 TRUE, FALSE, FALSE);
8885 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8886                                  repeatable, mandatory, hidden)
8887 VALUES (1, 'biblio', '655', 'x', $$General subdivision$$,
8888 TRUE, FALSE, FALSE);
8889 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8890                                  repeatable, mandatory, hidden)
8891 VALUES (1, 'biblio', '655', 'y', $$Chronological subdivision$$,
8892 TRUE, FALSE, FALSE);
8893 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8894                                  repeatable, mandatory, hidden)
8895 VALUES (1, 'biblio', '655', 'z', $$Geographic subdivision$$,
8896 TRUE, FALSE, FALSE);
8897 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8898                                  repeatable, mandatory, hidden)
8899 VALUES (1, 'biblio', '655', '0', $$Authority record control number$$,
8900 TRUE, FALSE, FALSE);
8901 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8902                                  repeatable, mandatory, hidden)
8903 VALUES (1, 'biblio', '655', '2', $$Source of term$$,
8904 FALSE, FALSE, FALSE);
8905 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8906                                  repeatable, mandatory, hidden)
8907 VALUES (1, 'biblio', '655', '3', $$Materials specified$$,
8908 FALSE, FALSE, FALSE);
8909 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8910                                  repeatable, mandatory, hidden)
8911 VALUES (1, 'biblio', '655', '5', $$Institution to which field applies$$,
8912 FALSE, FALSE, FALSE);
8913 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8914                                  repeatable, mandatory, hidden)
8915 VALUES (1, 'biblio', '655', '6', $$Linkage$$,
8916 FALSE, FALSE, FALSE);
8917 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8918                                  repeatable, mandatory, hidden)
8919 VALUES (1, 'biblio', '655', '8', $$Field link and sequence number$$,
8920 TRUE, FALSE, FALSE);
8921 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
8922                               fixed_field, repeatable, mandatory, hidden)
8923 VALUES (1, 'biblio', '656', $$Index Term-Occupation$$, $$Index term that is descriptive of the occupation (including avocation) reflected in the contents of the described materials.$$,
8924 FALSE, TRUE, FALSE, FALSE);
8925 INSERT INTO config.record_attr_definition(name, label)
8926 VALUES ('marc21_biblio_656_ind_1', 'MARC 21 biblio field 656 indicator position 1');
8927 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8928 VALUES ('marc21_biblio_656_ind_1', '#', $$Undefined$$, FALSE, TRUE);
8929 INSERT INTO config.record_attr_definition(name, label)
8930 VALUES ('marc21_biblio_656_ind_2', 'MARC 21 biblio field 656 indicator position 2');
8931 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8932 VALUES ('marc21_biblio_656_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
8933 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8934                                  repeatable, mandatory, hidden)
8935 VALUES (1, 'biblio', '656', 'a', $$Occupation$$,
8936 FALSE, FALSE, FALSE);
8937 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8938                                  repeatable, mandatory, hidden)
8939 VALUES (1, 'biblio', '656', 'k', $$Form$$,
8940 FALSE, FALSE, FALSE);
8941 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8942                                  repeatable, mandatory, hidden)
8943 VALUES (1, 'biblio', '656', 'v', $$Form subdivision$$,
8944 TRUE, FALSE, FALSE);
8945 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8946                                  repeatable, mandatory, hidden)
8947 VALUES (1, 'biblio', '656', 'x', $$General subdivision$$,
8948 TRUE, FALSE, FALSE);
8949 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8950                                  repeatable, mandatory, hidden)
8951 VALUES (1, 'biblio', '656', 'y', $$Chronological subdivision$$,
8952 TRUE, FALSE, FALSE);
8953 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8954                                  repeatable, mandatory, hidden)
8955 VALUES (1, 'biblio', '656', 'z', $$Geographic subdivision$$,
8956 TRUE, FALSE, FALSE);
8957 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8958                                  repeatable, mandatory, hidden)
8959 VALUES (1, 'biblio', '656', '0', $$Authority record control number$$,
8960 TRUE, FALSE, FALSE);
8961 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8962                                  repeatable, mandatory, hidden)
8963 VALUES (1, 'biblio', '656', '2', $$Source of term$$,
8964 FALSE, FALSE, FALSE);
8965 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8966                                  repeatable, mandatory, hidden)
8967 VALUES (1, 'biblio', '656', '3', $$Materials specified$$,
8968 FALSE, FALSE, FALSE);
8969 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8970                                  repeatable, mandatory, hidden)
8971 VALUES (1, 'biblio', '656', '6', $$Linkage$$,
8972 FALSE, FALSE, FALSE);
8973 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8974                                  repeatable, mandatory, hidden)
8975 VALUES (1, 'biblio', '656', '8', $$Field link and sequence number$$,
8976 TRUE, FALSE, FALSE);
8977 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
8978                               fixed_field, repeatable, mandatory, hidden)
8979 VALUES (1, 'biblio', '657', $$Index Term-Function$$, $$Index term that describes the activity or function that generated the described materials.$$,
8980 FALSE, TRUE, FALSE, FALSE);
8981 INSERT INTO config.record_attr_definition(name, label)
8982 VALUES ('marc21_biblio_657_ind_1', 'MARC 21 biblio field 657 indicator position 1');
8983 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8984 VALUES ('marc21_biblio_657_ind_1', '#', $$Undefined$$, FALSE, TRUE);
8985 INSERT INTO config.record_attr_definition(name, label)
8986 VALUES ('marc21_biblio_657_ind_2', 'MARC 21 biblio field 657 indicator position 2');
8987 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
8988 VALUES ('marc21_biblio_657_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
8989 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8990                                  repeatable, mandatory, hidden)
8991 VALUES (1, 'biblio', '657', 'a', $$Function$$,
8992 FALSE, FALSE, FALSE);
8993 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8994                                  repeatable, mandatory, hidden)
8995 VALUES (1, 'biblio', '657', 'v', $$Form subdivision$$,
8996 TRUE, FALSE, FALSE);
8997 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
8998                                  repeatable, mandatory, hidden)
8999 VALUES (1, 'biblio', '657', 'x', $$General subdivision$$,
9000 TRUE, FALSE, FALSE);
9001 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9002                                  repeatable, mandatory, hidden)
9003 VALUES (1, 'biblio', '657', 'y', $$Chronological subdivision$$,
9004 TRUE, FALSE, FALSE);
9005 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9006                                  repeatable, mandatory, hidden)
9007 VALUES (1, 'biblio', '657', 'z', $$Geographic subdivision$$,
9008 TRUE, FALSE, FALSE);
9009 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9010                                  repeatable, mandatory, hidden)
9011 VALUES (1, 'biblio', '657', '0', $$Authority record control number$$,
9012 TRUE, FALSE, FALSE);
9013 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9014                                  repeatable, mandatory, hidden)
9015 VALUES (1, 'biblio', '657', '2', $$Source of term$$,
9016 FALSE, FALSE, FALSE);
9017 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9018                                  repeatable, mandatory, hidden)
9019 VALUES (1, 'biblio', '657', '3', $$Materials specified$$,
9020 FALSE, FALSE, FALSE);
9021 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9022                                  repeatable, mandatory, hidden)
9023 VALUES (1, 'biblio', '657', '6', $$Linkage$$,
9024 FALSE, FALSE, FALSE);
9025 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9026                                  repeatable, mandatory, hidden)
9027 VALUES (1, 'biblio', '657', '8', $$Field link and sequence number$$,
9028 TRUE, FALSE, FALSE);
9029 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
9030                               fixed_field, repeatable, mandatory, hidden)
9031 VALUES (1, 'biblio', '658', $$Index Term-Curriculum Objective$$, $$Index terms denoting curriculum or course-of-study objectives applicable to the content of the described materials. The field may also contain correlation factors indicating the degree to which the described materials meet an objective. Codes assigned to specific objectives in published lists are also recorded in this field.$$,
9032 FALSE, TRUE, FALSE, FALSE);
9033 INSERT INTO config.record_attr_definition(name, label)
9034 VALUES ('marc21_biblio_658_ind_1', 'MARC 21 biblio field 658 indicator position 1');
9035 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9036 VALUES ('marc21_biblio_658_ind_1', '#', $$Undefined$$, FALSE, TRUE);
9037 INSERT INTO config.record_attr_definition(name, label)
9038 VALUES ('marc21_biblio_658_ind_2', 'MARC 21 biblio field 658 indicator position 2');
9039 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9040 VALUES ('marc21_biblio_658_ind_2', '#', $$Undefined$$, FALSE, TRUE);
9041 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9042                                  repeatable, mandatory, hidden)
9043 VALUES (1, 'biblio', '658', 'a', $$Main curriculum objective$$,
9044 FALSE, FALSE, FALSE);
9045 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9046                                  repeatable, mandatory, hidden)
9047 VALUES (1, 'biblio', '658', 'b', $$Subordinate curriculum objective$$,
9048 TRUE, FALSE, FALSE);
9049 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9050                                  repeatable, mandatory, hidden)
9051 VALUES (1, 'biblio', '658', 'c', $$Curriculum code$$,
9052 FALSE, FALSE, FALSE);
9053 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9054                                  repeatable, mandatory, hidden)
9055 VALUES (1, 'biblio', '658', 'd', $$Correlation factor$$,
9056 FALSE, FALSE, FALSE);
9057 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9058                                  repeatable, mandatory, hidden)
9059 VALUES (1, 'biblio', '658', '2', $$Source of term or code$$,
9060 FALSE, FALSE, FALSE);
9061 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9062                                  repeatable, mandatory, hidden)
9063 VALUES (1, 'biblio', '658', '6', $$Linkage$$,
9064 FALSE, FALSE, FALSE);
9065 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9066                                  repeatable, mandatory, hidden)
9067 VALUES (1, 'biblio', '658', '8', $$Field link and sequence number$$,
9068 TRUE, FALSE, FALSE);
9069 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
9070                               fixed_field, repeatable, mandatory, hidden)
9071 VALUES (1, 'biblio', '662', $$Subject Added Entry-Hierarchical Place Name$$, $$Hierarchical form of a geographic name used as a subject added entry.$$,
9072 FALSE, TRUE, FALSE, FALSE);
9073 INSERT INTO config.record_attr_definition(name, label)
9074 VALUES ('marc21_biblio_662_ind_1', 'MARC 21 biblio field 662 indicator position 1');
9075 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9076 VALUES ('marc21_biblio_662_ind_1', '#', $$Undefined$$, FALSE, TRUE);
9077 INSERT INTO config.record_attr_definition(name, label)
9078 VALUES ('marc21_biblio_662_ind_2', 'MARC 21 biblio field 662 indicator position 2');
9079 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9080 VALUES ('marc21_biblio_662_ind_2', '#', $$Undefined$$, FALSE, TRUE);
9081 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9082                                  repeatable, mandatory, hidden)
9083 VALUES (1, 'biblio', '662', 'a', $$Country or larger entity$$,
9084 TRUE, FALSE, FALSE);
9085 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9086                                  repeatable, mandatory, hidden)
9087 VALUES (1, 'biblio', '662', 'b', $$First-order political jurisdiction$$,
9088 FALSE, FALSE, FALSE);
9089 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9090                                  repeatable, mandatory, hidden)
9091 VALUES (1, 'biblio', '662', 'c', $$Intermediate political jurisdiction$$,
9092 TRUE, FALSE, FALSE);
9093 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9094                                  repeatable, mandatory, hidden)
9095 VALUES (1, 'biblio', '662', 'd', $$City$$,
9096 FALSE, FALSE, FALSE);
9097 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9098                                  repeatable, mandatory, hidden)
9099 VALUES (1, 'biblio', '662', 'e', $$Relator term$$,
9100 TRUE, FALSE, FALSE);
9101 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9102                                  repeatable, mandatory, hidden)
9103 VALUES (1, 'biblio', '662', 'f', $$City subsection$$,
9104 TRUE, FALSE, FALSE);
9105 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9106                                  repeatable, mandatory, hidden)
9107 VALUES (1, 'biblio', '662', 'g', $$Other nonjurisdictional geographic region and feature$$,
9108 TRUE, FALSE, FALSE);
9109 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9110                                  repeatable, mandatory, hidden)
9111 VALUES (1, 'biblio', '662', 'h', $$Extraterrestrial area$$,
9112 TRUE, FALSE, FALSE);
9113 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9114                                  repeatable, mandatory, hidden)
9115 VALUES (1, 'biblio', '662', '0', $$Authority record control number$$,
9116 TRUE, FALSE, FALSE);
9117 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9118                                  repeatable, mandatory, hidden)
9119 VALUES (1, 'biblio', '662', '2', $$Source of heading or term$$,
9120 FALSE, FALSE, FALSE);
9121 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9122                                  repeatable, mandatory, hidden)
9123 VALUES (1, 'biblio', '662', '4', $$Relator code$$,
9124 TRUE, FALSE, FALSE);
9125 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9126                                  repeatable, mandatory, hidden)
9127 VALUES (1, 'biblio', '662', '6', $$Linkage$$,
9128 FALSE, FALSE, FALSE);
9129 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9130                                  repeatable, mandatory, hidden)
9131 VALUES (1, 'biblio', '662', '8', $$Field link and sequence number$$,
9132 TRUE, FALSE, FALSE);
9133 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
9134                               fixed_field, repeatable, mandatory, hidden)
9135 VALUES (1, 'biblio', '700', $$Added Entry-Personal Name$$, $$Added entry in which the entry element is a personal name.$$,
9136 FALSE, TRUE, FALSE, FALSE);
9137 INSERT INTO config.record_attr_definition(name, label)
9138 VALUES ('marc21_biblio_700_ind_1', 'MARC 21 biblio field 700 indicator position 1');
9139 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9140 VALUES ('marc21_biblio_700_ind_1', '0', $$Forename$$, FALSE, TRUE);
9141 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9142 VALUES ('marc21_biblio_700_ind_1', '1', $$Surname$$, FALSE, TRUE);
9143 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9144 VALUES ('marc21_biblio_700_ind_1', '3', $$Family name$$, FALSE, TRUE);
9145 INSERT INTO config.record_attr_definition(name, label)
9146 VALUES ('marc21_biblio_700_ind_2', 'MARC 21 biblio field 700 indicator position 2');
9147 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9148 VALUES ('marc21_biblio_700_ind_2', '#', $$No information provided$$, FALSE, TRUE);
9149 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9150 VALUES ('marc21_biblio_700_ind_2', '2', $$Analytical entry$$, FALSE, TRUE);
9151 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9152                                  repeatable, mandatory, hidden)
9153 VALUES (1, 'biblio', '700', 'a', $$Personal name$$,
9154 FALSE, FALSE, FALSE);
9155 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9156                                  repeatable, mandatory, hidden)
9157 VALUES (1, 'biblio', '700', 'b', $$Numeration$$,
9158 FALSE, FALSE, FALSE);
9159 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9160                                  repeatable, mandatory, hidden)
9161 VALUES (1, 'biblio', '700', 'c', $$Titles and other words associated with a name$$,
9162 TRUE, FALSE, FALSE);
9163 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9164                                  repeatable, mandatory, hidden)
9165 VALUES (1, 'biblio', '700', 'd', $$Dates associated with a name$$,
9166 FALSE, FALSE, FALSE);
9167 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9168                                  repeatable, mandatory, hidden)
9169 VALUES (1, 'biblio', '700', 'e', $$Relator term$$,
9170 TRUE, FALSE, FALSE);
9171 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9172                                  repeatable, mandatory, hidden)
9173 VALUES (1, 'biblio', '700', 'f', $$Date of a work$$,
9174 FALSE, FALSE, FALSE);
9175 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9176                                  repeatable, mandatory, hidden)
9177 VALUES (1, 'biblio', '700', 'g', $$Miscellaneous information$$,
9178 FALSE, FALSE, FALSE);
9179 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9180                                  repeatable, mandatory, hidden)
9181 VALUES (1, 'biblio', '700', 'h', $$Medium$$,
9182 FALSE, FALSE, FALSE);
9183 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9184                                  repeatable, mandatory, hidden)
9185 VALUES (1, 'biblio', '700', 'j', $$Attribution qualifier$$,
9186 TRUE, FALSE, FALSE);
9187 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9188                                  repeatable, mandatory, hidden)
9189 VALUES (1, 'biblio', '700', 'k', $$Form subheading$$,
9190 TRUE, FALSE, FALSE);
9191 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9192                                  repeatable, mandatory, hidden)
9193 VALUES (1, 'biblio', '700', 'l', $$Language of a work$$,
9194 FALSE, FALSE, FALSE);
9195 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9196                                  repeatable, mandatory, hidden)
9197 VALUES (1, 'biblio', '700', 'm', $$Medium of performance for music$$,
9198 TRUE, FALSE, FALSE);
9199 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9200                                  repeatable, mandatory, hidden)
9201 VALUES (1, 'biblio', '700', 'n', $$Number of part/section of a work$$,
9202 TRUE, FALSE, FALSE);
9203 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9204                                  repeatable, mandatory, hidden)
9205 VALUES (1, 'biblio', '700', 'o', $$Arranged statement for music$$,
9206 FALSE, FALSE, FALSE);
9207 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9208                                  repeatable, mandatory, hidden)
9209 VALUES (1, 'biblio', '700', 'p', $$Name of part/section of a work$$,
9210 TRUE, FALSE, FALSE);
9211 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9212                                  repeatable, mandatory, hidden)
9213 VALUES (1, 'biblio', '700', 'q', $$Fuller form of name$$,
9214 FALSE, FALSE, FALSE);
9215 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9216                                  repeatable, mandatory, hidden)
9217 VALUES (1, 'biblio', '700', 'r', $$Key for music$$,
9218 FALSE, FALSE, FALSE);
9219 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9220                                  repeatable, mandatory, hidden)
9221 VALUES (1, 'biblio', '700', 's', $$Version$$,
9222 FALSE, FALSE, FALSE);
9223 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9224                                  repeatable, mandatory, hidden)
9225 VALUES (1, 'biblio', '700', 't', $$Title of a work$$,
9226 FALSE, FALSE, FALSE);
9227 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9228                                  repeatable, mandatory, hidden)
9229 VALUES (1, 'biblio', '700', 'u', $$Affiliation$$,
9230 FALSE, FALSE, FALSE);
9231 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9232                                  repeatable, mandatory, hidden)
9233 VALUES (1, 'biblio', '700', 'x', $$International Standard Serial Number$$,
9234 FALSE, FALSE, FALSE);
9235 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9236                                  repeatable, mandatory, hidden)
9237 VALUES (1, 'biblio', '700', '0', $$Authority record control number$$,
9238 TRUE, FALSE, FALSE);
9239 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9240                                  repeatable, mandatory, hidden)
9241 VALUES (1, 'biblio', '700', '3', $$Materials specified$$,
9242 FALSE, FALSE, FALSE);
9243 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9244                                  repeatable, mandatory, hidden)
9245 VALUES (1, 'biblio', '700', '4', $$Relator code$$,
9246 TRUE, FALSE, FALSE);
9247 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9248                                  repeatable, mandatory, hidden)
9249 VALUES (1, 'biblio', '700', '5', $$Institution to which field applies$$,
9250 FALSE, FALSE, FALSE);
9251 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9252                                  repeatable, mandatory, hidden)
9253 VALUES (1, 'biblio', '700', '6', $$Linkage$$,
9254 FALSE, FALSE, FALSE);
9255 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9256                                  repeatable, mandatory, hidden)
9257 VALUES (1, 'biblio', '700', '8', $$Field link and sequence number$$,
9258 TRUE, FALSE, FALSE);
9259 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
9260                               fixed_field, repeatable, mandatory, hidden)
9261 VALUES (1, 'biblio', '710', $$Added Entry-Corporate Name$$, $$Added entry in which the entry element is a corporate name.$$,
9262 FALSE, TRUE, FALSE, FALSE);
9263 INSERT INTO config.record_attr_definition(name, label)
9264 VALUES ('marc21_biblio_710_ind_1', 'MARC 21 biblio field 710 indicator position 1');
9265 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9266 VALUES ('marc21_biblio_710_ind_1', '0', $$Inverted name$$, FALSE, TRUE);
9267 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9268 VALUES ('marc21_biblio_710_ind_1', '1', $$Jurisdiction name$$, FALSE, TRUE);
9269 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9270 VALUES ('marc21_biblio_710_ind_1', '2', $$Name in direct order$$, FALSE, TRUE);
9271 INSERT INTO config.record_attr_definition(name, label)
9272 VALUES ('marc21_biblio_710_ind_2', 'MARC 21 biblio field 710 indicator position 2');
9273 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9274 VALUES ('marc21_biblio_710_ind_2', '#', $$No information provided$$, FALSE, TRUE);
9275 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9276 VALUES ('marc21_biblio_710_ind_2', '2', $$Analytical entry$$, FALSE, TRUE);
9277 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9278                                  repeatable, mandatory, hidden)
9279 VALUES (1, 'biblio', '710', 'a', $$Corporate name or jurisdiction name as entry element$$,
9280 FALSE, FALSE, FALSE);
9281 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9282                                  repeatable, mandatory, hidden)
9283 VALUES (1, 'biblio', '710', 'b', $$Subordinate unit$$,
9284 TRUE, FALSE, FALSE);
9285 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9286                                  repeatable, mandatory, hidden)
9287 VALUES (1, 'biblio', '710', 'c', $$Location of meeting$$,
9288 FALSE, FALSE, FALSE);
9289 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9290                                  repeatable, mandatory, hidden)
9291 VALUES (1, 'biblio', '710', 'd', $$Date of meeting or treaty signing$$,
9292 TRUE, FALSE, FALSE);
9293 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9294                                  repeatable, mandatory, hidden)
9295 VALUES (1, 'biblio', '710', 'e', $$Relator term$$,
9296 TRUE, FALSE, FALSE);
9297 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9298                                  repeatable, mandatory, hidden)
9299 VALUES (1, 'biblio', '710', 'f', $$Date of a work$$,
9300 FALSE, FALSE, FALSE);
9301 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9302                                  repeatable, mandatory, hidden)
9303 VALUES (1, 'biblio', '710', 'g', $$Miscellaneous information$$,
9304 FALSE, FALSE, FALSE);
9305 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9306                                  repeatable, mandatory, hidden)
9307 VALUES (1, 'biblio', '710', 'h', $$Medium$$,
9308 FALSE, FALSE, FALSE);
9309 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9310                                  repeatable, mandatory, hidden)
9311 VALUES (1, 'biblio', '710', 'k', $$Form subheading$$,
9312 TRUE, FALSE, FALSE);
9313 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9314                                  repeatable, mandatory, hidden)
9315 VALUES (1, 'biblio', '710', 'l', $$Language of a work$$,
9316 FALSE, FALSE, FALSE);
9317 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9318                                  repeatable, mandatory, hidden)
9319 VALUES (1, 'biblio', '710', 'm', $$Medium of performance for music$$,
9320 TRUE, FALSE, FALSE);
9321 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9322                                  repeatable, mandatory, hidden)
9323 VALUES (1, 'biblio', '710', 'n', $$Number of part/section/meeting$$,
9324 TRUE, FALSE, FALSE);
9325 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9326                                  repeatable, mandatory, hidden)
9327 VALUES (1, 'biblio', '710', 'o', $$Arranged statement for music$$,
9328 FALSE, FALSE, FALSE);
9329 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9330                                  repeatable, mandatory, hidden)
9331 VALUES (1, 'biblio', '710', 'p', $$Name of part/section of a work$$,
9332 TRUE, FALSE, FALSE);
9333 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9334                                  repeatable, mandatory, hidden)
9335 VALUES (1, 'biblio', '710', 'r', $$Key for music$$,
9336 FALSE, FALSE, FALSE);
9337 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9338                                  repeatable, mandatory, hidden)
9339 VALUES (1, 'biblio', '710', 's', $$Version$$,
9340 FALSE, FALSE, FALSE);
9341 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9342                                  repeatable, mandatory, hidden)
9343 VALUES (1, 'biblio', '710', 't', $$Title of a work$$,
9344 FALSE, FALSE, FALSE);
9345 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9346                                  repeatable, mandatory, hidden)
9347 VALUES (1, 'biblio', '710', 'u', $$Affiliation$$,
9348 FALSE, FALSE, FALSE);
9349 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9350                                  repeatable, mandatory, hidden)
9351 VALUES (1, 'biblio', '710', 'x', $$International Standard Serial Number$$,
9352 FALSE, FALSE, FALSE);
9353 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9354                                  repeatable, mandatory, hidden)
9355 VALUES (1, 'biblio', '710', '0', $$Authority record control number$$,
9356 TRUE, FALSE, FALSE);
9357 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9358                                  repeatable, mandatory, hidden)
9359 VALUES (1, 'biblio', '710', '3', $$Materials specified$$,
9360 FALSE, FALSE, FALSE);
9361 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9362                                  repeatable, mandatory, hidden)
9363 VALUES (1, 'biblio', '710', '4', $$Relator code$$,
9364 TRUE, FALSE, FALSE);
9365 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9366                                  repeatable, mandatory, hidden)
9367 VALUES (1, 'biblio', '710', '5', $$Institution to which field applies$$,
9368 FALSE, FALSE, FALSE);
9369 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9370                                  repeatable, mandatory, hidden)
9371 VALUES (1, 'biblio', '710', '6', $$Linkage$$,
9372 FALSE, FALSE, FALSE);
9373 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9374                                  repeatable, mandatory, hidden)
9375 VALUES (1, 'biblio', '710', '8', $$Field link and sequence number$$,
9376 TRUE, FALSE, FALSE);
9377 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
9378                               fixed_field, repeatable, mandatory, hidden)
9379 VALUES (1, 'biblio', '711', $$Added Entry-Meeting Name$$, $$Added entry in which the entry element is a meeting name.$$,
9380 FALSE, TRUE, FALSE, FALSE);
9381 INSERT INTO config.record_attr_definition(name, label)
9382 VALUES ('marc21_biblio_711_ind_1', 'MARC 21 biblio field 711 indicator position 1');
9383 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9384 VALUES ('marc21_biblio_711_ind_1', '0', $$Inverted name$$, FALSE, TRUE);
9385 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9386 VALUES ('marc21_biblio_711_ind_1', '1', $$Jurisdiction name$$, FALSE, TRUE);
9387 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9388 VALUES ('marc21_biblio_711_ind_1', '2', $$Name in direct order$$, FALSE, TRUE);
9389 INSERT INTO config.record_attr_definition(name, label)
9390 VALUES ('marc21_biblio_711_ind_2', 'MARC 21 biblio field 711 indicator position 2');
9391 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9392 VALUES ('marc21_biblio_711_ind_2', '#', $$No information provided$$, FALSE, TRUE);
9393 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9394 VALUES ('marc21_biblio_711_ind_2', '2', $$Analytical entry$$, FALSE, TRUE);
9395 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9396                                  repeatable, mandatory, hidden)
9397 VALUES (1, 'biblio', '711', 'a', $$Meeting name or jurisdiction name as entry element$$,
9398 FALSE, FALSE, FALSE);
9399 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9400                                  repeatable, mandatory, hidden)
9401 VALUES (1, 'biblio', '711', 'c', $$Location of meeting$$,
9402 FALSE, FALSE, FALSE);
9403 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9404                                  repeatable, mandatory, hidden)
9405 VALUES (1, 'biblio', '711', 'd', $$Date of meeting$$,
9406 FALSE, FALSE, FALSE);
9407 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9408                                  repeatable, mandatory, hidden)
9409 VALUES (1, 'biblio', '711', 'e', $$Subordinate unit$$,
9410 TRUE, FALSE, FALSE);
9411 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9412                                  repeatable, mandatory, hidden)
9413 VALUES (1, 'biblio', '711', 'f', $$Date of a work$$,
9414 FALSE, FALSE, FALSE);
9415 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9416                                  repeatable, mandatory, hidden)
9417 VALUES (1, 'biblio', '711', 'g', $$Miscellaneous information$$,
9418 FALSE, FALSE, FALSE);
9419 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9420                                  repeatable, mandatory, hidden)
9421 VALUES (1, 'biblio', '711', 'h', $$Medium$$,
9422 FALSE, FALSE, FALSE);
9423 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9424                                  repeatable, mandatory, hidden)
9425 VALUES (1, 'biblio', '711', 'j', $$Relator term$$,
9426 TRUE, FALSE, FALSE);
9427 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9428                                  repeatable, mandatory, hidden)
9429 VALUES (1, 'biblio', '711', 'k', $$Form subheading$$,
9430 TRUE, FALSE, FALSE);
9431 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9432                                  repeatable, mandatory, hidden)
9433 VALUES (1, 'biblio', '711', 'l', $$Language of a work$$,
9434 FALSE, FALSE, FALSE);
9435 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9436                                  repeatable, mandatory, hidden)
9437 VALUES (1, 'biblio', '711', 'n', $$Number of part/section/meeting$$,
9438 TRUE, FALSE, FALSE);
9439 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9440                                  repeatable, mandatory, hidden)
9441 VALUES (1, 'biblio', '711', 'p', $$Name of part/section of a work$$,
9442 TRUE, FALSE, FALSE);
9443 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9444                                  repeatable, mandatory, hidden)
9445 VALUES (1, 'biblio', '711', 'q', $$Name of meeting following jurisdiction name entry element$$,
9446 FALSE, FALSE, FALSE);
9447 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9448                                  repeatable, mandatory, hidden)
9449 VALUES (1, 'biblio', '711', 's', $$Version$$,
9450 FALSE, FALSE, FALSE);
9451 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9452                                  repeatable, mandatory, hidden)
9453 VALUES (1, 'biblio', '711', 't', $$Title of a work$$,
9454 FALSE, FALSE, FALSE);
9455 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9456                                  repeatable, mandatory, hidden)
9457 VALUES (1, 'biblio', '711', 'u', $$Affiliation$$,
9458 FALSE, FALSE, FALSE);
9459 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9460                                  repeatable, mandatory, hidden)
9461 VALUES (1, 'biblio', '711', 'x', $$International Standard Serial Number$$,
9462 FALSE, FALSE, FALSE);
9463 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9464                                  repeatable, mandatory, hidden)
9465 VALUES (1, 'biblio', '711', '0', $$Authority record control number$$,
9466 TRUE, FALSE, FALSE);
9467 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9468                                  repeatable, mandatory, hidden)
9469 VALUES (1, 'biblio', '711', '3', $$Materials specified$$,
9470 FALSE, FALSE, FALSE);
9471 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9472                                  repeatable, mandatory, hidden)
9473 VALUES (1, 'biblio', '711', '4', $$Relator code$$,
9474 TRUE, FALSE, FALSE);
9475 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9476                                  repeatable, mandatory, hidden)
9477 VALUES (1, 'biblio', '711', '5', $$Institution to which field applies$$,
9478 FALSE, FALSE, FALSE);
9479 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9480                                  repeatable, mandatory, hidden)
9481 VALUES (1, 'biblio', '711', '6', $$Linkage$$,
9482 FALSE, FALSE, FALSE);
9483 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9484                                  repeatable, mandatory, hidden)
9485 VALUES (1, 'biblio', '711', '8', $$Field link and sequence number$$,
9486 TRUE, FALSE, FALSE);
9487 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
9488                               fixed_field, repeatable, mandatory, hidden)
9489 VALUES (1, 'biblio', '720', $$Added Entry-Uncontrolled Name$$, $$Added entry in which the name is not controlled in an authority file or list. It is also used for names that have not been formulated according to cataloging rules. Names may be of any type (e.g., personal, corporate, meeting).$$,
9490 FALSE, TRUE, FALSE, FALSE);
9491 INSERT INTO config.record_attr_definition(name, label)
9492 VALUES ('marc21_biblio_720_ind_1', 'MARC 21 biblio field 720 indicator position 1');
9493 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9494 VALUES ('marc21_biblio_720_ind_1', '#', $$Not specified$$, FALSE, TRUE);
9495 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9496 VALUES ('marc21_biblio_720_ind_1', '1', $$Personal$$, FALSE, TRUE);
9497 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9498 VALUES ('marc21_biblio_720_ind_1', '2', $$Other$$, FALSE, TRUE);
9499 INSERT INTO config.record_attr_definition(name, label)
9500 VALUES ('marc21_biblio_720_ind_2', 'MARC 21 biblio field 720 indicator position 2');
9501 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9502 VALUES ('marc21_biblio_720_ind_2', '#', $$Undefined$$, FALSE, TRUE);
9503 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9504                                  repeatable, mandatory, hidden)
9505 VALUES (1, 'biblio', '720', 'a', $$Name$$,
9506 FALSE, FALSE, FALSE);
9507 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9508                                  repeatable, mandatory, hidden)
9509 VALUES (1, 'biblio', '720', 'e', $$Relator term$$,
9510 TRUE, FALSE, FALSE);
9511 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9512                                  repeatable, mandatory, hidden)
9513 VALUES (1, 'biblio', '720', '4', $$Relator code$$,
9514 TRUE, FALSE, FALSE);
9515 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9516                                  repeatable, mandatory, hidden)
9517 VALUES (1, 'biblio', '720', '6', $$Linkage$$,
9518 FALSE, FALSE, FALSE);
9519 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9520                                  repeatable, mandatory, hidden)
9521 VALUES (1, 'biblio', '720', '8', $$Field link and sequence number$$,
9522 TRUE, FALSE, FALSE);
9523 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
9524                               fixed_field, repeatable, mandatory, hidden)
9525 VALUES (1, 'biblio', '730', $$Added Entry-Uniform Title$$, $$Uniform title, a related or an analytical title that is controlled by an authority file or list, used as an added entry.$$,
9526 FALSE, TRUE, FALSE, FALSE);
9527 INSERT INTO config.record_attr_definition(name, label)
9528 VALUES ('marc21_biblio_730_ind_1', 'MARC 21 biblio field 730 indicator position 1');
9529 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9530 VALUES ('marc21_biblio_730_ind_1', '0', $$No nonfiling characters$$, FALSE, TRUE);
9531 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9532 VALUES ('marc21_biblio_730_ind_1', '1', $$Number of nonfiling characters - 1$$, FALSE, TRUE);
9533 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9534 VALUES ('marc21_biblio_730_ind_1', '2', $$Number of nonfiling characters - 2$$, FALSE, TRUE);
9535 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9536 VALUES ('marc21_biblio_730_ind_1', '3', $$Number of nonfiling characters - 3$$, FALSE, TRUE);
9537 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9538 VALUES ('marc21_biblio_730_ind_1', '4', $$Number of nonfiling characters - 4$$, FALSE, TRUE);
9539 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9540 VALUES ('marc21_biblio_730_ind_1', '5', $$Number of nonfiling characters - 5$$, FALSE, TRUE);
9541 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9542 VALUES ('marc21_biblio_730_ind_1', '6', $$Number of nonfiling characters - 6$$, FALSE, TRUE);
9543 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9544 VALUES ('marc21_biblio_730_ind_1', '7', $$Number of nonfiling characters - 7$$, FALSE, TRUE);
9545 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9546 VALUES ('marc21_biblio_730_ind_1', '8', $$Number of nonfiling characters - 8$$, FALSE, TRUE);
9547 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9548 VALUES ('marc21_biblio_730_ind_1', '9', $$Number of nonfiling characters - 9$$, FALSE, TRUE);
9549 INSERT INTO config.record_attr_definition(name, label)
9550 VALUES ('marc21_biblio_730_ind_2', 'MARC 21 biblio field 730 indicator position 2');
9551 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9552 VALUES ('marc21_biblio_730_ind_2', '#', $$No information provided$$, FALSE, TRUE);
9553 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9554 VALUES ('marc21_biblio_730_ind_2', '2', $$Analytical entry$$, FALSE, TRUE);
9555 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9556                                  repeatable, mandatory, hidden)
9557 VALUES (1, 'biblio', '730', 'a', $$Uniform title$$,
9558 FALSE, FALSE, FALSE);
9559 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9560                                  repeatable, mandatory, hidden)
9561 VALUES (1, 'biblio', '730', 'd', $$Date of treaty signing$$,
9562 TRUE, FALSE, FALSE);
9563 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9564                                  repeatable, mandatory, hidden)
9565 VALUES (1, 'biblio', '730', 'f', $$Date of a work$$,
9566 FALSE, FALSE, FALSE);
9567 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9568                                  repeatable, mandatory, hidden)
9569 VALUES (1, 'biblio', '730', 'g', $$Miscellaneous information$$,
9570 FALSE, FALSE, FALSE);
9571 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9572                                  repeatable, mandatory, hidden)
9573 VALUES (1, 'biblio', '730', 'h', $$Medium$$,
9574 FALSE, FALSE, FALSE);
9575 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9576                                  repeatable, mandatory, hidden)
9577 VALUES (1, 'biblio', '730', 'k', $$Form subheading$$,
9578 TRUE, FALSE, FALSE);
9579 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9580                                  repeatable, mandatory, hidden)
9581 VALUES (1, 'biblio', '730', 'l', $$Language of a work$$,
9582 FALSE, FALSE, FALSE);
9583 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9584                                  repeatable, mandatory, hidden)
9585 VALUES (1, 'biblio', '730', 'm', $$Medium of performance for music$$,
9586 TRUE, FALSE, FALSE);
9587 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9588                                  repeatable, mandatory, hidden)
9589 VALUES (1, 'biblio', '730', 'n', $$Number of part/section of a work$$,
9590 TRUE, FALSE, FALSE);
9591 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9592                                  repeatable, mandatory, hidden)
9593 VALUES (1, 'biblio', '730', 'o', $$Arranged statement for music$$,
9594 FALSE, FALSE, FALSE);
9595 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9596                                  repeatable, mandatory, hidden)
9597 VALUES (1, 'biblio', '730', 'p', $$Name of part/section of a work$$,
9598 TRUE, FALSE, FALSE);
9599 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9600                                  repeatable, mandatory, hidden)
9601 VALUES (1, 'biblio', '730', 'r', $$Key for music$$,
9602 FALSE, FALSE, FALSE);
9603 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9604                                  repeatable, mandatory, hidden)
9605 VALUES (1, 'biblio', '730', 's', $$Version$$,
9606 FALSE, FALSE, FALSE);
9607 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9608                                  repeatable, mandatory, hidden)
9609 VALUES (1, 'biblio', '730', 't', $$Title of a work$$,
9610 FALSE, FALSE, FALSE);
9611 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9612                                  repeatable, mandatory, hidden)
9613 VALUES (1, 'biblio', '730', 'x', $$International Standard Serial Number$$,
9614 FALSE, FALSE, FALSE);
9615 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9616                                  repeatable, mandatory, hidden)
9617 VALUES (1, 'biblio', '730', '0', $$Authority record control number$$,
9618 TRUE, FALSE, FALSE);
9619 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9620                                  repeatable, mandatory, hidden)
9621 VALUES (1, 'biblio', '730', '3', $$Materials specified$$,
9622 FALSE, FALSE, FALSE);
9623 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9624                                  repeatable, mandatory, hidden)
9625 VALUES (1, 'biblio', '730', '5', $$Institution to which field applies$$,
9626 FALSE, FALSE, FALSE);
9627 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9628                                  repeatable, mandatory, hidden)
9629 VALUES (1, 'biblio', '730', '6', $$Linkage$$,
9630 FALSE, FALSE, FALSE);
9631 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9632                                  repeatable, mandatory, hidden)
9633 VALUES (1, 'biblio', '730', '8', $$Field link and sequence number$$,
9634 TRUE, FALSE, FALSE);
9635 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
9636                               fixed_field, repeatable, mandatory, hidden)
9637 VALUES (1, 'biblio', '740', $$Added Entry-Uncontrolled Related/Analytical Title$$, $$Added entries for related or analytical titles that are not controlled through an authority file or list. (If related or analytical titles are controlled by an authority file, use field 730 (Added entry - uniform title)).$$,
9638 FALSE, TRUE, FALSE, FALSE);
9639 INSERT INTO config.record_attr_definition(name, label)
9640 VALUES ('marc21_biblio_740_ind_1', 'MARC 21 biblio field 740 indicator position 1');
9641 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9642 VALUES ('marc21_biblio_740_ind_1', '0', $$No nonfiling characters$$, FALSE, TRUE);
9643 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9644 VALUES ('marc21_biblio_740_ind_1', '1', $$Number of nonfiling characters - 1$$, FALSE, TRUE);
9645 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9646 VALUES ('marc21_biblio_740_ind_1', '2', $$Number of nonfiling characters - 2$$, FALSE, TRUE);
9647 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9648 VALUES ('marc21_biblio_740_ind_1', '3', $$Number of nonfiling characters - 3$$, FALSE, TRUE);
9649 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9650 VALUES ('marc21_biblio_740_ind_1', '4', $$Number of nonfiling characters - 4$$, FALSE, TRUE);
9651 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9652 VALUES ('marc21_biblio_740_ind_1', '5', $$Number of nonfiling characters - 5$$, FALSE, TRUE);
9653 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9654 VALUES ('marc21_biblio_740_ind_1', '6', $$Number of nonfiling characters - 6$$, FALSE, TRUE);
9655 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9656 VALUES ('marc21_biblio_740_ind_1', '7', $$Number of nonfiling characters - 7$$, FALSE, TRUE);
9657 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9658 VALUES ('marc21_biblio_740_ind_1', '8', $$Number of nonfiling characters - 8$$, FALSE, TRUE);
9659 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9660 VALUES ('marc21_biblio_740_ind_1', '9', $$Number of nonfiling characters - 9$$, FALSE, TRUE);
9661 INSERT INTO config.record_attr_definition(name, label)
9662 VALUES ('marc21_biblio_740_ind_2', 'MARC 21 biblio field 740 indicator position 2');
9663 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9664 VALUES ('marc21_biblio_740_ind_2', '#', $$No information provided$$, FALSE, TRUE);
9665 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9666 VALUES ('marc21_biblio_740_ind_2', '2', $$Analytical entry$$, FALSE, TRUE);
9667 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9668                                  repeatable, mandatory, hidden)
9669 VALUES (1, 'biblio', '740', 'a', $$Uncontrolled related/analytical title$$,
9670 FALSE, FALSE, FALSE);
9671 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9672                                  repeatable, mandatory, hidden)
9673 VALUES (1, 'biblio', '740', 'h', $$Medium$$,
9674 FALSE, FALSE, FALSE);
9675 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9676                                  repeatable, mandatory, hidden)
9677 VALUES (1, 'biblio', '740', 'n', $$Number of part/section of a work$$,
9678 TRUE, FALSE, FALSE);
9679 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9680                                  repeatable, mandatory, hidden)
9681 VALUES (1, 'biblio', '740', 'p', $$Name of part/section of a work$$,
9682 TRUE, FALSE, FALSE);
9683 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9684                                  repeatable, mandatory, hidden)
9685 VALUES (1, 'biblio', '740', '5', $$Institution to which field applies$$,
9686 FALSE, FALSE, FALSE);
9687 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9688                                  repeatable, mandatory, hidden)
9689 VALUES (1, 'biblio', '740', '6', $$Linkage$$,
9690 FALSE, FALSE, FALSE);
9691 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9692                                  repeatable, mandatory, hidden)
9693 VALUES (1, 'biblio', '740', '8', $$Field link and sequence number$$,
9694 TRUE, FALSE, FALSE);
9695 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
9696                               fixed_field, repeatable, mandatory, hidden)
9697 VALUES (1, 'biblio', '751', $$Added Entry-Geographic Name$$, $$Added entry in which the entry element is a geographic name that is related to a particular attribute of the described item, e.g., the place of publication for a rare book, place of distribution, place of a university to which a dissertation is submitted, place of an event such as a conference, etc.$$,
9698 FALSE, TRUE, FALSE, FALSE);
9699 INSERT INTO config.record_attr_definition(name, label)
9700 VALUES ('marc21_biblio_751_ind_1', 'MARC 21 biblio field 751 indicator position 1');
9701 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9702 VALUES ('marc21_biblio_751_ind_1', '#', $$Undefined$$, FALSE, TRUE);
9703 INSERT INTO config.record_attr_definition(name, label)
9704 VALUES ('marc21_biblio_751_ind_2', 'MARC 21 biblio field 751 indicator position 2');
9705 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9706 VALUES ('marc21_biblio_751_ind_2', '#', $$Undefined$$, FALSE, TRUE);
9707 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9708                                  repeatable, mandatory, hidden)
9709 VALUES (1, 'biblio', '751', 'a', $$Geographic name$$,
9710 FALSE, FALSE, FALSE);
9711 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9712                                  repeatable, mandatory, hidden)
9713 VALUES (1, 'biblio', '751', 'e', $$Relator term$$,
9714 TRUE, FALSE, FALSE);
9715 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9716                                  repeatable, mandatory, hidden)
9717 VALUES (1, 'biblio', '751', '0', $$Authority record control number$$,
9718 TRUE, FALSE, FALSE);
9719 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9720                                  repeatable, mandatory, hidden)
9721 VALUES (1, 'biblio', '751', '2', $$Source of heading or term$$,
9722 FALSE, FALSE, FALSE);
9723 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9724                                  repeatable, mandatory, hidden)
9725 VALUES (1, 'biblio', '751', '3', $$Materials specified$$,
9726 FALSE, FALSE, FALSE);
9727 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9728                                  repeatable, mandatory, hidden)
9729 VALUES (1, 'biblio', '751', '4', $$Relator code$$,
9730 TRUE, FALSE, FALSE);
9731 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9732                                  repeatable, mandatory, hidden)
9733 VALUES (1, 'biblio', '751', '6', $$Linkage$$,
9734 FALSE, FALSE, FALSE);
9735 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9736                                  repeatable, mandatory, hidden)
9737 VALUES (1, 'biblio', '751', '8', $$Field link and sequence number$$,
9738 TRUE, FALSE, FALSE);
9739 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
9740                               fixed_field, repeatable, mandatory, hidden)
9741 VALUES (1, 'biblio', '752', $$Added Entry-Hierarchical Place Name$$, $$Added entry in which the entry element is a hierarchical form of place name that is related to a particular attribute of the described item, e.g., the place of publication for a rare book. For display, a dash (--) may be generated to separate the subelements of the place name, e.g., Canada -- British Columbia -- Vancouver.$$,
9742 FALSE, TRUE, FALSE, FALSE);
9743 INSERT INTO config.record_attr_definition(name, label)
9744 VALUES ('marc21_biblio_752_ind_1', 'MARC 21 biblio field 752 indicator position 1');
9745 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9746 VALUES ('marc21_biblio_752_ind_1', '#', $$Undefined$$, FALSE, TRUE);
9747 INSERT INTO config.record_attr_definition(name, label)
9748 VALUES ('marc21_biblio_752_ind_2', 'MARC 21 biblio field 752 indicator position 2');
9749 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9750 VALUES ('marc21_biblio_752_ind_2', '#', $$Undefined$$, FALSE, TRUE);
9751 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9752                                  repeatable, mandatory, hidden)
9753 VALUES (1, 'biblio', '752', 'a', $$Country or larger entity$$,
9754 TRUE, FALSE, FALSE);
9755 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9756                                  repeatable, mandatory, hidden)
9757 VALUES (1, 'biblio', '752', 'b', $$First-order political jurisdiction$$,
9758 FALSE, FALSE, FALSE);
9759 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9760                                  repeatable, mandatory, hidden)
9761 VALUES (1, 'biblio', '752', 'c', $$Intermediate political jurisdiction$$,
9762 TRUE, FALSE, FALSE);
9763 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9764                                  repeatable, mandatory, hidden)
9765 VALUES (1, 'biblio', '752', 'd', $$City$$,
9766 FALSE, FALSE, FALSE);
9767 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9768                                  repeatable, mandatory, hidden)
9769 VALUES (1, 'biblio', '752', 'f', $$City subsection$$,
9770 TRUE, FALSE, FALSE);
9771 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9772                                  repeatable, mandatory, hidden)
9773 VALUES (1, 'biblio', '752', 'g', $$Other nonjurisdictional geographic region and feature$$,
9774 TRUE, FALSE, FALSE);
9775 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9776                                  repeatable, mandatory, hidden)
9777 VALUES (1, 'biblio', '752', 'h', $$Extraterrestrial area$$,
9778 TRUE, FALSE, FALSE);
9779 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9780                                  repeatable, mandatory, hidden)
9781 VALUES (1, 'biblio', '752', '0', $$Authority record control number$$,
9782 TRUE, FALSE, FALSE);
9783 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9784                                  repeatable, mandatory, hidden)
9785 VALUES (1, 'biblio', '752', '2', $$Source of heading or term$$,
9786 FALSE, FALSE, FALSE);
9787 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9788                                  repeatable, mandatory, hidden)
9789 VALUES (1, 'biblio', '752', '6', $$Linkage$$,
9790 FALSE, FALSE, FALSE);
9791 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9792                                  repeatable, mandatory, hidden)
9793 VALUES (1, 'biblio', '752', '8', $$Field link and sequence number$$,
9794 TRUE, FALSE, FALSE);
9795 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
9796                               fixed_field, repeatable, mandatory, hidden)
9797 VALUES (1, 'biblio', '753', $$System Details Access to Computer Files$$, $$Information on the technical aspects of a computer file and any accompanying material that may be used to select and arrange the record with other records in a printed index.$$,
9798 FALSE, TRUE, FALSE, FALSE);
9799 INSERT INTO config.record_attr_definition(name, label)
9800 VALUES ('marc21_biblio_753_ind_1', 'MARC 21 biblio field 753 indicator position 1');
9801 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9802 VALUES ('marc21_biblio_753_ind_1', '#', $$Undefined$$, FALSE, TRUE);
9803 INSERT INTO config.record_attr_definition(name, label)
9804 VALUES ('marc21_biblio_753_ind_2', 'MARC 21 biblio field 753 indicator position 2');
9805 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9806 VALUES ('marc21_biblio_753_ind_2', '#', $$Undefined$$, FALSE, TRUE);
9807 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9808                                  repeatable, mandatory, hidden)
9809 VALUES (1, 'biblio', '753', 'a', $$Make and model of machine$$,
9810 FALSE, FALSE, FALSE);
9811 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9812                                  repeatable, mandatory, hidden)
9813 VALUES (1, 'biblio', '753', 'b', $$Programming language$$,
9814 FALSE, FALSE, FALSE);
9815 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9816                                  repeatable, mandatory, hidden)
9817 VALUES (1, 'biblio', '753', 'c', $$Operating system$$,
9818 FALSE, FALSE, FALSE);
9819 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9820                                  repeatable, mandatory, hidden)
9821 VALUES (1, 'biblio', '753', '6', $$Linkage$$,
9822 FALSE, FALSE, FALSE);
9823 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9824                                  repeatable, mandatory, hidden)
9825 VALUES (1, 'biblio', '753', '8', $$Field link and sequence number$$,
9826 TRUE, FALSE, FALSE);
9827 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
9828                               fixed_field, repeatable, mandatory, hidden)
9829 VALUES (1, 'biblio', '754', $$Added Entry-Taxonomic Identification$$, $$Added entry in which the entry element is the taxonomic name or category associated with the described item.$$,
9830 FALSE, TRUE, FALSE, FALSE);
9831 INSERT INTO config.record_attr_definition(name, label)
9832 VALUES ('marc21_biblio_754_ind_1', 'MARC 21 biblio field 754 indicator position 1');
9833 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9834 VALUES ('marc21_biblio_754_ind_1', '#', $$Undefined$$, FALSE, TRUE);
9835 INSERT INTO config.record_attr_definition(name, label)
9836 VALUES ('marc21_biblio_754_ind_2', 'MARC 21 biblio field 754 indicator position 2');
9837 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9838 VALUES ('marc21_biblio_754_ind_2', '#', $$Undefined$$, FALSE, TRUE);
9839 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9840                                  repeatable, mandatory, hidden)
9841 VALUES (1, 'biblio', '754', 'a', $$Taxonomic name$$,
9842 TRUE, FALSE, FALSE);
9843 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9844                                  repeatable, mandatory, hidden)
9845 VALUES (1, 'biblio', '754', 'c', $$Taxonomic category$$,
9846 TRUE, FALSE, FALSE);
9847 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9848                                  repeatable, mandatory, hidden)
9849 VALUES (1, 'biblio', '754', 'd', $$Common or alternative name$$,
9850 TRUE, FALSE, FALSE);
9851 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9852                                  repeatable, mandatory, hidden)
9853 VALUES (1, 'biblio', '754', 'x', $$Non-public note$$,
9854 TRUE, FALSE, FALSE);
9855 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9856                                  repeatable, mandatory, hidden)
9857 VALUES (1, 'biblio', '754', 'z', $$Public note$$,
9858 TRUE, FALSE, FALSE);
9859 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9860                                  repeatable, mandatory, hidden)
9861 VALUES (1, 'biblio', '754', '0', $$Authority record control number$$,
9862 TRUE, FALSE, FALSE);
9863 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9864                                  repeatable, mandatory, hidden)
9865 VALUES (1, 'biblio', '754', '2', $$Source of taxonomic identification$$,
9866 FALSE, FALSE, FALSE);
9867 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9868                                  repeatable, mandatory, hidden)
9869 VALUES (1, 'biblio', '754', '6', $$Linkage$$,
9870 FALSE, FALSE, FALSE);
9871 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9872                                  repeatable, mandatory, hidden)
9873 VALUES (1, 'biblio', '754', '8', $$Field link and sequence number$$,
9874 TRUE, FALSE, FALSE);
9875 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
9876                               fixed_field, repeatable, mandatory, hidden)
9877 VALUES (1, 'biblio', '760', $$Main Series Entry$$, $$Information concerning the related main series when the target item is a subseries (vertical relationship). When a note is generated from this field, the introductory phrase or may be generated based on the field tag for display.$$,
9878 FALSE, TRUE, FALSE, FALSE);
9879 INSERT INTO config.record_attr_definition(name, label)
9880 VALUES ('marc21_biblio_760_ind_1', 'MARC 21 biblio field 760 indicator position 1');
9881 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9882 VALUES ('marc21_biblio_760_ind_1', '0', $$Display note$$, FALSE, TRUE);
9883 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9884 VALUES ('marc21_biblio_760_ind_1', '1', $$Do not display note$$, FALSE, TRUE);
9885 INSERT INTO config.record_attr_definition(name, label)
9886 VALUES ('marc21_biblio_760_ind_2', 'MARC 21 biblio field 760 indicator position 2');
9887 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9888 VALUES ('marc21_biblio_760_ind_2', '#', $$Main series$$, FALSE, TRUE);
9889 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9890 VALUES ('marc21_biblio_760_ind_2', '8', $$No display constant generated$$, FALSE, TRUE);
9891 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9892                                  repeatable, mandatory, hidden)
9893 VALUES (1, 'biblio', '760', 'a', $$Main entry heading$$,
9894 FALSE, FALSE, FALSE);
9895 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9896                                  repeatable, mandatory, hidden)
9897 VALUES (1, 'biblio', '760', 'b', $$Edition$$,
9898 FALSE, FALSE, FALSE);
9899 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9900                                  repeatable, mandatory, hidden)
9901 VALUES (1, 'biblio', '760', 'c', $$Qualifying information$$,
9902 FALSE, FALSE, FALSE);
9903 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9904                                  repeatable, mandatory, hidden)
9905 VALUES (1, 'biblio', '760', 'd', $$Place, publisher, and date of publication$$,
9906 FALSE, FALSE, FALSE);
9907 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9908                                  repeatable, mandatory, hidden)
9909 VALUES (1, 'biblio', '760', 'g', $$Related parts$$,
9910 TRUE, FALSE, FALSE);
9911 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9912                                  repeatable, mandatory, hidden)
9913 VALUES (1, 'biblio', '760', 'h', $$Physical description$$,
9914 FALSE, FALSE, FALSE);
9915 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9916                                  repeatable, mandatory, hidden)
9917 VALUES (1, 'biblio', '760', 'i', $$Relationship information$$,
9918 TRUE, FALSE, FALSE);
9919 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9920                                  repeatable, mandatory, hidden)
9921 VALUES (1, 'biblio', '760', 'm', $$Material-specific details$$,
9922 FALSE, FALSE, FALSE);
9923 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9924                                  repeatable, mandatory, hidden)
9925 VALUES (1, 'biblio', '760', 'n', $$Note$$,
9926 TRUE, FALSE, FALSE);
9927 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9928                                  repeatable, mandatory, hidden)
9929 VALUES (1, 'biblio', '760', 'o', $$Other item identifier$$,
9930 TRUE, FALSE, FALSE);
9931 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9932                                  repeatable, mandatory, hidden)
9933 VALUES (1, 'biblio', '760', 's', $$Uniform title$$,
9934 FALSE, FALSE, FALSE);
9935 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9936                                  repeatable, mandatory, hidden)
9937 VALUES (1, 'biblio', '760', 't', $$Title$$,
9938 FALSE, FALSE, FALSE);
9939 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9940                                  repeatable, mandatory, hidden)
9941 VALUES (1, 'biblio', '760', 'w', $$Record control number$$,
9942 TRUE, FALSE, FALSE);
9943 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9944                                  repeatable, mandatory, hidden)
9945 VALUES (1, 'biblio', '760', 'x', $$International Standard Serial Number$$,
9946 FALSE, FALSE, FALSE);
9947 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9948                                  repeatable, mandatory, hidden)
9949 VALUES (1, 'biblio', '760', 'y', $$CODEN designation$$,
9950 FALSE, FALSE, FALSE);
9951 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9952                                  repeatable, mandatory, hidden)
9953 VALUES (1, 'biblio', '760', '6', $$Linkage$$,
9954 FALSE, FALSE, FALSE);
9955 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9956                                  repeatable, mandatory, hidden)
9957 VALUES (1, 'biblio', '760', '7', $$Control subfield$$,
9958 FALSE, FALSE, FALSE);
9959 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9960                                  repeatable, mandatory, hidden)
9961 VALUES (1, 'biblio', '760', 'p', $$Personal name$$,
9962 TRUE, FALSE, FALSE);
9963 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
9964                               fixed_field, repeatable, mandatory, hidden)
9965 VALUES (1, 'biblio', '762', $$Subseries Entry$$, $$Information concerning a related subseries when the target item is a main series or a parent subseries (vertical relationship). When a note is generated from this field, the introductory phrase may be generated based on the field tag for display.$$,
9966 FALSE, TRUE, FALSE, FALSE);
9967 INSERT INTO config.record_attr_definition(name, label)
9968 VALUES ('marc21_biblio_762_ind_1', 'MARC 21 biblio field 762 indicator position 1');
9969 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9970 VALUES ('marc21_biblio_762_ind_1', '0', $$Display note$$, FALSE, TRUE);
9971 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9972 VALUES ('marc21_biblio_762_ind_1', '1', $$Do not display note$$, FALSE, TRUE);
9973 INSERT INTO config.record_attr_definition(name, label)
9974 VALUES ('marc21_biblio_762_ind_2', 'MARC 21 biblio field 762 indicator position 2');
9975 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9976 VALUES ('marc21_biblio_762_ind_2', '#', $$Has subseries$$, FALSE, TRUE);
9977 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
9978 VALUES ('marc21_biblio_762_ind_2', '8', $$No display constant generated$$, FALSE, TRUE);
9979 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9980                                  repeatable, mandatory, hidden)
9981 VALUES (1, 'biblio', '762', 'a', $$Main entry heading$$,
9982 FALSE, FALSE, FALSE);
9983 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9984                                  repeatable, mandatory, hidden)
9985 VALUES (1, 'biblio', '762', 'b', $$Edition$$,
9986 FALSE, FALSE, FALSE);
9987 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9988                                  repeatable, mandatory, hidden)
9989 VALUES (1, 'biblio', '762', 'c', $$Qualifying information$$,
9990 FALSE, FALSE, FALSE);
9991 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9992                                  repeatable, mandatory, hidden)
9993 VALUES (1, 'biblio', '762', 'd', $$Place, publisher, and date of publication$$,
9994 FALSE, FALSE, FALSE);
9995 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
9996                                  repeatable, mandatory, hidden)
9997 VALUES (1, 'biblio', '762', 'g', $$Related parts$$,
9998 TRUE, FALSE, FALSE);
9999 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10000                                  repeatable, mandatory, hidden)
10001 VALUES (1, 'biblio', '762', 'h', $$Physical description$$,
10002 FALSE, FALSE, FALSE);
10003 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10004                                  repeatable, mandatory, hidden)
10005 VALUES (1, 'biblio', '762', 'i', $$Relationship information$$,
10006 TRUE, FALSE, FALSE);
10007 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10008                                  repeatable, mandatory, hidden)
10009 VALUES (1, 'biblio', '762', 'm', $$Material-specific details$$,
10010 FALSE, FALSE, FALSE);
10011 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10012                                  repeatable, mandatory, hidden)
10013 VALUES (1, 'biblio', '762', 'n', $$Note$$,
10014 TRUE, FALSE, FALSE);
10015 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10016                                  repeatable, mandatory, hidden)
10017 VALUES (1, 'biblio', '762', 'o', $$Other item identifier$$,
10018 TRUE, FALSE, FALSE);
10019 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10020                                  repeatable, mandatory, hidden)
10021 VALUES (1, 'biblio', '762', 's', $$Uniform title$$,
10022 FALSE, FALSE, FALSE);
10023 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10024                                  repeatable, mandatory, hidden)
10025 VALUES (1, 'biblio', '762', 't', $$Title$$,
10026 FALSE, FALSE, FALSE);
10027 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10028                                  repeatable, mandatory, hidden)
10029 VALUES (1, 'biblio', '762', 'w', $$Record control number$$,
10030 TRUE, FALSE, FALSE);
10031 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10032                                  repeatable, mandatory, hidden)
10033 VALUES (1, 'biblio', '762', 'x', $$International Standard Serial Number$$,
10034 FALSE, FALSE, FALSE);
10035 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10036                                  repeatable, mandatory, hidden)
10037 VALUES (1, 'biblio', '762', 'y', $$CODEN designation$$,
10038 FALSE, FALSE, FALSE);
10039 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10040                                  repeatable, mandatory, hidden)
10041 VALUES (1, 'biblio', '762', '6', $$Linkage$$,
10042 FALSE, FALSE, FALSE);
10043 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10044                                  repeatable, mandatory, hidden)
10045 VALUES (1, 'biblio', '762', '7', $$Control subfield$$,
10046 FALSE, FALSE, FALSE);
10047 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10048                                  repeatable, mandatory, hidden)
10049 VALUES (1, 'biblio', '762', '8', $$Field link and sequence number$$,
10050 TRUE, FALSE, FALSE);
10051 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
10052                               fixed_field, repeatable, mandatory, hidden)
10053 VALUES (1, 'biblio', '765', $$Original Language Entry$$, $$Information concerning the publication in its original language when the target item is a translation (horizontal relationship). When a note is generated from this field, the introductory phrase may be generated based on the field tag for display.$$,
10054 FALSE, TRUE, FALSE, FALSE);
10055 INSERT INTO config.record_attr_definition(name, label)
10056 VALUES ('marc21_biblio_765_ind_1', 'MARC 21 biblio field 765 indicator position 1');
10057 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10058 VALUES ('marc21_biblio_765_ind_1', '0', $$Display note$$, FALSE, TRUE);
10059 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10060 VALUES ('marc21_biblio_765_ind_1', '1', $$Do not display note$$, FALSE, TRUE);
10061 INSERT INTO config.record_attr_definition(name, label)
10062 VALUES ('marc21_biblio_765_ind_2', 'MARC 21 biblio field 765 indicator position 2');
10063 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10064 VALUES ('marc21_biblio_765_ind_2', '#', $$Translation of$$, FALSE, TRUE);
10065 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10066 VALUES ('marc21_biblio_765_ind_2', '8', $$No display constant generated$$, FALSE, TRUE);
10067 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10068                                  repeatable, mandatory, hidden)
10069 VALUES (1, 'biblio', '765', 'a', $$Main entry heading$$,
10070 FALSE, FALSE, FALSE);
10071 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10072                                  repeatable, mandatory, hidden)
10073 VALUES (1, 'biblio', '765', 'b', $$Edition$$,
10074 FALSE, FALSE, FALSE);
10075 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10076                                  repeatable, mandatory, hidden)
10077 VALUES (1, 'biblio', '765', 'c', $$Qualifying information$$,
10078 FALSE, FALSE, FALSE);
10079 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10080                                  repeatable, mandatory, hidden)
10081 VALUES (1, 'biblio', '765', 'd', $$Place, publisher, and date of publication$$,
10082 FALSE, FALSE, FALSE);
10083 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10084                                  repeatable, mandatory, hidden)
10085 VALUES (1, 'biblio', '765', 'g', $$Related parts$$,
10086 TRUE, FALSE, FALSE);
10087 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10088                                  repeatable, mandatory, hidden)
10089 VALUES (1, 'biblio', '765', 'h', $$Physical description$$,
10090 FALSE, FALSE, FALSE);
10091 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10092                                  repeatable, mandatory, hidden)
10093 VALUES (1, 'biblio', '765', 'i', $$Relationship information$$,
10094 TRUE, FALSE, FALSE);
10095 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10096                                  repeatable, mandatory, hidden)
10097 VALUES (1, 'biblio', '765', 'k', $$Series data for related item$$,
10098 TRUE, FALSE, FALSE);
10099 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10100                                  repeatable, mandatory, hidden)
10101 VALUES (1, 'biblio', '765', 'm', $$Material-specific details$$,
10102 FALSE, FALSE, FALSE);
10103 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10104                                  repeatable, mandatory, hidden)
10105 VALUES (1, 'biblio', '765', 'n', $$Note$$,
10106 TRUE, FALSE, FALSE);
10107 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10108                                  repeatable, mandatory, hidden)
10109 VALUES (1, 'biblio', '765', 'o', $$Other item identifier$$,
10110 TRUE, FALSE, FALSE);
10111 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10112                                  repeatable, mandatory, hidden)
10113 VALUES (1, 'biblio', '765', 'r', $$Report number$$,
10114 TRUE, FALSE, FALSE);
10115 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10116                                  repeatable, mandatory, hidden)
10117 VALUES (1, 'biblio', '765', 's', $$Uniform title$$,
10118 FALSE, FALSE, FALSE);
10119 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10120                                  repeatable, mandatory, hidden)
10121 VALUES (1, 'biblio', '765', 't', $$Title$$,
10122 FALSE, FALSE, FALSE);
10123 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10124                                  repeatable, mandatory, hidden)
10125 VALUES (1, 'biblio', '765', 'u', $$Standard Technical Report Number$$,
10126 FALSE, FALSE, FALSE);
10127 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10128                                  repeatable, mandatory, hidden)
10129 VALUES (1, 'biblio', '765', 'w', $$Record control number$$,
10130 TRUE, FALSE, FALSE);
10131 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10132                                  repeatable, mandatory, hidden)
10133 VALUES (1, 'biblio', '765', 'x', $$International Standard Serial Number$$,
10134 FALSE, FALSE, FALSE);
10135 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10136                                  repeatable, mandatory, hidden)
10137 VALUES (1, 'biblio', '765', 'y', $$CODEN designation$$,
10138 FALSE, FALSE, FALSE);
10139 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10140                                  repeatable, mandatory, hidden)
10141 VALUES (1, 'biblio', '765', 'z', $$International Standard Book Number$$,
10142 TRUE, FALSE, FALSE);
10143 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10144                                  repeatable, mandatory, hidden)
10145 VALUES (1, 'biblio', '765', '6', $$Linkage$$,
10146 FALSE, FALSE, FALSE);
10147 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10148                                  repeatable, mandatory, hidden)
10149 VALUES (1, 'biblio', '765', '7', $$Control subfield$$,
10150 FALSE, FALSE, FALSE);
10151 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10152                                  repeatable, mandatory, hidden)
10153 VALUES (1, 'biblio', '765', '8', $$Field link and sequence number$$,
10154 TRUE, FALSE, FALSE);
10155 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
10156                               fixed_field, repeatable, mandatory, hidden)
10157 VALUES (1, 'biblio', '767', $$Translation Entry$$, $$Information concerning the publication in some other language other than the original when the target item is in the original language or is another translation (horizontal relationship). When a note is generated from this field, the introductory phrase may be generated based on the field tag for display.$$,
10158 FALSE, TRUE, FALSE, FALSE);
10159 INSERT INTO config.record_attr_definition(name, label)
10160 VALUES ('marc21_biblio_767_ind_1', 'MARC 21 biblio field 767 indicator position 1');
10161 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10162 VALUES ('marc21_biblio_767_ind_1', '0', $$Display note$$, FALSE, TRUE);
10163 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10164 VALUES ('marc21_biblio_767_ind_1', '1', $$Do not display note$$, FALSE, TRUE);
10165 INSERT INTO config.record_attr_definition(name, label)
10166 VALUES ('marc21_biblio_767_ind_2', 'MARC 21 biblio field 767 indicator position 2');
10167 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10168 VALUES ('marc21_biblio_767_ind_2', '#', $$Translated as$$, FALSE, TRUE);
10169 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10170 VALUES ('marc21_biblio_767_ind_2', '8', $$No display constant generated$$, FALSE, TRUE);
10171 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10172                                  repeatable, mandatory, hidden)
10173 VALUES (1, 'biblio', '767', 'a', $$Main entry heading$$,
10174 FALSE, FALSE, FALSE);
10175 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10176                                  repeatable, mandatory, hidden)
10177 VALUES (1, 'biblio', '767', 'b', $$Edition$$,
10178 FALSE, FALSE, FALSE);
10179 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10180                                  repeatable, mandatory, hidden)
10181 VALUES (1, 'biblio', '767', 'c', $$Qualifying information$$,
10182 FALSE, FALSE, FALSE);
10183 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10184                                  repeatable, mandatory, hidden)
10185 VALUES (1, 'biblio', '767', 'd', $$Place, publisher, and date of publication$$,
10186 FALSE, FALSE, FALSE);
10187 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10188                                  repeatable, mandatory, hidden)
10189 VALUES (1, 'biblio', '767', 'g', $$Related parts$$,
10190 TRUE, FALSE, FALSE);
10191 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10192                                  repeatable, mandatory, hidden)
10193 VALUES (1, 'biblio', '767', 'h', $$Physical description$$,
10194 FALSE, FALSE, FALSE);
10195 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10196                                  repeatable, mandatory, hidden)
10197 VALUES (1, 'biblio', '767', 'i', $$Relationship information$$,
10198 TRUE, FALSE, FALSE);
10199 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10200                                  repeatable, mandatory, hidden)
10201 VALUES (1, 'biblio', '767', 'k', $$Series data for related item$$,
10202 TRUE, FALSE, FALSE);
10203 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10204                                  repeatable, mandatory, hidden)
10205 VALUES (1, 'biblio', '767', 'm', $$Material-specific details$$,
10206 FALSE, FALSE, FALSE);
10207 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10208                                  repeatable, mandatory, hidden)
10209 VALUES (1, 'biblio', '767', 'n', $$Note$$,
10210 TRUE, FALSE, FALSE);
10211 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10212                                  repeatable, mandatory, hidden)
10213 VALUES (1, 'biblio', '767', 'o', $$Other item identifier$$,
10214 TRUE, FALSE, FALSE);
10215 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10216                                  repeatable, mandatory, hidden)
10217 VALUES (1, 'biblio', '767', 'r', $$Report number$$,
10218 TRUE, FALSE, FALSE);
10219 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10220                                  repeatable, mandatory, hidden)
10221 VALUES (1, 'biblio', '767', 's', $$Uniform title$$,
10222 FALSE, FALSE, FALSE);
10223 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10224                                  repeatable, mandatory, hidden)
10225 VALUES (1, 'biblio', '767', 't', $$Title$$,
10226 FALSE, FALSE, FALSE);
10227 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10228                                  repeatable, mandatory, hidden)
10229 VALUES (1, 'biblio', '767', 'u', $$Standard Technical Report Number$$,
10230 FALSE, FALSE, FALSE);
10231 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10232                                  repeatable, mandatory, hidden)
10233 VALUES (1, 'biblio', '767', 'w', $$Record control number$$,
10234 TRUE, FALSE, FALSE);
10235 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10236                                  repeatable, mandatory, hidden)
10237 VALUES (1, 'biblio', '767', 'x', $$International Standard Serial Number$$,
10238 FALSE, FALSE, FALSE);
10239 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10240                                  repeatable, mandatory, hidden)
10241 VALUES (1, 'biblio', '767', 'y', $$CODEN designation$$,
10242 FALSE, FALSE, FALSE);
10243 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10244                                  repeatable, mandatory, hidden)
10245 VALUES (1, 'biblio', '767', 'z', $$International Standard Book Number$$,
10246 TRUE, FALSE, FALSE);
10247 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10248                                  repeatable, mandatory, hidden)
10249 VALUES (1, 'biblio', '767', '6', $$Linkage$$,
10250 FALSE, FALSE, FALSE);
10251 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10252                                  repeatable, mandatory, hidden)
10253 VALUES (1, 'biblio', '767', '7', $$Control subfield$$,
10254 FALSE, FALSE, FALSE);
10255 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10256                                  repeatable, mandatory, hidden)
10257 VALUES (1, 'biblio', '767', '8', $$Field link and sequence number$$,
10258 TRUE, FALSE, FALSE);
10259 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
10260                               fixed_field, repeatable, mandatory, hidden)
10261 VALUES (1, 'biblio', '770', $$Supplement/Special Issue Entry$$, $$Information concerning the supplement or special issue associated with the target item but cataloged and/or input as a separate record (vertical relationship). When a note is generated from this field, the introductory phrase may be generated based on the field tag for display.$$,
10262 FALSE, TRUE, FALSE, FALSE);
10263 INSERT INTO config.record_attr_definition(name, label)
10264 VALUES ('marc21_biblio_770_ind_1', 'MARC 21 biblio field 770 indicator position 1');
10265 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10266 VALUES ('marc21_biblio_770_ind_1', '0', $$Display note$$, FALSE, TRUE);
10267 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10268 VALUES ('marc21_biblio_770_ind_1', '1', $$Do not display note$$, FALSE, TRUE);
10269 INSERT INTO config.record_attr_definition(name, label)
10270 VALUES ('marc21_biblio_770_ind_2', 'MARC 21 biblio field 770 indicator position 2');
10271 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10272 VALUES ('marc21_biblio_770_ind_2', '#', $$Has supplement$$, FALSE, TRUE);
10273 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10274 VALUES ('marc21_biblio_770_ind_2', '8', $$No display constant generated$$, FALSE, TRUE);
10275 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10276                                  repeatable, mandatory, hidden)
10277 VALUES (1, 'biblio', '770', 'a', $$Main entry heading$$,
10278 FALSE, FALSE, FALSE);
10279 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10280                                  repeatable, mandatory, hidden)
10281 VALUES (1, 'biblio', '770', 'b', $$Edition$$,
10282 FALSE, FALSE, FALSE);
10283 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10284                                  repeatable, mandatory, hidden)
10285 VALUES (1, 'biblio', '770', 'c', $$Qualifying information$$,
10286 FALSE, FALSE, FALSE);
10287 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10288                                  repeatable, mandatory, hidden)
10289 VALUES (1, 'biblio', '770', 'd', $$Place, publisher, and date of publication$$,
10290 FALSE, FALSE, FALSE);
10291 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10292                                  repeatable, mandatory, hidden)
10293 VALUES (1, 'biblio', '770', 'g', $$Related parts$$,
10294 TRUE, FALSE, FALSE);
10295 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10296                                  repeatable, mandatory, hidden)
10297 VALUES (1, 'biblio', '770', 'h', $$Physical description$$,
10298 FALSE, FALSE, FALSE);
10299 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10300                                  repeatable, mandatory, hidden)
10301 VALUES (1, 'biblio', '770', 'i', $$Relationship information$$,
10302 TRUE, FALSE, FALSE);
10303 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10304                                  repeatable, mandatory, hidden)
10305 VALUES (1, 'biblio', '770', 'k', $$Series data for related item$$,
10306 TRUE, FALSE, FALSE);
10307 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10308                                  repeatable, mandatory, hidden)
10309 VALUES (1, 'biblio', '770', 'm', $$Material-specific details$$,
10310 FALSE, FALSE, FALSE);
10311 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10312                                  repeatable, mandatory, hidden)
10313 VALUES (1, 'biblio', '770', 'n', $$Note$$,
10314 TRUE, FALSE, FALSE);
10315 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10316                                  repeatable, mandatory, hidden)
10317 VALUES (1, 'biblio', '770', 'o', $$Other item identifier$$,
10318 TRUE, FALSE, FALSE);
10319 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10320                                  repeatable, mandatory, hidden)
10321 VALUES (1, 'biblio', '770', 'r', $$Report number$$,
10322 TRUE, FALSE, FALSE);
10323 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10324                                  repeatable, mandatory, hidden)
10325 VALUES (1, 'biblio', '770', 's', $$Uniform title$$,
10326 FALSE, FALSE, FALSE);
10327 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10328                                  repeatable, mandatory, hidden)
10329 VALUES (1, 'biblio', '770', 't', $$Title$$,
10330 FALSE, FALSE, FALSE);
10331 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10332                                  repeatable, mandatory, hidden)
10333 VALUES (1, 'biblio', '770', 'u', $$Standard Technical Report Number$$,
10334 FALSE, FALSE, FALSE);
10335 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10336                                  repeatable, mandatory, hidden)
10337 VALUES (1, 'biblio', '770', 'w', $$Record control number$$,
10338 TRUE, FALSE, FALSE);
10339 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10340                                  repeatable, mandatory, hidden)
10341 VALUES (1, 'biblio', '770', 'x', $$International Standard Serial Number$$,
10342 FALSE, FALSE, FALSE);
10343 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10344                                  repeatable, mandatory, hidden)
10345 VALUES (1, 'biblio', '770', 'y', $$CODEN designation$$,
10346 FALSE, FALSE, FALSE);
10347 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10348                                  repeatable, mandatory, hidden)
10349 VALUES (1, 'biblio', '770', 'z', $$International Standard Book Number$$,
10350 TRUE, FALSE, FALSE);
10351 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10352                                  repeatable, mandatory, hidden)
10353 VALUES (1, 'biblio', '770', '6', $$Linkage$$,
10354 FALSE, FALSE, FALSE);
10355 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10356                                  repeatable, mandatory, hidden)
10357 VALUES (1, 'biblio', '770', '7', $$Control subfield$$,
10358 FALSE, FALSE, FALSE);
10359 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10360                                  repeatable, mandatory, hidden)
10361 VALUES (1, 'biblio', '770', '8', $$Field link and sequence number$$,
10362 TRUE, FALSE, FALSE);
10363 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
10364                               fixed_field, repeatable, mandatory, hidden)
10365 VALUES (1, 'biblio', '772', $$Supplement Parent Entry$$, $$Information concerning the related parent record when the target item is a single issue, supplement or special issue (vertical relationship) of the parent item. When a note is generated from this field, the introductory phrase may be generated based on the field tag for display.$$,
10366 FALSE, TRUE, FALSE, FALSE);
10367 INSERT INTO config.record_attr_definition(name, label)
10368 VALUES ('marc21_biblio_772_ind_1', 'MARC 21 biblio field 772 indicator position 1');
10369 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10370 VALUES ('marc21_biblio_772_ind_1', '0', $$Display note$$, FALSE, TRUE);
10371 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10372 VALUES ('marc21_biblio_772_ind_1', '1', $$Do not display note$$, FALSE, TRUE);
10373 INSERT INTO config.record_attr_definition(name, label)
10374 VALUES ('marc21_biblio_772_ind_2', 'MARC 21 biblio field 772 indicator position 2');
10375 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10376 VALUES ('marc21_biblio_772_ind_2', '#', $$Supplement to$$, FALSE, TRUE);
10377 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10378 VALUES ('marc21_biblio_772_ind_2', '0', $$Parent$$, FALSE, TRUE);
10379 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10380 VALUES ('marc21_biblio_772_ind_2', '8', $$No display constant generated$$, FALSE, TRUE);
10381 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10382                                  repeatable, mandatory, hidden)
10383 VALUES (1, 'biblio', '772', 'a', $$Main entry heading$$,
10384 FALSE, FALSE, FALSE);
10385 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10386                                  repeatable, mandatory, hidden)
10387 VALUES (1, 'biblio', '772', 'b', $$Edition$$,
10388 FALSE, FALSE, FALSE);
10389 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10390                                  repeatable, mandatory, hidden)
10391 VALUES (1, 'biblio', '772', 'c', $$Qualifying information$$,
10392 FALSE, FALSE, FALSE);
10393 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10394                                  repeatable, mandatory, hidden)
10395 VALUES (1, 'biblio', '772', 'd', $$Place, publisher, and date of publication$$,
10396 FALSE, FALSE, FALSE);
10397 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10398                                  repeatable, mandatory, hidden)
10399 VALUES (1, 'biblio', '772', 'g', $$Related parts$$,
10400 TRUE, FALSE, FALSE);
10401 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10402                                  repeatable, mandatory, hidden)
10403 VALUES (1, 'biblio', '772', 'h', $$Physical description$$,
10404 FALSE, FALSE, FALSE);
10405 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10406                                  repeatable, mandatory, hidden)
10407 VALUES (1, 'biblio', '772', 'i', $$Relationship information$$,
10408 TRUE, FALSE, FALSE);
10409 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10410                                  repeatable, mandatory, hidden)
10411 VALUES (1, 'biblio', '772', 'k', $$Series data for related item$$,
10412 TRUE, FALSE, FALSE);
10413 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10414                                  repeatable, mandatory, hidden)
10415 VALUES (1, 'biblio', '772', 'm', $$Material-specific details$$,
10416 FALSE, FALSE, FALSE);
10417 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10418                                  repeatable, mandatory, hidden)
10419 VALUES (1, 'biblio', '772', 'n', $$Note$$,
10420 TRUE, FALSE, FALSE);
10421 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10422                                  repeatable, mandatory, hidden)
10423 VALUES (1, 'biblio', '772', 'o', $$Other item identifier$$,
10424 TRUE, FALSE, FALSE);
10425 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10426                                  repeatable, mandatory, hidden)
10427 VALUES (1, 'biblio', '772', 'r', $$Report number$$,
10428 TRUE, FALSE, FALSE);
10429 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10430                                  repeatable, mandatory, hidden)
10431 VALUES (1, 'biblio', '772', 's', $$Uniform title$$,
10432 FALSE, FALSE, FALSE);
10433 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10434                                  repeatable, mandatory, hidden)
10435 VALUES (1, 'biblio', '772', 't', $$Title$$,
10436 FALSE, FALSE, FALSE);
10437 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10438                                  repeatable, mandatory, hidden)
10439 VALUES (1, 'biblio', '772', 'u', $$Standard Technical Report Number$$,
10440 FALSE, FALSE, FALSE);
10441 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10442                                  repeatable, mandatory, hidden)
10443 VALUES (1, 'biblio', '772', 'w', $$Record control number$$,
10444 TRUE, FALSE, FALSE);
10445 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10446                                  repeatable, mandatory, hidden)
10447 VALUES (1, 'biblio', '772', 'x', $$International Standard Serial Number$$,
10448 FALSE, FALSE, FALSE);
10449 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10450                                  repeatable, mandatory, hidden)
10451 VALUES (1, 'biblio', '772', 'y', $$CODEN designation$$,
10452 FALSE, FALSE, FALSE);
10453 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10454                                  repeatable, mandatory, hidden)
10455 VALUES (1, 'biblio', '772', 'z', $$International Standard Book Number$$,
10456 TRUE, FALSE, FALSE);
10457 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10458                                  repeatable, mandatory, hidden)
10459 VALUES (1, 'biblio', '772', '6', $$Linkage$$,
10460 FALSE, FALSE, FALSE);
10461 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10462                                  repeatable, mandatory, hidden)
10463 VALUES (1, 'biblio', '772', '7', $$Control subfield$$,
10464 FALSE, FALSE, FALSE);
10465 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10466                                  repeatable, mandatory, hidden)
10467 VALUES (1, 'biblio', '772', '8', $$Field link and sequence number$$,
10468 TRUE, FALSE, FALSE);
10469 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
10470                               fixed_field, repeatable, mandatory, hidden)
10471 VALUES (1, 'biblio', '773', $$Host Item Entry$$, $$Information concerning the host item for the constituent unit described in the record (vertical relationship). In the case of host items that are serial or multi-volume in nature, information in subfields $g and $q is necessary to point to the exact location of the component part within the bibliographic item.$$,
10472 FALSE, TRUE, FALSE, FALSE);
10473 INSERT INTO config.record_attr_definition(name, label)
10474 VALUES ('marc21_biblio_773_ind_1', 'MARC 21 biblio field 773 indicator position 1');
10475 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10476 VALUES ('marc21_biblio_773_ind_1', '0', $$Display note$$, FALSE, TRUE);
10477 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10478 VALUES ('marc21_biblio_773_ind_1', '1', $$Do not display note$$, FALSE, TRUE);
10479 INSERT INTO config.record_attr_definition(name, label)
10480 VALUES ('marc21_biblio_773_ind_2', 'MARC 21 biblio field 773 indicator position 2');
10481 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10482 VALUES ('marc21_biblio_773_ind_2', '#', $$In$$, FALSE, TRUE);
10483 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10484 VALUES ('marc21_biblio_773_ind_2', '8', $$No display constant generated$$, FALSE, TRUE);
10485 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10486                                  repeatable, mandatory, hidden)
10487 VALUES (1, 'biblio', '773', 'a', $$Main entry heading$$,
10488 FALSE, FALSE, FALSE);
10489 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10490                                  repeatable, mandatory, hidden)
10491 VALUES (1, 'biblio', '773', 'b', $$Edition$$,
10492 FALSE, FALSE, FALSE);
10493 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10494                                  repeatable, mandatory, hidden)
10495 VALUES (1, 'biblio', '773', 'd', $$Place, publisher, and date of publication$$,
10496 FALSE, FALSE, FALSE);
10497 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10498                                  repeatable, mandatory, hidden)
10499 VALUES (1, 'biblio', '773', 'g', $$Related parts$$,
10500 TRUE, FALSE, FALSE);
10501 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10502                                  repeatable, mandatory, hidden)
10503 VALUES (1, 'biblio', '773', 'h', $$Physical description$$,
10504 FALSE, FALSE, FALSE);
10505 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10506                                  repeatable, mandatory, hidden)
10507 VALUES (1, 'biblio', '773', 'i', $$Relationship information$$,
10508 TRUE, FALSE, FALSE);
10509 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10510                                  repeatable, mandatory, hidden)
10511 VALUES (1, 'biblio', '773', 'k', $$Series data for related item$$,
10512 TRUE, FALSE, FALSE);
10513 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10514                                  repeatable, mandatory, hidden)
10515 VALUES (1, 'biblio', '773', 'm', $$Material-specific details$$,
10516 FALSE, FALSE, FALSE);
10517 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10518                                  repeatable, mandatory, hidden)
10519 VALUES (1, 'biblio', '773', 'n', $$Note$$,
10520 TRUE, FALSE, FALSE);
10521 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10522                                  repeatable, mandatory, hidden)
10523 VALUES (1, 'biblio', '773', 'o', $$Other item identifier$$,
10524 TRUE, FALSE, FALSE);
10525 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10526                                  repeatable, mandatory, hidden)
10527 VALUES (1, 'biblio', '773', 'p', $$Abbreviated title$$,
10528 FALSE, FALSE, FALSE);
10529 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10530                                  repeatable, mandatory, hidden)
10531 VALUES (1, 'biblio', '773', 'q', $$Enumeration and first page$$,
10532 FALSE, FALSE, FALSE);
10533 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10534                                  repeatable, mandatory, hidden)
10535 VALUES (1, 'biblio', '773', 'r', $$Report number$$,
10536 TRUE, FALSE, FALSE);
10537 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10538                                  repeatable, mandatory, hidden)
10539 VALUES (1, 'biblio', '773', 's', $$Uniform title$$,
10540 FALSE, FALSE, FALSE);
10541 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10542                                  repeatable, mandatory, hidden)
10543 VALUES (1, 'biblio', '773', 't', $$Title$$,
10544 FALSE, FALSE, FALSE);
10545 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10546                                  repeatable, mandatory, hidden)
10547 VALUES (1, 'biblio', '773', 'u', $$Standard Technical Report Number$$,
10548 FALSE, FALSE, FALSE);
10549 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10550                                  repeatable, mandatory, hidden)
10551 VALUES (1, 'biblio', '773', 'w', $$Record control number$$,
10552 TRUE, FALSE, FALSE);
10553 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10554                                  repeatable, mandatory, hidden)
10555 VALUES (1, 'biblio', '773', 'x', $$International Standard Serial Number$$,
10556 FALSE, FALSE, FALSE);
10557 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10558                                  repeatable, mandatory, hidden)
10559 VALUES (1, 'biblio', '773', 'y', $$CODEN designation$$,
10560 FALSE, FALSE, FALSE);
10561 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10562                                  repeatable, mandatory, hidden)
10563 VALUES (1, 'biblio', '773', 'z', $$International Standard Book Number$$,
10564 TRUE, FALSE, FALSE);
10565 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10566                                  repeatable, mandatory, hidden)
10567 VALUES (1, 'biblio', '773', '3', $$Materials specified$$,
10568 FALSE, FALSE, FALSE);
10569 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10570                                  repeatable, mandatory, hidden)
10571 VALUES (1, 'biblio', '773', '6', $$Linkage$$,
10572 FALSE, FALSE, FALSE);
10573 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10574                                  repeatable, mandatory, hidden)
10575 VALUES (1, 'biblio', '773', '7', $$Control subfield$$,
10576 FALSE, FALSE, FALSE);
10577 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10578                                  repeatable, mandatory, hidden)
10579 VALUES (1, 'biblio', '773', '8', $$Field link and sequence number$$,
10580 TRUE, FALSE, FALSE);
10581 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
10582                               fixed_field, repeatable, mandatory, hidden)
10583 VALUES (1, 'biblio', '774', $$Constituent Unit Entry$$, $$Information concerning a constituent unit associated with a larger bibliographic unit (vertical relationship). When a note is generated from this field, the introductory term may be generated based on the field tag for display.$$,
10584 FALSE, TRUE, FALSE, FALSE);
10585 INSERT INTO config.record_attr_definition(name, label)
10586 VALUES ('marc21_biblio_774_ind_1', 'MARC 21 biblio field 774 indicator position 1');
10587 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10588 VALUES ('marc21_biblio_774_ind_1', '0', $$Display note$$, FALSE, TRUE);
10589 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10590 VALUES ('marc21_biblio_774_ind_1', '1', $$Do not display note$$, FALSE, TRUE);
10591 INSERT INTO config.record_attr_definition(name, label)
10592 VALUES ('marc21_biblio_774_ind_2', 'MARC 21 biblio field 774 indicator position 2');
10593 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10594 VALUES ('marc21_biblio_774_ind_2', '#', $$Constituent unit$$, FALSE, TRUE);
10595 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10596 VALUES ('marc21_biblio_774_ind_2', '8', $$No display constant generated$$, FALSE, TRUE);
10597 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10598                                  repeatable, mandatory, hidden)
10599 VALUES (1, 'biblio', '774', 'a', $$Main entry heading$$,
10600 FALSE, FALSE, FALSE);
10601 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10602                                  repeatable, mandatory, hidden)
10603 VALUES (1, 'biblio', '774', 'b', $$Edition$$,
10604 FALSE, FALSE, FALSE);
10605 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10606                                  repeatable, mandatory, hidden)
10607 VALUES (1, 'biblio', '774', 'c', $$Qualifying information$$,
10608 FALSE, FALSE, FALSE);
10609 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10610                                  repeatable, mandatory, hidden)
10611 VALUES (1, 'biblio', '774', 'd', $$Place, publisher, and date of publication$$,
10612 FALSE, FALSE, FALSE);
10613 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10614                                  repeatable, mandatory, hidden)
10615 VALUES (1, 'biblio', '774', 'g', $$Related parts$$,
10616 TRUE, FALSE, FALSE);
10617 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10618                                  repeatable, mandatory, hidden)
10619 VALUES (1, 'biblio', '774', 'h', $$Physical description$$,
10620 FALSE, FALSE, FALSE);
10621 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10622                                  repeatable, mandatory, hidden)
10623 VALUES (1, 'biblio', '774', 'i', $$Relationship information$$,
10624 TRUE, FALSE, FALSE);
10625 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10626                                  repeatable, mandatory, hidden)
10627 VALUES (1, 'biblio', '774', 'k', $$Series data for related item$$,
10628 TRUE, FALSE, FALSE);
10629 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10630                                  repeatable, mandatory, hidden)
10631 VALUES (1, 'biblio', '774', 'm', $$Material-specific details$$,
10632 FALSE, FALSE, FALSE);
10633 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10634                                  repeatable, mandatory, hidden)
10635 VALUES (1, 'biblio', '774', 'n', $$Note$$,
10636 TRUE, FALSE, FALSE);
10637 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10638                                  repeatable, mandatory, hidden)
10639 VALUES (1, 'biblio', '774', 'o', $$Other item identifier$$,
10640 TRUE, FALSE, FALSE);
10641 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10642                                  repeatable, mandatory, hidden)
10643 VALUES (1, 'biblio', '774', 'r', $$Report number$$,
10644 TRUE, FALSE, FALSE);
10645 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10646                                  repeatable, mandatory, hidden)
10647 VALUES (1, 'biblio', '774', 's', $$Uniform title$$,
10648 FALSE, FALSE, FALSE);
10649 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10650                                  repeatable, mandatory, hidden)
10651 VALUES (1, 'biblio', '774', 't', $$Title$$,
10652 FALSE, FALSE, FALSE);
10653 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10654                                  repeatable, mandatory, hidden)
10655 VALUES (1, 'biblio', '774', 'u', $$Standard Technical Report Number$$,
10656 FALSE, FALSE, FALSE);
10657 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10658                                  repeatable, mandatory, hidden)
10659 VALUES (1, 'biblio', '774', 'w', $$Record control number$$,
10660 TRUE, FALSE, FALSE);
10661 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10662                                  repeatable, mandatory, hidden)
10663 VALUES (1, 'biblio', '774', 'x', $$International Standard Serial Number$$,
10664 FALSE, FALSE, FALSE);
10665 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10666                                  repeatable, mandatory, hidden)
10667 VALUES (1, 'biblio', '774', 'y', $$CODEN designation$$,
10668 FALSE, FALSE, FALSE);
10669 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10670                                  repeatable, mandatory, hidden)
10671 VALUES (1, 'biblio', '774', 'z', $$International Standard Book Number$$,
10672 TRUE, FALSE, FALSE);
10673 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10674                                  repeatable, mandatory, hidden)
10675 VALUES (1, 'biblio', '774', '6', $$Linkage$$,
10676 FALSE, FALSE, FALSE);
10677 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10678                                  repeatable, mandatory, hidden)
10679 VALUES (1, 'biblio', '774', '7', $$Control subfield$$,
10680 FALSE, FALSE, FALSE);
10681 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10682                                  repeatable, mandatory, hidden)
10683 VALUES (1, 'biblio', '774', '8', $$Field link and sequence number$$,
10684 TRUE, FALSE, FALSE);
10685 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
10686                               fixed_field, repeatable, mandatory, hidden)
10687 VALUES (1, 'biblio', '775', $$Other Edition Entry$$, $$Entry for another available edition of the target item (horizontal relationship). When a note is generated from this field, the introductory phrase may be generated based on the field tag for display.$$,
10688 FALSE, TRUE, FALSE, FALSE);
10689 INSERT INTO config.record_attr_definition(name, label)
10690 VALUES ('marc21_biblio_775_ind_1', 'MARC 21 biblio field 775 indicator position 1');
10691 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10692 VALUES ('marc21_biblio_775_ind_1', '0', $$Display note$$, FALSE, TRUE);
10693 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10694 VALUES ('marc21_biblio_775_ind_1', '1', $$Do not display note$$, FALSE, TRUE);
10695 INSERT INTO config.record_attr_definition(name, label)
10696 VALUES ('marc21_biblio_775_ind_2', 'MARC 21 biblio field 775 indicator position 2');
10697 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10698 VALUES ('marc21_biblio_775_ind_2', '#', $$Other edition available$$, FALSE, TRUE);
10699 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10700 VALUES ('marc21_biblio_775_ind_2', '8', $$No display constant generated$$, FALSE, TRUE);
10701 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10702                                  repeatable, mandatory, hidden)
10703 VALUES (1, 'biblio', '775', 'a', $$Main entry heading$$,
10704 FALSE, FALSE, FALSE);
10705 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10706                                  repeatable, mandatory, hidden)
10707 VALUES (1, 'biblio', '775', 'b', $$Edition$$,
10708 FALSE, FALSE, FALSE);
10709 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10710                                  repeatable, mandatory, hidden)
10711 VALUES (1, 'biblio', '775', 'c', $$Qualifying information$$,
10712 FALSE, FALSE, FALSE);
10713 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10714                                  repeatable, mandatory, hidden)
10715 VALUES (1, 'biblio', '775', 'd', $$Place, publisher, and date of publication$$,
10716 FALSE, FALSE, FALSE);
10717 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10718                                  repeatable, mandatory, hidden)
10719 VALUES (1, 'biblio', '775', 'e', $$Language code$$,
10720 FALSE, FALSE, FALSE);
10721 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10722                                  repeatable, mandatory, hidden)
10723 VALUES (1, 'biblio', '775', 'f', $$Country code$$,
10724 FALSE, FALSE, FALSE);
10725 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10726                                  repeatable, mandatory, hidden)
10727 VALUES (1, 'biblio', '775', 'g', $$Related parts$$,
10728 TRUE, FALSE, FALSE);
10729 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10730                                  repeatable, mandatory, hidden)
10731 VALUES (1, 'biblio', '775', 'h', $$Physical description$$,
10732 FALSE, FALSE, FALSE);
10733 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10734                                  repeatable, mandatory, hidden)
10735 VALUES (1, 'biblio', '775', 'i', $$Relationship information$$,
10736 TRUE, FALSE, FALSE);
10737 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10738                                  repeatable, mandatory, hidden)
10739 VALUES (1, 'biblio', '775', 'k', $$Series data for related item$$,
10740 TRUE, FALSE, FALSE);
10741 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10742                                  repeatable, mandatory, hidden)
10743 VALUES (1, 'biblio', '775', 'm', $$Material-specific details$$,
10744 FALSE, FALSE, FALSE);
10745 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10746                                  repeatable, mandatory, hidden)
10747 VALUES (1, 'biblio', '775', 'n', $$Note$$,
10748 TRUE, FALSE, FALSE);
10749 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10750                                  repeatable, mandatory, hidden)
10751 VALUES (1, 'biblio', '775', 'o', $$Other item identifier$$,
10752 TRUE, FALSE, FALSE);
10753 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10754                                  repeatable, mandatory, hidden)
10755 VALUES (1, 'biblio', '775', 'r', $$Report number$$,
10756 TRUE, FALSE, FALSE);
10757 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10758                                  repeatable, mandatory, hidden)
10759 VALUES (1, 'biblio', '775', 's', $$Uniform title$$,
10760 FALSE, FALSE, FALSE);
10761 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10762                                  repeatable, mandatory, hidden)
10763 VALUES (1, 'biblio', '775', 't', $$Title$$,
10764 FALSE, FALSE, FALSE);
10765 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10766                                  repeatable, mandatory, hidden)
10767 VALUES (1, 'biblio', '775', 'u', $$Standard Technical Report Number$$,
10768 FALSE, FALSE, FALSE);
10769 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10770                                  repeatable, mandatory, hidden)
10771 VALUES (1, 'biblio', '775', 'w', $$Record control number$$,
10772 TRUE, FALSE, FALSE);
10773 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10774                                  repeatable, mandatory, hidden)
10775 VALUES (1, 'biblio', '775', 'x', $$International Standard Serial Number$$,
10776 FALSE, FALSE, FALSE);
10777 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10778                                  repeatable, mandatory, hidden)
10779 VALUES (1, 'biblio', '775', 'y', $$CODEN designation$$,
10780 FALSE, FALSE, FALSE);
10781 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10782                                  repeatable, mandatory, hidden)
10783 VALUES (1, 'biblio', '775', 'z', $$International Standard Book Number$$,
10784 TRUE, FALSE, FALSE);
10785 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10786                                  repeatable, mandatory, hidden)
10787 VALUES (1, 'biblio', '775', '6', $$Linkage$$,
10788 FALSE, FALSE, FALSE);
10789 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10790                                  repeatable, mandatory, hidden)
10791 VALUES (1, 'biblio', '775', '7', $$Control subfield$$,
10792 FALSE, FALSE, FALSE);
10793 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10794                                  repeatable, mandatory, hidden)
10795 VALUES (1, 'biblio', '775', '8', $$Field link and sequence number$$,
10796 TRUE, FALSE, FALSE);
10797 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
10798                               fixed_field, repeatable, mandatory, hidden)
10799 VALUES (1, 'biblio', '776', $$Additional Physical Form Entry$$, $$Information concerning another available physical form of the target item (horizontal relationship). When a note is generated from this field, the introductory phrase may be generated based on the field tag for display.$$,
10800 FALSE, TRUE, FALSE, FALSE);
10801 INSERT INTO config.record_attr_definition(name, label)
10802 VALUES ('marc21_biblio_776_ind_1', 'MARC 21 biblio field 776 indicator position 1');
10803 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10804 VALUES ('marc21_biblio_776_ind_1', '0', $$Display note$$, FALSE, TRUE);
10805 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10806 VALUES ('marc21_biblio_776_ind_1', '1', $$Do not display note$$, FALSE, TRUE);
10807 INSERT INTO config.record_attr_definition(name, label)
10808 VALUES ('marc21_biblio_776_ind_2', 'MARC 21 biblio field 776 indicator position 2');
10809 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10810 VALUES ('marc21_biblio_776_ind_2', '#', $$Available in another form$$, FALSE, TRUE);
10811 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10812 VALUES ('marc21_biblio_776_ind_2', '8', $$No display constant generated$$, FALSE, TRUE);
10813 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10814                                  repeatable, mandatory, hidden)
10815 VALUES (1, 'biblio', '776', 'a', $$Main entry heading$$,
10816 FALSE, FALSE, FALSE);
10817 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10818                                  repeatable, mandatory, hidden)
10819 VALUES (1, 'biblio', '776', 'b', $$Edition$$,
10820 FALSE, FALSE, FALSE);
10821 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10822                                  repeatable, mandatory, hidden)
10823 VALUES (1, 'biblio', '776', 'c', $$Qualifying information$$,
10824 FALSE, FALSE, FALSE);
10825 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10826                                  repeatable, mandatory, hidden)
10827 VALUES (1, 'biblio', '776', 'd', $$Place, publisher, and date of publication$$,
10828 FALSE, FALSE, FALSE);
10829 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10830                                  repeatable, mandatory, hidden)
10831 VALUES (1, 'biblio', '776', 'g', $$Related parts$$,
10832 TRUE, FALSE, FALSE);
10833 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10834                                  repeatable, mandatory, hidden)
10835 VALUES (1, 'biblio', '776', 'h', $$Physical description$$,
10836 FALSE, FALSE, FALSE);
10837 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10838                                  repeatable, mandatory, hidden)
10839 VALUES (1, 'biblio', '776', 'i', $$Relationship information$$,
10840 TRUE, FALSE, FALSE);
10841 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10842                                  repeatable, mandatory, hidden)
10843 VALUES (1, 'biblio', '776', 'k', $$Series data for related item$$,
10844 TRUE, FALSE, FALSE);
10845 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10846                                  repeatable, mandatory, hidden)
10847 VALUES (1, 'biblio', '776', 'm', $$Material-specific details$$,
10848 FALSE, FALSE, FALSE);
10849 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10850                                  repeatable, mandatory, hidden)
10851 VALUES (1, 'biblio', '776', 'n', $$Note$$,
10852 TRUE, FALSE, FALSE);
10853 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10854                                  repeatable, mandatory, hidden)
10855 VALUES (1, 'biblio', '776', 'o', $$Other item identifier$$,
10856 TRUE, FALSE, FALSE);
10857 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10858                                  repeatable, mandatory, hidden)
10859 VALUES (1, 'biblio', '776', 'r', $$Report number$$,
10860 TRUE, FALSE, FALSE);
10861 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10862                                  repeatable, mandatory, hidden)
10863 VALUES (1, 'biblio', '776', 's', $$Uniform title$$,
10864 FALSE, FALSE, FALSE);
10865 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10866                                  repeatable, mandatory, hidden)
10867 VALUES (1, 'biblio', '776', 't', $$Title$$,
10868 FALSE, FALSE, FALSE);
10869 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10870                                  repeatable, mandatory, hidden)
10871 VALUES (1, 'biblio', '776', 'u', $$Standard Technical Report Number$$,
10872 FALSE, FALSE, FALSE);
10873 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10874                                  repeatable, mandatory, hidden)
10875 VALUES (1, 'biblio', '776', 'w', $$Record control number$$,
10876 TRUE, FALSE, FALSE);
10877 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10878                                  repeatable, mandatory, hidden)
10879 VALUES (1, 'biblio', '776', 'x', $$International Standard Serial Number$$,
10880 FALSE, FALSE, FALSE);
10881 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10882                                  repeatable, mandatory, hidden)
10883 VALUES (1, 'biblio', '776', 'y', $$CODEN designation$$,
10884 FALSE, FALSE, FALSE);
10885 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10886                                  repeatable, mandatory, hidden)
10887 VALUES (1, 'biblio', '776', 'z', $$International Standard Book Number$$,
10888 TRUE, FALSE, FALSE);
10889 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10890                                  repeatable, mandatory, hidden)
10891 VALUES (1, 'biblio', '776', '6', $$Linkage$$,
10892 FALSE, FALSE, FALSE);
10893 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10894                                  repeatable, mandatory, hidden)
10895 VALUES (1, 'biblio', '776', '7', $$Control subfield$$,
10896 FALSE, FALSE, FALSE);
10897 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10898                                  repeatable, mandatory, hidden)
10899 VALUES (1, 'biblio', '776', '8', $$Field link and sequence number$$,
10900 TRUE, FALSE, FALSE);
10901 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
10902                               fixed_field, repeatable, mandatory, hidden)
10903 VALUES (1, 'biblio', '777', $$Issued With Entry$$, $$Information concerning the publication that is separately cataloged but that is issued with or included in the target item (horizontal relationship). When a note is generated from this field, the introductory phrase may be generated based on the field tag for display.$$,
10904 FALSE, TRUE, FALSE, FALSE);
10905 INSERT INTO config.record_attr_definition(name, label)
10906 VALUES ('marc21_biblio_777_ind_1', 'MARC 21 biblio field 777 indicator position 1');
10907 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10908 VALUES ('marc21_biblio_777_ind_1', '0', $$Display note$$, FALSE, TRUE);
10909 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10910 VALUES ('marc21_biblio_777_ind_1', '1', $$Do not display note$$, FALSE, TRUE);
10911 INSERT INTO config.record_attr_definition(name, label)
10912 VALUES ('marc21_biblio_777_ind_2', 'MARC 21 biblio field 777 indicator position 2');
10913 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10914 VALUES ('marc21_biblio_777_ind_2', '#', $$Issued with$$, FALSE, TRUE);
10915 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
10916 VALUES ('marc21_biblio_777_ind_2', '8', $$No display constant generated$$, FALSE, TRUE);
10917 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10918                                  repeatable, mandatory, hidden)
10919 VALUES (1, 'biblio', '777', 'a', $$Main entry heading$$,
10920 FALSE, FALSE, FALSE);
10921 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10922                                  repeatable, mandatory, hidden)
10923 VALUES (1, 'biblio', '777', 'b', $$Edition$$,
10924 FALSE, FALSE, FALSE);
10925 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10926                                  repeatable, mandatory, hidden)
10927 VALUES (1, 'biblio', '777', 'c', $$Qualifying information$$,
10928 FALSE, FALSE, FALSE);
10929 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10930                                  repeatable, mandatory, hidden)
10931 VALUES (1, 'biblio', '777', 'd', $$Place, publisher, and date of publication$$,
10932 FALSE, FALSE, FALSE);
10933 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10934                                  repeatable, mandatory, hidden)
10935 VALUES (1, 'biblio', '777', 'g', $$Related parts$$,
10936 TRUE, FALSE, FALSE);
10937 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10938                                  repeatable, mandatory, hidden)
10939 VALUES (1, 'biblio', '777', 'h', $$Physical description$$,
10940 FALSE, FALSE, FALSE);
10941 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10942                                  repeatable, mandatory, hidden)
10943 VALUES (1, 'biblio', '777', 'i', $$Relationship information$$,
10944 TRUE, FALSE, FALSE);
10945 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10946                                  repeatable, mandatory, hidden)
10947 VALUES (1, 'biblio', '777', 'k', $$Series data for related item$$,
10948 TRUE, FALSE, FALSE);
10949 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10950                                  repeatable, mandatory, hidden)
10951 VALUES (1, 'biblio', '777', 'm', $$Material-specific details$$,
10952 FALSE, FALSE, FALSE);
10953 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10954                                  repeatable, mandatory, hidden)
10955 VALUES (1, 'biblio', '777', 'n', $$Note$$,
10956 TRUE, FALSE, FALSE);
10957 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10958                                  repeatable, mandatory, hidden)
10959 VALUES (1, 'biblio', '777', 'o', $$Other item identifier$$,
10960 TRUE, FALSE, FALSE);
10961 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10962                                  repeatable, mandatory, hidden)
10963 VALUES (1, 'biblio', '777', 's', $$Uniform title$$,
10964 FALSE, FALSE, FALSE);
10965 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10966                                  repeatable, mandatory, hidden)
10967 VALUES (1, 'biblio', '777', 't', $$Title$$,
10968 FALSE, FALSE, FALSE);
10969 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10970                                  repeatable, mandatory, hidden)
10971 VALUES (1, 'biblio', '777', 'w', $$Record control number$$,
10972 TRUE, FALSE, FALSE);
10973 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10974                                  repeatable, mandatory, hidden)
10975 VALUES (1, 'biblio', '777', 'x', $$International Standard Serial Number$$,
10976 FALSE, FALSE, FALSE);
10977 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10978                                  repeatable, mandatory, hidden)
10979 VALUES (1, 'biblio', '777', 'y', $$CODEN designation$$,
10980 FALSE, FALSE, FALSE);
10981 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10982                                  repeatable, mandatory, hidden)
10983 VALUES (1, 'biblio', '777', '6', $$Linkage$$,
10984 FALSE, FALSE, FALSE);
10985 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10986                                  repeatable, mandatory, hidden)
10987 VALUES (1, 'biblio', '777', '7', $$Control subfield$$,
10988 FALSE, FALSE, FALSE);
10989 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
10990                                  repeatable, mandatory, hidden)
10991 VALUES (1, 'biblio', '777', '8', $$Field link and sequence number$$,
10992 TRUE, FALSE, FALSE);
10993 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
10994                               fixed_field, repeatable, mandatory, hidden)
10995 VALUES (1, 'biblio', '780', $$Preceding Entry$$, $$Information concerning the immediate predecessor of the target item (chronological relationship). When a note is generated from this field, the introductory term or phrase may be generated based on the value in the second indicator position for display.$$,
10996 FALSE, TRUE, FALSE, FALSE);
10997 INSERT INTO config.record_attr_definition(name, label)
10998 VALUES ('marc21_biblio_780_ind_1', 'MARC 21 biblio field 780 indicator position 1');
10999 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11000 VALUES ('marc21_biblio_780_ind_1', '0', $$Display note$$, FALSE, TRUE);
11001 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11002 VALUES ('marc21_biblio_780_ind_1', '1', $$Do not display note$$, FALSE, TRUE);
11003 INSERT INTO config.record_attr_definition(name, label)
11004 VALUES ('marc21_biblio_780_ind_2', 'MARC 21 biblio field 780 indicator position 2');
11005 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11006 VALUES ('marc21_biblio_780_ind_2', '0', $$Continues$$, FALSE, TRUE);
11007 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11008 VALUES ('marc21_biblio_780_ind_2', '1', $$Continues in part$$, FALSE, TRUE);
11009 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11010 VALUES ('marc21_biblio_780_ind_2', '2', $$Supersedes$$, FALSE, TRUE);
11011 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11012 VALUES ('marc21_biblio_780_ind_2', '3', $$Supersedes in part$$, FALSE, TRUE);
11013 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11014 VALUES ('marc21_biblio_780_ind_2', '4', $$Formed by the union of ... and ...$$, FALSE, TRUE);
11015 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11016 VALUES ('marc21_biblio_780_ind_2', '5', $$Absorbed$$, FALSE, TRUE);
11017 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11018 VALUES ('marc21_biblio_780_ind_2', '6', $$Absorbed in part$$, FALSE, TRUE);
11019 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11020 VALUES ('marc21_biblio_780_ind_2', '7', $$Separated from$$, FALSE, TRUE);
11021 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11022                                  repeatable, mandatory, hidden)
11023 VALUES (1, 'biblio', '780', 'a', $$Main entry heading$$,
11024 FALSE, FALSE, FALSE);
11025 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11026                                  repeatable, mandatory, hidden)
11027 VALUES (1, 'biblio', '780', 'b', $$Edition$$,
11028 FALSE, FALSE, FALSE);
11029 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11030                                  repeatable, mandatory, hidden)
11031 VALUES (1, 'biblio', '780', 'c', $$Qualifying information$$,
11032 FALSE, FALSE, FALSE);
11033 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11034                                  repeatable, mandatory, hidden)
11035 VALUES (1, 'biblio', '780', 'd', $$Place, publisher, and date of publication$$,
11036 FALSE, FALSE, FALSE);
11037 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11038                                  repeatable, mandatory, hidden)
11039 VALUES (1, 'biblio', '780', 'g', $$Related parts$$,
11040 TRUE, FALSE, FALSE);
11041 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11042                                  repeatable, mandatory, hidden)
11043 VALUES (1, 'biblio', '780', 'h', $$Physical description$$,
11044 FALSE, FALSE, FALSE);
11045 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11046                                  repeatable, mandatory, hidden)
11047 VALUES (1, 'biblio', '780', 'i', $$Relationship information$$,
11048 TRUE, FALSE, FALSE);
11049 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11050                                  repeatable, mandatory, hidden)
11051 VALUES (1, 'biblio', '780', 'k', $$Series data for related item$$,
11052 TRUE, FALSE, FALSE);
11053 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11054                                  repeatable, mandatory, hidden)
11055 VALUES (1, 'biblio', '780', 'm', $$Material-specific details$$,
11056 FALSE, FALSE, FALSE);
11057 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11058                                  repeatable, mandatory, hidden)
11059 VALUES (1, 'biblio', '780', 'n', $$Note$$,
11060 TRUE, FALSE, FALSE);
11061 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11062                                  repeatable, mandatory, hidden)
11063 VALUES (1, 'biblio', '780', 'o', $$Other item identifier$$,
11064 TRUE, FALSE, FALSE);
11065 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11066                                  repeatable, mandatory, hidden)
11067 VALUES (1, 'biblio', '780', 'r', $$Report number$$,
11068 TRUE, FALSE, FALSE);
11069 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11070                                  repeatable, mandatory, hidden)
11071 VALUES (1, 'biblio', '780', 's', $$Uniform title$$,
11072 FALSE, FALSE, FALSE);
11073 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11074                                  repeatable, mandatory, hidden)
11075 VALUES (1, 'biblio', '780', 't', $$Title$$,
11076 FALSE, FALSE, FALSE);
11077 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11078                                  repeatable, mandatory, hidden)
11079 VALUES (1, 'biblio', '780', 'u', $$Standard Technical Report Number$$,
11080 FALSE, FALSE, FALSE);
11081 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11082                                  repeatable, mandatory, hidden)
11083 VALUES (1, 'biblio', '780', 'w', $$Record control number$$,
11084 TRUE, FALSE, FALSE);
11085 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11086                                  repeatable, mandatory, hidden)
11087 VALUES (1, 'biblio', '780', 'x', $$International Standard Serial Number$$,
11088 FALSE, FALSE, FALSE);
11089 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11090                                  repeatable, mandatory, hidden)
11091 VALUES (1, 'biblio', '780', 'y', $$CODEN designation$$,
11092 FALSE, FALSE, FALSE);
11093 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11094                                  repeatable, mandatory, hidden)
11095 VALUES (1, 'biblio', '780', 'z', $$International Standard Book Number$$,
11096 TRUE, FALSE, FALSE);
11097 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11098                                  repeatable, mandatory, hidden)
11099 VALUES (1, 'biblio', '780', '6', $$Linkage$$,
11100 FALSE, FALSE, FALSE);
11101 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11102                                  repeatable, mandatory, hidden)
11103 VALUES (1, 'biblio', '780', '7', $$Control subfield$$,
11104 FALSE, FALSE, FALSE);
11105 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11106                                  repeatable, mandatory, hidden)
11107 VALUES (1, 'biblio', '780', '8', $$Field link and sequence number$$,
11108 TRUE, FALSE, FALSE);
11109 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
11110                               fixed_field, repeatable, mandatory, hidden)
11111 VALUES (1, 'biblio', '785', $$Succeeding Entry$$, $$Information concerning the immediate successor to the target item (chronological relationship). When a note is generated from this field, the introductory phrase may be generated based on the value in the second indicator position for display.$$,
11112 FALSE, TRUE, FALSE, FALSE);
11113 INSERT INTO config.record_attr_definition(name, label)
11114 VALUES ('marc21_biblio_785_ind_1', 'MARC 21 biblio field 785 indicator position 1');
11115 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11116 VALUES ('marc21_biblio_785_ind_1', '0', $$Display note$$, FALSE, TRUE);
11117 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11118 VALUES ('marc21_biblio_785_ind_1', '1', $$Do not display note$$, FALSE, TRUE);
11119 INSERT INTO config.record_attr_definition(name, label)
11120 VALUES ('marc21_biblio_785_ind_2', 'MARC 21 biblio field 785 indicator position 2');
11121 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11122 VALUES ('marc21_biblio_785_ind_2', '0', $$Continued by$$, FALSE, TRUE);
11123 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11124 VALUES ('marc21_biblio_785_ind_2', '1', $$Continued in part by$$, FALSE, TRUE);
11125 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11126 VALUES ('marc21_biblio_785_ind_2', '2', $$Superseded by$$, FALSE, TRUE);
11127 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11128 VALUES ('marc21_biblio_785_ind_2', '3', $$Superseded in part by$$, FALSE, TRUE);
11129 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11130 VALUES ('marc21_biblio_785_ind_2', '4', $$Absorbed by$$, FALSE, TRUE);
11131 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11132 VALUES ('marc21_biblio_785_ind_2', '5', $$Absorbed in part by$$, FALSE, TRUE);
11133 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11134 VALUES ('marc21_biblio_785_ind_2', '6', $$Split into ... and ...$$, FALSE, TRUE);
11135 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11136 VALUES ('marc21_biblio_785_ind_2', '7', $$Merged with ... to form ...$$, FALSE, TRUE);
11137 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11138 VALUES ('marc21_biblio_785_ind_2', '8', $$Changed back to$$, FALSE, TRUE);
11139 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11140                                  repeatable, mandatory, hidden)
11141 VALUES (1, 'biblio', '785', 'a', $$Main entry heading$$,
11142 FALSE, FALSE, FALSE);
11143 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11144                                  repeatable, mandatory, hidden)
11145 VALUES (1, 'biblio', '785', 'b', $$Edition$$,
11146 FALSE, FALSE, FALSE);
11147 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11148                                  repeatable, mandatory, hidden)
11149 VALUES (1, 'biblio', '785', 'c', $$Qualifying information$$,
11150 FALSE, FALSE, FALSE);
11151 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11152                                  repeatable, mandatory, hidden)
11153 VALUES (1, 'biblio', '785', 'd', $$Place, publisher, and date of publication$$,
11154 FALSE, FALSE, FALSE);
11155 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11156                                  repeatable, mandatory, hidden)
11157 VALUES (1, 'biblio', '785', 'g', $$Related parts$$,
11158 TRUE, FALSE, FALSE);
11159 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11160                                  repeatable, mandatory, hidden)
11161 VALUES (1, 'biblio', '785', 'h', $$Physical description$$,
11162 FALSE, FALSE, FALSE);
11163 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11164                                  repeatable, mandatory, hidden)
11165 VALUES (1, 'biblio', '785', 'i', $$Relationship information$$,
11166 TRUE, FALSE, FALSE);
11167 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11168                                  repeatable, mandatory, hidden)
11169 VALUES (1, 'biblio', '785', 'k', $$Series data for related item$$,
11170 TRUE, FALSE, FALSE);
11171 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11172                                  repeatable, mandatory, hidden)
11173 VALUES (1, 'biblio', '785', 'm', $$Material-specific details$$,
11174 FALSE, FALSE, FALSE);
11175 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11176                                  repeatable, mandatory, hidden)
11177 VALUES (1, 'biblio', '785', 'n', $$Note$$,
11178 TRUE, FALSE, FALSE);
11179 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11180                                  repeatable, mandatory, hidden)
11181 VALUES (1, 'biblio', '785', 'o', $$Other item identifier$$,
11182 TRUE, FALSE, FALSE);
11183 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11184                                  repeatable, mandatory, hidden)
11185 VALUES (1, 'biblio', '785', 'r', $$Report number$$,
11186 TRUE, FALSE, FALSE);
11187 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11188                                  repeatable, mandatory, hidden)
11189 VALUES (1, 'biblio', '785', 's', $$Uniform title$$,
11190 FALSE, FALSE, FALSE);
11191 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11192                                  repeatable, mandatory, hidden)
11193 VALUES (1, 'biblio', '785', 't', $$Title$$,
11194 FALSE, FALSE, FALSE);
11195 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11196                                  repeatable, mandatory, hidden)
11197 VALUES (1, 'biblio', '785', 'u', $$Standard Technical Report Number$$,
11198 FALSE, FALSE, FALSE);
11199 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11200                                  repeatable, mandatory, hidden)
11201 VALUES (1, 'biblio', '785', 'w', $$Record control number$$,
11202 TRUE, FALSE, FALSE);
11203 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11204                                  repeatable, mandatory, hidden)
11205 VALUES (1, 'biblio', '785', 'x', $$International Standard Serial Number$$,
11206 FALSE, FALSE, FALSE);
11207 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11208                                  repeatable, mandatory, hidden)
11209 VALUES (1, 'biblio', '785', 'y', $$CODEN designation$$,
11210 FALSE, FALSE, FALSE);
11211 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11212                                  repeatable, mandatory, hidden)
11213 VALUES (1, 'biblio', '785', 'z', $$International Standard Book Number$$,
11214 TRUE, FALSE, FALSE);
11215 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11216                                  repeatable, mandatory, hidden)
11217 VALUES (1, 'biblio', '785', '6', $$Linkage$$,
11218 FALSE, FALSE, FALSE);
11219 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11220                                  repeatable, mandatory, hidden)
11221 VALUES (1, 'biblio', '785', '7', $$Control subfield$$,
11222 FALSE, FALSE, FALSE);
11223 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11224                                  repeatable, mandatory, hidden)
11225 VALUES (1, 'biblio', '785', '8', $$Field link and sequence number$$,
11226 TRUE, FALSE, FALSE);
11227 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
11228                               fixed_field, repeatable, mandatory, hidden)
11229 VALUES (1, 'biblio', '786', $$Data Source Entry$$, $$Information pertaining to a data source to which the described item is related. It may contain information about other files, printed sources, or collection procedures.$$,
11230 FALSE, TRUE, FALSE, FALSE);
11231 INSERT INTO config.record_attr_definition(name, label)
11232 VALUES ('marc21_biblio_786_ind_1', 'MARC 21 biblio field 786 indicator position 1');
11233 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11234 VALUES ('marc21_biblio_786_ind_1', '0', $$Display note$$, FALSE, TRUE);
11235 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11236 VALUES ('marc21_biblio_786_ind_1', '1', $$Do not display note$$, FALSE, TRUE);
11237 INSERT INTO config.record_attr_definition(name, label)
11238 VALUES ('marc21_biblio_786_ind_2', 'MARC 21 biblio field 786 indicator position 2');
11239 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11240 VALUES ('marc21_biblio_786_ind_2', '#', $$Data source$$, FALSE, TRUE);
11241 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11242 VALUES ('marc21_biblio_786_ind_2', '8', $$No display constant generated$$, FALSE, TRUE);
11243 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11244                                  repeatable, mandatory, hidden)
11245 VALUES (1, 'biblio', '786', 'a', $$Main entry heading$$,
11246 FALSE, FALSE, FALSE);
11247 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11248                                  repeatable, mandatory, hidden)
11249 VALUES (1, 'biblio', '786', 'b', $$Edition$$,
11250 FALSE, FALSE, FALSE);
11251 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11252                                  repeatable, mandatory, hidden)
11253 VALUES (1, 'biblio', '786', 'c', $$Qualifying information$$,
11254 FALSE, FALSE, FALSE);
11255 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11256                                  repeatable, mandatory, hidden)
11257 VALUES (1, 'biblio', '786', 'd', $$Place, publisher, and date of publication$$,
11258 FALSE, FALSE, FALSE);
11259 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11260                                  repeatable, mandatory, hidden)
11261 VALUES (1, 'biblio', '786', 'g', $$Related parts$$,
11262 TRUE, FALSE, FALSE);
11263 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11264                                  repeatable, mandatory, hidden)
11265 VALUES (1, 'biblio', '786', 'h', $$Physical description$$,
11266 FALSE, FALSE, FALSE);
11267 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11268                                  repeatable, mandatory, hidden)
11269 VALUES (1, 'biblio', '786', 'i', $$Relationship information$$,
11270 TRUE, FALSE, FALSE);
11271 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11272                                  repeatable, mandatory, hidden)
11273 VALUES (1, 'biblio', '786', 'j', $$Period of content$$,
11274 FALSE, FALSE, FALSE);
11275 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11276                                  repeatable, mandatory, hidden)
11277 VALUES (1, 'biblio', '786', 'k', $$Series data for related item$$,
11278 TRUE, FALSE, FALSE);
11279 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11280                                  repeatable, mandatory, hidden)
11281 VALUES (1, 'biblio', '786', 'm', $$Material-specific details$$,
11282 FALSE, FALSE, FALSE);
11283 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11284                                  repeatable, mandatory, hidden)
11285 VALUES (1, 'biblio', '786', 'n', $$Note$$,
11286 TRUE, FALSE, FALSE);
11287 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11288                                  repeatable, mandatory, hidden)
11289 VALUES (1, 'biblio', '786', 'o', $$Other item identifier$$,
11290 TRUE, FALSE, FALSE);
11291 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11292                                  repeatable, mandatory, hidden)
11293 VALUES (1, 'biblio', '786', 'p', $$Abbreviated title$$,
11294 FALSE, FALSE, FALSE);
11295 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11296                                  repeatable, mandatory, hidden)
11297 VALUES (1, 'biblio', '786', 'r', $$Report number$$,
11298 TRUE, FALSE, FALSE);
11299 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11300                                  repeatable, mandatory, hidden)
11301 VALUES (1, 'biblio', '786', 's', $$Uniform title$$,
11302 FALSE, FALSE, FALSE);
11303 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11304                                  repeatable, mandatory, hidden)
11305 VALUES (1, 'biblio', '786', 't', $$Title$$,
11306 FALSE, FALSE, FALSE);
11307 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11308                                  repeatable, mandatory, hidden)
11309 VALUES (1, 'biblio', '786', 'u', $$Standard Technical Report Number$$,
11310 FALSE, FALSE, FALSE);
11311 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11312                                  repeatable, mandatory, hidden)
11313 VALUES (1, 'biblio', '786', 'v', $$Source Contribution$$,
11314 FALSE, FALSE, FALSE);
11315 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11316                                  repeatable, mandatory, hidden)
11317 VALUES (1, 'biblio', '786', 'w', $$Record control number$$,
11318 TRUE, FALSE, FALSE);
11319 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11320                                  repeatable, mandatory, hidden)
11321 VALUES (1, 'biblio', '786', 'x', $$International Standard Serial Number$$,
11322 FALSE, FALSE, FALSE);
11323 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11324                                  repeatable, mandatory, hidden)
11325 VALUES (1, 'biblio', '786', 'y', $$CODEN designation$$,
11326 FALSE, FALSE, FALSE);
11327 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11328                                  repeatable, mandatory, hidden)
11329 VALUES (1, 'biblio', '786', 'z', $$International Standard Book Number$$,
11330 TRUE, FALSE, FALSE);
11331 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11332                                  repeatable, mandatory, hidden)
11333 VALUES (1, 'biblio', '786', '6', $$Linkage$$,
11334 FALSE, FALSE, FALSE);
11335 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11336                                  repeatable, mandatory, hidden)
11337 VALUES (1, 'biblio', '786', '7', $$Control subfield$$,
11338 FALSE, FALSE, FALSE);
11339 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11340                                  repeatable, mandatory, hidden)
11341 VALUES (1, 'biblio', '786', '8', $$Field link and sequence number$$,
11342 TRUE, FALSE, FALSE);
11343 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
11344                               fixed_field, repeatable, mandatory, hidden)
11345 VALUES (1, 'biblio', '787', $$Other Relationship Entry$$, $$Information concerning the work related to the target item when the relationship does not fit any of those defined in fields 760-785.$$,
11346 FALSE, TRUE, FALSE, FALSE);
11347 INSERT INTO config.record_attr_definition(name, label)
11348 VALUES ('marc21_biblio_787_ind_1', 'MARC 21 biblio field 787 indicator position 1');
11349 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11350 VALUES ('marc21_biblio_787_ind_1', '0', $$Display note$$, FALSE, TRUE);
11351 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11352 VALUES ('marc21_biblio_787_ind_1', '1', $$Do not display note$$, FALSE, TRUE);
11353 INSERT INTO config.record_attr_definition(name, label)
11354 VALUES ('marc21_biblio_787_ind_2', 'MARC 21 biblio field 787 indicator position 2');
11355 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11356 VALUES ('marc21_biblio_787_ind_2', '#', $$Related item$$, FALSE, TRUE);
11357 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11358 VALUES ('marc21_biblio_787_ind_2', '8', $$No display constant generated$$, FALSE, TRUE);
11359 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11360                                  repeatable, mandatory, hidden)
11361 VALUES (1, 'biblio', '787', 'a', $$Main entry heading$$,
11362 FALSE, FALSE, FALSE);
11363 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11364                                  repeatable, mandatory, hidden)
11365 VALUES (1, 'biblio', '787', 'b', $$Edition$$,
11366 FALSE, FALSE, FALSE);
11367 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11368                                  repeatable, mandatory, hidden)
11369 VALUES (1, 'biblio', '787', 'c', $$Qualifying information$$,
11370 FALSE, FALSE, FALSE);
11371 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11372                                  repeatable, mandatory, hidden)
11373 VALUES (1, 'biblio', '787', 'd', $$Place, publisher, and date of publication$$,
11374 FALSE, FALSE, FALSE);
11375 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11376                                  repeatable, mandatory, hidden)
11377 VALUES (1, 'biblio', '787', 'g', $$Related parts$$,
11378 TRUE, FALSE, FALSE);
11379 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11380                                  repeatable, mandatory, hidden)
11381 VALUES (1, 'biblio', '787', 'h', $$Physical description$$,
11382 FALSE, FALSE, FALSE);
11383 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11384                                  repeatable, mandatory, hidden)
11385 VALUES (1, 'biblio', '787', 'i', $$Relationship information$$,
11386 TRUE, FALSE, FALSE);
11387 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11388                                  repeatable, mandatory, hidden)
11389 VALUES (1, 'biblio', '787', 'k', $$Series data for related item$$,
11390 TRUE, FALSE, FALSE);
11391 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11392                                  repeatable, mandatory, hidden)
11393 VALUES (1, 'biblio', '787', 'm', $$Material-specific details$$,
11394 FALSE, FALSE, FALSE);
11395 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11396                                  repeatable, mandatory, hidden)
11397 VALUES (1, 'biblio', '787', 'n', $$Note$$,
11398 TRUE, FALSE, FALSE);
11399 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11400                                  repeatable, mandatory, hidden)
11401 VALUES (1, 'biblio', '787', 'o', $$Other item identifier$$,
11402 TRUE, FALSE, FALSE);
11403 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11404                                  repeatable, mandatory, hidden)
11405 VALUES (1, 'biblio', '787', 'r', $$Report number$$,
11406 TRUE, FALSE, FALSE);
11407 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11408                                  repeatable, mandatory, hidden)
11409 VALUES (1, 'biblio', '787', 's', $$Uniform title$$,
11410 FALSE, FALSE, FALSE);
11411 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11412                                  repeatable, mandatory, hidden)
11413 VALUES (1, 'biblio', '787', 't', $$Title$$,
11414 FALSE, FALSE, FALSE);
11415 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11416                                  repeatable, mandatory, hidden)
11417 VALUES (1, 'biblio', '787', 'u', $$Standard Technical Report Number$$,
11418 FALSE, FALSE, FALSE);
11419 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11420                                  repeatable, mandatory, hidden)
11421 VALUES (1, 'biblio', '787', 'w', $$Record control number$$,
11422 TRUE, FALSE, FALSE);
11423 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11424                                  repeatable, mandatory, hidden)
11425 VALUES (1, 'biblio', '787', 'x', $$International Standard Serial Number$$,
11426 FALSE, FALSE, FALSE);
11427 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11428                                  repeatable, mandatory, hidden)
11429 VALUES (1, 'biblio', '787', 'y', $$CODEN designation$$,
11430 FALSE, FALSE, FALSE);
11431 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11432                                  repeatable, mandatory, hidden)
11433 VALUES (1, 'biblio', '787', 'z', $$International Standard Book Number$$,
11434 TRUE, FALSE, FALSE);
11435 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11436                                  repeatable, mandatory, hidden)
11437 VALUES (1, 'biblio', '787', '6', $$Linkage$$,
11438 FALSE, FALSE, FALSE);
11439 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11440                                  repeatable, mandatory, hidden)
11441 VALUES (1, 'biblio', '787', '7', $$Control subfield$$,
11442 FALSE, FALSE, FALSE);
11443 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11444                                  repeatable, mandatory, hidden)
11445 VALUES (1, 'biblio', '787', '8', $$Field link and sequence number$$,
11446 TRUE, FALSE, FALSE);
11447 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
11448                               fixed_field, repeatable, mandatory, hidden)
11449 VALUES (1, 'biblio', '800', $$Series Added Entry-Personal Name$$, $$Author/title series added entry in which the author portion is a personal name.$$,
11450 FALSE, TRUE, FALSE, FALSE);
11451 INSERT INTO config.record_attr_definition(name, label)
11452 VALUES ('marc21_biblio_800_ind_1', 'MARC 21 biblio field 800 indicator position 1');
11453 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11454 VALUES ('marc21_biblio_800_ind_1', '0', $$Forename$$, FALSE, TRUE);
11455 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11456 VALUES ('marc21_biblio_800_ind_1', '1', $$Surname$$, FALSE, TRUE);
11457 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11458 VALUES ('marc21_biblio_800_ind_1', '3', $$Family name$$, FALSE, TRUE);
11459 INSERT INTO config.record_attr_definition(name, label)
11460 VALUES ('marc21_biblio_800_ind_2', 'MARC 21 biblio field 800 indicator position 2');
11461 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11462 VALUES ('marc21_biblio_800_ind_2', '#', $$Undefined$$, FALSE, TRUE);
11463 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11464                                  repeatable, mandatory, hidden)
11465 VALUES (1, 'biblio', '800', 'a', $$Personal name$$,
11466 FALSE, FALSE, FALSE);
11467 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11468                                  repeatable, mandatory, hidden)
11469 VALUES (1, 'biblio', '800', 'b', $$Numeration$$,
11470 FALSE, FALSE, FALSE);
11471 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11472                                  repeatable, mandatory, hidden)
11473 VALUES (1, 'biblio', '800', 'c', $$Titles and other words associated with a name$$,
11474 TRUE, FALSE, FALSE);
11475 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11476                                  repeatable, mandatory, hidden)
11477 VALUES (1, 'biblio', '800', 'd', $$Dates associated with a name$$,
11478 FALSE, FALSE, FALSE);
11479 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11480                                  repeatable, mandatory, hidden)
11481 VALUES (1, 'biblio', '800', 'e', $$Relator term$$,
11482 TRUE, FALSE, FALSE);
11483 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11484                                  repeatable, mandatory, hidden)
11485 VALUES (1, 'biblio', '800', 'f', $$Date of a work$$,
11486 FALSE, FALSE, FALSE);
11487 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11488                                  repeatable, mandatory, hidden)
11489 VALUES (1, 'biblio', '800', 'g', $$Miscellaneous information$$,
11490 FALSE, FALSE, FALSE);
11491 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11492                                  repeatable, mandatory, hidden)
11493 VALUES (1, 'biblio', '800', 'h', $$Medium$$,
11494 FALSE, FALSE, FALSE);
11495 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11496                                  repeatable, mandatory, hidden)
11497 VALUES (1, 'biblio', '800', 'j', $$Attribution qualifier$$,
11498 TRUE, FALSE, FALSE);
11499 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11500                                  repeatable, mandatory, hidden)
11501 VALUES (1, 'biblio', '800', 'k', $$Form subheading$$,
11502 TRUE, FALSE, FALSE);
11503 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11504                                  repeatable, mandatory, hidden)
11505 VALUES (1, 'biblio', '800', 'l', $$Language of a work$$,
11506 FALSE, FALSE, FALSE);
11507 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11508                                  repeatable, mandatory, hidden)
11509 VALUES (1, 'biblio', '800', 'm', $$Medium of performance for music$$,
11510 TRUE, FALSE, FALSE);
11511 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11512                                  repeatable, mandatory, hidden)
11513 VALUES (1, 'biblio', '800', 'n', $$Number of part/section of a work$$,
11514 TRUE, FALSE, FALSE);
11515 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11516                                  repeatable, mandatory, hidden)
11517 VALUES (1, 'biblio', '800', 'o', $$Arranged statement for music$$,
11518 FALSE, FALSE, FALSE);
11519 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11520                                  repeatable, mandatory, hidden)
11521 VALUES (1, 'biblio', '800', 'p', $$Name of part/section of a work$$,
11522 TRUE, FALSE, FALSE);
11523 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11524                                  repeatable, mandatory, hidden)
11525 VALUES (1, 'biblio', '800', 'q', $$Fuller form of name$$,
11526 FALSE, FALSE, FALSE);
11527 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11528                                  repeatable, mandatory, hidden)
11529 VALUES (1, 'biblio', '800', 'r', $$Key for music$$,
11530 FALSE, FALSE, FALSE);
11531 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11532                                  repeatable, mandatory, hidden)
11533 VALUES (1, 'biblio', '800', 's', $$Version$$,
11534 FALSE, FALSE, FALSE);
11535 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11536                                  repeatable, mandatory, hidden)
11537 VALUES (1, 'biblio', '800', 't', $$Title of a work$$,
11538 FALSE, FALSE, FALSE);
11539 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11540                                  repeatable, mandatory, hidden)
11541 VALUES (1, 'biblio', '800', 'u', $$Affiliation$$,
11542 FALSE, FALSE, FALSE);
11543 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11544                                  repeatable, mandatory, hidden)
11545 VALUES (1, 'biblio', '800', 'v', $$Volume/sequential designation$$,
11546 FALSE, FALSE, FALSE);
11547 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11548                                  repeatable, mandatory, hidden)
11549 VALUES (1, 'biblio', '800', 'w', $$Bibliographic record control number$$,
11550 TRUE, FALSE, FALSE);
11551 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11552                                  repeatable, mandatory, hidden)
11553 VALUES (1, 'biblio', '800', 'x', $$International Standard Serial Number$$,
11554 FALSE, FALSE, FALSE);
11555 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11556                                  repeatable, mandatory, hidden)
11557 VALUES (1, 'biblio', '800', '0', $$Authority record control number$$,
11558 TRUE, FALSE, FALSE);
11559 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11560                                  repeatable, mandatory, hidden)
11561 VALUES (1, 'biblio', '800', '3', $$Materials specified$$,
11562 FALSE, FALSE, FALSE);
11563 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11564                                  repeatable, mandatory, hidden)
11565 VALUES (1, 'biblio', '800', '4', $$Relator code$$,
11566 TRUE, FALSE, FALSE);
11567 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11568                                  repeatable, mandatory, hidden)
11569 VALUES (1, 'biblio', '800', '5', $$Institution to which field applies$$,
11570 TRUE, FALSE, FALSE);
11571 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11572                                  repeatable, mandatory, hidden)
11573 VALUES (1, 'biblio', '800', '6', $$Linkage$$,
11574 FALSE, FALSE, FALSE);
11575 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11576                                  repeatable, mandatory, hidden)
11577 VALUES (1, 'biblio', '800', '8', $$Field link and sequence number$$,
11578 TRUE, FALSE, FALSE);
11579 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
11580                               fixed_field, repeatable, mandatory, hidden)
11581 VALUES (1, 'biblio', '810', $$Series Added Entry-Corporate Name$$, $$Author/title series added entry in which the author portion is a corporate name.$$,
11582 FALSE, TRUE, FALSE, FALSE);
11583 INSERT INTO config.record_attr_definition(name, label)
11584 VALUES ('marc21_biblio_810_ind_1', 'MARC 21 biblio field 810 indicator position 1');
11585 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11586 VALUES ('marc21_biblio_810_ind_1', '0', $$Inverted name$$, FALSE, TRUE);
11587 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11588 VALUES ('marc21_biblio_810_ind_1', '1', $$Jurisdiction name$$, FALSE, TRUE);
11589 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11590 VALUES ('marc21_biblio_810_ind_1', '2', $$Name in direct order$$, FALSE, TRUE);
11591 INSERT INTO config.record_attr_definition(name, label)
11592 VALUES ('marc21_biblio_810_ind_2', 'MARC 21 biblio field 810 indicator position 2');
11593 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11594 VALUES ('marc21_biblio_810_ind_2', '#', $$Undefined$$, FALSE, TRUE);
11595 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11596                                  repeatable, mandatory, hidden)
11597 VALUES (1, 'biblio', '810', 'a', $$Corporate name or jurisdiction name as entry element$$,
11598 FALSE, FALSE, FALSE);
11599 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11600                                  repeatable, mandatory, hidden)
11601 VALUES (1, 'biblio', '810', 'b', $$Subordinate unit$$,
11602 TRUE, FALSE, FALSE);
11603 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11604                                  repeatable, mandatory, hidden)
11605 VALUES (1, 'biblio', '810', 'c', $$Location of meeting$$,
11606 FALSE, FALSE, FALSE);
11607 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11608                                  repeatable, mandatory, hidden)
11609 VALUES (1, 'biblio', '810', 'd', $$Date of meeting or treaty signing$$,
11610 TRUE, FALSE, FALSE);
11611 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11612                                  repeatable, mandatory, hidden)
11613 VALUES (1, 'biblio', '810', 'e', $$Relator term$$,
11614 TRUE, FALSE, FALSE);
11615 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11616                                  repeatable, mandatory, hidden)
11617 VALUES (1, 'biblio', '810', 'f', $$Date of a work$$,
11618 FALSE, FALSE, FALSE);
11619 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11620                                  repeatable, mandatory, hidden)
11621 VALUES (1, 'biblio', '810', 'g', $$Miscellaneous information$$,
11622 FALSE, FALSE, FALSE);
11623 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11624                                  repeatable, mandatory, hidden)
11625 VALUES (1, 'biblio', '810', 'h', $$Medium$$,
11626 FALSE, FALSE, FALSE);
11627 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11628                                  repeatable, mandatory, hidden)
11629 VALUES (1, 'biblio', '810', 'k', $$Form subheading$$,
11630 TRUE, FALSE, FALSE);
11631 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11632                                  repeatable, mandatory, hidden)
11633 VALUES (1, 'biblio', '810', 'l', $$Language of a work$$,
11634 FALSE, FALSE, FALSE);
11635 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11636                                  repeatable, mandatory, hidden)
11637 VALUES (1, 'biblio', '810', 'm', $$Medium of performance for music$$,
11638 TRUE, FALSE, FALSE);
11639 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11640                                  repeatable, mandatory, hidden)
11641 VALUES (1, 'biblio', '810', 'n', $$Number of part/section/meeting$$,
11642 TRUE, FALSE, FALSE);
11643 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11644                                  repeatable, mandatory, hidden)
11645 VALUES (1, 'biblio', '810', 'o', $$Arranged statement for music$$,
11646 FALSE, FALSE, FALSE);
11647 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11648                                  repeatable, mandatory, hidden)
11649 VALUES (1, 'biblio', '810', 'p', $$Name of part/section of a work$$,
11650 TRUE, FALSE, FALSE);
11651 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11652                                  repeatable, mandatory, hidden)
11653 VALUES (1, 'biblio', '810', 'r', $$Key for music$$,
11654 FALSE, FALSE, FALSE);
11655 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11656                                  repeatable, mandatory, hidden)
11657 VALUES (1, 'biblio', '810', 's', $$Version$$,
11658 FALSE, FALSE, FALSE);
11659 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11660                                  repeatable, mandatory, hidden)
11661 VALUES (1, 'biblio', '810', 't', $$Title of a work$$,
11662 FALSE, FALSE, FALSE);
11663 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11664                                  repeatable, mandatory, hidden)
11665 VALUES (1, 'biblio', '810', 'u', $$Affiliation$$,
11666 FALSE, FALSE, FALSE);
11667 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11668                                  repeatable, mandatory, hidden)
11669 VALUES (1, 'biblio', '810', 'v', $$Volume/sequential designation$$,
11670 FALSE, FALSE, FALSE);
11671 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11672                                  repeatable, mandatory, hidden)
11673 VALUES (1, 'biblio', '810', 'w', $$Bibliographic record control number$$,
11674 TRUE, FALSE, FALSE);
11675 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11676                                  repeatable, mandatory, hidden)
11677 VALUES (1, 'biblio', '810', 'x', $$International Standard Serial Number$$,
11678 FALSE, FALSE, FALSE);
11679 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11680                                  repeatable, mandatory, hidden)
11681 VALUES (1, 'biblio', '810', '0', $$Authority record control number$$,
11682 TRUE, FALSE, FALSE);
11683 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11684                                  repeatable, mandatory, hidden)
11685 VALUES (1, 'biblio', '810', '3', $$Materials specified$$,
11686 FALSE, FALSE, FALSE);
11687 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11688                                  repeatable, mandatory, hidden)
11689 VALUES (1, 'biblio', '810', '4', $$Relator code$$,
11690 TRUE, FALSE, FALSE);
11691 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11692                                  repeatable, mandatory, hidden)
11693 VALUES (1, 'biblio', '810', '5', $$Institution to which field applies$$,
11694 TRUE, FALSE, FALSE);
11695 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11696                                  repeatable, mandatory, hidden)
11697 VALUES (1, 'biblio', '810', '6', $$Linkage$$,
11698 FALSE, FALSE, FALSE);
11699 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11700                                  repeatable, mandatory, hidden)
11701 VALUES (1, 'biblio', '810', '8', $$Field link and sequence number$$,
11702 TRUE, FALSE, FALSE);
11703 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
11704                               fixed_field, repeatable, mandatory, hidden)
11705 VALUES (1, 'biblio', '811', $$Series Added Entry-Meeting Name$$, $$Author/title series added entry in which the author portion is a meeting name or conference name.$$,
11706 FALSE, TRUE, FALSE, FALSE);
11707 INSERT INTO config.record_attr_definition(name, label)
11708 VALUES ('marc21_biblio_811_ind_1', 'MARC 21 biblio field 811 indicator position 1');
11709 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11710 VALUES ('marc21_biblio_811_ind_1', '0', $$Inverted name$$, FALSE, TRUE);
11711 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11712 VALUES ('marc21_biblio_811_ind_1', '1', $$Jurisdiction name$$, FALSE, TRUE);
11713 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11714 VALUES ('marc21_biblio_811_ind_1', '2', $$Name in direct order$$, FALSE, TRUE);
11715 INSERT INTO config.record_attr_definition(name, label)
11716 VALUES ('marc21_biblio_811_ind_2', 'MARC 21 biblio field 811 indicator position 2');
11717 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11718 VALUES ('marc21_biblio_811_ind_2', '#', $$Undefined$$, FALSE, TRUE);
11719 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11720                                  repeatable, mandatory, hidden)
11721 VALUES (1, 'biblio', '811', 'a', $$Meeting name or jurisdiction name as entry element$$,
11722 FALSE, FALSE, FALSE);
11723 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11724                                  repeatable, mandatory, hidden)
11725 VALUES (1, 'biblio', '811', 'c', $$Location of meeting$$,
11726 FALSE, FALSE, FALSE);
11727 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11728                                  repeatable, mandatory, hidden)
11729 VALUES (1, 'biblio', '811', 'd', $$Date of meeting$$,
11730 FALSE, FALSE, FALSE);
11731 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11732                                  repeatable, mandatory, hidden)
11733 VALUES (1, 'biblio', '811', 'e', $$Subordinate unit$$,
11734 TRUE, FALSE, FALSE);
11735 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11736                                  repeatable, mandatory, hidden)
11737 VALUES (1, 'biblio', '811', 'f', $$Date of a work$$,
11738 FALSE, FALSE, FALSE);
11739 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11740                                  repeatable, mandatory, hidden)
11741 VALUES (1, 'biblio', '811', 'g', $$Miscellaneous information$$,
11742 FALSE, FALSE, FALSE);
11743 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11744                                  repeatable, mandatory, hidden)
11745 VALUES (1, 'biblio', '811', 'h', $$Medium$$,
11746 FALSE, FALSE, FALSE);
11747 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11748                                  repeatable, mandatory, hidden)
11749 VALUES (1, 'biblio', '811', 'j', $$Relator term$$,
11750 TRUE, FALSE, FALSE);
11751 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11752                                  repeatable, mandatory, hidden)
11753 VALUES (1, 'biblio', '811', 'k', $$Form subheading$$,
11754 TRUE, FALSE, FALSE);
11755 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11756                                  repeatable, mandatory, hidden)
11757 VALUES (1, 'biblio', '811', 'l', $$Language of a work$$,
11758 FALSE, FALSE, FALSE);
11759 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11760                                  repeatable, mandatory, hidden)
11761 VALUES (1, 'biblio', '811', 'n', $$Number of part/section/meeting$$,
11762 TRUE, FALSE, FALSE);
11763 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11764                                  repeatable, mandatory, hidden)
11765 VALUES (1, 'biblio', '811', 'p', $$Name of part/section of a work$$,
11766 TRUE, FALSE, FALSE);
11767 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11768                                  repeatable, mandatory, hidden)
11769 VALUES (1, 'biblio', '811', 'q', $$Name of meeting following jurisdiction name entry element$$,
11770 FALSE, FALSE, FALSE);
11771 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11772                                  repeatable, mandatory, hidden)
11773 VALUES (1, 'biblio', '811', 's', $$Version$$,
11774 FALSE, FALSE, FALSE);
11775 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11776                                  repeatable, mandatory, hidden)
11777 VALUES (1, 'biblio', '811', 't', $$Title of a work$$,
11778 FALSE, FALSE, FALSE);
11779 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11780                                  repeatable, mandatory, hidden)
11781 VALUES (1, 'biblio', '811', 'u', $$Affiliation$$,
11782 FALSE, FALSE, FALSE);
11783 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11784                                  repeatable, mandatory, hidden)
11785 VALUES (1, 'biblio', '811', 'v', $$Volume/sequential designation$$,
11786 FALSE, FALSE, FALSE);
11787 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11788                                  repeatable, mandatory, hidden)
11789 VALUES (1, 'biblio', '811', 'w', $$Bibliographic record control number$$,
11790 TRUE, FALSE, FALSE);
11791 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11792                                  repeatable, mandatory, hidden)
11793 VALUES (1, 'biblio', '811', 'x', $$International Standard Serial Number$$,
11794 FALSE, FALSE, FALSE);
11795 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11796                                  repeatable, mandatory, hidden)
11797 VALUES (1, 'biblio', '811', '0', $$Authority record control number$$,
11798 TRUE, FALSE, FALSE);
11799 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11800                                  repeatable, mandatory, hidden)
11801 VALUES (1, 'biblio', '811', '3', $$Materials specified$$,
11802 FALSE, FALSE, FALSE);
11803 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11804                                  repeatable, mandatory, hidden)
11805 VALUES (1, 'biblio', '811', '4', $$Relator code$$,
11806 TRUE, FALSE, FALSE);
11807 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11808                                  repeatable, mandatory, hidden)
11809 VALUES (1, 'biblio', '811', '5', $$Institution to which field applies$$,
11810 TRUE, FALSE, FALSE);
11811 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11812                                  repeatable, mandatory, hidden)
11813 VALUES (1, 'biblio', '811', '6', $$Linkage$$,
11814 FALSE, FALSE, FALSE);
11815 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11816                                  repeatable, mandatory, hidden)
11817 VALUES (1, 'biblio', '811', '8', $$Field link and sequence number$$,
11818 TRUE, FALSE, FALSE);
11819 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
11820                               fixed_field, repeatable, mandatory, hidden)
11821 VALUES (1, 'biblio', '830', $$Series Added Entry-Uniform Title$$, $$Series added entry consisting of a series title alone.$$,
11822 FALSE, TRUE, FALSE, FALSE);
11823 INSERT INTO config.record_attr_definition(name, label)
11824 VALUES ('marc21_biblio_830_ind_1', 'MARC 21 biblio field 830 indicator position 1');
11825 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11826 VALUES ('marc21_biblio_830_ind_1', '#', $$Undefined$$, FALSE, TRUE);
11827 INSERT INTO config.record_attr_definition(name, label)
11828 VALUES ('marc21_biblio_830_ind_2', 'MARC 21 biblio field 830 indicator position 2');
11829 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11830 VALUES ('marc21_biblio_830_ind_2', '0', $$No nonfiling characters$$, FALSE, TRUE);
11831 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11832 VALUES ('marc21_biblio_830_ind_2', '1', $$Number of nonfiling characters - 1$$, FALSE, TRUE);
11833 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11834 VALUES ('marc21_biblio_830_ind_2', '2', $$Number of nonfiling characters - 2$$, FALSE, TRUE);
11835 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11836 VALUES ('marc21_biblio_830_ind_2', '3', $$Number of nonfiling characters - 3$$, FALSE, TRUE);
11837 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11838 VALUES ('marc21_biblio_830_ind_2', '4', $$Number of nonfiling characters - 4$$, FALSE, TRUE);
11839 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11840 VALUES ('marc21_biblio_830_ind_2', '5', $$Number of nonfiling characters - 5$$, FALSE, TRUE);
11841 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11842 VALUES ('marc21_biblio_830_ind_2', '6', $$Number of nonfiling characters - 6$$, FALSE, TRUE);
11843 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11844 VALUES ('marc21_biblio_830_ind_2', '7', $$Number of nonfiling characters - 7$$, FALSE, TRUE);
11845 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11846 VALUES ('marc21_biblio_830_ind_2', '8', $$Number of nonfiling characters - 8$$, FALSE, TRUE);
11847 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11848 VALUES ('marc21_biblio_830_ind_2', '9', $$Number of nonfiling characters - 9$$, FALSE, TRUE);
11849 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11850                                  repeatable, mandatory, hidden)
11851 VALUES (1, 'biblio', '830', 'a', $$Uniform title$$,
11852 FALSE, FALSE, FALSE);
11853 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11854                                  repeatable, mandatory, hidden)
11855 VALUES (1, 'biblio', '830', 'd', $$Date of treaty signing$$,
11856 TRUE, FALSE, FALSE);
11857 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11858                                  repeatable, mandatory, hidden)
11859 VALUES (1, 'biblio', '830', 'f', $$Date of a work$$,
11860 FALSE, FALSE, FALSE);
11861 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11862                                  repeatable, mandatory, hidden)
11863 VALUES (1, 'biblio', '830', 'g', $$Miscellaneous information$$,
11864 FALSE, FALSE, FALSE);
11865 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11866                                  repeatable, mandatory, hidden)
11867 VALUES (1, 'biblio', '830', 'h', $$Medium$$,
11868 FALSE, FALSE, FALSE);
11869 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11870                                  repeatable, mandatory, hidden)
11871 VALUES (1, 'biblio', '830', 'k', $$Form subheading$$,
11872 TRUE, FALSE, FALSE);
11873 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11874                                  repeatable, mandatory, hidden)
11875 VALUES (1, 'biblio', '830', 'l', $$Language of a work$$,
11876 FALSE, FALSE, FALSE);
11877 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11878                                  repeatable, mandatory, hidden)
11879 VALUES (1, 'biblio', '830', 'm', $$Medium of performance for music$$,
11880 TRUE, FALSE, FALSE);
11881 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11882                                  repeatable, mandatory, hidden)
11883 VALUES (1, 'biblio', '830', 'n', $$Number of part/section of a work$$,
11884 TRUE, FALSE, FALSE);
11885 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11886                                  repeatable, mandatory, hidden)
11887 VALUES (1, 'biblio', '830', 'o', $$Arranged statement for music$$,
11888 FALSE, FALSE, FALSE);
11889 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11890                                  repeatable, mandatory, hidden)
11891 VALUES (1, 'biblio', '830', 'p', $$Name of part/section of a work$$,
11892 TRUE, FALSE, FALSE);
11893 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11894                                  repeatable, mandatory, hidden)
11895 VALUES (1, 'biblio', '830', 'r', $$Key for music$$,
11896 FALSE, FALSE, FALSE);
11897 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11898                                  repeatable, mandatory, hidden)
11899 VALUES (1, 'biblio', '830', 's', $$Version$$,
11900 FALSE, FALSE, FALSE);
11901 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11902                                  repeatable, mandatory, hidden)
11903 VALUES (1, 'biblio', '830', 't', $$Title of a work$$,
11904 FALSE, FALSE, FALSE);
11905 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11906                                  repeatable, mandatory, hidden)
11907 VALUES (1, 'biblio', '830', 'v', $$Volume/sequential designation$$,
11908 FALSE, FALSE, FALSE);
11909 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11910                                  repeatable, mandatory, hidden)
11911 VALUES (1, 'biblio', '830', 'w', $$Bibliographic record control number$$,
11912 TRUE, FALSE, FALSE);
11913 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11914                                  repeatable, mandatory, hidden)
11915 VALUES (1, 'biblio', '830', 'x', $$International Standard Serial Number$$,
11916 FALSE, FALSE, FALSE);
11917 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11918                                  repeatable, mandatory, hidden)
11919 VALUES (1, 'biblio', '830', '0', $$Authority record control number$$,
11920 TRUE, FALSE, FALSE);
11921 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11922                                  repeatable, mandatory, hidden)
11923 VALUES (1, 'biblio', '830', '3', $$Materials specified$$,
11924 FALSE, FALSE, FALSE);
11925 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11926                                  repeatable, mandatory, hidden)
11927 VALUES (1, 'biblio', '830', '5', $$Institution to which field applies$$,
11928 TRUE, FALSE, FALSE);
11929 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11930                                  repeatable, mandatory, hidden)
11931 VALUES (1, 'biblio', '830', '6', $$Linkage$$,
11932 FALSE, FALSE, FALSE);
11933 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11934                                  repeatable, mandatory, hidden)
11935 VALUES (1, 'biblio', '830', '8', $$Field link and sequence number$$,
11936 TRUE, FALSE, FALSE);
11937 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
11938                               fixed_field, repeatable, mandatory, hidden)
11939 VALUES (1, 'biblio', '841', $$Holdings Coded Data Values$$, $$When holdings data are embedded in a bibliographic record, this field contains certain coded information that would apply to the holdings information if it were in a separate holdings record in field 008 (Fixed-Length Data Elements).$$,
11940 FALSE, FALSE, FALSE, FALSE);
11941 INSERT INTO config.record_attr_definition(name, label)
11942 VALUES ('marc21_biblio_841_ind_1', 'MARC 21 biblio field 841 indicator position 1');
11943 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11944 VALUES ('marc21_biblio_841_ind_1', '#', $$Undefined$$, FALSE, TRUE);
11945 INSERT INTO config.record_attr_definition(name, label)
11946 VALUES ('marc21_biblio_841_ind_2', 'MARC 21 biblio field 841 indicator position 2');
11947 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11948 VALUES ('marc21_biblio_841_ind_2', '#', $$Undefined$$, FALSE, TRUE);
11949 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11950                                  repeatable, mandatory, hidden)
11951 VALUES (1, 'biblio', '841', 'a', $$Type of record$$,
11952 FALSE, FALSE, FALSE);
11953 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11954                                  repeatable, mandatory, hidden)
11955 VALUES (1, 'biblio', '841', 'b', $$Fixed-length data elements$$,
11956 FALSE, FALSE, FALSE);
11957 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11958                                  repeatable, mandatory, hidden)
11959 VALUES (1, 'biblio', '841', 'e', $$Encoding level$$,
11960 FALSE, FALSE, FALSE);
11961 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
11962                               fixed_field, repeatable, mandatory, hidden)
11963 VALUES (1, 'biblio', '842', $$Textual Physical Form Designator$$, $$Designation in textual form of the physical form of the item. The physical form designator specifies the physical medium or form, or type of material of the unit held. The general physical form designator in coded form is recorded in field 007 (Physical Description Fixed Field).$$,
11964 FALSE, FALSE, FALSE, FALSE);
11965 INSERT INTO config.record_attr_definition(name, label)
11966 VALUES ('marc21_biblio_842_ind_1', 'MARC 21 biblio field 842 indicator position 1');
11967 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11968 VALUES ('marc21_biblio_842_ind_1', '#', $$Undefined$$, FALSE, TRUE);
11969 INSERT INTO config.record_attr_definition(name, label)
11970 VALUES ('marc21_biblio_842_ind_2', 'MARC 21 biblio field 842 indicator position 2');
11971 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11972 VALUES ('marc21_biblio_842_ind_2', '#', $$Undefined$$, FALSE, TRUE);
11973 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11974                                  repeatable, mandatory, hidden)
11975 VALUES (1, 'biblio', '842', 'a', $$Textual physical form designator$$,
11976 FALSE, FALSE, FALSE);
11977 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11978                                  repeatable, mandatory, hidden)
11979 VALUES (1, 'biblio', '842', '6', $$Linkage$$,
11980 FALSE, FALSE, FALSE);
11981 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11982                                  repeatable, mandatory, hidden)
11983 VALUES (1, 'biblio', '842', '8', $$Field link and sequence number$$,
11984 TRUE, FALSE, FALSE);
11985 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
11986                               fixed_field, repeatable, mandatory, hidden)
11987 VALUES (1, 'biblio', '843', $$Reproduction Note$$, $$Description of an item that is a reproduction of original materials. Used when an institution chooses to have the main portion of the bibliographic record description reflect the original and the notes in field 843 reflect information about the copy.$$,
11988 FALSE, TRUE, FALSE, FALSE);
11989 INSERT INTO config.record_attr_definition(name, label)
11990 VALUES ('marc21_biblio_843_ind_1', 'MARC 21 biblio field 843 indicator position 1');
11991 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11992 VALUES ('marc21_biblio_843_ind_1', '#', $$Undefined$$, FALSE, TRUE);
11993 INSERT INTO config.record_attr_definition(name, label)
11994 VALUES ('marc21_biblio_843_ind_2', 'MARC 21 biblio field 843 indicator position 2');
11995 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
11996 VALUES ('marc21_biblio_843_ind_2', '#', $$Undefined$$, FALSE, TRUE);
11997 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
11998                                  repeatable, mandatory, hidden)
11999 VALUES (1, 'biblio', '843', 'a', $$Type of reproduction$$,
12000 FALSE, FALSE, FALSE);
12001 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12002                                  repeatable, mandatory, hidden)
12003 VALUES (1, 'biblio', '843', 'b', $$Place of reproduction$$,
12004 TRUE, FALSE, FALSE);
12005 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12006                                  repeatable, mandatory, hidden)
12007 VALUES (1, 'biblio', '843', 'c', $$Agency responsible for reproduction$$,
12008 TRUE, FALSE, FALSE);
12009 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12010                                  repeatable, mandatory, hidden)
12011 VALUES (1, 'biblio', '843', 'd', $$Date of reproduction$$,
12012 FALSE, FALSE, FALSE);
12013 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12014                                  repeatable, mandatory, hidden)
12015 VALUES (1, 'biblio', '843', 'e', $$Physical description of reproduction$$,
12016 FALSE, FALSE, FALSE);
12017 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12018                                  repeatable, mandatory, hidden)
12019 VALUES (1, 'biblio', '843', 'f', $$Series statement of reproduction$$,
12020 TRUE, FALSE, FALSE);
12021 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12022                                  repeatable, mandatory, hidden)
12023 VALUES (1, 'biblio', '843', 'm', $$Dates of publication and/or sequential designation of issues reproduced$$,
12024 TRUE, FALSE, FALSE);
12025 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12026                                  repeatable, mandatory, hidden)
12027 VALUES (1, 'biblio', '843', 'n', $$Note about reproduction$$,
12028 TRUE, FALSE, FALSE);
12029 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12030                                  repeatable, mandatory, hidden)
12031 VALUES (1, 'biblio', '843', '3', $$Materials specified$$,
12032 FALSE, FALSE, FALSE);
12033 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12034                                  repeatable, mandatory, hidden)
12035 VALUES (1, 'biblio', '843', '5', $$Institution to which field applies$$,
12036 FALSE, FALSE, FALSE);
12037 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12038                                  repeatable, mandatory, hidden)
12039 VALUES (1, 'biblio', '843', '6', $$Linkage$$,
12040 FALSE, FALSE, FALSE);
12041 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12042                                  repeatable, mandatory, hidden)
12043 VALUES (1, 'biblio', '843', '7', $$Fixed-length data elements of reproduction$$,
12044 FALSE, FALSE, FALSE);
12045 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12046                                  repeatable, mandatory, hidden)
12047 VALUES (1, 'biblio', '843', '8', $$Field link and sequence number$$,
12048 TRUE, FALSE, FALSE);
12049 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
12050                               fixed_field, repeatable, mandatory, hidden)
12051 VALUES (1, 'biblio', '844', $$Name of Unit$$, $$Bibliographic title or a supplied designation describing a basic bibliographic unit, supplementary material, or an index. A supplement or index designation used as a caption is contained in fields 853-855 (Captions and Pattern), subfield $a-$h (Enumeration captions).$$,
12052 FALSE, FALSE, FALSE, FALSE);
12053 INSERT INTO config.record_attr_definition(name, label)
12054 VALUES ('marc21_biblio_844_ind_1', 'MARC 21 biblio field 844 indicator position 1');
12055 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12056 VALUES ('marc21_biblio_844_ind_1', '#', $$Undefined$$, FALSE, TRUE);
12057 INSERT INTO config.record_attr_definition(name, label)
12058 VALUES ('marc21_biblio_844_ind_2', 'MARC 21 biblio field 844 indicator position 2');
12059 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12060 VALUES ('marc21_biblio_844_ind_2', '#', $$Undefined$$, FALSE, TRUE);
12061 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12062                                  repeatable, mandatory, hidden)
12063 VALUES (1, 'biblio', '844', 'a', $$Name of unit$$,
12064 FALSE, FALSE, FALSE);
12065 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12066                                  repeatable, mandatory, hidden)
12067 VALUES (1, 'biblio', '844', '6', $$Linkage$$,
12068 FALSE, FALSE, FALSE);
12069 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12070                                  repeatable, mandatory, hidden)
12071 VALUES (1, 'biblio', '844', '8', $$Field link and sequence number$$,
12072 TRUE, FALSE, FALSE);
12073 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
12074                               fixed_field, repeatable, mandatory, hidden)
12075 VALUES (1, 'biblio', '845', $$Terms Governing Use and Reproduction Note$$, $$Terms governing the use and reproduction of a bibliographic item when the holding organization will lend (008/20, Lending policy, code a) and reproduce (008/21, Reproduction policy, code a) the item.$$,
12076 FALSE, TRUE, FALSE, FALSE);
12077 INSERT INTO config.record_attr_definition(name, label)
12078 VALUES ('marc21_biblio_845_ind_1', 'MARC 21 biblio field 845 indicator position 1');
12079 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12080 VALUES ('marc21_biblio_845_ind_1', '#', $$Undefined$$, FALSE, TRUE);
12081 INSERT INTO config.record_attr_definition(name, label)
12082 VALUES ('marc21_biblio_845_ind_2', 'MARC 21 biblio field 845 indicator position 2');
12083 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12084 VALUES ('marc21_biblio_845_ind_2', '#', $$Undefined$$, FALSE, TRUE);
12085 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12086                                  repeatable, mandatory, hidden)
12087 VALUES (1, 'biblio', '845', 'a', $$Terms governing use and reproduction$$,
12088 FALSE, FALSE, FALSE);
12089 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12090                                  repeatable, mandatory, hidden)
12091 VALUES (1, 'biblio', '845', 'b', $$Jurisdiction$$,
12092 FALSE, FALSE, FALSE);
12093 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12094                                  repeatable, mandatory, hidden)
12095 VALUES (1, 'biblio', '845', 'c', $$Authorization$$,
12096 FALSE, FALSE, FALSE);
12097 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12098                                  repeatable, mandatory, hidden)
12099 VALUES (1, 'biblio', '845', 'd', $$Authorized users$$,
12100 FALSE, FALSE, FALSE);
12101 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12102                                  repeatable, mandatory, hidden)
12103 VALUES (1, 'biblio', '845', 'u', $$Uniform Resource Identifier$$,
12104 TRUE, FALSE, FALSE);
12105 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12106                                  repeatable, mandatory, hidden)
12107 VALUES (1, 'biblio', '845', '3', $$Materials specified$$,
12108 FALSE, FALSE, FALSE);
12109 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12110                                  repeatable, mandatory, hidden)
12111 VALUES (1, 'biblio', '845', '5', $$Institution to which field applies$$,
12112 FALSE, FALSE, FALSE);
12113 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12114                                  repeatable, mandatory, hidden)
12115 VALUES (1, 'biblio', '845', '6', $$Linkage$$,
12116 FALSE, FALSE, FALSE);
12117 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12118                                  repeatable, mandatory, hidden)
12119 VALUES (1, 'biblio', '845', '8', $$Field link and sequence number$$,
12120 TRUE, FALSE, FALSE);
12121 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
12122                               fixed_field, repeatable, mandatory, hidden)
12123 VALUES (1, 'biblio', '850', $$Holding Institution$$, $$Information concerning holdings of the described item by the specified institution.$$,
12124 FALSE, TRUE, FALSE, FALSE);
12125 INSERT INTO config.record_attr_definition(name, label)
12126 VALUES ('marc21_biblio_850_ind_1', 'MARC 21 biblio field 850 indicator position 1');
12127 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12128 VALUES ('marc21_biblio_850_ind_1', '#', $$Undefined$$, FALSE, TRUE);
12129 INSERT INTO config.record_attr_definition(name, label)
12130 VALUES ('marc21_biblio_850_ind_2', 'MARC 21 biblio field 850 indicator position 2');
12131 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12132 VALUES ('marc21_biblio_850_ind_2', '#', $$Undefined$$, FALSE, TRUE);
12133 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12134                                  repeatable, mandatory, hidden)
12135 VALUES (1, 'biblio', '850', 'a', $$Holding institution$$,
12136 TRUE, FALSE, FALSE);
12137 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12138                                  repeatable, mandatory, hidden)
12139 VALUES (1, 'biblio', '850', '8', $$Field link and sequence number$$,
12140 TRUE, FALSE, FALSE);
12141 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
12142                               fixed_field, repeatable, mandatory, hidden)
12143 VALUES (1, 'biblio', '852', $$Location$$, $$Identifies the organization holding the item or from which it is available. May also contain detailed information about how to locate the item in a collection.$$,
12144 FALSE, TRUE, FALSE, FALSE);
12145 INSERT INTO config.record_attr_definition(name, label)
12146 VALUES ('marc21_biblio_852_ind_1', 'MARC 21 biblio field 852 indicator position 1');
12147 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12148 VALUES ('marc21_biblio_852_ind_1', '#', $$No information provided$$, FALSE, TRUE);
12149 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12150 VALUES ('marc21_biblio_852_ind_1', '0', $$Library of Congress classification$$, FALSE, TRUE);
12151 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12152 VALUES ('marc21_biblio_852_ind_1', '1', $$Dewey Decimal classification$$, FALSE, TRUE);
12153 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12154 VALUES ('marc21_biblio_852_ind_1', '2', $$National Library of Medicine classification$$, FALSE, TRUE);
12155 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12156 VALUES ('marc21_biblio_852_ind_1', '3', $$Superintendent of Documents classification$$, FALSE, TRUE);
12157 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12158 VALUES ('marc21_biblio_852_ind_1', '4', $$Shelving control number$$, FALSE, TRUE);
12159 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12160 VALUES ('marc21_biblio_852_ind_1', '5', $$Title$$, FALSE, TRUE);
12161 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12162 VALUES ('marc21_biblio_852_ind_1', '6', $$Shelved separately$$, FALSE, TRUE);
12163 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12164 VALUES ('marc21_biblio_852_ind_1', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
12165 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12166 VALUES ('marc21_biblio_852_ind_1', '8', $$Other scheme$$, FALSE, TRUE);
12167 INSERT INTO config.record_attr_definition(name, label)
12168 VALUES ('marc21_biblio_852_ind_2', 'MARC 21 biblio field 852 indicator position 2');
12169 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12170 VALUES ('marc21_biblio_852_ind_2', '#', $$No information provided$$, FALSE, TRUE);
12171 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12172 VALUES ('marc21_biblio_852_ind_2', '0', $$Not enumeration$$, FALSE, TRUE);
12173 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12174 VALUES ('marc21_biblio_852_ind_2', '1', $$Primary enumeration$$, FALSE, TRUE);
12175 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12176 VALUES ('marc21_biblio_852_ind_2', '2', $$Alternative enumeration$$, FALSE, TRUE);
12177 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12178                                  repeatable, mandatory, hidden)
12179 VALUES (1, 'biblio', '852', 'a', $$Location$$,
12180 FALSE, FALSE, FALSE);
12181 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12182                                  repeatable, mandatory, hidden)
12183 VALUES (1, 'biblio', '852', 'b', $$Sublocation or collection$$,
12184 TRUE, FALSE, FALSE);
12185 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12186                                  repeatable, mandatory, hidden)
12187 VALUES (1, 'biblio', '852', 'c', $$Shelving location$$,
12188 TRUE, FALSE, FALSE);
12189 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12190                                  repeatable, mandatory, hidden)
12191 VALUES (1, 'biblio', '852', 'd', $$Former shelving location$$,
12192 TRUE, FALSE, FALSE);
12193 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12194                                  repeatable, mandatory, hidden)
12195 VALUES (1, 'biblio', '852', 'e', $$Address$$,
12196 TRUE, FALSE, FALSE);
12197 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12198                                  repeatable, mandatory, hidden)
12199 VALUES (1, 'biblio', '852', 'f', $$Coded location qualifier$$,
12200 TRUE, FALSE, FALSE);
12201 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12202                                  repeatable, mandatory, hidden)
12203 VALUES (1, 'biblio', '852', 'g', $$Non-coded location qualifier$$,
12204 TRUE, FALSE, FALSE);
12205 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12206                                  repeatable, mandatory, hidden)
12207 VALUES (1, 'biblio', '852', 'h', $$Classification part$$,
12208 FALSE, FALSE, FALSE);
12209 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12210                                  repeatable, mandatory, hidden)
12211 VALUES (1, 'biblio', '852', 'i', $$Item part$$,
12212 TRUE, FALSE, FALSE);
12213 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12214                                  repeatable, mandatory, hidden)
12215 VALUES (1, 'biblio', '852', 'j', $$Shelving control number$$,
12216 FALSE, FALSE, FALSE);
12217 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12218                                  repeatable, mandatory, hidden)
12219 VALUES (1, 'biblio', '852', 'k', $$Call number prefix$$,
12220 TRUE, FALSE, FALSE);
12221 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12222                                  repeatable, mandatory, hidden)
12223 VALUES (1, 'biblio', '852', 'l', $$Shelving form of title$$,
12224 FALSE, FALSE, FALSE);
12225 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12226                                  repeatable, mandatory, hidden)
12227 VALUES (1, 'biblio', '852', 'm', $$Call number suffix$$,
12228 TRUE, FALSE, FALSE);
12229 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12230                                  repeatable, mandatory, hidden)
12231 VALUES (1, 'biblio', '852', 'n', $$Country code$$,
12232 FALSE, FALSE, FALSE);
12233 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12234                                  repeatable, mandatory, hidden)
12235 VALUES (1, 'biblio', '852', 'p', $$Piece designation$$,
12236 FALSE, FALSE, FALSE);
12237 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12238                                  repeatable, mandatory, hidden)
12239 VALUES (1, 'biblio', '852', 'q', $$Piece physical condition$$,
12240 FALSE, FALSE, FALSE);
12241 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12242                                  repeatable, mandatory, hidden)
12243 VALUES (1, 'biblio', '852', 's', $$Copyright article-fee code$$,
12244 TRUE, FALSE, FALSE);
12245 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12246                                  repeatable, mandatory, hidden)
12247 VALUES (1, 'biblio', '852', 't', $$Copy number$$,
12248 FALSE, FALSE, FALSE);
12249 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12250                                  repeatable, mandatory, hidden)
12251 VALUES (1, 'biblio', '852', 'u', $$Uniform Resource Identifier$$,
12252 TRUE, FALSE, FALSE);
12253 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12254                                  repeatable, mandatory, hidden)
12255 VALUES (1, 'biblio', '852', 'x', $$Nonpublic note$$,
12256 TRUE, FALSE, FALSE);
12257 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12258                                  repeatable, mandatory, hidden)
12259 VALUES (1, 'biblio', '852', 'z', $$Public note$$,
12260 TRUE, FALSE, FALSE);
12261 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12262                                  repeatable, mandatory, hidden)
12263 VALUES (1, 'biblio', '852', '2', $$Source of classification or shelving scheme$$,
12264 FALSE, FALSE, FALSE);
12265 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12266                                  repeatable, mandatory, hidden)
12267 VALUES (1, 'biblio', '852', '3', $$Materials specified$$,
12268 FALSE, FALSE, FALSE);
12269 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12270                                  repeatable, mandatory, hidden)
12271 VALUES (1, 'biblio', '852', '6', $$Linkage$$,
12272 FALSE, FALSE, FALSE);
12273 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12274                                  repeatable, mandatory, hidden)
12275 VALUES (1, 'biblio', '852', '8', $$Sequence number$$,
12276 FALSE, FALSE, FALSE);
12277 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
12278                               fixed_field, repeatable, mandatory, hidden)
12279 VALUES (1, 'biblio', '853', $$Captions and Pattern - Basic Bibliographic Unit$$, $$Captions that identify the enumeration and chronology levels and codes that define the publication pattern of the holdings described in the 863-865 Enumeration and Chronology fields. Any related 853-855 and 863-865 fields are linked by a number in subfield $8 (Field link and sequence number).$$,
12280 FALSE, TRUE, FALSE, FALSE);
12281 INSERT INTO config.record_attr_definition(name, label)
12282 VALUES ('marc21_biblio_853_ind_1', 'MARC 21 biblio field 853 indicator position 1');
12283 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12284 VALUES ('marc21_biblio_853_ind_1', '0', $$Cannot compress or expand$$, FALSE, TRUE);
12285 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12286 VALUES ('marc21_biblio_853_ind_1', '1', $$Can compress but not expand$$, FALSE, TRUE);
12287 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12288 VALUES ('marc21_biblio_853_ind_1', '2', $$Can compress or expand$$, FALSE, TRUE);
12289 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12290 VALUES ('marc21_biblio_853_ind_1', '3', $$Unknown$$, FALSE, TRUE);
12291 INSERT INTO config.record_attr_definition(name, label)
12292 VALUES ('marc21_biblio_853_ind_2', 'MARC 21 biblio field 853 indicator position 2');
12293 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12294 VALUES ('marc21_biblio_853_ind_2', '0', $$Captions verified; all levels present$$, FALSE, TRUE);
12295 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12296 VALUES ('marc21_biblio_853_ind_2', '1', $$Captions verified; all levels may not be present$$, FALSE, TRUE);
12297 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12298 VALUES ('marc21_biblio_853_ind_2', '2', $$Captions unverified; all levels present$$, FALSE, TRUE);
12299 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12300 VALUES ('marc21_biblio_853_ind_2', '3', $$Captions unverified; all levels may not be present$$, FALSE, TRUE);
12301 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12302                                  repeatable, mandatory, hidden)
12303 VALUES (1, 'biblio', '853', 'a', $$First level of enumeration$$,
12304 TRUE, FALSE, FALSE);
12305 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12306                                  repeatable, mandatory, hidden)
12307 VALUES (1, 'biblio', '853', 'b', $$Second level of enumeration$$,
12308 TRUE, FALSE, FALSE);
12309 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12310                                  repeatable, mandatory, hidden)
12311 VALUES (1, 'biblio', '853', 'c', $$Third level of enumeration$$,
12312 TRUE, FALSE, FALSE);
12313 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12314                                  repeatable, mandatory, hidden)
12315 VALUES (1, 'biblio', '853', 'd', $$Fourth level of enumeration$$,
12316 TRUE, FALSE, FALSE);
12317 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12318                                  repeatable, mandatory, hidden)
12319 VALUES (1, 'biblio', '853', 'e', $$Fifth level of enumeration$$,
12320 TRUE, FALSE, FALSE);
12321 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12322                                  repeatable, mandatory, hidden)
12323 VALUES (1, 'biblio', '853', 'f', $$Sixth level of enumeration$$,
12324 TRUE, FALSE, FALSE);
12325 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12326                                  repeatable, mandatory, hidden)
12327 VALUES (1, 'biblio', '853', 'g', $$Alternative numbering scheme, first level of enumeration$$,
12328 TRUE, FALSE, FALSE);
12329 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12330                                  repeatable, mandatory, hidden)
12331 VALUES (1, 'biblio', '853', 'h', $$Alternative numbering scheme, second level of enumeration$$,
12332 TRUE, FALSE, FALSE);
12333 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12334                                  repeatable, mandatory, hidden)
12335 VALUES (1, 'biblio', '853', 'i', $$First level of chronology$$,
12336 TRUE, FALSE, FALSE);
12337 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12338                                  repeatable, mandatory, hidden)
12339 VALUES (1, 'biblio', '853', 'j', $$Second level of chronology$$,
12340 TRUE, FALSE, FALSE);
12341 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12342                                  repeatable, mandatory, hidden)
12343 VALUES (1, 'biblio', '853', 'k', $$Third level of chronology$$,
12344 TRUE, FALSE, FALSE);
12345 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12346                                  repeatable, mandatory, hidden)
12347 VALUES (1, 'biblio', '853', 'l', $$Fourth level of chronology$$,
12348 TRUE, FALSE, FALSE);
12349 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12350                                  repeatable, mandatory, hidden)
12351 VALUES (1, 'biblio', '853', 'm', $$Alternative numbering scheme, chronology$$,
12352 TRUE, FALSE, FALSE);
12353 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12354                                  repeatable, mandatory, hidden)
12355 VALUES (1, 'biblio', '853', 'n', $$Pattern note$$,
12356 TRUE, FALSE, FALSE);
12357 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12358                                  repeatable, mandatory, hidden)
12359 VALUES (1, 'biblio', '853', 'o', $$Type of unit$$,
12360 TRUE, FALSE, FALSE);
12361 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12362                                  repeatable, mandatory, hidden)
12363 VALUES (1, 'biblio', '853', 'p', $$Number of pieces per issuance$$,
12364 TRUE, FALSE, FALSE);
12365 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12366                                  repeatable, mandatory, hidden)
12367 VALUES (1, 'biblio', '853', 't', $$Copy$$,
12368 TRUE, FALSE, FALSE);
12369 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12370                                  repeatable, mandatory, hidden)
12371 VALUES (1, 'biblio', '853', 'u', $$Bibliographic units per next higher level$$,
12372 TRUE, FALSE, FALSE);
12373 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12374                                  repeatable, mandatory, hidden)
12375 VALUES (1, 'biblio', '853', 'v', $$Numbering continuity$$,
12376 TRUE, FALSE, FALSE);
12377 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12378                                  repeatable, mandatory, hidden)
12379 VALUES (1, 'biblio', '853', 'w', $$Frequency$$,
12380 TRUE, FALSE, FALSE);
12381 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12382                                  repeatable, mandatory, hidden)
12383 VALUES (1, 'biblio', '853', 'x', $$Calendar change$$,
12384 TRUE, FALSE, FALSE);
12385 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12386                                  repeatable, mandatory, hidden)
12387 VALUES (1, 'biblio', '853', 'y', $$Regularity pattern$$,
12388 TRUE, FALSE, FALSE);
12389 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12390                                  repeatable, mandatory, hidden)
12391 VALUES (1, 'biblio', '853', 'z', $$Numbering scheme$$,
12392 TRUE, FALSE, FALSE);
12393 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12394                                  repeatable, mandatory, hidden)
12395 VALUES (1, 'biblio', '853', '2', $$Source of caption abbreviation$$,
12396 TRUE, FALSE, FALSE);
12397 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12398                                  repeatable, mandatory, hidden)
12399 VALUES (1, 'biblio', '853', '3', $$Materials specified$$,
12400 TRUE, FALSE, FALSE);
12401 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12402                                  repeatable, mandatory, hidden)
12403 VALUES (1, 'biblio', '853', '6', $$Linkage$$,
12404 TRUE, FALSE, FALSE);
12405 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12406                                  repeatable, mandatory, hidden)
12407 VALUES (1, 'biblio', '853', '8', $$Field link and sequence number$$,
12408 TRUE, FALSE, FALSE);
12409 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
12410                               fixed_field, repeatable, mandatory, hidden)
12411 VALUES (1, 'biblio', '854', $$Captions and Pattern - Supplementary Material$$, $$Captions that identify the enumeration and chronology levels and codes that define the publication pattern of the holdings described in the 863-865 Enumeration and Chronology fields. Any related 853-855 and 863-865 fields are linked by a number in subfield $8 (Field link and sequence number).$$,
12412 FALSE, TRUE, FALSE, FALSE);
12413 INSERT INTO config.record_attr_definition(name, label)
12414 VALUES ('marc21_biblio_854_ind_1', 'MARC 21 biblio field 854 indicator position 1');
12415 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12416 VALUES ('marc21_biblio_854_ind_1', '0', $$Cannot compress or expand$$, FALSE, TRUE);
12417 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12418 VALUES ('marc21_biblio_854_ind_1', '1', $$Can compress but not expand$$, FALSE, TRUE);
12419 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12420 VALUES ('marc21_biblio_854_ind_1', '2', $$Can compress or expand$$, FALSE, TRUE);
12421 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12422 VALUES ('marc21_biblio_854_ind_1', '3', $$Unknown$$, FALSE, TRUE);
12423 INSERT INTO config.record_attr_definition(name, label)
12424 VALUES ('marc21_biblio_854_ind_2', 'MARC 21 biblio field 854 indicator position 2');
12425 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12426 VALUES ('marc21_biblio_854_ind_2', '0', $$Captions verified; all levels present$$, FALSE, TRUE);
12427 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12428 VALUES ('marc21_biblio_854_ind_2', '1', $$Captions verified; all levels may not be present$$, FALSE, TRUE);
12429 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12430 VALUES ('marc21_biblio_854_ind_2', '2', $$Captions unverified; all levels present$$, FALSE, TRUE);
12431 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12432 VALUES ('marc21_biblio_854_ind_2', '3', $$Captions unverified; all levels may not be present$$, FALSE, TRUE);
12433 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12434                                  repeatable, mandatory, hidden)
12435 VALUES (1, 'biblio', '854', 'a', $$First level of enumeration$$,
12436 TRUE, FALSE, FALSE);
12437 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12438                                  repeatable, mandatory, hidden)
12439 VALUES (1, 'biblio', '854', 'b', $$Second level of enumeration$$,
12440 TRUE, FALSE, FALSE);
12441 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12442                                  repeatable, mandatory, hidden)
12443 VALUES (1, 'biblio', '854', 'c', $$Third level of enumeration$$,
12444 TRUE, FALSE, FALSE);
12445 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12446                                  repeatable, mandatory, hidden)
12447 VALUES (1, 'biblio', '854', 'd', $$Fourth level of enumeration$$,
12448 TRUE, FALSE, FALSE);
12449 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12450                                  repeatable, mandatory, hidden)
12451 VALUES (1, 'biblio', '854', 'e', $$Fifth level of enumeration$$,
12452 TRUE, FALSE, FALSE);
12453 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12454                                  repeatable, mandatory, hidden)
12455 VALUES (1, 'biblio', '854', 'f', $$Sixth level of enumeration$$,
12456 TRUE, FALSE, FALSE);
12457 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12458                                  repeatable, mandatory, hidden)
12459 VALUES (1, 'biblio', '854', 'g', $$Alternative numbering scheme, first level of enumeration$$,
12460 TRUE, FALSE, FALSE);
12461 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12462                                  repeatable, mandatory, hidden)
12463 VALUES (1, 'biblio', '854', 'h', $$Alternative numbering scheme, second level of enumeration$$,
12464 TRUE, FALSE, FALSE);
12465 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12466                                  repeatable, mandatory, hidden)
12467 VALUES (1, 'biblio', '854', 'i', $$First level of chronology$$,
12468 TRUE, FALSE, FALSE);
12469 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12470                                  repeatable, mandatory, hidden)
12471 VALUES (1, 'biblio', '854', 'j', $$Second level of chronology$$,
12472 TRUE, FALSE, FALSE);
12473 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12474                                  repeatable, mandatory, hidden)
12475 VALUES (1, 'biblio', '854', 'k', $$Third level of chronology$$,
12476 TRUE, FALSE, FALSE);
12477 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12478                                  repeatable, mandatory, hidden)
12479 VALUES (1, 'biblio', '854', 'l', $$Fourth level of chronology$$,
12480 TRUE, FALSE, FALSE);
12481 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12482                                  repeatable, mandatory, hidden)
12483 VALUES (1, 'biblio', '854', 'm', $$Alternative numbering scheme, chronology$$,
12484 TRUE, FALSE, FALSE);
12485 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12486                                  repeatable, mandatory, hidden)
12487 VALUES (1, 'biblio', '854', 'n', $$Pattern note$$,
12488 TRUE, FALSE, FALSE);
12489 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12490                                  repeatable, mandatory, hidden)
12491 VALUES (1, 'biblio', '854', 'o', $$Type of unit$$,
12492 TRUE, FALSE, FALSE);
12493 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12494                                  repeatable, mandatory, hidden)
12495 VALUES (1, 'biblio', '854', 'p', $$Number of pieces per issuance$$,
12496 TRUE, FALSE, FALSE);
12497 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12498                                  repeatable, mandatory, hidden)
12499 VALUES (1, 'biblio', '854', 't', $$Copy$$,
12500 TRUE, FALSE, FALSE);
12501 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12502                                  repeatable, mandatory, hidden)
12503 VALUES (1, 'biblio', '854', 'u', $$Bibliographic units per next higher level$$,
12504 TRUE, FALSE, FALSE);
12505 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12506                                  repeatable, mandatory, hidden)
12507 VALUES (1, 'biblio', '854', 'v', $$Numbering continuity$$,
12508 TRUE, FALSE, FALSE);
12509 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12510                                  repeatable, mandatory, hidden)
12511 VALUES (1, 'biblio', '854', 'w', $$Frequency$$,
12512 TRUE, FALSE, FALSE);
12513 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12514                                  repeatable, mandatory, hidden)
12515 VALUES (1, 'biblio', '854', 'x', $$Calendar change$$,
12516 TRUE, FALSE, FALSE);
12517 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12518                                  repeatable, mandatory, hidden)
12519 VALUES (1, 'biblio', '854', 'y', $$Regularity pattern$$,
12520 TRUE, FALSE, FALSE);
12521 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12522                                  repeatable, mandatory, hidden)
12523 VALUES (1, 'biblio', '854', 'z', $$Numbering scheme$$,
12524 TRUE, FALSE, FALSE);
12525 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12526                                  repeatable, mandatory, hidden)
12527 VALUES (1, 'biblio', '854', '2', $$Source of caption abbreviation$$,
12528 TRUE, FALSE, FALSE);
12529 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12530                                  repeatable, mandatory, hidden)
12531 VALUES (1, 'biblio', '854', '3', $$Materials specified$$,
12532 TRUE, FALSE, FALSE);
12533 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12534                                  repeatable, mandatory, hidden)
12535 VALUES (1, 'biblio', '854', '6', $$Linkage$$,
12536 TRUE, FALSE, FALSE);
12537 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12538                                  repeatable, mandatory, hidden)
12539 VALUES (1, 'biblio', '854', '8', $$Field link and sequence number$$,
12540 TRUE, FALSE, FALSE);
12541 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
12542                               fixed_field, repeatable, mandatory, hidden)
12543 VALUES (1, 'biblio', '855', $$Captions and Pattern - Indexes$$, $$Captions that identify the enumeration and chronology levels and codes that define the publication pattern of the holdings described in the 863-865 Enumeration and Chronology fields. Any related 853-855 and 863-865 fields are linked by a number in subfield $8 (Field link and sequence number).$$,
12544 FALSE, TRUE, FALSE, FALSE);
12545 INSERT INTO config.record_attr_definition(name, label)
12546 VALUES ('marc21_biblio_855_ind_1', 'MARC 21 biblio field 855 indicator position 1');
12547 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12548 VALUES ('marc21_biblio_855_ind_1', '#', $$Undefined$$, FALSE, TRUE);
12549 INSERT INTO config.record_attr_definition(name, label)
12550 VALUES ('marc21_biblio_855_ind_2', 'MARC 21 biblio field 855 indicator position 2');
12551 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12552 VALUES ('marc21_biblio_855_ind_2', '#', $$Undefined$$, FALSE, TRUE);
12553 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12554                                  repeatable, mandatory, hidden)
12555 VALUES (1, 'biblio', '855', 'a', $$First level of enumeration$$,
12556 TRUE, FALSE, FALSE);
12557 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12558                                  repeatable, mandatory, hidden)
12559 VALUES (1, 'biblio', '855', 'b', $$Second level of enumeration$$,
12560 TRUE, FALSE, FALSE);
12561 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12562                                  repeatable, mandatory, hidden)
12563 VALUES (1, 'biblio', '855', 'c', $$Third level of enumeration$$,
12564 TRUE, FALSE, FALSE);
12565 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12566                                  repeatable, mandatory, hidden)
12567 VALUES (1, 'biblio', '855', 'd', $$Fourth level of enumeration$$,
12568 TRUE, FALSE, FALSE);
12569 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12570                                  repeatable, mandatory, hidden)
12571 VALUES (1, 'biblio', '855', 'e', $$Fifth level of enumeration$$,
12572 TRUE, FALSE, FALSE);
12573 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12574                                  repeatable, mandatory, hidden)
12575 VALUES (1, 'biblio', '855', 'f', $$Sixth level of enumeration$$,
12576 TRUE, FALSE, FALSE);
12577 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12578                                  repeatable, mandatory, hidden)
12579 VALUES (1, 'biblio', '855', 'g', $$Alternative numbering scheme, first level of enumeration$$,
12580 TRUE, FALSE, FALSE);
12581 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12582                                  repeatable, mandatory, hidden)
12583 VALUES (1, 'biblio', '855', 'h', $$Alternative numbering scheme, second level of enumeration$$,
12584 TRUE, FALSE, FALSE);
12585 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12586                                  repeatable, mandatory, hidden)
12587 VALUES (1, 'biblio', '855', 'i', $$First level of chronology$$,
12588 TRUE, FALSE, FALSE);
12589 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12590                                  repeatable, mandatory, hidden)
12591 VALUES (1, 'biblio', '855', 'j', $$Second level of chronology$$,
12592 TRUE, FALSE, FALSE);
12593 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12594                                  repeatable, mandatory, hidden)
12595 VALUES (1, 'biblio', '855', 'k', $$Third level of chronology$$,
12596 TRUE, FALSE, FALSE);
12597 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12598                                  repeatable, mandatory, hidden)
12599 VALUES (1, 'biblio', '855', 'l', $$Fourth level of chronology$$,
12600 TRUE, FALSE, FALSE);
12601 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12602                                  repeatable, mandatory, hidden)
12603 VALUES (1, 'biblio', '855', 'm', $$Alternative numbering scheme, chronology$$,
12604 TRUE, FALSE, FALSE);
12605 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12606                                  repeatable, mandatory, hidden)
12607 VALUES (1, 'biblio', '855', 'n', $$Pattern note$$,
12608 TRUE, FALSE, FALSE);
12609 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12610                                  repeatable, mandatory, hidden)
12611 VALUES (1, 'biblio', '855', 'o', $$Type of unit$$,
12612 TRUE, FALSE, FALSE);
12613 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12614                                  repeatable, mandatory, hidden)
12615 VALUES (1, 'biblio', '855', 'p', $$Number of pieces per issuance$$,
12616 TRUE, FALSE, FALSE);
12617 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12618                                  repeatable, mandatory, hidden)
12619 VALUES (1, 'biblio', '855', 't', $$Copy$$,
12620 TRUE, FALSE, FALSE);
12621 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12622                                  repeatable, mandatory, hidden)
12623 VALUES (1, 'biblio', '855', 'u', $$Bibliographic units per next higher level$$,
12624 TRUE, FALSE, FALSE);
12625 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12626                                  repeatable, mandatory, hidden)
12627 VALUES (1, 'biblio', '855', 'v', $$Numbering continuity$$,
12628 TRUE, FALSE, FALSE);
12629 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12630                                  repeatable, mandatory, hidden)
12631 VALUES (1, 'biblio', '855', 'w', $$Frequency$$,
12632 TRUE, FALSE, FALSE);
12633 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12634                                  repeatable, mandatory, hidden)
12635 VALUES (1, 'biblio', '855', 'x', $$Calendar change$$,
12636 TRUE, FALSE, FALSE);
12637 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12638                                  repeatable, mandatory, hidden)
12639 VALUES (1, 'biblio', '855', 'y', $$Regularity pattern$$,
12640 TRUE, FALSE, FALSE);
12641 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12642                                  repeatable, mandatory, hidden)
12643 VALUES (1, 'biblio', '855', 'z', $$Numbering scheme$$,
12644 TRUE, FALSE, FALSE);
12645 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12646                                  repeatable, mandatory, hidden)
12647 VALUES (1, 'biblio', '855', '2', $$Source of caption abbreviation$$,
12648 TRUE, FALSE, FALSE);
12649 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12650                                  repeatable, mandatory, hidden)
12651 VALUES (1, 'biblio', '855', '3', $$Materials specified$$,
12652 TRUE, FALSE, FALSE);
12653 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12654                                  repeatable, mandatory, hidden)
12655 VALUES (1, 'biblio', '855', '6', $$Linkage$$,
12656 TRUE, FALSE, FALSE);
12657 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12658                                  repeatable, mandatory, hidden)
12659 VALUES (1, 'biblio', '855', '8', $$Field link and sequence number$$,
12660 TRUE, FALSE, FALSE);
12661 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
12662                               fixed_field, repeatable, mandatory, hidden)
12663 VALUES (1, 'biblio', '856', $$Electronic Location and Access$$, $$Information needed to locate and access an electronic resource. The field may be used in a bibliographic record for a resource when that resource or a subset of it is available electronically. In addition, it may be used to locate and access an electronic version of a non-electronic resource described in the bibliographic record or a related electronic resource.$$,
12664 FALSE, TRUE, FALSE, FALSE);
12665 INSERT INTO config.record_attr_definition(name, label)
12666 VALUES ('marc21_biblio_856_ind_1', 'MARC 21 biblio field 856 indicator position 1');
12667 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12668 VALUES ('marc21_biblio_856_ind_1', '#', $$No information provided$$, FALSE, TRUE);
12669 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12670 VALUES ('marc21_biblio_856_ind_1', '0', $$Email$$, FALSE, TRUE);
12671 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12672 VALUES ('marc21_biblio_856_ind_1', '1', $$FTP$$, FALSE, TRUE);
12673 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12674 VALUES ('marc21_biblio_856_ind_1', '2', $$Remote login (Telnet)$$, FALSE, TRUE);
12675 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12676 VALUES ('marc21_biblio_856_ind_1', '3', $$Dial-up$$, FALSE, TRUE);
12677 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12678 VALUES ('marc21_biblio_856_ind_1', '4', $$HTTP$$, FALSE, TRUE);
12679 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12680 VALUES ('marc21_biblio_856_ind_1', '7', $$Method specified in subfield $2$$, FALSE, TRUE);
12681 INSERT INTO config.record_attr_definition(name, label)
12682 VALUES ('marc21_biblio_856_ind_2', 'MARC 21 biblio field 856 indicator position 2');
12683 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12684 VALUES ('marc21_biblio_856_ind_2', '#', $$No information provided$$, FALSE, TRUE);
12685 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12686 VALUES ('marc21_biblio_856_ind_2', '0', $$Resource$$, FALSE, TRUE);
12687 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12688 VALUES ('marc21_biblio_856_ind_2', '1', $$Version of resource$$, FALSE, TRUE);
12689 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12690 VALUES ('marc21_biblio_856_ind_2', '2', $$Related resource$$, FALSE, TRUE);
12691 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12692 VALUES ('marc21_biblio_856_ind_2', '8', $$No display constant generated$$, FALSE, TRUE);
12693 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12694                                  repeatable, mandatory, hidden)
12695 VALUES (1, 'biblio', '856', 'a', $$Host name$$,
12696 TRUE, FALSE, FALSE);
12697 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12698                                  repeatable, mandatory, hidden)
12699 VALUES (1, 'biblio', '856', 'b', $$Access number$$,
12700 TRUE, FALSE, FALSE);
12701 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12702                                  repeatable, mandatory, hidden)
12703 VALUES (1, 'biblio', '856', 'c', $$Compression information$$,
12704 TRUE, FALSE, FALSE);
12705 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12706                                  repeatable, mandatory, hidden)
12707 VALUES (1, 'biblio', '856', 'd', $$Path$$,
12708 TRUE, FALSE, FALSE);
12709 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12710                                  repeatable, mandatory, hidden)
12711 VALUES (1, 'biblio', '856', 'f', $$Electronic name$$,
12712 TRUE, FALSE, FALSE);
12713 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12714                                  repeatable, mandatory, hidden)
12715 VALUES (1, 'biblio', '856', 'h', $$Processor of request$$,
12716 FALSE, FALSE, FALSE);
12717 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12718                                  repeatable, mandatory, hidden)
12719 VALUES (1, 'biblio', '856', 'i', $$Instruction$$,
12720 TRUE, FALSE, FALSE);
12721 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12722                                  repeatable, mandatory, hidden)
12723 VALUES (1, 'biblio', '856', 'j', $$Bits per second$$,
12724 FALSE, FALSE, FALSE);
12725 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12726                                  repeatable, mandatory, hidden)
12727 VALUES (1, 'biblio', '856', 'k', $$Password$$,
12728 FALSE, FALSE, FALSE);
12729 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12730                                  repeatable, mandatory, hidden)
12731 VALUES (1, 'biblio', '856', 'l', $$Logon$$,
12732 FALSE, FALSE, FALSE);
12733 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12734                                  repeatable, mandatory, hidden)
12735 VALUES (1, 'biblio', '856', 'm', $$Contact for access assistance$$,
12736 TRUE, FALSE, FALSE);
12737 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12738                                  repeatable, mandatory, hidden)
12739 VALUES (1, 'biblio', '856', 'n', $$Name of location of host$$,
12740 FALSE, FALSE, FALSE);
12741 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12742                                  repeatable, mandatory, hidden)
12743 VALUES (1, 'biblio', '856', 'o', $$Operating system$$,
12744 FALSE, FALSE, FALSE);
12745 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12746                                  repeatable, mandatory, hidden)
12747 VALUES (1, 'biblio', '856', 'p', $$Port$$,
12748 FALSE, FALSE, FALSE);
12749 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12750                                  repeatable, mandatory, hidden)
12751 VALUES (1, 'biblio', '856', 'q', $$Electronic format type$$,
12752 FALSE, FALSE, FALSE);
12753 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12754                                  repeatable, mandatory, hidden)
12755 VALUES (1, 'biblio', '856', 'r', $$Settings$$,
12756 FALSE, FALSE, FALSE);
12757 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12758                                  repeatable, mandatory, hidden)
12759 VALUES (1, 'biblio', '856', 's', $$File size$$,
12760 TRUE, FALSE, FALSE);
12761 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12762                                  repeatable, mandatory, hidden)
12763 VALUES (1, 'biblio', '856', 't', $$Terminal emulation$$,
12764 TRUE, FALSE, FALSE);
12765 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12766                                  repeatable, mandatory, hidden)
12767 VALUES (1, 'biblio', '856', 'u', $$Uniform Resource Identifier$$,
12768 TRUE, FALSE, FALSE);
12769 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12770                                  repeatable, mandatory, hidden)
12771 VALUES (1, 'biblio', '856', 'v', $$Hours access method available$$,
12772 TRUE, FALSE, FALSE);
12773 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12774                                  repeatable, mandatory, hidden)
12775 VALUES (1, 'biblio', '856', 'w', $$Record control number$$,
12776 TRUE, FALSE, FALSE);
12777 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12778                                  repeatable, mandatory, hidden)
12779 VALUES (1, 'biblio', '856', 'x', $$Nonpublic note$$,
12780 TRUE, FALSE, FALSE);
12781 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12782                                  repeatable, mandatory, hidden)
12783 VALUES (1, 'biblio', '856', 'y', $$Link text$$,
12784 TRUE, FALSE, FALSE);
12785 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12786                                  repeatable, mandatory, hidden)
12787 VALUES (1, 'biblio', '856', 'z', $$Public note$$,
12788 TRUE, FALSE, FALSE);
12789 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12790                                  repeatable, mandatory, hidden)
12791 VALUES (1, 'biblio', '856', '2', $$Access method$$,
12792 FALSE, FALSE, FALSE);
12793 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12794                                  repeatable, mandatory, hidden)
12795 VALUES (1, 'biblio', '856', '3', $$Materials specified$$,
12796 FALSE, FALSE, FALSE);
12797 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12798                                  repeatable, mandatory, hidden)
12799 VALUES (1, 'biblio', '856', '6', $$Linkage$$,
12800 FALSE, FALSE, FALSE);
12801 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12802                                  repeatable, mandatory, hidden)
12803 VALUES (1, 'biblio', '856', '8', $$Field link and sequence number$$,
12804 TRUE, FALSE, FALSE);
12805 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
12806                               fixed_field, repeatable, mandatory, hidden)
12807 VALUES (1, 'biblio', '863', $$Enumeration and Chronology - Basic Bibliographic Unit$$, $$Description of the holdings of a bibliographic item in the collections of the reporting organization. The captions that identify the enumeration and chronology levels and the codes that define the publication pattern of the holdings are contained in the Captions and Pattern fields (853-855) that are linked to the 863-865 fields by a number in subfield $8 (Field link and sequence number).$$,
12808 FALSE, TRUE, FALSE, FALSE);
12809 INSERT INTO config.record_attr_definition(name, label)
12810 VALUES ('marc21_biblio_863_ind_1', 'MARC 21 biblio field 863 indicator position 1');
12811 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12812 VALUES ('marc21_biblio_863_ind_1', '#', $$No information provided$$, FALSE, TRUE);
12813 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12814 VALUES ('marc21_biblio_863_ind_1', '3', $$Holdings level 3$$, FALSE, TRUE);
12815 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12816 VALUES ('marc21_biblio_863_ind_1', '4', $$Holdings level 4$$, FALSE, TRUE);
12817 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12818 VALUES ('marc21_biblio_863_ind_1', '5', $$Holdings level 4 with piece designation$$, FALSE, TRUE);
12819 INSERT INTO config.record_attr_definition(name, label)
12820 VALUES ('marc21_biblio_863_ind_2', 'MARC 21 biblio field 863 indicator position 2');
12821 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12822 VALUES ('marc21_biblio_863_ind_2', '#', $$No information provided$$, FALSE, TRUE);
12823 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12824 VALUES ('marc21_biblio_863_ind_2', '0', $$Compressed$$, FALSE, TRUE);
12825 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12826 VALUES ('marc21_biblio_863_ind_2', '1', $$Uncompressed$$, FALSE, TRUE);
12827 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12828 VALUES ('marc21_biblio_863_ind_2', '2', $$Compressed, use textual display$$, FALSE, TRUE);
12829 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12830 VALUES ('marc21_biblio_863_ind_2', '3', $$Uncompressed, use textual display$$, FALSE, TRUE);
12831 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12832 VALUES ('marc21_biblio_863_ind_2', '4', $$Item(s) not published$$, FALSE, TRUE);
12833 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12834                                  repeatable, mandatory, hidden)
12835 VALUES (1, 'biblio', '863', 'a', $$First level of enumeration$$,
12836 TRUE, FALSE, FALSE);
12837 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12838                                  repeatable, mandatory, hidden)
12839 VALUES (1, 'biblio', '863', 'b', $$Second level of enumeration$$,
12840 TRUE, FALSE, FALSE);
12841 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12842                                  repeatable, mandatory, hidden)
12843 VALUES (1, 'biblio', '863', 'c', $$Third level of enumeration$$,
12844 TRUE, FALSE, FALSE);
12845 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12846                                  repeatable, mandatory, hidden)
12847 VALUES (1, 'biblio', '863', 'd', $$Fourth level of enumeration$$,
12848 TRUE, FALSE, FALSE);
12849 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12850                                  repeatable, mandatory, hidden)
12851 VALUES (1, 'biblio', '863', 'e', $$Fifth level of enumeration$$,
12852 TRUE, FALSE, FALSE);
12853 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12854                                  repeatable, mandatory, hidden)
12855 VALUES (1, 'biblio', '863', 'f', $$Sixth level of enumeration$$,
12856 TRUE, FALSE, FALSE);
12857 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12858                                  repeatable, mandatory, hidden)
12859 VALUES (1, 'biblio', '863', 'g', $$Alternative numbering scheme, first level of enumeration$$,
12860 TRUE, FALSE, FALSE);
12861 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12862                                  repeatable, mandatory, hidden)
12863 VALUES (1, 'biblio', '863', 'h', $$Alternative numbering scheme, second level of enumeration$$,
12864 TRUE, FALSE, FALSE);
12865 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12866                                  repeatable, mandatory, hidden)
12867 VALUES (1, 'biblio', '863', 'i', $$First level of chronology$$,
12868 TRUE, FALSE, FALSE);
12869 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12870                                  repeatable, mandatory, hidden)
12871 VALUES (1, 'biblio', '863', 'j', $$Second level of chronology$$,
12872 TRUE, FALSE, FALSE);
12873 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12874                                  repeatable, mandatory, hidden)
12875 VALUES (1, 'biblio', '863', 'k', $$Third level of chronology$$,
12876 TRUE, FALSE, FALSE);
12877 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12878                                  repeatable, mandatory, hidden)
12879 VALUES (1, 'biblio', '863', 'l', $$Fourth level of chronology$$,
12880 TRUE, FALSE, FALSE);
12881 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12882                                  repeatable, mandatory, hidden)
12883 VALUES (1, 'biblio', '863', 'm', $$Alternative numbering scheme, chronology$$,
12884 TRUE, FALSE, FALSE);
12885 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12886                                  repeatable, mandatory, hidden)
12887 VALUES (1, 'biblio', '863', 'n', $$Converted Gregorian year$$,
12888 TRUE, FALSE, FALSE);
12889 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12890                                  repeatable, mandatory, hidden)
12891 VALUES (1, 'biblio', '863', 'o', $$Type of unit$$,
12892 TRUE, FALSE, FALSE);
12893 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12894                                  repeatable, mandatory, hidden)
12895 VALUES (1, 'biblio', '863', 'p', $$Piece designation$$,
12896 TRUE, FALSE, FALSE);
12897 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12898                                  repeatable, mandatory, hidden)
12899 VALUES (1, 'biblio', '863', 'q', $$Piece physical condition$$,
12900 TRUE, FALSE, FALSE);
12901 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12902                                  repeatable, mandatory, hidden)
12903 VALUES (1, 'biblio', '863', 's', $$Copyright article-fee code$$,
12904 TRUE, FALSE, FALSE);
12905 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12906                                  repeatable, mandatory, hidden)
12907 VALUES (1, 'biblio', '863', 't', $$Copy number$$,
12908 TRUE, FALSE, FALSE);
12909 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12910                                  repeatable, mandatory, hidden)
12911 VALUES (1, 'biblio', '863', 'v', $$Issuing date$$,
12912 TRUE, FALSE, FALSE);
12913 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12914                                  repeatable, mandatory, hidden)
12915 VALUES (1, 'biblio', '863', 'w', $$Break indicator$$,
12916 TRUE, FALSE, FALSE);
12917 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12918                                  repeatable, mandatory, hidden)
12919 VALUES (1, 'biblio', '863', 'x', $$Nonpublic note$$,
12920 TRUE, FALSE, FALSE);
12921 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12922                                  repeatable, mandatory, hidden)
12923 VALUES (1, 'biblio', '863', 'z', $$Public note$$,
12924 TRUE, FALSE, FALSE);
12925 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12926                                  repeatable, mandatory, hidden)
12927 VALUES (1, 'biblio', '863', '6', $$Linkage$$,
12928 TRUE, FALSE, FALSE);
12929 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12930                                  repeatable, mandatory, hidden)
12931 VALUES (1, 'biblio', '863', '8', $$Field link and sequence number$$,
12932 TRUE, FALSE, FALSE);
12933 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
12934                               fixed_field, repeatable, mandatory, hidden)
12935 VALUES (1, 'biblio', '864', $$Enumeration and Chronology - Supplementary Material$$, $$Description of the holdings of a bibliographic item in the collections of the reporting organization. The captions that identify the enumeration and chronology levels and the codes that define the publication pattern of the holdings are contained in the Captions and Pattern fields (853-855) that are linked to the 863-865 fields by a number in subfield $8 (Field link and sequence number).$$,
12936 FALSE, TRUE, FALSE, FALSE);
12937 INSERT INTO config.record_attr_definition(name, label)
12938 VALUES ('marc21_biblio_864_ind_1', 'MARC 21 biblio field 864 indicator position 1');
12939 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12940 VALUES ('marc21_biblio_864_ind_1', '#', $$No information provided$$, FALSE, TRUE);
12941 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12942 VALUES ('marc21_biblio_864_ind_1', '3', $$Holdings level 3$$, FALSE, TRUE);
12943 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12944 VALUES ('marc21_biblio_864_ind_1', '4', $$Holdings level 4$$, FALSE, TRUE);
12945 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12946 VALUES ('marc21_biblio_864_ind_1', '5', $$Holdings level 4 with piece designation$$, FALSE, TRUE);
12947 INSERT INTO config.record_attr_definition(name, label)
12948 VALUES ('marc21_biblio_864_ind_2', 'MARC 21 biblio field 864 indicator position 2');
12949 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12950 VALUES ('marc21_biblio_864_ind_2', '#', $$No information provided$$, FALSE, TRUE);
12951 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12952 VALUES ('marc21_biblio_864_ind_2', '0', $$Compressed$$, FALSE, TRUE);
12953 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12954 VALUES ('marc21_biblio_864_ind_2', '1', $$Uncompressed$$, FALSE, TRUE);
12955 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12956 VALUES ('marc21_biblio_864_ind_2', '2', $$Compressed, use textual display$$, FALSE, TRUE);
12957 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12958 VALUES ('marc21_biblio_864_ind_2', '3', $$Uncompressed, use textual display$$, FALSE, TRUE);
12959 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
12960 VALUES ('marc21_biblio_864_ind_2', '4', $$Item(s) not published$$, FALSE, TRUE);
12961 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12962                                  repeatable, mandatory, hidden)
12963 VALUES (1, 'biblio', '864', 'a', $$First level of enumeration$$,
12964 TRUE, FALSE, FALSE);
12965 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12966                                  repeatable, mandatory, hidden)
12967 VALUES (1, 'biblio', '864', 'b', $$Second level of enumeration$$,
12968 TRUE, FALSE, FALSE);
12969 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12970                                  repeatable, mandatory, hidden)
12971 VALUES (1, 'biblio', '864', 'c', $$Third level of enumeration$$,
12972 TRUE, FALSE, FALSE);
12973 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12974                                  repeatable, mandatory, hidden)
12975 VALUES (1, 'biblio', '864', 'd', $$Fourth level of enumeration$$,
12976 TRUE, FALSE, FALSE);
12977 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12978                                  repeatable, mandatory, hidden)
12979 VALUES (1, 'biblio', '864', 'e', $$Fifth level of enumeration$$,
12980 TRUE, FALSE, FALSE);
12981 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12982                                  repeatable, mandatory, hidden)
12983 VALUES (1, 'biblio', '864', 'f', $$Sixth level of enumeration$$,
12984 TRUE, FALSE, FALSE);
12985 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12986                                  repeatable, mandatory, hidden)
12987 VALUES (1, 'biblio', '864', 'g', $$Alternative numbering scheme, first level of enumeration$$,
12988 TRUE, FALSE, FALSE);
12989 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12990                                  repeatable, mandatory, hidden)
12991 VALUES (1, 'biblio', '864', 'h', $$Alternative numbering scheme, second level of enumeration$$,
12992 TRUE, FALSE, FALSE);
12993 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12994                                  repeatable, mandatory, hidden)
12995 VALUES (1, 'biblio', '864', 'i', $$First level of chronology$$,
12996 TRUE, FALSE, FALSE);
12997 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
12998                                  repeatable, mandatory, hidden)
12999 VALUES (1, 'biblio', '864', 'j', $$Second level of chronology$$,
13000 TRUE, FALSE, FALSE);
13001 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13002                                  repeatable, mandatory, hidden)
13003 VALUES (1, 'biblio', '864', 'k', $$Third level of chronology$$,
13004 TRUE, FALSE, FALSE);
13005 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13006                                  repeatable, mandatory, hidden)
13007 VALUES (1, 'biblio', '864', 'l', $$Fourth level of chronology$$,
13008 TRUE, FALSE, FALSE);
13009 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13010                                  repeatable, mandatory, hidden)
13011 VALUES (1, 'biblio', '864', 'm', $$Alternative numbering scheme, chronology$$,
13012 TRUE, FALSE, FALSE);
13013 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13014                                  repeatable, mandatory, hidden)
13015 VALUES (1, 'biblio', '864', 'n', $$Converted Gregorian year$$,
13016 TRUE, FALSE, FALSE);
13017 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13018                                  repeatable, mandatory, hidden)
13019 VALUES (1, 'biblio', '864', 'o', $$Type of unit$$,
13020 TRUE, FALSE, FALSE);
13021 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13022                                  repeatable, mandatory, hidden)
13023 VALUES (1, 'biblio', '864', 'p', $$Piece designation$$,
13024 TRUE, FALSE, FALSE);
13025 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13026                                  repeatable, mandatory, hidden)
13027 VALUES (1, 'biblio', '864', 'q', $$Piece physical condition$$,
13028 TRUE, FALSE, FALSE);
13029 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13030                                  repeatable, mandatory, hidden)
13031 VALUES (1, 'biblio', '864', 's', $$Copyright article-fee code$$,
13032 TRUE, FALSE, FALSE);
13033 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13034                                  repeatable, mandatory, hidden)
13035 VALUES (1, 'biblio', '864', 't', $$Copy number$$,
13036 TRUE, FALSE, FALSE);
13037 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13038                                  repeatable, mandatory, hidden)
13039 VALUES (1, 'biblio', '864', 'v', $$Issuing date$$,
13040 TRUE, FALSE, FALSE);
13041 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13042                                  repeatable, mandatory, hidden)
13043 VALUES (1, 'biblio', '864', 'w', $$Break indicator$$,
13044 TRUE, FALSE, FALSE);
13045 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13046                                  repeatable, mandatory, hidden)
13047 VALUES (1, 'biblio', '864', 'x', $$Nonpublic note$$,
13048 TRUE, FALSE, FALSE);
13049 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13050                                  repeatable, mandatory, hidden)
13051 VALUES (1, 'biblio', '864', 'z', $$Public note$$,
13052 TRUE, FALSE, FALSE);
13053 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13054                                  repeatable, mandatory, hidden)
13055 VALUES (1, 'biblio', '864', '6', $$Linkage$$,
13056 TRUE, FALSE, FALSE);
13057 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13058                                  repeatable, mandatory, hidden)
13059 VALUES (1, 'biblio', '864', '8', $$Field link and sequence number$$,
13060 TRUE, FALSE, FALSE);
13061 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
13062                               fixed_field, repeatable, mandatory, hidden)
13063 VALUES (1, 'biblio', '865', $$Enumeration and Chronology - Indexes$$, $$Description of the holdings of a bibliographic item in the collections of the reporting organization. The captions that identify the enumeration and chronology levels and the codes that define the publication pattern of the holdings are contained in the Captions and Pattern fields (853-855) that are linked to the 863-865 fields by a number in subfield $8 (Field link and sequence number).$$,
13064 FALSE, TRUE, FALSE, FALSE);
13065 INSERT INTO config.record_attr_definition(name, label)
13066 VALUES ('marc21_biblio_865_ind_1', 'MARC 21 biblio field 865 indicator position 1');
13067 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13068 VALUES ('marc21_biblio_865_ind_1', '#', $$No information provided$$, FALSE, TRUE);
13069 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13070 VALUES ('marc21_biblio_865_ind_1', '4', $$Holdings level 4$$, FALSE, TRUE);
13071 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13072 VALUES ('marc21_biblio_865_ind_1', '5', $$Holdings level 4 with piece designation$$, FALSE, TRUE);
13073 INSERT INTO config.record_attr_definition(name, label)
13074 VALUES ('marc21_biblio_865_ind_2', 'MARC 21 biblio field 865 indicator position 2');
13075 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13076 VALUES ('marc21_biblio_865_ind_2', '#', $$No information provided$$, FALSE, TRUE);
13077 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13078 VALUES ('marc21_biblio_865_ind_2', '1', $$Uncompressed$$, FALSE, TRUE);
13079 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13080 VALUES ('marc21_biblio_865_ind_2', '3', $$Uncompressed, use textual display$$, FALSE, TRUE);
13081 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13082                                  repeatable, mandatory, hidden)
13083 VALUES (1, 'biblio', '865', 'a', $$First level of enumeration$$,
13084 TRUE, FALSE, FALSE);
13085 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13086                                  repeatable, mandatory, hidden)
13087 VALUES (1, 'biblio', '865', 'b', $$Second level of enumeration$$,
13088 TRUE, FALSE, FALSE);
13089 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13090                                  repeatable, mandatory, hidden)
13091 VALUES (1, 'biblio', '865', 'c', $$Third level of enumeration$$,
13092 TRUE, FALSE, FALSE);
13093 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13094                                  repeatable, mandatory, hidden)
13095 VALUES (1, 'biblio', '865', 'd', $$Fourth level of enumeration$$,
13096 TRUE, FALSE, FALSE);
13097 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13098                                  repeatable, mandatory, hidden)
13099 VALUES (1, 'biblio', '865', 'e', $$Fifth level of enumeration$$,
13100 TRUE, FALSE, FALSE);
13101 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13102                                  repeatable, mandatory, hidden)
13103 VALUES (1, 'biblio', '865', 'f', $$Sixth level of enumeration$$,
13104 TRUE, FALSE, FALSE);
13105 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13106                                  repeatable, mandatory, hidden)
13107 VALUES (1, 'biblio', '865', 'g', $$Alternative numbering scheme, first level of enumeration$$,
13108 TRUE, FALSE, FALSE);
13109 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13110                                  repeatable, mandatory, hidden)
13111 VALUES (1, 'biblio', '865', 'h', $$Alternative numbering scheme, second level of enumeration$$,
13112 TRUE, FALSE, FALSE);
13113 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13114                                  repeatable, mandatory, hidden)
13115 VALUES (1, 'biblio', '865', 'i', $$First level of chronology$$,
13116 TRUE, FALSE, FALSE);
13117 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13118                                  repeatable, mandatory, hidden)
13119 VALUES (1, 'biblio', '865', 'j', $$Second level of chronology$$,
13120 TRUE, FALSE, FALSE);
13121 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13122                                  repeatable, mandatory, hidden)
13123 VALUES (1, 'biblio', '865', 'k', $$Third level of chronology$$,
13124 TRUE, FALSE, FALSE);
13125 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13126                                  repeatable, mandatory, hidden)
13127 VALUES (1, 'biblio', '865', 'l', $$Fourth level of chronology$$,
13128 TRUE, FALSE, FALSE);
13129 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13130                                  repeatable, mandatory, hidden)
13131 VALUES (1, 'biblio', '865', 'm', $$Alternative numbering scheme, chronology$$,
13132 TRUE, FALSE, FALSE);
13133 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13134                                  repeatable, mandatory, hidden)
13135 VALUES (1, 'biblio', '865', 'n', $$Converted Gregorian year$$,
13136 TRUE, FALSE, FALSE);
13137 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13138                                  repeatable, mandatory, hidden)
13139 VALUES (1, 'biblio', '865', 'o', $$Type of unit$$,
13140 TRUE, FALSE, FALSE);
13141 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13142                                  repeatable, mandatory, hidden)
13143 VALUES (1, 'biblio', '865', 'p', $$Piece designation$$,
13144 TRUE, FALSE, FALSE);
13145 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13146                                  repeatable, mandatory, hidden)
13147 VALUES (1, 'biblio', '865', 'q', $$Piece physical condition$$,
13148 TRUE, FALSE, FALSE);
13149 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13150                                  repeatable, mandatory, hidden)
13151 VALUES (1, 'biblio', '865', 's', $$Copyright article-fee code$$,
13152 TRUE, FALSE, FALSE);
13153 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13154                                  repeatable, mandatory, hidden)
13155 VALUES (1, 'biblio', '865', 't', $$Copy number$$,
13156 TRUE, FALSE, FALSE);
13157 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13158                                  repeatable, mandatory, hidden)
13159 VALUES (1, 'biblio', '865', 'v', $$Issuing date$$,
13160 TRUE, FALSE, FALSE);
13161 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13162                                  repeatable, mandatory, hidden)
13163 VALUES (1, 'biblio', '865', 'w', $$Break indicator$$,
13164 TRUE, FALSE, FALSE);
13165 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13166                                  repeatable, mandatory, hidden)
13167 VALUES (1, 'biblio', '865', 'x', $$Nonpublic note$$,
13168 TRUE, FALSE, FALSE);
13169 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13170                                  repeatable, mandatory, hidden)
13171 VALUES (1, 'biblio', '865', 'z', $$Public note$$,
13172 TRUE, FALSE, FALSE);
13173 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13174                                  repeatable, mandatory, hidden)
13175 VALUES (1, 'biblio', '865', '6', $$Linkage$$,
13176 TRUE, FALSE, FALSE);
13177 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13178                                  repeatable, mandatory, hidden)
13179 VALUES (1, 'biblio', '865', '8', $$Field link and sequence number$$,
13180 TRUE, FALSE, FALSE);
13181 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
13182                               fixed_field, repeatable, mandatory, hidden)
13183 VALUES (1, 'biblio', '866', $$Textual Holdings - Basic Bibliographic Unit$$, $$Textual description which may include both the captions and enumeration and chronology for the holdings of a bibliographic item in the collections of the reporting organization. These fields are normally not used in holdings for single-part items. They may be used the coded 853-855 Captions and Pattern and 863-865 Enumeration and Chronology fields for multipart and serial items when those fields cannot be used adequately to describe the holdings. The 866-868 fields may also be used an Enumeration and Chronology field and any related Captions and Pattern field to record and generate an alternative display for all or part of the enumeration and chronology and captions and pattern fields.$$,
13184 FALSE, TRUE, FALSE, FALSE);
13185 INSERT INTO config.record_attr_definition(name, label)
13186 VALUES ('marc21_biblio_866_ind_1', 'MARC 21 biblio field 866 indicator position 1');
13187 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13188 VALUES ('marc21_biblio_866_ind_1', '#', $$No information provided$$, FALSE, TRUE);
13189 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13190 VALUES ('marc21_biblio_866_ind_1', '3', $$Holdings level 3$$, FALSE, TRUE);
13191 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13192 VALUES ('marc21_biblio_866_ind_1', '4', $$Holdings level 4$$, FALSE, TRUE);
13193 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13194 VALUES ('marc21_biblio_866_ind_1', '5', $$Holdings level 4 with piece designation$$, FALSE, TRUE);
13195 INSERT INTO config.record_attr_definition(name, label)
13196 VALUES ('marc21_biblio_866_ind_2', 'MARC 21 biblio field 866 indicator position 2');
13197 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13198 VALUES ('marc21_biblio_866_ind_2', '0', $$Non-standard$$, FALSE, TRUE);
13199 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13200 VALUES ('marc21_biblio_866_ind_2', '1', $$ANSI/NISO Z39.71 or ISO 10324$$, FALSE, TRUE);
13201 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13202 VALUES ('marc21_biblio_866_ind_2', '2', $$ANSI Z39.42$$, FALSE, TRUE);
13203 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13204 VALUES ('marc21_biblio_866_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
13205 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13206                                  repeatable, mandatory, hidden)
13207 VALUES (1, 'biblio', '866', 'a', $$Textual holdings$$,
13208 TRUE, FALSE, FALSE);
13209 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13210                                  repeatable, mandatory, hidden)
13211 VALUES (1, 'biblio', '866', 'x', $$Nonpublic note$$,
13212 TRUE, FALSE, FALSE);
13213 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13214                                  repeatable, mandatory, hidden)
13215 VALUES (1, 'biblio', '866', 'z', $$Public note$$,
13216 TRUE, FALSE, FALSE);
13217 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13218                                  repeatable, mandatory, hidden)
13219 VALUES (1, 'biblio', '866', '2', $$Source of notation$$,
13220 TRUE, FALSE, FALSE);
13221 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13222                                  repeatable, mandatory, hidden)
13223 VALUES (1, 'biblio', '866', '6', $$Linkage$$,
13224 TRUE, FALSE, FALSE);
13225 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13226                                  repeatable, mandatory, hidden)
13227 VALUES (1, 'biblio', '866', '8', $$Field link and sequence number$$,
13228 TRUE, FALSE, FALSE);
13229 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
13230                               fixed_field, repeatable, mandatory, hidden)
13231 VALUES (1, 'biblio', '867', $$Textual Holdings - Supplementary Material$$, $$Textual description which may include both the captions and enumeration and chronology for the holdings of a bibliographic item in the collections of the reporting organization. These fields are normally not used in holdings for single-part items. They may be used the coded 853-855 Captions and Pattern and 863-865 Enumeration and Chronology fields for multipart and serial items when those fields cannot be used adequately to describe the holdings. The 866-868 fields may also be used an Enumeration and Chronology field and any related Captions and Pattern field to record and generate an alternative display for all or part of the enumeration and chronology and captions and pattern fields.$$,
13232 FALSE, TRUE, FALSE, FALSE);
13233 INSERT INTO config.record_attr_definition(name, label)
13234 VALUES ('marc21_biblio_867_ind_1', 'MARC 21 biblio field 867 indicator position 1');
13235 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13236 VALUES ('marc21_biblio_867_ind_1', '#', $$No information provided$$, FALSE, TRUE);
13237 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13238 VALUES ('marc21_biblio_867_ind_1', '3', $$Holdings level 3$$, FALSE, TRUE);
13239 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13240 VALUES ('marc21_biblio_867_ind_1', '4', $$Holdings level 4$$, FALSE, TRUE);
13241 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13242 VALUES ('marc21_biblio_867_ind_1', '5', $$Holdings level 4 with piece designation$$, FALSE, TRUE);
13243 INSERT INTO config.record_attr_definition(name, label)
13244 VALUES ('marc21_biblio_867_ind_2', 'MARC 21 biblio field 867 indicator position 2');
13245 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13246 VALUES ('marc21_biblio_867_ind_2', '0', $$Non-standard$$, FALSE, TRUE);
13247 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13248 VALUES ('marc21_biblio_867_ind_2', '1', $$ANSI/NISO Z39.71 or ISO 10324$$, FALSE, TRUE);
13249 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13250 VALUES ('marc21_biblio_867_ind_2', '2', $$ANSI Z39.42$$, FALSE, TRUE);
13251 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13252 VALUES ('marc21_biblio_867_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
13253 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13254                                  repeatable, mandatory, hidden)
13255 VALUES (1, 'biblio', '867', 'a', $$Textual holdings$$,
13256 TRUE, FALSE, FALSE);
13257 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13258                                  repeatable, mandatory, hidden)
13259 VALUES (1, 'biblio', '867', 'x', $$Nonpublic note$$,
13260 TRUE, FALSE, FALSE);
13261 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13262                                  repeatable, mandatory, hidden)
13263 VALUES (1, 'biblio', '867', 'z', $$Public note$$,
13264 TRUE, FALSE, FALSE);
13265 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13266                                  repeatable, mandatory, hidden)
13267 VALUES (1, 'biblio', '867', '2', $$Source of notation$$,
13268 TRUE, FALSE, FALSE);
13269 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13270                                  repeatable, mandatory, hidden)
13271 VALUES (1, 'biblio', '867', '6', $$Linkage$$,
13272 TRUE, FALSE, FALSE);
13273 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13274                                  repeatable, mandatory, hidden)
13275 VALUES (1, 'biblio', '867', '8', $$Field link and sequence number$$,
13276 TRUE, FALSE, FALSE);
13277 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
13278                               fixed_field, repeatable, mandatory, hidden)
13279 VALUES (1, 'biblio', '868', $$Textual Holdings - Indexes$$, $$Textual description which may include both the captions and enumeration and chronology for the holdings of a bibliographic item in the collections of the reporting organization. These fields are normally not used in holdings for single-part items. They may be used the coded 853-855 Captions and Pattern and 863-865 Enumeration and Chronology fields for multipart and serial items when those fields cannot be used adequately to describe the holdings. The 866-868 fields may also be used an Enumeration and Chronology field and any related Captions and Pattern field to record and generate an alternative display for all or part of the enumeration and chronology and captions and pattern fields.$$,
13280 FALSE, TRUE, FALSE, FALSE);
13281 INSERT INTO config.record_attr_definition(name, label)
13282 VALUES ('marc21_biblio_868_ind_1', 'MARC 21 biblio field 868 indicator position 1');
13283 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13284 VALUES ('marc21_biblio_868_ind_1', '#', $$No information provided$$, FALSE, TRUE);
13285 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13286 VALUES ('marc21_biblio_868_ind_1', '3', $$Holdings level 3$$, FALSE, TRUE);
13287 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13288 VALUES ('marc21_biblio_868_ind_1', '4', $$Holdings level 4$$, FALSE, TRUE);
13289 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13290 VALUES ('marc21_biblio_868_ind_1', '5', $$Holdings level 4 with piece designation$$, FALSE, TRUE);
13291 INSERT INTO config.record_attr_definition(name, label)
13292 VALUES ('marc21_biblio_868_ind_2', 'MARC 21 biblio field 868 indicator position 2');
13293 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13294 VALUES ('marc21_biblio_868_ind_2', '0', $$Non-standard$$, FALSE, TRUE);
13295 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13296 VALUES ('marc21_biblio_868_ind_2', '1', $$ANSI/NISO Z39.71 or ISO 10324$$, FALSE, TRUE);
13297 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13298 VALUES ('marc21_biblio_868_ind_2', '2', $$ANSI Z39.42$$, FALSE, TRUE);
13299 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13300 VALUES ('marc21_biblio_868_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
13301 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13302                                  repeatable, mandatory, hidden)
13303 VALUES (1, 'biblio', '868', 'a', $$Textual holdings$$,
13304 TRUE, FALSE, FALSE);
13305 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13306                                  repeatable, mandatory, hidden)
13307 VALUES (1, 'biblio', '868', 'x', $$Nonpublic note$$,
13308 TRUE, FALSE, FALSE);
13309 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13310                                  repeatable, mandatory, hidden)
13311 VALUES (1, 'biblio', '868', 'z', $$Public note$$,
13312 TRUE, FALSE, FALSE);
13313 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13314                                  repeatable, mandatory, hidden)
13315 VALUES (1, 'biblio', '868', '2', $$Source of notation$$,
13316 TRUE, FALSE, FALSE);
13317 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13318                                  repeatable, mandatory, hidden)
13319 VALUES (1, 'biblio', '868', '6', $$Linkage$$,
13320 TRUE, FALSE, FALSE);
13321 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13322                                  repeatable, mandatory, hidden)
13323 VALUES (1, 'biblio', '868', '8', $$Field link and sequence number$$,
13324 TRUE, FALSE, FALSE);
13325 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
13326                               fixed_field, repeatable, mandatory, hidden)
13327 VALUES (1, 'biblio', '876', $$Item Information - Basic Bibliographic Unit$$, $$Item level information about the pieces to the item specified in the holdings record. They contain various data elements that it may be desirable to record for specific items for use in acquisition or circulation applications, among others.$$,
13328 FALSE, TRUE, FALSE, FALSE);
13329 INSERT INTO config.record_attr_definition(name, label)
13330 VALUES ('marc21_biblio_876_ind_1', 'MARC 21 biblio field 876 indicator position 1');
13331 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13332 VALUES ('marc21_biblio_876_ind_1', '#', $$Undefined$$, FALSE, TRUE);
13333 INSERT INTO config.record_attr_definition(name, label)
13334 VALUES ('marc21_biblio_876_ind_2', 'MARC 21 biblio field 876 indicator position 2');
13335 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13336 VALUES ('marc21_biblio_876_ind_2', '#', $$Undefined$$, FALSE, TRUE);
13337 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13338                                  repeatable, mandatory, hidden)
13339 VALUES (1, 'biblio', '876', 'a', $$Internal item number$$,
13340 TRUE, FALSE, FALSE);
13341 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13342                                  repeatable, mandatory, hidden)
13343 VALUES (1, 'biblio', '876', 'b', $$Invalid or canceled internal item number$$,
13344 TRUE, FALSE, FALSE);
13345 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13346                                  repeatable, mandatory, hidden)
13347 VALUES (1, 'biblio', '876', 'c', $$Cost$$,
13348 TRUE, FALSE, FALSE);
13349 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13350                                  repeatable, mandatory, hidden)
13351 VALUES (1, 'biblio', '876', 'd', $$Date acquired$$,
13352 TRUE, FALSE, FALSE);
13353 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13354                                  repeatable, mandatory, hidden)
13355 VALUES (1, 'biblio', '876', 'e', $$Source of acquisition$$,
13356 TRUE, FALSE, FALSE);
13357 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13358                                  repeatable, mandatory, hidden)
13359 VALUES (1, 'biblio', '876', 'h', $$Use restrictions$$,
13360 TRUE, FALSE, FALSE);
13361 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13362                                  repeatable, mandatory, hidden)
13363 VALUES (1, 'biblio', '876', 'j', $$Item status$$,
13364 TRUE, FALSE, FALSE);
13365 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13366                                  repeatable, mandatory, hidden)
13367 VALUES (1, 'biblio', '876', 'l', $$Temporary location$$,
13368 TRUE, FALSE, FALSE);
13369 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13370                                  repeatable, mandatory, hidden)
13371 VALUES (1, 'biblio', '876', 'p', $$Piece designation$$,
13372 TRUE, FALSE, FALSE);
13373 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13374                                  repeatable, mandatory, hidden)
13375 VALUES (1, 'biblio', '876', 'r', $$Invalid or canceled piece designation$$,
13376 TRUE, FALSE, FALSE);
13377 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13378                                  repeatable, mandatory, hidden)
13379 VALUES (1, 'biblio', '876', 't', $$Copy number$$,
13380 TRUE, FALSE, FALSE);
13381 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13382                                  repeatable, mandatory, hidden)
13383 VALUES (1, 'biblio', '876', 'x', $$Nonpublic note$$,
13384 TRUE, FALSE, FALSE);
13385 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13386                                  repeatable, mandatory, hidden)
13387 VALUES (1, 'biblio', '876', 'z', $$Public note$$,
13388 TRUE, FALSE, FALSE);
13389 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13390                                  repeatable, mandatory, hidden)
13391 VALUES (1, 'biblio', '876', '3', $$Materials specified$$,
13392 TRUE, FALSE, FALSE);
13393 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13394                                  repeatable, mandatory, hidden)
13395 VALUES (1, 'biblio', '876', '6', $$Linkage$$,
13396 TRUE, FALSE, FALSE);
13397 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13398                                  repeatable, mandatory, hidden)
13399 VALUES (1, 'biblio', '876', '8', $$Field link and sequence number$$,
13400 TRUE, FALSE, FALSE);
13401 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
13402                               fixed_field, repeatable, mandatory, hidden)
13403 VALUES (1, 'biblio', '877', $$Item Information - Supplementary Material$$, $$Item level information about the pieces to the item specified in the holdings record. They contain various data elements that it may be desirable to record for specific items for use in acquisition or circulation applications, among others.$$,
13404 FALSE, TRUE, FALSE, FALSE);
13405 INSERT INTO config.record_attr_definition(name, label)
13406 VALUES ('marc21_biblio_877_ind_1', 'MARC 21 biblio field 877 indicator position 1');
13407 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13408 VALUES ('marc21_biblio_877_ind_1', '#', $$Undefined$$, FALSE, TRUE);
13409 INSERT INTO config.record_attr_definition(name, label)
13410 VALUES ('marc21_biblio_877_ind_2', 'MARC 21 biblio field 877 indicator position 2');
13411 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13412 VALUES ('marc21_biblio_877_ind_2', '#', $$Undefined$$, FALSE, TRUE);
13413 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13414                                  repeatable, mandatory, hidden)
13415 VALUES (1, 'biblio', '877', 'a', $$Internal item number$$,
13416 TRUE, FALSE, FALSE);
13417 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13418                                  repeatable, mandatory, hidden)
13419 VALUES (1, 'biblio', '877', 'b', $$Invalid or canceled internal item number$$,
13420 TRUE, FALSE, FALSE);
13421 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13422                                  repeatable, mandatory, hidden)
13423 VALUES (1, 'biblio', '877', 'c', $$Cost$$,
13424 TRUE, FALSE, FALSE);
13425 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13426                                  repeatable, mandatory, hidden)
13427 VALUES (1, 'biblio', '877', 'd', $$Date acquired$$,
13428 TRUE, FALSE, FALSE);
13429 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13430                                  repeatable, mandatory, hidden)
13431 VALUES (1, 'biblio', '877', 'e', $$Source of acquisition$$,
13432 TRUE, FALSE, FALSE);
13433 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13434                                  repeatable, mandatory, hidden)
13435 VALUES (1, 'biblio', '877', 'h', $$Use restrictions$$,
13436 TRUE, FALSE, FALSE);
13437 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13438                                  repeatable, mandatory, hidden)
13439 VALUES (1, 'biblio', '877', 'j', $$Item status$$,
13440 TRUE, FALSE, FALSE);
13441 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13442                                  repeatable, mandatory, hidden)
13443 VALUES (1, 'biblio', '877', 'l', $$Temporary location$$,
13444 TRUE, FALSE, FALSE);
13445 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13446                                  repeatable, mandatory, hidden)
13447 VALUES (1, 'biblio', '877', 'p', $$Piece designation$$,
13448 TRUE, FALSE, FALSE);
13449 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13450                                  repeatable, mandatory, hidden)
13451 VALUES (1, 'biblio', '877', 'r', $$Invalid or canceled piece designation$$,
13452 TRUE, FALSE, FALSE);
13453 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13454                                  repeatable, mandatory, hidden)
13455 VALUES (1, 'biblio', '877', 't', $$Copy number$$,
13456 TRUE, FALSE, FALSE);
13457 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13458                                  repeatable, mandatory, hidden)
13459 VALUES (1, 'biblio', '877', 'x', $$Nonpublic note$$,
13460 TRUE, FALSE, FALSE);
13461 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13462                                  repeatable, mandatory, hidden)
13463 VALUES (1, 'biblio', '877', 'z', $$Public note$$,
13464 TRUE, FALSE, FALSE);
13465 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13466                                  repeatable, mandatory, hidden)
13467 VALUES (1, 'biblio', '877', '3', $$Materials specified$$,
13468 TRUE, FALSE, FALSE);
13469 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13470                                  repeatable, mandatory, hidden)
13471 VALUES (1, 'biblio', '877', '6', $$Linkage$$,
13472 TRUE, FALSE, FALSE);
13473 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13474                                  repeatable, mandatory, hidden)
13475 VALUES (1, 'biblio', '877', '8', $$Field link and sequence number$$,
13476 TRUE, FALSE, FALSE);
13477 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
13478                               fixed_field, repeatable, mandatory, hidden)
13479 VALUES (1, 'biblio', '878', $$Item Information - Indexes$$, $$Item level information about the pieces to the item specified in the holdings record. They contain various data elements that it may be desirable to record for specific items for use in acquisition or circulation applications, among others.$$,
13480 FALSE, TRUE, FALSE, FALSE);
13481 INSERT INTO config.record_attr_definition(name, label)
13482 VALUES ('marc21_biblio_878_ind_1', 'MARC 21 biblio field 878 indicator position 1');
13483 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13484 VALUES ('marc21_biblio_878_ind_1', '#', $$Undefined$$, FALSE, TRUE);
13485 INSERT INTO config.record_attr_definition(name, label)
13486 VALUES ('marc21_biblio_878_ind_2', 'MARC 21 biblio field 878 indicator position 2');
13487 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13488 VALUES ('marc21_biblio_878_ind_2', '#', $$Undefined$$, FALSE, TRUE);
13489 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13490                                  repeatable, mandatory, hidden)
13491 VALUES (1, 'biblio', '878', 'a', $$Internal item number$$,
13492 TRUE, FALSE, FALSE);
13493 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13494                                  repeatable, mandatory, hidden)
13495 VALUES (1, 'biblio', '878', 'b', $$Invalid or canceled internal item number$$,
13496 TRUE, FALSE, FALSE);
13497 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13498                                  repeatable, mandatory, hidden)
13499 VALUES (1, 'biblio', '878', 'c', $$Cost$$,
13500 TRUE, FALSE, FALSE);
13501 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13502                                  repeatable, mandatory, hidden)
13503 VALUES (1, 'biblio', '878', 'd', $$Date acquired$$,
13504 TRUE, FALSE, FALSE);
13505 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13506                                  repeatable, mandatory, hidden)
13507 VALUES (1, 'biblio', '878', 'e', $$Source of acquisition$$,
13508 TRUE, FALSE, FALSE);
13509 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13510                                  repeatable, mandatory, hidden)
13511 VALUES (1, 'biblio', '878', 'h', $$Use restrictions$$,
13512 TRUE, FALSE, FALSE);
13513 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13514                                  repeatable, mandatory, hidden)
13515 VALUES (1, 'biblio', '878', 'j', $$Item status$$,
13516 TRUE, FALSE, FALSE);
13517 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13518                                  repeatable, mandatory, hidden)
13519 VALUES (1, 'biblio', '878', 'l', $$Temporary location$$,
13520 TRUE, FALSE, FALSE);
13521 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13522                                  repeatable, mandatory, hidden)
13523 VALUES (1, 'biblio', '878', 'p', $$Piece designation$$,
13524 TRUE, FALSE, FALSE);
13525 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13526                                  repeatable, mandatory, hidden)
13527 VALUES (1, 'biblio', '878', 'r', $$Invalid or canceled piece designation$$,
13528 TRUE, FALSE, FALSE);
13529 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13530                                  repeatable, mandatory, hidden)
13531 VALUES (1, 'biblio', '878', 't', $$Copy number$$,
13532 TRUE, FALSE, FALSE);
13533 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13534                                  repeatable, mandatory, hidden)
13535 VALUES (1, 'biblio', '878', 'x', $$Nonpublic note$$,
13536 TRUE, FALSE, FALSE);
13537 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13538                                  repeatable, mandatory, hidden)
13539 VALUES (1, 'biblio', '878', 'z', $$Public note$$,
13540 TRUE, FALSE, FALSE);
13541 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13542                                  repeatable, mandatory, hidden)
13543 VALUES (1, 'biblio', '878', '3', $$Materials specified$$,
13544 TRUE, FALSE, FALSE);
13545 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13546                                  repeatable, mandatory, hidden)
13547 VALUES (1, 'biblio', '878', '6', $$Linkage$$,
13548 TRUE, FALSE, FALSE);
13549 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13550                                  repeatable, mandatory, hidden)
13551 VALUES (1, 'biblio', '878', '8', $$Field link and sequence number$$,
13552 TRUE, FALSE, FALSE);
13553 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
13554                               fixed_field, repeatable, mandatory, hidden)
13555 VALUES (1, 'biblio', '880', $$Alternate Graphic Representation$$, $$Fully content-designated representation, in a different script, of another field in the same record. Field 880 is linked to the associated regular field by subfield $6 (Linkage). A subfield $6 in the associated field also links that field to the 880 field. The data in field 880 may be in more than one script.$$,
13556 FALSE, TRUE, FALSE, FALSE);
13557 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13558                                  repeatable, mandatory, hidden)
13559 VALUES (1, 'biblio', '880', '6', $$Linkage$$,
13560 FALSE, FALSE, FALSE);
13561 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
13562                               fixed_field, repeatable, mandatory, hidden)
13563 VALUES (1, 'biblio', '882', $$Replacement Record Information$$, $$Information about the replacement bibliographic record in a deleted record. The replacement title(s) may be contained in subfield(s) $a.$$,
13564 FALSE, FALSE, FALSE, FALSE);
13565 INSERT INTO config.record_attr_definition(name, label)
13566 VALUES ('marc21_biblio_882_ind_1', 'MARC 21 biblio field 882 indicator position 1');
13567 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13568 VALUES ('marc21_biblio_882_ind_1', '#', $$Undefined$$, FALSE, TRUE);
13569 INSERT INTO config.record_attr_definition(name, label)
13570 VALUES ('marc21_biblio_882_ind_2', 'MARC 21 biblio field 882 indicator position 2');
13571 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13572 VALUES ('marc21_biblio_882_ind_2', '#', $$Undefined$$, FALSE, TRUE);
13573 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13574                                  repeatable, mandatory, hidden)
13575 VALUES (1, 'biblio', '882', 'a', $$Replacement title$$,
13576 TRUE, FALSE, FALSE);
13577 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13578                                  repeatable, mandatory, hidden)
13579 VALUES (1, 'biblio', '882', 'i', $$Explanatory text$$,
13580 TRUE, FALSE, FALSE);
13581 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13582                                  repeatable, mandatory, hidden)
13583 VALUES (1, 'biblio', '882', 'w', $$Replacement bibliographic record control number$$,
13584 TRUE, FALSE, FALSE);
13585 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13586                                  repeatable, mandatory, hidden)
13587 VALUES (1, 'biblio', '882', '6', $$Linkage$$,
13588 FALSE, FALSE, FALSE);
13589 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13590                                  repeatable, mandatory, hidden)
13591 VALUES (1, 'biblio', '882', '8', $$Field link and sequence number$$,
13592 TRUE, FALSE, FALSE);
13593 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
13594                               fixed_field, repeatable, mandatory, hidden)
13595 VALUES (1, 'biblio', '886', $$Foreign MARC Information Field$$, $$Used when converting foreign MARC records into the MARC format. Contains data from a foreign MARC record for which there is no corresponding MARC field.$$,
13596 FALSE, TRUE, FALSE, FALSE);
13597 INSERT INTO config.record_attr_definition(name, label)
13598 VALUES ('marc21_biblio_886_ind_1', 'MARC 21 biblio field 886 indicator position 1');
13599 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13600 VALUES ('marc21_biblio_886_ind_1', '0', $$Leader$$, FALSE, TRUE);
13601 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13602 VALUES ('marc21_biblio_886_ind_1', '1', $$Variable control fields (002-009)$$, FALSE, TRUE);
13603 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13604 VALUES ('marc21_biblio_886_ind_1', '2', $$Variable data fields (010-999)$$, FALSE, TRUE);
13605 INSERT INTO config.record_attr_definition(name, label)
13606 VALUES ('marc21_biblio_886_ind_2', 'MARC 21 biblio field 886 indicator position 2');
13607 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13608 VALUES ('marc21_biblio_886_ind_2', '#', $$Undefined$$, FALSE, TRUE);
13609 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13610                                  repeatable, mandatory, hidden)
13611 VALUES (1, 'biblio', '886', 'a', $$Tag of the foreign MARC field$$,
13612 FALSE, FALSE, FALSE);
13613 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13614                                  repeatable, mandatory, hidden)
13615 VALUES (1, 'biblio', '886', 'b', $$Content of the foreign MARC field$$,
13616 FALSE, FALSE, FALSE);
13617 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13618                                  repeatable, mandatory, hidden)
13619 VALUES (1, 'biblio', '886', '2', $$Source of data$$,
13620 FALSE, FALSE, FALSE);
13621 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
13622                               fixed_field, repeatable, mandatory, hidden)
13623 VALUES (1, 'biblio', '887', $$Non-MARC Information Field$$, $$Data from non-MARC records for which there are no corresponding MARC 21 fields. Used when converting non-MARC records into the MARC 21 format.$$,
13624 FALSE, TRUE, FALSE, FALSE);
13625 INSERT INTO config.record_attr_definition(name, label)
13626 VALUES ('marc21_biblio_887_ind_1', 'MARC 21 biblio field 887 indicator position 1');
13627 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13628 VALUES ('marc21_biblio_887_ind_1', '#', $$Undefined$$, FALSE, TRUE);
13629 INSERT INTO config.record_attr_definition(name, label)
13630 VALUES ('marc21_biblio_887_ind_2', 'MARC 21 biblio field 887 indicator position 2');
13631 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13632 VALUES ('marc21_biblio_887_ind_2', '#', $$Undefined$$, FALSE, TRUE);
13633 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13634                                  repeatable, mandatory, hidden)
13635 VALUES (1, 'biblio', '887', 'a', $$Content of non-MARC field$$,
13636 FALSE, FALSE, FALSE);
13637 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13638                                  repeatable, mandatory, hidden)
13639 VALUES (1, 'biblio', '887', '2', $$Source of data$$,
13640 FALSE, FALSE, FALSE);
13641 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
13642                               fixed_field, repeatable, mandatory, hidden)
13643 VALUES (1, 'authority', '001', $$Control Number$$, $$Control number assigned by the organization creating, using, or distributing the record.$$,
13644 TRUE, FALSE, FALSE, FALSE);
13645 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
13646                               fixed_field, repeatable, mandatory, hidden)
13647 VALUES (1, 'authority', '003', $$Control Number Identifier$$, $$MARC code for the agency whose system control number is contained in field 001 (Control Number).$$,
13648 TRUE, FALSE, FALSE, FALSE);
13649 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
13650                               fixed_field, repeatable, mandatory, hidden)
13651 VALUES (1, 'authority', '005', $$Date and Time of Latest Transaction$$, $$Sixteen characters that specify the date and time of the latest record transaction and serve as a version identifier for the record. The data and time are recorded according to (ISO 8601) in the pattern and .$$,
13652 TRUE, FALSE, FALSE, FALSE);
13653 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
13654                               fixed_field, repeatable, mandatory, hidden)
13655 VALUES (1, 'authority', '008', $$Fixed-Length Data Elements$$, $$Forty character positions (00-39) that contain positionally-defined data elements that provide coded information about the record as a whole or about special aspects of the 1XX heading or 4XX/5XX tracing fields. Undefined character positions contain a blank (#). All defined character positions must contain a defined code; for some 008 positions, this may be the fill character (|). The fill character may be used (in certain character positions) when a cataloging organization makes no attempt to code the character position. Field 008 is not repeatable.$$,
13656 TRUE, FALSE, FALSE, FALSE);
13657 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
13658                               fixed_field, repeatable, mandatory, hidden)
13659 VALUES (1, 'authority', '010', $$Library of Congress Control Number$$, $$Unique number assigned to a record by the Library of Congress (LC) or a cooperative cataloging partner contributing authority records to the Name Authority Cooperative Program (NACO) database. The field is also assigned to records created by LC for the Library of Congress Subject Headings (LCSH).$$,
13660 FALSE, FALSE, FALSE, FALSE);
13661 INSERT INTO config.record_attr_definition(name, label)
13662 VALUES ('marc21_authority_010_ind_1', 'MARC 21 authority field 010 indicator position 1');
13663 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13664 VALUES ('marc21_authority_010_ind_1', '#', $$Undefined$$, FALSE, TRUE);
13665 INSERT INTO config.record_attr_definition(name, label)
13666 VALUES ('marc21_authority_010_ind_2', 'MARC 21 authority field 010 indicator position 2');
13667 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13668 VALUES ('marc21_authority_010_ind_2', '#', $$Undefined$$, FALSE, TRUE);
13669 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13670                                  repeatable, mandatory, hidden)
13671 VALUES (1, 'authority', '010', 'a', $$LC control number$$,
13672 FALSE, FALSE, FALSE);
13673 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13674                                  repeatable, mandatory, hidden)
13675 VALUES (1, 'authority', '010', 'z', $$Canceled/invalid LC control number$$,
13676 TRUE, FALSE, FALSE);
13677 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13678                                  repeatable, mandatory, hidden)
13679 VALUES (1, 'authority', '010', '8', $$Field link and sequence number$$,
13680 TRUE, FALSE, FALSE);
13681 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
13682                               fixed_field, repeatable, mandatory, hidden)
13683 VALUES (1, 'authority', '014', $$Link to Bibliographic Record for Serial or Multipart Item$$, $$Control number from field 001 of a MARC 21 bibliographic record for a serial or a multipart item that is cataloged as a set.$$,
13684 FALSE, TRUE, FALSE, FALSE);
13685 INSERT INTO config.record_attr_definition(name, label)
13686 VALUES ('marc21_authority_014_ind_1', 'MARC 21 authority field 014 indicator position 1');
13687 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13688 VALUES ('marc21_authority_014_ind_1', '#', $$Undefined$$, FALSE, TRUE);
13689 INSERT INTO config.record_attr_definition(name, label)
13690 VALUES ('marc21_authority_014_ind_2', 'MARC 21 authority field 014 indicator position 2');
13691 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13692 VALUES ('marc21_authority_014_ind_2', '#', $$Undefined$$, FALSE, TRUE);
13693 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13694                                  repeatable, mandatory, hidden)
13695 VALUES (1, 'authority', '014', 'a', $$Control number of related bibliographic record$$,
13696 FALSE, FALSE, FALSE);
13697 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13698                                  repeatable, mandatory, hidden)
13699 VALUES (1, 'authority', '014', '6', $$Linkage$$,
13700 FALSE, FALSE, FALSE);
13701 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13702                                  repeatable, mandatory, hidden)
13703 VALUES (1, 'authority', '014', '8', $$Field link and sequence number$$,
13704 TRUE, FALSE, FALSE);
13705 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
13706                               fixed_field, repeatable, mandatory, hidden)
13707 VALUES (1, 'authority', '016', $$National Bibliographic Agency Control Number$$, $$Unique numbers that have been assigned to a record by a national bibliographic agency other than the Library of Congress (Library of Congress control numbers are recorded in ).$$,
13708 FALSE, TRUE, FALSE, FALSE);
13709 INSERT INTO config.record_attr_definition(name, label)
13710 VALUES ('marc21_authority_016_ind_1', 'MARC 21 authority field 016 indicator position 1');
13711 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13712 VALUES ('marc21_authority_016_ind_1', '#', $$Library and Archives Canada$$, FALSE, TRUE);
13713 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13714 VALUES ('marc21_authority_016_ind_1', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
13715 INSERT INTO config.record_attr_definition(name, label)
13716 VALUES ('marc21_authority_016_ind_2', 'MARC 21 authority field 016 indicator position 2');
13717 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13718 VALUES ('marc21_authority_016_ind_2', '#', $$Undefined$$, FALSE, TRUE);
13719 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13720                                  repeatable, mandatory, hidden)
13721 VALUES (1, 'authority', '016', 'a', $$Record control number$$,
13722 FALSE, FALSE, FALSE);
13723 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13724                                  repeatable, mandatory, hidden)
13725 VALUES (1, 'authority', '016', 'z', $$Canceled or invalid record control number$$,
13726 TRUE, FALSE, FALSE);
13727 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13728                                  repeatable, mandatory, hidden)
13729 VALUES (1, 'authority', '016', '2', $$Source$$,
13730 FALSE, FALSE, FALSE);
13731 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13732                                  repeatable, mandatory, hidden)
13733 VALUES (1, 'authority', '016', '8', $$Field link and sequence number$$,
13734 TRUE, FALSE, FALSE);
13735 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
13736                               fixed_field, repeatable, mandatory, hidden)
13737 VALUES (1, 'authority', '020', $$International Standard Book Number$$, $$International Standard Book Number (ISBN), terms of availability, and any canceled/invalid ISBN copied from field 020 of a MARC bibliographic record for a multipart item that is cataloged as a set.$$,
13738 FALSE, TRUE, FALSE, FALSE);
13739 INSERT INTO config.record_attr_definition(name, label)
13740 VALUES ('marc21_authority_020_ind_1', 'MARC 21 authority field 020 indicator position 1');
13741 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13742 VALUES ('marc21_authority_020_ind_1', '#', $$Undefined$$, FALSE, TRUE);
13743 INSERT INTO config.record_attr_definition(name, label)
13744 VALUES ('marc21_authority_020_ind_2', 'MARC 21 authority field 020 indicator position 2');
13745 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13746 VALUES ('marc21_authority_020_ind_2', '#', $$Undefined$$, FALSE, TRUE);
13747 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13748                                  repeatable, mandatory, hidden)
13749 VALUES (1, 'authority', '020', 'a', $$International Standard Book Number$$,
13750 FALSE, FALSE, FALSE);
13751 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13752                                  repeatable, mandatory, hidden)
13753 VALUES (1, 'authority', '020', 'c', $$Terms of availability$$,
13754 FALSE, FALSE, FALSE);
13755 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13756                                  repeatable, mandatory, hidden)
13757 VALUES (1, 'authority', '020', 'z', $$Canceled/invalid ISBN$$,
13758 TRUE, FALSE, FALSE);
13759 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13760                                  repeatable, mandatory, hidden)
13761 VALUES (1, 'authority', '020', '6', $$Linkage$$,
13762 FALSE, FALSE, FALSE);
13763 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13764                                  repeatable, mandatory, hidden)
13765 VALUES (1, 'authority', '020', '8', $$Field link and sequence number$$,
13766 TRUE, FALSE, FALSE);
13767 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
13768                               fixed_field, repeatable, mandatory, hidden)
13769 VALUES (1, 'authority', '022', $$International Standard Serial Number$$, $$International Standard Serial Number (ISSN) and/or any incorrect and canceled ISSNs copied from field 022 of a MARC 21 bibliographic record for a continuing resource.$$,
13770 FALSE, TRUE, FALSE, FALSE);
13771 INSERT INTO config.record_attr_definition(name, label)
13772 VALUES ('marc21_authority_022_ind_1', 'MARC 21 authority field 022 indicator position 1');
13773 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13774 VALUES ('marc21_authority_022_ind_1', '#', $$Undefined$$, FALSE, TRUE);
13775 INSERT INTO config.record_attr_definition(name, label)
13776 VALUES ('marc21_authority_022_ind_2', 'MARC 21 authority field 022 indicator position 2');
13777 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13778 VALUES ('marc21_authority_022_ind_2', '#', $$Undefined$$, FALSE, TRUE);
13779 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13780                                  repeatable, mandatory, hidden)
13781 VALUES (1, 'authority', '022', 'a', $$International Standard Serial Number$$,
13782 FALSE, FALSE, FALSE);
13783 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13784                                  repeatable, mandatory, hidden)
13785 VALUES (1, 'authority', '022', 'l', $$ISSN-L$$,
13786 FALSE, FALSE, FALSE);
13787 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13788                                  repeatable, mandatory, hidden)
13789 VALUES (1, 'authority', '022', 'm', $$Canceled ISSN-L$$,
13790 TRUE, FALSE, FALSE);
13791 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13792                                  repeatable, mandatory, hidden)
13793 VALUES (1, 'authority', '022', 'y', $$Incorrect ISSN$$,
13794 TRUE, FALSE, FALSE);
13795 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13796                                  repeatable, mandatory, hidden)
13797 VALUES (1, 'authority', '022', 'z', $$Canceled ISSN$$,
13798 TRUE, FALSE, FALSE);
13799 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13800                                  repeatable, mandatory, hidden)
13801 VALUES (1, 'authority', '022', '6', $$Linkage$$,
13802 FALSE, FALSE, FALSE);
13803 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13804                                  repeatable, mandatory, hidden)
13805 VALUES (1, 'authority', '022', '8', $$Field link and sequence number$$,
13806 TRUE, FALSE, FALSE);
13807 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
13808                               fixed_field, repeatable, mandatory, hidden)
13809 VALUES (1, 'authority', '024', $$Other Standard Identifier$$, $$Standard number or code associated with the entity named in the 1XX field which cannot be accommodated in another field (e.g., fields 020 (International Standard Book Number) and 022 (International Standard Serial Number)). The source of the standard number or code is identified in subfield $2 (Source of number or code).$$,
13810 FALSE, TRUE, FALSE, FALSE);
13811 INSERT INTO config.record_attr_definition(name, label)
13812 VALUES ('marc21_authority_024_ind_1', 'MARC 21 authority field 024 indicator position 1');
13813 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13814 VALUES ('marc21_authority_024_ind_1', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
13815 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13816 VALUES ('marc21_authority_024_ind_1', '8', $$Unspecified type of standard number or code$$, FALSE, TRUE);
13817 INSERT INTO config.record_attr_definition(name, label)
13818 VALUES ('marc21_authority_024_ind_2', 'MARC 21 authority field 024 indicator position 2');
13819 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13820 VALUES ('marc21_authority_024_ind_2', '#', $$Undefined$$, FALSE, TRUE);
13821 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13822                                  repeatable, mandatory, hidden)
13823 VALUES (1, 'authority', '024', 'a', $$Standard number or code$$,
13824 FALSE, FALSE, FALSE);
13825 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13826                                  repeatable, mandatory, hidden)
13827 VALUES (1, 'authority', '024', 'c', $$Terms of availability$$,
13828 FALSE, FALSE, FALSE);
13829 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13830                                  repeatable, mandatory, hidden)
13831 VALUES (1, 'authority', '024', 'd', $$Additional codes following the standard number or code$$,
13832 FALSE, FALSE, FALSE);
13833 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13834                                  repeatable, mandatory, hidden)
13835 VALUES (1, 'authority', '024', 'z', $$Canceled/invalid standard number or code$$,
13836 TRUE, FALSE, FALSE);
13837 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13838                                  repeatable, mandatory, hidden)
13839 VALUES (1, 'authority', '024', '2', $$Source of number or code$$,
13840 FALSE, FALSE, FALSE);
13841 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13842                                  repeatable, mandatory, hidden)
13843 VALUES (1, 'authority', '024', '6', $$Linkage$$,
13844 FALSE, FALSE, FALSE);
13845 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13846                                  repeatable, mandatory, hidden)
13847 VALUES (1, 'authority', '024', '8', $$Field link and sequence number$$,
13848 TRUE, FALSE, FALSE);
13849 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
13850                               fixed_field, repeatable, mandatory, hidden)
13851 VALUES (1, 'authority', '031', $$Musical Incipits Information$$, $$Coded data representing the musical incipit for music using established notation schemes that employ ordinary ASCII symbols. Used in an established heading record primarily to identify music manuscripts, but can be applied to any material containing music.$$,
13852 FALSE, TRUE, FALSE, FALSE);
13853 INSERT INTO config.record_attr_definition(name, label)
13854 VALUES ('marc21_authority_031_ind_1', 'MARC 21 authority field 031 indicator position 1');
13855 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13856 VALUES ('marc21_authority_031_ind_1', '#', $$Undefined$$, FALSE, TRUE);
13857 INSERT INTO config.record_attr_definition(name, label)
13858 VALUES ('marc21_authority_031_ind_2', 'MARC 21 authority field 031 indicator position 2');
13859 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13860 VALUES ('marc21_authority_031_ind_2', '#', $$Undefined$$, FALSE, TRUE);
13861 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13862                                  repeatable, mandatory, hidden)
13863 VALUES (1, 'authority', '031', 'b', $$Number of movement$$,
13864 FALSE, FALSE, FALSE);
13865 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13866                                  repeatable, mandatory, hidden)
13867 VALUES (1, 'authority', '031', 'c', $$Number of excerpt$$,
13868 FALSE, FALSE, FALSE);
13869 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13870                                  repeatable, mandatory, hidden)
13871 VALUES (1, 'authority', '031', 'd', $$Caption or heading$$,
13872 TRUE, FALSE, FALSE);
13873 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13874                                  repeatable, mandatory, hidden)
13875 VALUES (1, 'authority', '031', 'e', $$Role$$,
13876 FALSE, FALSE, FALSE);
13877 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13878                                  repeatable, mandatory, hidden)
13879 VALUES (1, 'authority', '031', 'g', $$Clef$$,
13880 FALSE, FALSE, FALSE);
13881 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13882                                  repeatable, mandatory, hidden)
13883 VALUES (1, 'authority', '031', 'm', $$Voice/instrument$$,
13884 FALSE, FALSE, FALSE);
13885 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13886                                  repeatable, mandatory, hidden)
13887 VALUES (1, 'authority', '031', 'n', $$Key signature$$,
13888 FALSE, FALSE, FALSE);
13889 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13890                                  repeatable, mandatory, hidden)
13891 VALUES (1, 'authority', '031', 'o', $$Time signature$$,
13892 FALSE, FALSE, FALSE);
13893 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13894                                  repeatable, mandatory, hidden)
13895 VALUES (1, 'authority', '031', 'p', $$Musical notation$$,
13896 FALSE, FALSE, FALSE);
13897 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13898                                  repeatable, mandatory, hidden)
13899 VALUES (1, 'authority', '031', 'q', $$General note$$,
13900 TRUE, FALSE, FALSE);
13901 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13902                                  repeatable, mandatory, hidden)
13903 VALUES (1, 'authority', '031', 'r', $$Key or mode$$,
13904 FALSE, FALSE, FALSE);
13905 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13906                                  repeatable, mandatory, hidden)
13907 VALUES (1, 'authority', '031', 's', $$Coded validity note$$,
13908 TRUE, FALSE, FALSE);
13909 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13910                                  repeatable, mandatory, hidden)
13911 VALUES (1, 'authority', '031', 't', $$Text incipit$$,
13912 TRUE, FALSE, FALSE);
13913 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13914                                  repeatable, mandatory, hidden)
13915 VALUES (1, 'authority', '031', 'u', $$Uniform Resource Identifier$$,
13916 TRUE, FALSE, FALSE);
13917 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13918                                  repeatable, mandatory, hidden)
13919 VALUES (1, 'authority', '031', 'y', $$Link text$$,
13920 TRUE, FALSE, FALSE);
13921 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13922                                  repeatable, mandatory, hidden)
13923 VALUES (1, 'authority', '031', 'z', $$Public note$$,
13924 TRUE, FALSE, FALSE);
13925 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13926                                  repeatable, mandatory, hidden)
13927 VALUES (1, 'authority', '031', '2', $$System code$$,
13928 FALSE, FALSE, FALSE);
13929 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13930                                  repeatable, mandatory, hidden)
13931 VALUES (1, 'authority', '031', '6', $$Linkage$$,
13932 FALSE, FALSE, FALSE);
13933 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13934                                  repeatable, mandatory, hidden)
13935 VALUES (1, 'authority', '031', '8', $$Field link and sequence number$$,
13936 TRUE, FALSE, FALSE);
13937 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
13938                               fixed_field, repeatable, mandatory, hidden)
13939 VALUES (1, 'authority', '034', $$Coded Cartographic Mathematical Data$$, $$Coded form of the cartographic mathematical data relevant to the entity described in the authority record. The data that is recorded usually derives from authoritative sources.$$,
13940 FALSE, TRUE, FALSE, FALSE);
13941 INSERT INTO config.record_attr_definition(name, label)
13942 VALUES ('marc21_authority_034_ind_1', 'MARC 21 authority field 034 indicator position 1');
13943 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13944 VALUES ('marc21_authority_034_ind_1', '#', $$Undefined$$, FALSE, TRUE);
13945 INSERT INTO config.record_attr_definition(name, label)
13946 VALUES ('marc21_authority_034_ind_2', 'MARC 21 authority field 034 indicator position 2');
13947 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13948 VALUES ('marc21_authority_034_ind_2', '#', $$Not applicable$$, FALSE, TRUE);
13949 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13950 VALUES ('marc21_authority_034_ind_2', '0', $$Outer ring$$, FALSE, TRUE);
13951 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
13952 VALUES ('marc21_authority_034_ind_2', '1', $$Exclusion ring$$, FALSE, TRUE);
13953 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13954                                  repeatable, mandatory, hidden)
13955 VALUES (1, 'authority', '034', 'd', $$Coordinates$$,
13956 TRUE, FALSE, FALSE);
13957 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13958                                  repeatable, mandatory, hidden)
13959 VALUES (1, 'authority', '034', 'e', $$Coordinates$$,
13960 TRUE, FALSE, FALSE);
13961 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13962                                  repeatable, mandatory, hidden)
13963 VALUES (1, 'authority', '034', 'f', $$Coordinates$$,
13964 TRUE, FALSE, FALSE);
13965 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13966                                  repeatable, mandatory, hidden)
13967 VALUES (1, 'authority', '034', 'g', $$Coordinates$$,
13968 TRUE, FALSE, FALSE);
13969 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13970                                  repeatable, mandatory, hidden)
13971 VALUES (1, 'authority', '034', 'j', $$Declination$$,
13972 TRUE, FALSE, FALSE);
13973 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13974                                  repeatable, mandatory, hidden)
13975 VALUES (1, 'authority', '034', 'k', $$Declination$$,
13976 TRUE, FALSE, FALSE);
13977 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13978                                  repeatable, mandatory, hidden)
13979 VALUES (1, 'authority', '034', 'm', $$Right ascension$$,
13980 TRUE, FALSE, FALSE);
13981 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13982                                  repeatable, mandatory, hidden)
13983 VALUES (1, 'authority', '034', 'n', $$Right ascension$$,
13984 TRUE, FALSE, FALSE);
13985 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13986                                  repeatable, mandatory, hidden)
13987 VALUES (1, 'authority', '034', 'p', $$Equinox$$,
13988 FALSE, FALSE, FALSE);
13989 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13990                                  repeatable, mandatory, hidden)
13991 VALUES (1, 'authority', '034', 'r', $$Distance from earth$$,
13992 FALSE, FALSE, FALSE);
13993 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13994                                  repeatable, mandatory, hidden)
13995 VALUES (1, 'authority', '034', 's', $$G-ring latitude$$,
13996 TRUE, FALSE, FALSE);
13997 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
13998                                  repeatable, mandatory, hidden)
13999 VALUES (1, 'authority', '034', 't', $$G-ring longitude$$,
14000 TRUE, FALSE, FALSE);
14001 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14002                                  repeatable, mandatory, hidden)
14003 VALUES (1, 'authority', '034', 'x', $$Beginning date$$,
14004 FALSE, FALSE, FALSE);
14005 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14006                                  repeatable, mandatory, hidden)
14007 VALUES (1, 'authority', '034', 'y', $$Ending date$$,
14008 FALSE, FALSE, FALSE);
14009 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14010                                  repeatable, mandatory, hidden)
14011 VALUES (1, 'authority', '034', 'z', $$Name of extraterrestrial body$$,
14012 FALSE, FALSE, FALSE);
14013 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14014                                  repeatable, mandatory, hidden)
14015 VALUES (1, 'authority', '034', '2', $$Source$$,
14016 FALSE, FALSE, FALSE);
14017 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14018                                  repeatable, mandatory, hidden)
14019 VALUES (1, 'authority', '034', '3', $$Materials specified$$,
14020 FALSE, FALSE, FALSE);
14021 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14022                                  repeatable, mandatory, hidden)
14023 VALUES (1, 'authority', '034', '6', $$Linkage$$,
14024 FALSE, FALSE, FALSE);
14025 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14026                                  repeatable, mandatory, hidden)
14027 VALUES (1, 'authority', '034', '8', $$Field link and sequence number$$,
14028 TRUE, FALSE, FALSE);
14029 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
14030                               fixed_field, repeatable, mandatory, hidden)
14031 VALUES (1, 'authority', '035', $$System Control Number$$, $$Control number for the record in a system other than the one whose control number is contained in (Control Number), (Library of Congress Control Number), or (National Bibliographic Agency Control Number).$$,
14032 FALSE, TRUE, FALSE, FALSE);
14033 INSERT INTO config.record_attr_definition(name, label)
14034 VALUES ('marc21_authority_035_ind_1', 'MARC 21 authority field 035 indicator position 1');
14035 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14036 VALUES ('marc21_authority_035_ind_1', '#', $$Undefined$$, FALSE, TRUE);
14037 INSERT INTO config.record_attr_definition(name, label)
14038 VALUES ('marc21_authority_035_ind_2', 'MARC 21 authority field 035 indicator position 2');
14039 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14040 VALUES ('marc21_authority_035_ind_2', '#', $$Undefined$$, FALSE, TRUE);
14041 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14042                                  repeatable, mandatory, hidden)
14043 VALUES (1, 'authority', '035', 'a', $$System control number$$,
14044 FALSE, FALSE, FALSE);
14045 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14046                                  repeatable, mandatory, hidden)
14047 VALUES (1, 'authority', '035', 'z', $$Canceled/invalid system control number$$,
14048 TRUE, FALSE, FALSE);
14049 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14050                                  repeatable, mandatory, hidden)
14051 VALUES (1, 'authority', '035', '6', $$Linkage$$,
14052 FALSE, FALSE, FALSE);
14053 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14054                                  repeatable, mandatory, hidden)
14055 VALUES (1, 'authority', '035', '8', $$Field link and sequence number$$,
14056 TRUE, FALSE, FALSE);
14057 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
14058                               fixed_field, repeatable, mandatory, hidden)
14059 VALUES (1, 'authority', '040', $$Cataloging Source$$, $$MARC code or the name of the organization(s) that created the original authority record, assigned MARC content designation and transcribed the record into machine-readable form, or modified an existing MARC record. These MARC codes and the code in 008/39 (Cataloging source) specify the parties responsible for content, content designation, and transcription of an the authority record. See: .$$,
14060 FALSE, FALSE, FALSE, FALSE);
14061 INSERT INTO config.record_attr_definition(name, label)
14062 VALUES ('marc21_authority_040_ind_1', 'MARC 21 authority field 040 indicator position 1');
14063 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14064 VALUES ('marc21_authority_040_ind_1', '#', $$Undefined$$, FALSE, TRUE);
14065 INSERT INTO config.record_attr_definition(name, label)
14066 VALUES ('marc21_authority_040_ind_2', 'MARC 21 authority field 040 indicator position 2');
14067 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14068 VALUES ('marc21_authority_040_ind_2', '#', $$Undefined$$, FALSE, TRUE);
14069 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14070                                  repeatable, mandatory, hidden)
14071 VALUES (1, 'authority', '040', 'a', $$Original cataloging agency$$,
14072 FALSE, FALSE, FALSE);
14073 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14074                                  repeatable, mandatory, hidden)
14075 VALUES (1, 'authority', '040', 'b', $$Language of cataloging$$,
14076 FALSE, FALSE, FALSE);
14077 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14078                                  repeatable, mandatory, hidden)
14079 VALUES (1, 'authority', '040', 'c', $$Transcribing agency$$,
14080 FALSE, FALSE, FALSE);
14081 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14082                                  repeatable, mandatory, hidden)
14083 VALUES (1, 'authority', '040', 'd', $$Modifying agency$$,
14084 TRUE, FALSE, FALSE);
14085 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14086                                  repeatable, mandatory, hidden)
14087 VALUES (1, 'authority', '040', 'e', $$Description conventions$$,
14088 TRUE, FALSE, FALSE);
14089 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14090                                  repeatable, mandatory, hidden)
14091 VALUES (1, 'authority', '040', 'f', $$Subject heading/thesaurus conventions$$,
14092 FALSE, FALSE, FALSE);
14093 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14094                                  repeatable, mandatory, hidden)
14095 VALUES (1, 'authority', '040', '6', $$Linkage$$,
14096 FALSE, FALSE, FALSE);
14097 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14098                                  repeatable, mandatory, hidden)
14099 VALUES (1, 'authority', '040', '8', $$Field link and sequence number$$,
14100 TRUE, FALSE, FALSE);
14101 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
14102                               fixed_field, repeatable, mandatory, hidden)
14103 VALUES (1, 'authority', '042', $$Authentication Code$$, $$One or more authentication codes indicating that the record, existing in a national database, has been reviewed in a specific way. The codes are associated with specifically designated authentication agencies.$$,
14104 FALSE, FALSE, FALSE, FALSE);
14105 INSERT INTO config.record_attr_definition(name, label)
14106 VALUES ('marc21_authority_042_ind_1', 'MARC 21 authority field 042 indicator position 1');
14107 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14108 VALUES ('marc21_authority_042_ind_1', '#', $$Undefined$$, FALSE, TRUE);
14109 INSERT INTO config.record_attr_definition(name, label)
14110 VALUES ('marc21_authority_042_ind_2', 'MARC 21 authority field 042 indicator position 2');
14111 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14112 VALUES ('marc21_authority_042_ind_2', '#', $$Undefined$$, FALSE, TRUE);
14113 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14114                                  repeatable, mandatory, hidden)
14115 VALUES (1, 'authority', '042', 'a', $$Authentication code$$,
14116 TRUE, FALSE, FALSE);
14117 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
14118                               fixed_field, repeatable, mandatory, hidden)
14119 VALUES (1, 'authority', '043', $$Geographic Area Code$$, $$Geographic area codes (GAC) associated with the 1XX heading in an established heading record or a subdivision record. Source of the code in subfield $a is . The source of a local code in subfield $b is indicated in subfield $2. The source of codes in subfield $c is , .$$,
14120 FALSE, FALSE, FALSE, FALSE);
14121 INSERT INTO config.record_attr_definition(name, label)
14122 VALUES ('marc21_authority_043_ind_1', 'MARC 21 authority field 043 indicator position 1');
14123 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14124 VALUES ('marc21_authority_043_ind_1', '#', $$Undefined$$, FALSE, TRUE);
14125 INSERT INTO config.record_attr_definition(name, label)
14126 VALUES ('marc21_authority_043_ind_2', 'MARC 21 authority field 043 indicator position 2');
14127 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14128 VALUES ('marc21_authority_043_ind_2', '#', $$Undefined$$, FALSE, TRUE);
14129 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14130                                  repeatable, mandatory, hidden)
14131 VALUES (1, 'authority', '043', 'a', $$Geographic area code$$,
14132 TRUE, FALSE, FALSE);
14133 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14134                                  repeatable, mandatory, hidden)
14135 VALUES (1, 'authority', '043', 'b', $$Local GAC code$$,
14136 TRUE, FALSE, FALSE);
14137 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14138                                  repeatable, mandatory, hidden)
14139 VALUES (1, 'authority', '043', 'c', $$ISO code$$,
14140 TRUE, FALSE, FALSE);
14141 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14142                                  repeatable, mandatory, hidden)
14143 VALUES (1, 'authority', '043', '2', $$Source of local code$$,
14144 TRUE, FALSE, FALSE);
14145 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14146                                  repeatable, mandatory, hidden)
14147 VALUES (1, 'authority', '043', '6', $$Linkage$$,
14148 FALSE, FALSE, FALSE);
14149 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14150                                  repeatable, mandatory, hidden)
14151 VALUES (1, 'authority', '043', '8', $$Field link and sequence number$$,
14152 TRUE, FALSE, FALSE);
14153 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
14154                               fixed_field, repeatable, mandatory, hidden)
14155 VALUES (1, 'authority', '045', $$Time Period of Heading$$, $$Time period code (subfield $a) and/or a formatted time period (subfield $b or $c) associated with a 15X heading in an established heading record or a 18X heading in a subdivision record.$$,
14156 FALSE, FALSE, FALSE, FALSE);
14157 INSERT INTO config.record_attr_definition(name, label)
14158 VALUES ('marc21_authority_045_ind_1', 'MARC 21 authority field 045 indicator position 1');
14159 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14160 VALUES ('marc21_authority_045_ind_1', '#', $$Subfield $b or $c not present$$, FALSE, TRUE);
14161 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14162 VALUES ('marc21_authority_045_ind_1', '0', $$Single date/time$$, FALSE, TRUE);
14163 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14164 VALUES ('marc21_authority_045_ind_1', '1', $$Multiple single dates/times$$, FALSE, TRUE);
14165 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14166 VALUES ('marc21_authority_045_ind_1', '2', $$Range of dates/times$$, FALSE, TRUE);
14167 INSERT INTO config.record_attr_definition(name, label)
14168 VALUES ('marc21_authority_045_ind_2', 'MARC 21 authority field 045 indicator position 2');
14169 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14170 VALUES ('marc21_authority_045_ind_2', '#', $$Undefined$$, FALSE, TRUE);
14171 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14172                                  repeatable, mandatory, hidden)
14173 VALUES (1, 'authority', '045', 'a', $$Time period code$$,
14174 TRUE, FALSE, FALSE);
14175 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14176                                  repeatable, mandatory, hidden)
14177 VALUES (1, 'authority', '045', 'b', $$Formatted 9999 B.C. through C.E. time period$$,
14178 TRUE, FALSE, FALSE);
14179 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14180                                  repeatable, mandatory, hidden)
14181 VALUES (1, 'authority', '045', 'c', $$Formatted pre-9999 B.C. time period$$,
14182 TRUE, FALSE, FALSE);
14183 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14184                                  repeatable, mandatory, hidden)
14185 VALUES (1, 'authority', '045', '6', $$Linkage$$,
14186 FALSE, FALSE, FALSE);
14187 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14188                                  repeatable, mandatory, hidden)
14189 VALUES (1, 'authority', '045', '8', $$Field link and sequence number$$,
14190 TRUE, FALSE, FALSE);
14191 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
14192                               fixed_field, repeatable, mandatory, hidden)
14193 VALUES (1, 'authority', '046', $$Special Coded Dates$$, $$Dates that are associated with the entity described in the record. These include:$$,
14194 FALSE, TRUE, FALSE, FALSE);
14195 INSERT INTO config.record_attr_definition(name, label)
14196 VALUES ('marc21_authority_046_ind_1', 'MARC 21 authority field 046 indicator position 1');
14197 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14198 VALUES ('marc21_authority_046_ind_1', '#', $$Undefined$$, FALSE, TRUE);
14199 INSERT INTO config.record_attr_definition(name, label)
14200 VALUES ('marc21_authority_046_ind_2', 'MARC 21 authority field 046 indicator position 2');
14201 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14202 VALUES ('marc21_authority_046_ind_2', '#', $$Undefined$$, FALSE, TRUE);
14203 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14204                                  repeatable, mandatory, hidden)
14205 VALUES (1, 'authority', '046', 'f', $$Birth date$$,
14206 FALSE, FALSE, FALSE);
14207 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14208                                  repeatable, mandatory, hidden)
14209 VALUES (1, 'authority', '046', 'g', $$Death date$$,
14210 FALSE, FALSE, FALSE);
14211 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14212                                  repeatable, mandatory, hidden)
14213 VALUES (1, 'authority', '046', 'k', $$Beginning or single date created$$,
14214 FALSE, FALSE, FALSE);
14215 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14216                                  repeatable, mandatory, hidden)
14217 VALUES (1, 'authority', '046', 'l', $$Ending date created$$,
14218 FALSE, FALSE, FALSE);
14219 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14220                                  repeatable, mandatory, hidden)
14221 VALUES (1, 'authority', '046', 's', $$Start period$$,
14222 FALSE, FALSE, FALSE);
14223 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14224                                  repeatable, mandatory, hidden)
14225 VALUES (1, 'authority', '046', 't', $$End period$$,
14226 FALSE, FALSE, FALSE);
14227 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14228                                  repeatable, mandatory, hidden)
14229 VALUES (1, 'authority', '046', 'u', $$Uniform Resource Identifier$$,
14230 TRUE, FALSE, FALSE);
14231 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14232                                  repeatable, mandatory, hidden)
14233 VALUES (1, 'authority', '046', 'v', $$Source of information$$,
14234 TRUE, FALSE, FALSE);
14235 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14236                                  repeatable, mandatory, hidden)
14237 VALUES (1, 'authority', '046', '2', $$Source of date scheme$$,
14238 FALSE, FALSE, FALSE);
14239 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14240                                  repeatable, mandatory, hidden)
14241 VALUES (1, 'authority', '046', '6', $$Linkage$$,
14242 FALSE, FALSE, FALSE);
14243 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14244                                  repeatable, mandatory, hidden)
14245 VALUES (1, 'authority', '046', '8', $$Field link and sequence number$$,
14246 TRUE, FALSE, FALSE);
14247 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
14248                               fixed_field, repeatable, mandatory, hidden)
14249 VALUES (1, 'authority', '050', $$Library of Congress Call Number$$, $$Call/and or class number for a series when all or part of the series is classified as a collected set or with the main series (646, Series Classification Practice, subfield $a, code c or m). The classification number is taken from the and/or the that are maintained by the Library of Congress.$$,
14250 FALSE, TRUE, FALSE, FALSE);
14251 INSERT INTO config.record_attr_definition(name, label)
14252 VALUES ('marc21_authority_050_ind_1', 'MARC 21 authority field 050 indicator position 1');
14253 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14254 VALUES ('marc21_authority_050_ind_1', '#', $$Undefined$$, FALSE, TRUE);
14255 INSERT INTO config.record_attr_definition(name, label)
14256 VALUES ('marc21_authority_050_ind_2', 'MARC 21 authority field 050 indicator position 2');
14257 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14258 VALUES ('marc21_authority_050_ind_2', '0', $$Assigned by LC$$, FALSE, TRUE);
14259 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14260 VALUES ('marc21_authority_050_ind_2', '4', $$Assigned by agency other than LC$$, FALSE, TRUE);
14261 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14262                                  repeatable, mandatory, hidden)
14263 VALUES (1, 'authority', '050', 'a', $$Classification number$$,
14264 FALSE, FALSE, FALSE);
14265 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14266                                  repeatable, mandatory, hidden)
14267 VALUES (1, 'authority', '050', 'b', $$Item number$$,
14268 FALSE, FALSE, FALSE);
14269 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14270                                  repeatable, mandatory, hidden)
14271 VALUES (1, 'authority', '050', 'd', $$Volumes/dates to which call number applies$$,
14272 FALSE, FALSE, FALSE);
14273 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14274                                  repeatable, mandatory, hidden)
14275 VALUES (1, 'authority', '050', '5', $$Institution to which field applies$$,
14276 TRUE, FALSE, FALSE);
14277 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14278                                  repeatable, mandatory, hidden)
14279 VALUES (1, 'authority', '050', '6', $$Linkage$$,
14280 FALSE, FALSE, FALSE);
14281 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14282                                  repeatable, mandatory, hidden)
14283 VALUES (1, 'authority', '050', '8', $$Field link and sequence number$$,
14284 TRUE, FALSE, FALSE);
14285 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
14286                               fixed_field, repeatable, mandatory, hidden)
14287 VALUES (1, 'authority', '052', $$Geographic Classification$$, $$Classification code for a geographic area associated with the 151 field in an established heading record or 181 field in a subdivision record for a geographic name.$$,
14288 FALSE, TRUE, FALSE, FALSE);
14289 INSERT INTO config.record_attr_definition(name, label)
14290 VALUES ('marc21_authority_052_ind_1', 'MARC 21 authority field 052 indicator position 1');
14291 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14292 VALUES ('marc21_authority_052_ind_1', '#', $$Library of Congress Classification$$, FALSE, TRUE);
14293 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14294 VALUES ('marc21_authority_052_ind_1', '1', $$U.S. Dept. of Defense Classification$$, FALSE, TRUE);
14295 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14296 VALUES ('marc21_authority_052_ind_1', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
14297 INSERT INTO config.record_attr_definition(name, label)
14298 VALUES ('marc21_authority_052_ind_2', 'MARC 21 authority field 052 indicator position 2');
14299 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14300 VALUES ('marc21_authority_052_ind_2', '#', $$Undefined$$, FALSE, TRUE);
14301 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14302                                  repeatable, mandatory, hidden)
14303 VALUES (1, 'authority', '052', 'a', $$Geographic classification area code$$,
14304 FALSE, FALSE, FALSE);
14305 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14306                                  repeatable, mandatory, hidden)
14307 VALUES (1, 'authority', '052', 'b', $$Geographic classification subarea code$$,
14308 TRUE, FALSE, FALSE);
14309 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14310                                  repeatable, mandatory, hidden)
14311 VALUES (1, 'authority', '052', 'd', $$Populated place name$$,
14312 TRUE, FALSE, FALSE);
14313 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14314                                  repeatable, mandatory, hidden)
14315 VALUES (1, 'authority', '052', '2', $$Code source$$,
14316 FALSE, FALSE, FALSE);
14317 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14318                                  repeatable, mandatory, hidden)
14319 VALUES (1, 'authority', '052', '6', $$Linkage$$,
14320 FALSE, FALSE, FALSE);
14321 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14322                                  repeatable, mandatory, hidden)
14323 VALUES (1, 'authority', '052', '8', $$Field link and sequence number$$,
14324 TRUE, FALSE, FALSE);
14325 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
14326                               fixed_field, repeatable, mandatory, hidden)
14327 VALUES (1, 'authority', '053', $$LC Classification Number$$, $$Single LC classification number or a number span associated with a 1XX heading in an established heading record or a subdivision record. Source of the classification number is and/or the that are maintained by the Library of Congress. The hyphen (-) between the two class numbers in a range of numbers may be generated based on the presence of both subfields $a and $b.$$,
14328 FALSE, TRUE, FALSE, FALSE);
14329 INSERT INTO config.record_attr_definition(name, label)
14330 VALUES ('marc21_authority_053_ind_1', 'MARC 21 authority field 053 indicator position 1');
14331 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14332 VALUES ('marc21_authority_053_ind_1', '#', $$Undefined$$, FALSE, TRUE);
14333 INSERT INTO config.record_attr_definition(name, label)
14334 VALUES ('marc21_authority_053_ind_2', 'MARC 21 authority field 053 indicator position 2');
14335 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14336 VALUES ('marc21_authority_053_ind_2', '0', $$Assigned by LC$$, FALSE, TRUE);
14337 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14338 VALUES ('marc21_authority_053_ind_2', '4', $$Assigned by agency other than LC$$, FALSE, TRUE);
14339 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14340                                  repeatable, mandatory, hidden)
14341 VALUES (1, 'authority', '053', 'a', $$Classification number element-single number or beginning number of span$$,
14342 FALSE, FALSE, FALSE);
14343 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14344                                  repeatable, mandatory, hidden)
14345 VALUES (1, 'authority', '053', 'b', $$Classification number element-ending number of span$$,
14346 FALSE, FALSE, FALSE);
14347 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14348                                  repeatable, mandatory, hidden)
14349 VALUES (1, 'authority', '053', 'c', $$Explanatory term$$,
14350 FALSE, FALSE, FALSE);
14351 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14352                                  repeatable, mandatory, hidden)
14353 VALUES (1, 'authority', '053', '5', $$Institution to which field applies$$,
14354 TRUE, FALSE, FALSE);
14355 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14356                                  repeatable, mandatory, hidden)
14357 VALUES (1, 'authority', '053', '6', $$Linkage$$,
14358 FALSE, FALSE, FALSE);
14359 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14360                                  repeatable, mandatory, hidden)
14361 VALUES (1, 'authority', '053', '8', $$Field link and sequence number$$,
14362 TRUE, FALSE, FALSE);
14363 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
14364                               fixed_field, repeatable, mandatory, hidden)
14365 VALUES (1, 'authority', '055', $$Library and Archives Canada Call Number$$, $$Call number for a series assigned in Canada if the institution has classified all of part of the series as a collected set.$$,
14366 FALSE, TRUE, FALSE, FALSE);
14367 INSERT INTO config.record_attr_definition(name, label)
14368 VALUES ('marc21_authority_055_ind_1', 'MARC 21 authority field 055 indicator position 1');
14369 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14370 VALUES ('marc21_authority_055_ind_1', '#', $$Undefined$$, FALSE, TRUE);
14371 INSERT INTO config.record_attr_definition(name, label)
14372 VALUES ('marc21_authority_055_ind_2', 'MARC 21 authority field 055 indicator position 2');
14373 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14374 VALUES ('marc21_authority_055_ind_2', '0', $$Assigned by LAC$$, FALSE, TRUE);
14375 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14376 VALUES ('marc21_authority_055_ind_2', '4', $$Assigned by agency other than LAC$$, FALSE, TRUE);
14377 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14378                                  repeatable, mandatory, hidden)
14379 VALUES (1, 'authority', '055', 'a', $$Classification number$$,
14380 FALSE, FALSE, FALSE);
14381 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14382                                  repeatable, mandatory, hidden)
14383 VALUES (1, 'authority', '055', 'b', $$Item number$$,
14384 FALSE, FALSE, FALSE);
14385 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14386                                  repeatable, mandatory, hidden)
14387 VALUES (1, 'authority', '055', 'd', $$Volumes/dates to which call number applies$$,
14388 FALSE, FALSE, FALSE);
14389 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14390                                  repeatable, mandatory, hidden)
14391 VALUES (1, 'authority', '055', '5', $$Institution to which field applies$$,
14392 TRUE, FALSE, FALSE);
14393 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14394                                  repeatable, mandatory, hidden)
14395 VALUES (1, 'authority', '055', '6', $$Linkage$$,
14396 FALSE, FALSE, FALSE);
14397 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14398                                  repeatable, mandatory, hidden)
14399 VALUES (1, 'authority', '055', '8', $$Field link and sequence number$$,
14400 TRUE, FALSE, FALSE);
14401 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
14402                               fixed_field, repeatable, mandatory, hidden)
14403 VALUES (1, 'authority', '060', $$National Library of Medicine Call Number$$, $$National Library of Medicine (NLM) call number for a series when all or part of the series is classified as a collected set or with the main series (646, Series Classification Practice, subfield $a, code c or m).$$,
14404 FALSE, TRUE, FALSE, FALSE);
14405 INSERT INTO config.record_attr_definition(name, label)
14406 VALUES ('marc21_authority_060_ind_1', 'MARC 21 authority field 060 indicator position 1');
14407 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14408 VALUES ('marc21_authority_060_ind_1', '#', $$Undefined$$, FALSE, TRUE);
14409 INSERT INTO config.record_attr_definition(name, label)
14410 VALUES ('marc21_authority_060_ind_2', 'MARC 21 authority field 060 indicator position 2');
14411 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14412 VALUES ('marc21_authority_060_ind_2', '0', $$Assigned by NLM$$, FALSE, TRUE);
14413 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14414 VALUES ('marc21_authority_060_ind_2', '4', $$Assigned by agency other than NLM$$, FALSE, TRUE);
14415 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14416                                  repeatable, mandatory, hidden)
14417 VALUES (1, 'authority', '060', 'a', $$Classification number$$,
14418 FALSE, FALSE, FALSE);
14419 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14420                                  repeatable, mandatory, hidden)
14421 VALUES (1, 'authority', '060', 'b', $$Item number$$,
14422 FALSE, FALSE, FALSE);
14423 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14424                                  repeatable, mandatory, hidden)
14425 VALUES (1, 'authority', '060', 'd', $$Volumes/dates to which call number applies$$,
14426 FALSE, FALSE, FALSE);
14427 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14428                                  repeatable, mandatory, hidden)
14429 VALUES (1, 'authority', '060', '5', $$Institution to which field applies$$,
14430 TRUE, FALSE, FALSE);
14431 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14432                                  repeatable, mandatory, hidden)
14433 VALUES (1, 'authority', '060', '6', $$Linkage$$,
14434 FALSE, FALSE, FALSE);
14435 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14436                                  repeatable, mandatory, hidden)
14437 VALUES (1, 'authority', '060', '8', $$Field link and sequence number$$,
14438 TRUE, FALSE, FALSE);
14439 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
14440                               fixed_field, repeatable, mandatory, hidden)
14441 VALUES (1, 'authority', '065', $$Other Classification Number$$, $$Single classification number, number stem, or a number span associated with a 1XX heading in an established heading record or subdivision record. It is used for all classification schemes except those already accommodated in other fields of this type in the format: 053 (LC Classification Number), 083 (Dewey Decimal Classification number), and 087 (Government Document Classification Number). The classification number(s) may be qualified by explanatory information when the heading is represented in more than one place in the same classification scheme. Each classification number or number span associated with a heading is contained in separate field 065.$$,
14442 FALSE, TRUE, FALSE, FALSE);
14443 INSERT INTO config.record_attr_definition(name, label)
14444 VALUES ('marc21_authority_065_ind_1', 'MARC 21 authority field 065 indicator position 1');
14445 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14446 VALUES ('marc21_authority_065_ind_1', '#', $$Undefined$$, FALSE, TRUE);
14447 INSERT INTO config.record_attr_definition(name, label)
14448 VALUES ('marc21_authority_065_ind_2', 'MARC 21 authority field 065 indicator position 2');
14449 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14450 VALUES ('marc21_authority_065_ind_2', '#', $$Undefined$$, FALSE, TRUE);
14451 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14452                                  repeatable, mandatory, hidden)
14453 VALUES (1, 'authority', '065', 'a', $$Classification number element-single number or beginning of span$$,
14454 FALSE, FALSE, FALSE);
14455 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14456                                  repeatable, mandatory, hidden)
14457 VALUES (1, 'authority', '065', 'b', $$Classification number element-ending number of span$$,
14458 FALSE, FALSE, FALSE);
14459 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14460                                  repeatable, mandatory, hidden)
14461 VALUES (1, 'authority', '065', 'c', $$Explanatory term$$,
14462 FALSE, FALSE, FALSE);
14463 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14464                                  repeatable, mandatory, hidden)
14465 VALUES (1, 'authority', '065', '2', $$Number source$$,
14466 FALSE, FALSE, FALSE);
14467 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14468                                  repeatable, mandatory, hidden)
14469 VALUES (1, 'authority', '065', '5', $$Institution to which field applies$$,
14470 TRUE, FALSE, FALSE);
14471 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14472                                  repeatable, mandatory, hidden)
14473 VALUES (1, 'authority', '065', '6', $$Linkage$$,
14474 FALSE, FALSE, FALSE);
14475 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14476                                  repeatable, mandatory, hidden)
14477 VALUES (1, 'authority', '065', '8', $$Field link and sequence number$$,
14478 TRUE, FALSE, FALSE);
14479 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
14480                               fixed_field, repeatable, mandatory, hidden)
14481 VALUES (1, 'authority', '066', $$Character Sets Present$$, $$Used in records encoded with characters from sets other than ISO 10646 (or ) to specify the character sets for data content that are present in the record. The field alerts users that special processing may be required. A detailed description of the standard escape sequences used in MARC records is provided in$$,
14482 FALSE, FALSE, FALSE, FALSE);
14483 INSERT INTO config.record_attr_definition(name, label)
14484 VALUES ('marc21_authority_066_ind_1', 'MARC 21 authority field 066 indicator position 1');
14485 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14486 VALUES ('marc21_authority_066_ind_1', '#', $$Undefined$$, FALSE, TRUE);
14487 INSERT INTO config.record_attr_definition(name, label)
14488 VALUES ('marc21_authority_066_ind_2', 'MARC 21 authority field 066 indicator position 2');
14489 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14490 VALUES ('marc21_authority_066_ind_2', '#', $$Undefined$$, FALSE, TRUE);
14491 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14492                                  repeatable, mandatory, hidden)
14493 VALUES (1, 'authority', '066', 'a', $$Primary G0 character set$$,
14494 FALSE, FALSE, FALSE);
14495 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14496                                  repeatable, mandatory, hidden)
14497 VALUES (1, 'authority', '066', 'b', $$Primary G1 character set$$,
14498 FALSE, FALSE, FALSE);
14499 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14500                                  repeatable, mandatory, hidden)
14501 VALUES (1, 'authority', '066', 'c', $$Alternate G0 or G1 character set$$,
14502 TRUE, FALSE, FALSE);
14503 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
14504                               fixed_field, repeatable, mandatory, hidden)
14505 VALUES (1, 'authority', '070', $$National Agricultural Library Call Number$$, $$Call number assigned by the National Agricultural Library (NAL) to a series when all or part of the series is classified as a collected set or with the main series (646, Series Classification Practice, subfield $a, code c or m).$$,
14506 FALSE, TRUE, FALSE, FALSE);
14507 INSERT INTO config.record_attr_definition(name, label)
14508 VALUES ('marc21_authority_070_ind_1', 'MARC 21 authority field 070 indicator position 1');
14509 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14510 VALUES ('marc21_authority_070_ind_1', '#', $$Undefined$$, FALSE, TRUE);
14511 INSERT INTO config.record_attr_definition(name, label)
14512 VALUES ('marc21_authority_070_ind_2', 'MARC 21 authority field 070 indicator position 2');
14513 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14514 VALUES ('marc21_authority_070_ind_2', '#', $$Undefined$$, FALSE, TRUE);
14515 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14516                                  repeatable, mandatory, hidden)
14517 VALUES (1, 'authority', '070', 'a', $$Classification number$$,
14518 FALSE, FALSE, FALSE);
14519 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14520                                  repeatable, mandatory, hidden)
14521 VALUES (1, 'authority', '070', 'b', $$Item number$$,
14522 FALSE, FALSE, FALSE);
14523 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14524                                  repeatable, mandatory, hidden)
14525 VALUES (1, 'authority', '070', 'd', $$Volumes/dates to which call number applies$$,
14526 FALSE, FALSE, FALSE);
14527 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14528                                  repeatable, mandatory, hidden)
14529 VALUES (1, 'authority', '070', '6', $$Linkage$$,
14530 FALSE, FALSE, FALSE);
14531 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14532                                  repeatable, mandatory, hidden)
14533 VALUES (1, 'authority', '070', '8', $$Field link and sequence number$$,
14534 TRUE, FALSE, FALSE);
14535 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
14536                               fixed_field, repeatable, mandatory, hidden)
14537 VALUES (1, 'authority', '072', $$Subject Category Code$$, $$Code for the subject category that is associated with the 1XX field in an established heading record or a node label record.$$,
14538 FALSE, TRUE, FALSE, FALSE);
14539 INSERT INTO config.record_attr_definition(name, label)
14540 VALUES ('marc21_authority_072_ind_1', 'MARC 21 authority field 072 indicator position 1');
14541 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14542 VALUES ('marc21_authority_072_ind_1', '#', $$Undefined$$, FALSE, TRUE);
14543 INSERT INTO config.record_attr_definition(name, label)
14544 VALUES ('marc21_authority_072_ind_2', 'MARC 21 authority field 072 indicator position 2');
14545 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14546 VALUES ('marc21_authority_072_ind_2', '#', $$No information provided$$, FALSE, TRUE);
14547 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14548 VALUES ('marc21_authority_072_ind_2', '0', $$NAL subject category code list$$, FALSE, TRUE);
14549 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14550 VALUES ('marc21_authority_072_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
14551 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14552                                  repeatable, mandatory, hidden)
14553 VALUES (1, 'authority', '072', 'a', $$Subject category code$$,
14554 FALSE, FALSE, FALSE);
14555 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14556                                  repeatable, mandatory, hidden)
14557 VALUES (1, 'authority', '072', 'x', $$Subject category code subdivision$$,
14558 TRUE, FALSE, FALSE);
14559 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14560                                  repeatable, mandatory, hidden)
14561 VALUES (1, 'authority', '072', '2', $$Code source$$,
14562 FALSE, FALSE, FALSE);
14563 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14564                                  repeatable, mandatory, hidden)
14565 VALUES (1, 'authority', '072', '6', $$Linkage$$,
14566 FALSE, FALSE, FALSE);
14567 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14568                                  repeatable, mandatory, hidden)
14569 VALUES (1, 'authority', '072', '8', $$Field link and sequence number$$,
14570 TRUE, FALSE, FALSE);
14571 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
14572                               fixed_field, repeatable, mandatory, hidden)
14573 VALUES (1, 'authority', '073', $$Subdivision Usage$$, $$Code specifying the topical term or geographic name with which the 1XX heading in a subdivision record may be used in a particular thesaurus.$$,
14574 FALSE, FALSE, FALSE, FALSE);
14575 INSERT INTO config.record_attr_definition(name, label)
14576 VALUES ('marc21_authority_073_ind_1', 'MARC 21 authority field 073 indicator position 1');
14577 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14578 VALUES ('marc21_authority_073_ind_1', '#', $$Undefined$$, FALSE, TRUE);
14579 INSERT INTO config.record_attr_definition(name, label)
14580 VALUES ('marc21_authority_073_ind_2', 'MARC 21 authority field 073 indicator position 2');
14581 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14582 VALUES ('marc21_authority_073_ind_2', '#', $$Undefined$$, FALSE, TRUE);
14583 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14584                                  repeatable, mandatory, hidden)
14585 VALUES (1, 'authority', '073', 'a', $$Subdivision usage$$,
14586 TRUE, FALSE, FALSE);
14587 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14588                                  repeatable, mandatory, hidden)
14589 VALUES (1, 'authority', '073', 'z', $$Code source$$,
14590 FALSE, FALSE, FALSE);
14591 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14592                                  repeatable, mandatory, hidden)
14593 VALUES (1, 'authority', '073', '6', $$Linkage$$,
14594 FALSE, FALSE, FALSE);
14595 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14596                                  repeatable, mandatory, hidden)
14597 VALUES (1, 'authority', '073', '8', $$Field link and sequence number$$,
14598 TRUE, FALSE, FALSE);
14599 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
14600                               fixed_field, repeatable, mandatory, hidden)
14601 VALUES (1, 'authority', '080', $$Universal Decimal Classification Number$$, $$Classification number associated with a 1XX heading in an established heading record. Number is taken from the Universal Decimal Classification scheme.$$,
14602 FALSE, TRUE, FALSE, FALSE);
14603 INSERT INTO config.record_attr_definition(name, label)
14604 VALUES ('marc21_authority_080_ind_1', 'MARC 21 authority field 080 indicator position 1');
14605 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14606 VALUES ('marc21_authority_080_ind_1', '#', $$No information provided$$, FALSE, TRUE);
14607 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14608 VALUES ('marc21_authority_080_ind_1', '0', $$Full$$, FALSE, TRUE);
14609 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14610 VALUES ('marc21_authority_080_ind_1', '1', $$Abridged$$, FALSE, TRUE);
14611 INSERT INTO config.record_attr_definition(name, label)
14612 VALUES ('marc21_authority_080_ind_2', 'MARC 21 authority field 080 indicator position 2');
14613 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14614 VALUES ('marc21_authority_080_ind_2', '#', $$Undefined$$, FALSE, TRUE);
14615 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14616                                  repeatable, mandatory, hidden)
14617 VALUES (1, 'authority', '080', 'a', $$Universal Decimal Classification number$$,
14618 FALSE, FALSE, FALSE);
14619 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14620                                  repeatable, mandatory, hidden)
14621 VALUES (1, 'authority', '080', 'b', $$Item number$$,
14622 FALSE, FALSE, FALSE);
14623 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14624                                  repeatable, mandatory, hidden)
14625 VALUES (1, 'authority', '080', 'x', $$Common auxiliary subdivision$$,
14626 TRUE, FALSE, FALSE);
14627 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14628                                  repeatable, mandatory, hidden)
14629 VALUES (1, 'authority', '080', '2', $$Edition identifier$$,
14630 FALSE, FALSE, FALSE);
14631 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14632                                  repeatable, mandatory, hidden)
14633 VALUES (1, 'authority', '080', '6', $$Linkage$$,
14634 FALSE, FALSE, FALSE);
14635 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14636                                  repeatable, mandatory, hidden)
14637 VALUES (1, 'authority', '080', '8', $$Field link and sequence number$$,
14638 TRUE, FALSE, FALSE);
14639 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
14640                               fixed_field, repeatable, mandatory, hidden)
14641 VALUES (1, 'authority', '082', $$Dewey Decimal Call Number$$, $$Call number for a series when all or part of the series is classified as a collected set or with the main series (646, Series Classification Practice, subfield $a, code c or m). Source of the classification number is the the the and electronic updates to either edition. Through 1997, updates were issued in the$$,
14642 FALSE, TRUE, FALSE, FALSE);
14643 INSERT INTO config.record_attr_definition(name, label)
14644 VALUES ('marc21_authority_082_ind_1', 'MARC 21 authority field 082 indicator position 1');
14645 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14646 VALUES ('marc21_authority_082_ind_1', '0', $$Full$$, FALSE, TRUE);
14647 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14648 VALUES ('marc21_authority_082_ind_1', '1', $$Abridged$$, FALSE, TRUE);
14649 INSERT INTO config.record_attr_definition(name, label)
14650 VALUES ('marc21_authority_082_ind_2', 'MARC 21 authority field 082 indicator position 2');
14651 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14652 VALUES ('marc21_authority_082_ind_2', '#', $$No information provided$$, FALSE, TRUE);
14653 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14654 VALUES ('marc21_authority_082_ind_2', '0', $$Assigned by LC$$, FALSE, TRUE);
14655 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14656 VALUES ('marc21_authority_082_ind_2', '4', $$Assigned by agency other than LC$$, FALSE, TRUE);
14657 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14658                                  repeatable, mandatory, hidden)
14659 VALUES (1, 'authority', '082', 'a', $$Classification number$$,
14660 FALSE, FALSE, FALSE);
14661 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14662                                  repeatable, mandatory, hidden)
14663 VALUES (1, 'authority', '082', 'b', $$Item number$$,
14664 FALSE, FALSE, FALSE);
14665 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14666                                  repeatable, mandatory, hidden)
14667 VALUES (1, 'authority', '082', 'd', $$Volumes/dates to which call number applies$$,
14668 FALSE, FALSE, FALSE);
14669 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14670                                  repeatable, mandatory, hidden)
14671 VALUES (1, 'authority', '082', '2', $$Edition number$$,
14672 FALSE, FALSE, FALSE);
14673 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14674                                  repeatable, mandatory, hidden)
14675 VALUES (1, 'authority', '082', '5', $$Institution to which field applies$$,
14676 TRUE, FALSE, FALSE);
14677 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14678                                  repeatable, mandatory, hidden)
14679 VALUES (1, 'authority', '082', '6', $$Linkage$$,
14680 FALSE, FALSE, FALSE);
14681 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14682                                  repeatable, mandatory, hidden)
14683 VALUES (1, 'authority', '082', '8', $$Field link and sequence number$$,
14684 TRUE, FALSE, FALSE);
14685 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
14686                               fixed_field, repeatable, mandatory, hidden)
14687 VALUES (1, 'authority', '083', $$Dewey Decimal Classification Number$$, $$Single Dewey classification number or a a number span associated with a 1XX heading in an established heading record or a subdivision record. Source of the classification number is the the and electronic updates to either edition. Through 1997, updates were issued in the .$$,
14688 FALSE, TRUE, FALSE, FALSE);
14689 INSERT INTO config.record_attr_definition(name, label)
14690 VALUES ('marc21_authority_083_ind_1', 'MARC 21 authority field 083 indicator position 1');
14691 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14692 VALUES ('marc21_authority_083_ind_1', '0', $$Full$$, FALSE, TRUE);
14693 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14694 VALUES ('marc21_authority_083_ind_1', '1', $$Abridged$$, FALSE, TRUE);
14695 INSERT INTO config.record_attr_definition(name, label)
14696 VALUES ('marc21_authority_083_ind_2', 'MARC 21 authority field 083 indicator position 2');
14697 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14698 VALUES ('marc21_authority_083_ind_2', '0', $$Assigned by LC$$, FALSE, TRUE);
14699 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14700 VALUES ('marc21_authority_083_ind_2', '4', $$Assigned by agency other than LC$$, FALSE, TRUE);
14701 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14702                                  repeatable, mandatory, hidden)
14703 VALUES (1, 'authority', '083', 'a', $$Classification number element-single number or beginning number of span$$,
14704 FALSE, FALSE, FALSE);
14705 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14706                                  repeatable, mandatory, hidden)
14707 VALUES (1, 'authority', '083', 'b', $$Classification number element-ending number of span$$,
14708 FALSE, FALSE, FALSE);
14709 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14710                                  repeatable, mandatory, hidden)
14711 VALUES (1, 'authority', '083', 'c', $$Explanatory term$$,
14712 FALSE, FALSE, FALSE);
14713 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14714                                  repeatable, mandatory, hidden)
14715 VALUES (1, 'authority', '083', 'y', $$Table sequence number for internal subarrangement or add table$$,
14716 TRUE, FALSE, FALSE);
14717 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14718                                  repeatable, mandatory, hidden)
14719 VALUES (1, 'authority', '083', 'z', $$Table identification-table number$$,
14720 FALSE, FALSE, FALSE);
14721 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14722                                  repeatable, mandatory, hidden)
14723 VALUES (1, 'authority', '083', '2', $$Edition number$$,
14724 FALSE, FALSE, FALSE);
14725 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14726                                  repeatable, mandatory, hidden)
14727 VALUES (1, 'authority', '083', '5', $$Institution to which field applies$$,
14728 TRUE, FALSE, FALSE);
14729 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14730                                  repeatable, mandatory, hidden)
14731 VALUES (1, 'authority', '083', '6', $$Linkage$$,
14732 FALSE, FALSE, FALSE);
14733 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14734                                  repeatable, mandatory, hidden)
14735 VALUES (1, 'authority', '083', '8', $$Field link and sequence number$$,
14736 TRUE, FALSE, FALSE);
14737 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
14738                               fixed_field, repeatable, mandatory, hidden)
14739 VALUES (1, 'authority', '086', $$Government Document Call Number$$, $$Government document call number for a series when all or part of the series is classified as a collected set or with a main series (646, Series Classification Practice, subfield $a, code c or m). The organization assigning the number may be identified in subfield $5.$$,
14740 FALSE, TRUE, FALSE, FALSE);
14741 INSERT INTO config.record_attr_definition(name, label)
14742 VALUES ('marc21_authority_086_ind_1', 'MARC 21 authority field 086 indicator position 1');
14743 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14744 VALUES ('marc21_authority_086_ind_1', '#', $$Source specified in subfield $2$$, FALSE, TRUE);
14745 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14746 VALUES ('marc21_authority_086_ind_1', '0', $$Superintendent of Documents Classification System$$, FALSE, TRUE);
14747 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14748 VALUES ('marc21_authority_086_ind_1', '1', $$Government of Canada Publications: Outline of Classification$$, FALSE, TRUE);
14749 INSERT INTO config.record_attr_definition(name, label)
14750 VALUES ('marc21_authority_086_ind_2', 'MARC 21 authority field 086 indicator position 2');
14751 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14752 VALUES ('marc21_authority_086_ind_2', '#', $$Undefined$$, FALSE, TRUE);
14753 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14754                                  repeatable, mandatory, hidden)
14755 VALUES (1, 'authority', '086', 'a', $$Call number$$,
14756 FALSE, FALSE, FALSE);
14757 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14758                                  repeatable, mandatory, hidden)
14759 VALUES (1, 'authority', '086', 'd', $$Volumes/dates to which call number applies$$,
14760 FALSE, FALSE, FALSE);
14761 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14762                                  repeatable, mandatory, hidden)
14763 VALUES (1, 'authority', '086', 'z', $$Canceled/invalid call number$$,
14764 TRUE, FALSE, FALSE);
14765 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14766                                  repeatable, mandatory, hidden)
14767 VALUES (1, 'authority', '086', '2', $$Number source$$,
14768 FALSE, FALSE, FALSE);
14769 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14770                                  repeatable, mandatory, hidden)
14771 VALUES (1, 'authority', '086', '5', $$Institution to which field applies$$,
14772 TRUE, FALSE, FALSE);
14773 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14774                                  repeatable, mandatory, hidden)
14775 VALUES (1, 'authority', '086', '6', $$Linkage$$,
14776 FALSE, FALSE, FALSE);
14777 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14778                                  repeatable, mandatory, hidden)
14779 VALUES (1, 'authority', '086', '8', $$Field link and sequence number$$,
14780 TRUE, FALSE, FALSE);
14781 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
14782                               fixed_field, repeatable, mandatory, hidden)
14783 VALUES (1, 'authority', '087', $$Government Document Classification Number$$, $$Single government document classification number, number stem, or a number span associated with a 1XX heading in an established heading record. The classification number(s) may be qualified by explanatory information when the heading is represented by more than one number in the same classification scheme.$$,
14784 FALSE, TRUE, FALSE, FALSE);
14785 INSERT INTO config.record_attr_definition(name, label)
14786 VALUES ('marc21_authority_087_ind_1', 'MARC 21 authority field 087 indicator position 1');
14787 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14788 VALUES ('marc21_authority_087_ind_1', '#', $$Source specified in subfield $2$$, FALSE, TRUE);
14789 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14790 VALUES ('marc21_authority_087_ind_1', '0', $$Superintendent of Documents Classification System$$, FALSE, TRUE);
14791 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14792 VALUES ('marc21_authority_087_ind_1', '1', $$Government of Canada Publications: Outline of Classification$$, FALSE, TRUE);
14793 INSERT INTO config.record_attr_definition(name, label)
14794 VALUES ('marc21_authority_087_ind_2', 'MARC 21 authority field 087 indicator position 2');
14795 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14796 VALUES ('marc21_authority_087_ind_2', '#', $$Undefined$$, FALSE, TRUE);
14797 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14798                                  repeatable, mandatory, hidden)
14799 VALUES (1, 'authority', '087', 'a', $$Classification number element-Single number of beginning number of span$$,
14800 FALSE, FALSE, FALSE);
14801 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14802                                  repeatable, mandatory, hidden)
14803 VALUES (1, 'authority', '087', 'b', $$Classification number element-Ending number of span$$,
14804 FALSE, FALSE, FALSE);
14805 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14806                                  repeatable, mandatory, hidden)
14807 VALUES (1, 'authority', '087', 'c', $$Explanatory information$$,
14808 FALSE, FALSE, FALSE);
14809 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14810                                  repeatable, mandatory, hidden)
14811 VALUES (1, 'authority', '087', '2', $$Number source$$,
14812 FALSE, FALSE, FALSE);
14813 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14814                                  repeatable, mandatory, hidden)
14815 VALUES (1, 'authority', '087', '6', $$Linkage$$,
14816 FALSE, FALSE, FALSE);
14817 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14818                                  repeatable, mandatory, hidden)
14819 VALUES (1, 'authority', '087', '8', $$Field link and sequence number$$,
14820 TRUE, FALSE, FALSE);
14821 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
14822                               fixed_field, repeatable, mandatory, hidden)
14823 VALUES (1, 'authority', '100', $$Heading-Personal Name$$, $$Established personal name used in a name, name/title, or extended subject heading established heading records or an unestablished personal name used in these types of headings a traced or an untraced reference record.$$,
14824 FALSE, FALSE, FALSE, FALSE);
14825 INSERT INTO config.record_attr_definition(name, label)
14826 VALUES ('marc21_authority_100_ind_1', 'MARC 21 authority field 100 indicator position 1');
14827 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14828 VALUES ('marc21_authority_100_ind_1', '0', $$Forename$$, FALSE, TRUE);
14829 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14830 VALUES ('marc21_authority_100_ind_1', '1', $$Surname$$, FALSE, TRUE);
14831 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14832 VALUES ('marc21_authority_100_ind_1', '3', $$Family name$$, FALSE, TRUE);
14833 INSERT INTO config.record_attr_definition(name, label)
14834 VALUES ('marc21_authority_100_ind_2', 'MARC 21 authority field 100 indicator position 2');
14835 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14836 VALUES ('marc21_authority_100_ind_2', '#', $$Undefined$$, FALSE, TRUE);
14837 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14838                                  repeatable, mandatory, hidden)
14839 VALUES (1, 'authority', '100', 'a', $$Personal name$$,
14840 FALSE, FALSE, FALSE);
14841 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14842                                  repeatable, mandatory, hidden)
14843 VALUES (1, 'authority', '100', 'b', $$Numeration$$,
14844 FALSE, FALSE, FALSE);
14845 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14846                                  repeatable, mandatory, hidden)
14847 VALUES (1, 'authority', '100', 'c', $$Titles and other words associated with a name$$,
14848 TRUE, FALSE, FALSE);
14849 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14850                                  repeatable, mandatory, hidden)
14851 VALUES (1, 'authority', '100', 'd', $$Dates associated with a name$$,
14852 FALSE, FALSE, FALSE);
14853 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14854                                  repeatable, mandatory, hidden)
14855 VALUES (1, 'authority', '100', 'e', $$Relator term$$,
14856 TRUE, FALSE, FALSE);
14857 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14858                                  repeatable, mandatory, hidden)
14859 VALUES (1, 'authority', '100', 'f', $$Date of a work$$,
14860 FALSE, FALSE, FALSE);
14861 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14862                                  repeatable, mandatory, hidden)
14863 VALUES (1, 'authority', '100', 'g', $$Miscellaneous information$$,
14864 FALSE, FALSE, FALSE);
14865 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14866                                  repeatable, mandatory, hidden)
14867 VALUES (1, 'authority', '100', 'h', $$Medium$$,
14868 FALSE, FALSE, FALSE);
14869 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14870                                  repeatable, mandatory, hidden)
14871 VALUES (1, 'authority', '100', 'j', $$Attribution qualifier$$,
14872 TRUE, FALSE, FALSE);
14873 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14874                                  repeatable, mandatory, hidden)
14875 VALUES (1, 'authority', '100', 'k', $$Form subheading$$,
14876 TRUE, FALSE, FALSE);
14877 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14878                                  repeatable, mandatory, hidden)
14879 VALUES (1, 'authority', '100', 'l', $$Language of a work$$,
14880 FALSE, FALSE, FALSE);
14881 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14882                                  repeatable, mandatory, hidden)
14883 VALUES (1, 'authority', '100', 'm', $$Medium of performance for music$$,
14884 TRUE, FALSE, FALSE);
14885 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14886                                  repeatable, mandatory, hidden)
14887 VALUES (1, 'authority', '100', 'n', $$Number of part/section of a work$$,
14888 TRUE, FALSE, FALSE);
14889 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14890                                  repeatable, mandatory, hidden)
14891 VALUES (1, 'authority', '100', 'o', $$Arranged statement for music$$,
14892 FALSE, FALSE, FALSE);
14893 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14894                                  repeatable, mandatory, hidden)
14895 VALUES (1, 'authority', '100', 'p', $$Name of part/section of a work$$,
14896 TRUE, FALSE, FALSE);
14897 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14898                                  repeatable, mandatory, hidden)
14899 VALUES (1, 'authority', '100', 'q', $$Fuller form of name$$,
14900 FALSE, FALSE, FALSE);
14901 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14902                                  repeatable, mandatory, hidden)
14903 VALUES (1, 'authority', '100', 'r', $$Key for music$$,
14904 FALSE, FALSE, FALSE);
14905 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14906                                  repeatable, mandatory, hidden)
14907 VALUES (1, 'authority', '100', 's', $$Version$$,
14908 FALSE, FALSE, FALSE);
14909 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14910                                  repeatable, mandatory, hidden)
14911 VALUES (1, 'authority', '100', 't', $$Title of a work$$,
14912 FALSE, FALSE, FALSE);
14913 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14914                                  repeatable, mandatory, hidden)
14915 VALUES (1, 'authority', '100', 'v', $$Form subdivision$$,
14916 TRUE, FALSE, FALSE);
14917 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14918                                  repeatable, mandatory, hidden)
14919 VALUES (1, 'authority', '100', 'x', $$General subdivision$$,
14920 TRUE, FALSE, FALSE);
14921 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14922                                  repeatable, mandatory, hidden)
14923 VALUES (1, 'authority', '100', 'y', $$Chronological subdivision$$,
14924 TRUE, FALSE, FALSE);
14925 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14926                                  repeatable, mandatory, hidden)
14927 VALUES (1, 'authority', '100', 'z', $$Geographic subdivision$$,
14928 TRUE, FALSE, FALSE);
14929 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14930                                  repeatable, mandatory, hidden)
14931 VALUES (1, 'authority', '100', '6', $$Linkage$$,
14932 FALSE, FALSE, FALSE);
14933 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14934                                  repeatable, mandatory, hidden)
14935 VALUES (1, 'authority', '100', '8', $$Field link and sequence number$$,
14936 TRUE, FALSE, FALSE);
14937 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
14938                               fixed_field, repeatable, mandatory, hidden)
14939 VALUES (1, 'authority', '110', $$Heading-Corporate Name$$, $$Corporate name used in a name, name/title, or extended subject heading in established heading records or an unestablished corporate name used in a traced or an untraced reference record.$$,
14940 FALSE, FALSE, FALSE, FALSE);
14941 INSERT INTO config.record_attr_definition(name, label)
14942 VALUES ('marc21_authority_110_ind_1', 'MARC 21 authority field 110 indicator position 1');
14943 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14944 VALUES ('marc21_authority_110_ind_1', '0', $$Inverted name$$, FALSE, TRUE);
14945 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14946 VALUES ('marc21_authority_110_ind_1', '1', $$Jurisdiction name$$, FALSE, TRUE);
14947 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14948 VALUES ('marc21_authority_110_ind_1', '2', $$Name in direct order$$, FALSE, TRUE);
14949 INSERT INTO config.record_attr_definition(name, label)
14950 VALUES ('marc21_authority_110_ind_2', 'MARC 21 authority field 110 indicator position 2');
14951 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
14952 VALUES ('marc21_authority_110_ind_2', '#', $$Undefined$$, FALSE, TRUE);
14953 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14954                                  repeatable, mandatory, hidden)
14955 VALUES (1, 'authority', '110', 'a', $$Corporate name or jurisdiction name as entry element$$,
14956 FALSE, FALSE, FALSE);
14957 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14958                                  repeatable, mandatory, hidden)
14959 VALUES (1, 'authority', '110', 'b', $$Subordinate unit$$,
14960 TRUE, FALSE, FALSE);
14961 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14962                                  repeatable, mandatory, hidden)
14963 VALUES (1, 'authority', '110', 'c', $$Location of meeting$$,
14964 FALSE, FALSE, FALSE);
14965 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14966                                  repeatable, mandatory, hidden)
14967 VALUES (1, 'authority', '110', 'd', $$Date of meeting or treaty signing$$,
14968 TRUE, FALSE, FALSE);
14969 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14970                                  repeatable, mandatory, hidden)
14971 VALUES (1, 'authority', '110', 'e', $$Relator term$$,
14972 TRUE, FALSE, FALSE);
14973 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14974                                  repeatable, mandatory, hidden)
14975 VALUES (1, 'authority', '110', 'f', $$Date of a work$$,
14976 FALSE, FALSE, FALSE);
14977 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14978                                  repeatable, mandatory, hidden)
14979 VALUES (1, 'authority', '110', 'g', $$Miscellaneous information$$,
14980 FALSE, FALSE, FALSE);
14981 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14982                                  repeatable, mandatory, hidden)
14983 VALUES (1, 'authority', '110', 'h', $$Medium$$,
14984 FALSE, FALSE, FALSE);
14985 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14986                                  repeatable, mandatory, hidden)
14987 VALUES (1, 'authority', '110', 'k', $$Form subheading$$,
14988 TRUE, FALSE, FALSE);
14989 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14990                                  repeatable, mandatory, hidden)
14991 VALUES (1, 'authority', '110', 'l', $$Language of a work$$,
14992 FALSE, FALSE, FALSE);
14993 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14994                                  repeatable, mandatory, hidden)
14995 VALUES (1, 'authority', '110', 'm', $$Medium of performance for music$$,
14996 TRUE, FALSE, FALSE);
14997 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
14998                                  repeatable, mandatory, hidden)
14999 VALUES (1, 'authority', '110', 'n', $$Number of part/section/meeting$$,
15000 TRUE, FALSE, FALSE);
15001 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15002                                  repeatable, mandatory, hidden)
15003 VALUES (1, 'authority', '110', 'o', $$Arranged statement for music$$,
15004 FALSE, FALSE, FALSE);
15005 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15006                                  repeatable, mandatory, hidden)
15007 VALUES (1, 'authority', '110', 'p', $$Name of part/section of a work$$,
15008 TRUE, FALSE, FALSE);
15009 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15010                                  repeatable, mandatory, hidden)
15011 VALUES (1, 'authority', '110', 'r', $$Key for music$$,
15012 FALSE, FALSE, FALSE);
15013 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15014                                  repeatable, mandatory, hidden)
15015 VALUES (1, 'authority', '110', 's', $$Version$$,
15016 FALSE, FALSE, FALSE);
15017 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15018                                  repeatable, mandatory, hidden)
15019 VALUES (1, 'authority', '110', 't', $$Title of a work$$,
15020 FALSE, FALSE, FALSE);
15021 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15022                                  repeatable, mandatory, hidden)
15023 VALUES (1, 'authority', '110', 'v', $$Form subdivision$$,
15024 TRUE, FALSE, FALSE);
15025 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15026                                  repeatable, mandatory, hidden)
15027 VALUES (1, 'authority', '110', 'x', $$General subdivision$$,
15028 TRUE, FALSE, FALSE);
15029 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15030                                  repeatable, mandatory, hidden)
15031 VALUES (1, 'authority', '110', 'y', $$Chronological subdivision$$,
15032 TRUE, FALSE, FALSE);
15033 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15034                                  repeatable, mandatory, hidden)
15035 VALUES (1, 'authority', '110', 'z', $$Geographic subdivision$$,
15036 TRUE, FALSE, FALSE);
15037 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15038                                  repeatable, mandatory, hidden)
15039 VALUES (1, 'authority', '110', '6', $$Linkage$$,
15040 FALSE, FALSE, FALSE);
15041 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15042                                  repeatable, mandatory, hidden)
15043 VALUES (1, 'authority', '110', '8', $$Field link and sequence number$$,
15044 TRUE, FALSE, FALSE);
15045 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
15046                               fixed_field, repeatable, mandatory, hidden)
15047 VALUES (1, 'authority', '111', $$Heading-Meeting Name$$, $$Established meeting name used in a name or name/title heading in established heading records or an unestablished meeting name used in these types of headings in traced or untraced reference records.$$,
15048 FALSE, FALSE, FALSE, FALSE);
15049 INSERT INTO config.record_attr_definition(name, label)
15050 VALUES ('marc21_authority_111_ind_1', 'MARC 21 authority field 111 indicator position 1');
15051 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15052 VALUES ('marc21_authority_111_ind_1', '0', $$Inverted name$$, FALSE, TRUE);
15053 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15054 VALUES ('marc21_authority_111_ind_1', '1', $$Jurisdiction name$$, FALSE, TRUE);
15055 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15056 VALUES ('marc21_authority_111_ind_1', '2', $$Name in direct order$$, FALSE, TRUE);
15057 INSERT INTO config.record_attr_definition(name, label)
15058 VALUES ('marc21_authority_111_ind_2', 'MARC 21 authority field 111 indicator position 2');
15059 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15060 VALUES ('marc21_authority_111_ind_2', '#', $$Undefined$$, FALSE, TRUE);
15061 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15062                                  repeatable, mandatory, hidden)
15063 VALUES (1, 'authority', '111', 'a', $$Meeting name or jurisdiction name as entry element$$,
15064 FALSE, FALSE, FALSE);
15065 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15066                                  repeatable, mandatory, hidden)
15067 VALUES (1, 'authority', '111', 'c', $$Location of meeting$$,
15068 FALSE, FALSE, FALSE);
15069 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15070                                  repeatable, mandatory, hidden)
15071 VALUES (1, 'authority', '111', 'd', $$Date of meeting$$,
15072 FALSE, FALSE, FALSE);
15073 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15074                                  repeatable, mandatory, hidden)
15075 VALUES (1, 'authority', '111', 'e', $$Subordinate unit$$,
15076 TRUE, FALSE, FALSE);
15077 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15078                                  repeatable, mandatory, hidden)
15079 VALUES (1, 'authority', '111', 'f', $$Date of a work$$,
15080 FALSE, FALSE, FALSE);
15081 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15082                                  repeatable, mandatory, hidden)
15083 VALUES (1, 'authority', '111', 'g', $$Miscellaneous information$$,
15084 FALSE, FALSE, FALSE);
15085 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15086                                  repeatable, mandatory, hidden)
15087 VALUES (1, 'authority', '111', 'h', $$Medium$$,
15088 FALSE, FALSE, FALSE);
15089 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15090                                  repeatable, mandatory, hidden)
15091 VALUES (1, 'authority', '111', 'j', $$Relator term$$,
15092 TRUE, FALSE, FALSE);
15093 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15094                                  repeatable, mandatory, hidden)
15095 VALUES (1, 'authority', '111', 'k', $$Form subheading$$,
15096 TRUE, FALSE, FALSE);
15097 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15098                                  repeatable, mandatory, hidden)
15099 VALUES (1, 'authority', '111', 'l', $$Language of a work$$,
15100 FALSE, FALSE, FALSE);
15101 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15102                                  repeatable, mandatory, hidden)
15103 VALUES (1, 'authority', '111', 'n', $$Number of part/section/meeting$$,
15104 TRUE, FALSE, FALSE);
15105 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15106                                  repeatable, mandatory, hidden)
15107 VALUES (1, 'authority', '111', 'p', $$Name of part/section of a work$$,
15108 TRUE, FALSE, FALSE);
15109 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15110                                  repeatable, mandatory, hidden)
15111 VALUES (1, 'authority', '111', 'q', $$Name of meeting following jurisdiction name entry element$$,
15112 FALSE, FALSE, FALSE);
15113 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15114                                  repeatable, mandatory, hidden)
15115 VALUES (1, 'authority', '111', 's', $$Version$$,
15116 FALSE, FALSE, FALSE);
15117 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15118                                  repeatable, mandatory, hidden)
15119 VALUES (1, 'authority', '111', 't', $$Title of a work$$,
15120 FALSE, FALSE, FALSE);
15121 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15122                                  repeatable, mandatory, hidden)
15123 VALUES (1, 'authority', '111', 'v', $$Form subdivision$$,
15124 TRUE, FALSE, FALSE);
15125 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15126                                  repeatable, mandatory, hidden)
15127 VALUES (1, 'authority', '111', 'x', $$General subdivision$$,
15128 TRUE, FALSE, FALSE);
15129 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15130                                  repeatable, mandatory, hidden)
15131 VALUES (1, 'authority', '111', 'y', $$Chronological subdivision$$,
15132 TRUE, FALSE, FALSE);
15133 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15134                                  repeatable, mandatory, hidden)
15135 VALUES (1, 'authority', '111', 'z', $$Geographic subdivision$$,
15136 TRUE, FALSE, FALSE);
15137 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15138                                  repeatable, mandatory, hidden)
15139 VALUES (1, 'authority', '111', '6', $$Linkage$$,
15140 FALSE, FALSE, FALSE);
15141 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15142                                  repeatable, mandatory, hidden)
15143 VALUES (1, 'authority', '111', '8', $$Field link and sequence number$$,
15144 TRUE, FALSE, FALSE);
15145 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
15146                               fixed_field, repeatable, mandatory, hidden)
15147 VALUES (1, 'authority', '130', $$Heading-Uniform Title$$, $$Uniform title used in a title or extended subject heading in established heading records or an unestablished uniform title used in a traced or untraced reference record.$$,
15148 FALSE, FALSE, FALSE, FALSE);
15149 INSERT INTO config.record_attr_definition(name, label)
15150 VALUES ('marc21_authority_130_ind_1', 'MARC 21 authority field 130 indicator position 1');
15151 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15152 VALUES ('marc21_authority_130_ind_1', '#', $$Undefined$$, FALSE, TRUE);
15153 INSERT INTO config.record_attr_definition(name, label)
15154 VALUES ('marc21_authority_130_ind_2', 'MARC 21 authority field 130 indicator position 2');
15155 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15156 VALUES ('marc21_authority_130_ind_2', '0', $$No nonfiling characters$$, FALSE, TRUE);
15157 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15158 VALUES ('marc21_authority_130_ind_2', '1', $$Number of nonfiling characters - 1$$, FALSE, TRUE);
15159 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15160 VALUES ('marc21_authority_130_ind_2', '2', $$Number of nonfiling characters - 2$$, FALSE, TRUE);
15161 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15162 VALUES ('marc21_authority_130_ind_2', '3', $$Number of nonfiling characters - 3$$, FALSE, TRUE);
15163 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15164 VALUES ('marc21_authority_130_ind_2', '4', $$Number of nonfiling characters - 4$$, FALSE, TRUE);
15165 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15166 VALUES ('marc21_authority_130_ind_2', '5', $$Number of nonfiling characters - 5$$, FALSE, TRUE);
15167 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15168 VALUES ('marc21_authority_130_ind_2', '6', $$Number of nonfiling characters - 6$$, FALSE, TRUE);
15169 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15170 VALUES ('marc21_authority_130_ind_2', '7', $$Number of nonfiling characters - 7$$, FALSE, TRUE);
15171 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15172 VALUES ('marc21_authority_130_ind_2', '8', $$Number of nonfiling characters - 8$$, FALSE, TRUE);
15173 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15174 VALUES ('marc21_authority_130_ind_2', '9', $$Number of nonfiling characters - 9$$, FALSE, TRUE);
15175 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15176                                  repeatable, mandatory, hidden)
15177 VALUES (1, 'authority', '130', 'a', $$Uniform title$$,
15178 FALSE, FALSE, FALSE);
15179 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15180                                  repeatable, mandatory, hidden)
15181 VALUES (1, 'authority', '130', 'd', $$Date of treaty signing$$,
15182 TRUE, FALSE, FALSE);
15183 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15184                                  repeatable, mandatory, hidden)
15185 VALUES (1, 'authority', '130', 'f', $$Date of a work$$,
15186 FALSE, FALSE, FALSE);
15187 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15188                                  repeatable, mandatory, hidden)
15189 VALUES (1, 'authority', '130', 'g', $$Miscellaneous information$$,
15190 FALSE, FALSE, FALSE);
15191 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15192                                  repeatable, mandatory, hidden)
15193 VALUES (1, 'authority', '130', 'h', $$Medium$$,
15194 FALSE, FALSE, FALSE);
15195 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15196                                  repeatable, mandatory, hidden)
15197 VALUES (1, 'authority', '130', 'k', $$Form subheading$$,
15198 TRUE, FALSE, FALSE);
15199 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15200                                  repeatable, mandatory, hidden)
15201 VALUES (1, 'authority', '130', 'l', $$Language of a work$$,
15202 FALSE, FALSE, FALSE);
15203 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15204                                  repeatable, mandatory, hidden)
15205 VALUES (1, 'authority', '130', 'm', $$Medium of performance for music$$,
15206 TRUE, FALSE, FALSE);
15207 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15208                                  repeatable, mandatory, hidden)
15209 VALUES (1, 'authority', '130', 'n', $$Number of part/section of a work$$,
15210 TRUE, FALSE, FALSE);
15211 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15212                                  repeatable, mandatory, hidden)
15213 VALUES (1, 'authority', '130', 'o', $$Arranged statement for music$$,
15214 FALSE, FALSE, FALSE);
15215 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15216                                  repeatable, mandatory, hidden)
15217 VALUES (1, 'authority', '130', 'p', $$Name of part/section of a work$$,
15218 TRUE, FALSE, FALSE);
15219 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15220                                  repeatable, mandatory, hidden)
15221 VALUES (1, 'authority', '130', 'r', $$Key for music$$,
15222 FALSE, FALSE, FALSE);
15223 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15224                                  repeatable, mandatory, hidden)
15225 VALUES (1, 'authority', '130', 's', $$Version$$,
15226 FALSE, FALSE, FALSE);
15227 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15228                                  repeatable, mandatory, hidden)
15229 VALUES (1, 'authority', '130', 't', $$Title of a work$$,
15230 FALSE, FALSE, FALSE);
15231 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15232                                  repeatable, mandatory, hidden)
15233 VALUES (1, 'authority', '130', 'v', $$Form subdivision$$,
15234 TRUE, FALSE, FALSE);
15235 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15236                                  repeatable, mandatory, hidden)
15237 VALUES (1, 'authority', '130', 'x', $$General subdivision$$,
15238 TRUE, FALSE, FALSE);
15239 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15240                                  repeatable, mandatory, hidden)
15241 VALUES (1, 'authority', '130', 'y', $$Chronological subdivision$$,
15242 TRUE, FALSE, FALSE);
15243 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15244                                  repeatable, mandatory, hidden)
15245 VALUES (1, 'authority', '130', 'z', $$Geographic subdivision$$,
15246 TRUE, FALSE, FALSE);
15247 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15248                                  repeatable, mandatory, hidden)
15249 VALUES (1, 'authority', '130', '6', $$Linkage$$,
15250 FALSE, FALSE, FALSE);
15251 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15252                                  repeatable, mandatory, hidden)
15253 VALUES (1, 'authority', '130', '8', $$Field link and sequence number$$,
15254 TRUE, FALSE, FALSE);
15255 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
15256                               fixed_field, repeatable, mandatory, hidden)
15257 VALUES (1, 'authority', '148', $$Heading-Chronological Term$$, $$Chronological term used as a heading in an established heading record, an established heading and subdivision record, a traced or untraced reference record, or a reference and subdivision record.$$,
15258 FALSE, FALSE, FALSE, FALSE);
15259 INSERT INTO config.record_attr_definition(name, label)
15260 VALUES ('marc21_authority_148_ind_1', 'MARC 21 authority field 148 indicator position 1');
15261 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15262 VALUES ('marc21_authority_148_ind_1', '#', $$Undefined$$, FALSE, TRUE);
15263 INSERT INTO config.record_attr_definition(name, label)
15264 VALUES ('marc21_authority_148_ind_2', 'MARC 21 authority field 148 indicator position 2');
15265 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15266 VALUES ('marc21_authority_148_ind_2', '#', $$Undefined$$, FALSE, TRUE);
15267 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15268                                  repeatable, mandatory, hidden)
15269 VALUES (1, 'authority', '148', 'a', $$Chronological term$$,
15270 FALSE, FALSE, FALSE);
15271 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15272                                  repeatable, mandatory, hidden)
15273 VALUES (1, 'authority', '148', 'v', $$Form subdivision$$,
15274 TRUE, FALSE, FALSE);
15275 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15276                                  repeatable, mandatory, hidden)
15277 VALUES (1, 'authority', '148', 'x', $$General subdivision$$,
15278 TRUE, FALSE, FALSE);
15279 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15280                                  repeatable, mandatory, hidden)
15281 VALUES (1, 'authority', '148', 'y', $$Chronological subdivision$$,
15282 TRUE, FALSE, FALSE);
15283 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15284                                  repeatable, mandatory, hidden)
15285 VALUES (1, 'authority', '148', 'z', $$Geographic subdivision$$,
15286 TRUE, FALSE, FALSE);
15287 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15288                                  repeatable, mandatory, hidden)
15289 VALUES (1, 'authority', '148', '6', $$Linkage$$,
15290 FALSE, FALSE, FALSE);
15291 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15292                                  repeatable, mandatory, hidden)
15293 VALUES (1, 'authority', '148', '8', $$Field link and sequence number$$,
15294 TRUE, FALSE, FALSE);
15295 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
15296                               fixed_field, repeatable, mandatory, hidden)
15297 VALUES (1, 'authority', '150', $$Heading-Topical Term$$, $$Topical term used as a heading in an established heading record, an established heading and subdivision record, a traced or an untraced reference record, a reference and subdivision record, or a node label record.$$,
15298 FALSE, FALSE, FALSE, FALSE);
15299 INSERT INTO config.record_attr_definition(name, label)
15300 VALUES ('marc21_authority_150_ind_1', 'MARC 21 authority field 150 indicator position 1');
15301 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15302 VALUES ('marc21_authority_150_ind_1', '#', $$Undefined$$, FALSE, TRUE);
15303 INSERT INTO config.record_attr_definition(name, label)
15304 VALUES ('marc21_authority_150_ind_2', 'MARC 21 authority field 150 indicator position 2');
15305 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15306 VALUES ('marc21_authority_150_ind_2', '#', $$Undefined$$, FALSE, TRUE);
15307 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15308                                  repeatable, mandatory, hidden)
15309 VALUES (1, 'authority', '150', 'a', $$Topical term or geographic name entry element$$,
15310 FALSE, FALSE, FALSE);
15311 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15312                                  repeatable, mandatory, hidden)
15313 VALUES (1, 'authority', '150', 'b', $$Topical term following geographic name entry element$$,
15314 FALSE, FALSE, FALSE);
15315 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15316                                  repeatable, mandatory, hidden)
15317 VALUES (1, 'authority', '150', 'v', $$Form subdivision$$,
15318 TRUE, FALSE, FALSE);
15319 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15320                                  repeatable, mandatory, hidden)
15321 VALUES (1, 'authority', '150', 'x', $$General subdivision$$,
15322 TRUE, FALSE, FALSE);
15323 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15324                                  repeatable, mandatory, hidden)
15325 VALUES (1, 'authority', '150', 'y', $$Chronological subdivision$$,
15326 TRUE, FALSE, FALSE);
15327 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15328                                  repeatable, mandatory, hidden)
15329 VALUES (1, 'authority', '150', 'z', $$Geographic subdivision$$,
15330 TRUE, FALSE, FALSE);
15331 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15332                                  repeatable, mandatory, hidden)
15333 VALUES (1, 'authority', '150', '6', $$Linkage$$,
15334 FALSE, FALSE, FALSE);
15335 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15336                                  repeatable, mandatory, hidden)
15337 VALUES (1, 'authority', '150', '8', $$Field link and sequence number$$,
15338 TRUE, FALSE, FALSE);
15339 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
15340                               fixed_field, repeatable, mandatory, hidden)
15341 VALUES (1, 'authority', '151', $$Heading-Geographic Name$$, $$Geographic name used as a heading in an established heading record, an established heading and subdivision record, a traced or an untraced reference record, or a reference and subdivision record.$$,
15342 FALSE, FALSE, FALSE, FALSE);
15343 INSERT INTO config.record_attr_definition(name, label)
15344 VALUES ('marc21_authority_151_ind_1', 'MARC 21 authority field 151 indicator position 1');
15345 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15346 VALUES ('marc21_authority_151_ind_1', '#', $$Undefined$$, FALSE, TRUE);
15347 INSERT INTO config.record_attr_definition(name, label)
15348 VALUES ('marc21_authority_151_ind_2', 'MARC 21 authority field 151 indicator position 2');
15349 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15350 VALUES ('marc21_authority_151_ind_2', '#', $$Undefined$$, FALSE, TRUE);
15351 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15352                                  repeatable, mandatory, hidden)
15353 VALUES (1, 'authority', '151', 'a', $$Geographic name$$,
15354 FALSE, FALSE, FALSE);
15355 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15356                                  repeatable, mandatory, hidden)
15357 VALUES (1, 'authority', '151', 'v', $$Form subdivision$$,
15358 TRUE, FALSE, FALSE);
15359 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15360                                  repeatable, mandatory, hidden)
15361 VALUES (1, 'authority', '151', 'x', $$General subdivision$$,
15362 TRUE, FALSE, FALSE);
15363 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15364                                  repeatable, mandatory, hidden)
15365 VALUES (1, 'authority', '151', 'y', $$Chronological subdivision$$,
15366 TRUE, FALSE, FALSE);
15367 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15368                                  repeatable, mandatory, hidden)
15369 VALUES (1, 'authority', '151', 'z', $$Geographic subdivision$$,
15370 TRUE, FALSE, FALSE);
15371 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15372                                  repeatable, mandatory, hidden)
15373 VALUES (1, 'authority', '151', '6', $$Linkage$$,
15374 FALSE, FALSE, FALSE);
15375 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15376                                  repeatable, mandatory, hidden)
15377 VALUES (1, 'authority', '151', '8', $$Field link and sequence number$$,
15378 TRUE, FALSE, FALSE);
15379 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
15380                               fixed_field, repeatable, mandatory, hidden)
15381 VALUES (1, 'authority', '155', $$Heading-Genre/Form Term$$, $$Genre or form term used as a heading in an established heading record, an established heading and subdivision record, a traced or an untraced reference record, or a reference and subdivision record. The term may consist of more than one word.$$,
15382 FALSE, FALSE, FALSE, FALSE);
15383 INSERT INTO config.record_attr_definition(name, label)
15384 VALUES ('marc21_authority_155_ind_1', 'MARC 21 authority field 155 indicator position 1');
15385 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15386 VALUES ('marc21_authority_155_ind_1', '#', $$Undefined$$, FALSE, TRUE);
15387 INSERT INTO config.record_attr_definition(name, label)
15388 VALUES ('marc21_authority_155_ind_2', 'MARC 21 authority field 155 indicator position 2');
15389 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15390 VALUES ('marc21_authority_155_ind_2', '#', $$Undefined$$, FALSE, TRUE);
15391 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15392                                  repeatable, mandatory, hidden)
15393 VALUES (1, 'authority', '155', 'a', $$Genre/form term$$,
15394 FALSE, FALSE, FALSE);
15395 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15396                                  repeatable, mandatory, hidden)
15397 VALUES (1, 'authority', '155', 'v', $$Form subdivision$$,
15398 TRUE, FALSE, FALSE);
15399 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15400                                  repeatable, mandatory, hidden)
15401 VALUES (1, 'authority', '155', 'x', $$General subdivision$$,
15402 TRUE, FALSE, FALSE);
15403 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15404                                  repeatable, mandatory, hidden)
15405 VALUES (1, 'authority', '155', 'y', $$Chronological subdivision$$,
15406 TRUE, FALSE, FALSE);
15407 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15408                                  repeatable, mandatory, hidden)
15409 VALUES (1, 'authority', '155', 'z', $$Geographic subdivision$$,
15410 TRUE, FALSE, FALSE);
15411 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15412                                  repeatable, mandatory, hidden)
15413 VALUES (1, 'authority', '155', '6', $$Linkage$$,
15414 FALSE, FALSE, FALSE);
15415 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15416                                  repeatable, mandatory, hidden)
15417 VALUES (1, 'authority', '155', '8', $$Field link and sequence number$$,
15418 TRUE, FALSE, FALSE);
15419 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
15420                               fixed_field, repeatable, mandatory, hidden)
15421 VALUES (1, 'authority', '180', $$Heading-General Subdivision$$, $$Topical, form, or language term used as a heading in a subdivision record.$$,
15422 FALSE, FALSE, FALSE, FALSE);
15423 INSERT INTO config.record_attr_definition(name, label)
15424 VALUES ('marc21_authority_180_ind_1', 'MARC 21 authority field 180 indicator position 1');
15425 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15426 VALUES ('marc21_authority_180_ind_1', '#', $$Undefined$$, FALSE, TRUE);
15427 INSERT INTO config.record_attr_definition(name, label)
15428 VALUES ('marc21_authority_180_ind_2', 'MARC 21 authority field 180 indicator position 2');
15429 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15430 VALUES ('marc21_authority_180_ind_2', '#', $$Undefined$$, FALSE, TRUE);
15431 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15432                                  repeatable, mandatory, hidden)
15433 VALUES (1, 'authority', '180', 'v', $$Form subdivision$$,
15434 TRUE, FALSE, FALSE);
15435 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15436                                  repeatable, mandatory, hidden)
15437 VALUES (1, 'authority', '180', 'x', $$General subdivision$$,
15438 TRUE, FALSE, FALSE);
15439 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15440                                  repeatable, mandatory, hidden)
15441 VALUES (1, 'authority', '180', 'y', $$Chronological subdivision$$,
15442 TRUE, FALSE, FALSE);
15443 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15444                                  repeatable, mandatory, hidden)
15445 VALUES (1, 'authority', '180', 'z', $$Geographic subdivision$$,
15446 TRUE, FALSE, FALSE);
15447 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15448                                  repeatable, mandatory, hidden)
15449 VALUES (1, 'authority', '180', '6', $$Linkage$$,
15450 FALSE, FALSE, FALSE);
15451 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15452                                  repeatable, mandatory, hidden)
15453 VALUES (1, 'authority', '180', '8', $$Field link and sequence number$$,
15454 TRUE, FALSE, FALSE);
15455 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
15456                               fixed_field, repeatable, mandatory, hidden)
15457 VALUES (1, 'authority', '181', $$Heading-Geographic Subdivision$$, $$Geographic name or term used as a heading in a subdivision record.$$,
15458 FALSE, FALSE, FALSE, FALSE);
15459 INSERT INTO config.record_attr_definition(name, label)
15460 VALUES ('marc21_authority_181_ind_1', 'MARC 21 authority field 181 indicator position 1');
15461 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15462 VALUES ('marc21_authority_181_ind_1', '#', $$Undefined$$, FALSE, TRUE);
15463 INSERT INTO config.record_attr_definition(name, label)
15464 VALUES ('marc21_authority_181_ind_2', 'MARC 21 authority field 181 indicator position 2');
15465 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15466 VALUES ('marc21_authority_181_ind_2', '#', $$Undefined$$, FALSE, TRUE);
15467 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15468                                  repeatable, mandatory, hidden)
15469 VALUES (1, 'authority', '181', 'v', $$Form subdivision$$,
15470 TRUE, FALSE, FALSE);
15471 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15472                                  repeatable, mandatory, hidden)
15473 VALUES (1, 'authority', '181', 'x', $$General subdivision$$,
15474 TRUE, FALSE, FALSE);
15475 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15476                                  repeatable, mandatory, hidden)
15477 VALUES (1, 'authority', '181', 'y', $$Chronological subdivision$$,
15478 TRUE, FALSE, FALSE);
15479 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15480                                  repeatable, mandatory, hidden)
15481 VALUES (1, 'authority', '181', 'z', $$Geographic subdivision$$,
15482 TRUE, FALSE, FALSE);
15483 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15484                                  repeatable, mandatory, hidden)
15485 VALUES (1, 'authority', '181', '6', $$Linkage$$,
15486 FALSE, FALSE, FALSE);
15487 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15488                                  repeatable, mandatory, hidden)
15489 VALUES (1, 'authority', '181', '8', $$Field link and sequence number$$,
15490 TRUE, FALSE, FALSE);
15491 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
15492                               fixed_field, repeatable, mandatory, hidden)
15493 VALUES (1, 'authority', '182', $$Heading-Chronological Subdivision$$, $$Chronological term used as a heading in a subdivision record.$$,
15494 FALSE, FALSE, FALSE, FALSE);
15495 INSERT INTO config.record_attr_definition(name, label)
15496 VALUES ('marc21_authority_182_ind_1', 'MARC 21 authority field 182 indicator position 1');
15497 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15498 VALUES ('marc21_authority_182_ind_1', '#', $$Undefined$$, FALSE, TRUE);
15499 INSERT INTO config.record_attr_definition(name, label)
15500 VALUES ('marc21_authority_182_ind_2', 'MARC 21 authority field 182 indicator position 2');
15501 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15502 VALUES ('marc21_authority_182_ind_2', '#', $$Undefined$$, FALSE, TRUE);
15503 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15504                                  repeatable, mandatory, hidden)
15505 VALUES (1, 'authority', '182', 'v', $$Form subdivision$$,
15506 TRUE, FALSE, FALSE);
15507 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15508                                  repeatable, mandatory, hidden)
15509 VALUES (1, 'authority', '182', 'x', $$General subdivision$$,
15510 TRUE, FALSE, FALSE);
15511 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15512                                  repeatable, mandatory, hidden)
15513 VALUES (1, 'authority', '182', 'y', $$Chronological subdivision$$,
15514 TRUE, FALSE, FALSE);
15515 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15516                                  repeatable, mandatory, hidden)
15517 VALUES (1, 'authority', '182', 'z', $$Geographic subdivision$$,
15518 TRUE, FALSE, FALSE);
15519 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15520                                  repeatable, mandatory, hidden)
15521 VALUES (1, 'authority', '182', '6', $$Linkage$$,
15522 FALSE, FALSE, FALSE);
15523 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15524                                  repeatable, mandatory, hidden)
15525 VALUES (1, 'authority', '182', '8', $$Field link and sequence number$$,
15526 TRUE, FALSE, FALSE);
15527 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
15528                               fixed_field, repeatable, mandatory, hidden)
15529 VALUES (1, 'authority', '185', $$Heading-Form Subdivision$$, $$Form or genre term used as a heading in a subdivision record.$$,
15530 FALSE, FALSE, FALSE, FALSE);
15531 INSERT INTO config.record_attr_definition(name, label)
15532 VALUES ('marc21_authority_185_ind_1', 'MARC 21 authority field 185 indicator position 1');
15533 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15534 VALUES ('marc21_authority_185_ind_1', '#', $$Undefined$$, FALSE, TRUE);
15535 INSERT INTO config.record_attr_definition(name, label)
15536 VALUES ('marc21_authority_185_ind_2', 'MARC 21 authority field 185 indicator position 2');
15537 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15538 VALUES ('marc21_authority_185_ind_2', '#', $$Undefined$$, FALSE, TRUE);
15539 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15540                                  repeatable, mandatory, hidden)
15541 VALUES (1, 'authority', '185', 'v', $$Form subdivision$$,
15542 TRUE, FALSE, FALSE);
15543 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15544                                  repeatable, mandatory, hidden)
15545 VALUES (1, 'authority', '185', 'x', $$General subdivision$$,
15546 TRUE, FALSE, FALSE);
15547 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15548                                  repeatable, mandatory, hidden)
15549 VALUES (1, 'authority', '185', 'y', $$Chronological subdivision$$,
15550 TRUE, FALSE, FALSE);
15551 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15552                                  repeatable, mandatory, hidden)
15553 VALUES (1, 'authority', '185', 'z', $$Geographic subdivision$$,
15554 TRUE, FALSE, FALSE);
15555 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15556                                  repeatable, mandatory, hidden)
15557 VALUES (1, 'authority', '185', '6', $$Linkage$$,
15558 FALSE, FALSE, FALSE);
15559 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15560                                  repeatable, mandatory, hidden)
15561 VALUES (1, 'authority', '185', '8', $$Field link and sequence number$$,
15562 TRUE, FALSE, FALSE);
15563 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
15564                               fixed_field, repeatable, mandatory, hidden)
15565 VALUES (1, 'authority', '260', $$Complex See Reference-Subject$$, $$and that are required when relationships exist between unestablished and established subjects that cannot be adequately conveyed by one or more simple cross references generated from 4XX See From Tracing fields in the established heading record. A phrase such as may be generated for display.$$,
15566 FALSE, TRUE, FALSE, FALSE);
15567 INSERT INTO config.record_attr_definition(name, label)
15568 VALUES ('marc21_authority_260_ind_1', 'MARC 21 authority field 260 indicator position 1');
15569 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15570 VALUES ('marc21_authority_260_ind_1', '#', $$Undefined$$, FALSE, TRUE);
15571 INSERT INTO config.record_attr_definition(name, label)
15572 VALUES ('marc21_authority_260_ind_2', 'MARC 21 authority field 260 indicator position 2');
15573 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15574 VALUES ('marc21_authority_260_ind_2', '#', $$Undefined$$, FALSE, TRUE);
15575 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15576                                  repeatable, mandatory, hidden)
15577 VALUES (1, 'authority', '260', 'a', $$Heading referred to$$,
15578 TRUE, FALSE, FALSE);
15579 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15580                                  repeatable, mandatory, hidden)
15581 VALUES (1, 'authority', '260', 'i', $$Explanatory text$$,
15582 TRUE, FALSE, FALSE);
15583 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15584                                  repeatable, mandatory, hidden)
15585 VALUES (1, 'authority', '260', '0', $$Authority record control number$$,
15586 TRUE, FALSE, FALSE);
15587 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15588                                  repeatable, mandatory, hidden)
15589 VALUES (1, 'authority', '260', '6', $$Linkage$$,
15590 FALSE, FALSE, FALSE);
15591 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15592                                  repeatable, mandatory, hidden)
15593 VALUES (1, 'authority', '260', '8', $$Field link and sequence number$$,
15594 TRUE, FALSE, FALSE);
15595 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
15596                               fixed_field, repeatable, mandatory, hidden)
15597 VALUES (1, 'authority', '336', $$Content Type$$, $$The form of communication through which a work is expressed. Field 336 information enables expression of content types from various lists when the authority is for a title or name/title.$$,
15598 FALSE, TRUE, FALSE, FALSE);
15599 INSERT INTO config.record_attr_definition(name, label)
15600 VALUES ('marc21_authority_336_ind_1', 'MARC 21 authority field 336 indicator position 1');
15601 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15602 VALUES ('marc21_authority_336_ind_1', '#', $$Undefined$$, FALSE, TRUE);
15603 INSERT INTO config.record_attr_definition(name, label)
15604 VALUES ('marc21_authority_336_ind_2', 'MARC 21 authority field 336 indicator position 2');
15605 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15606 VALUES ('marc21_authority_336_ind_2', '#', $$Undefined$$, FALSE, TRUE);
15607 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15608                                  repeatable, mandatory, hidden)
15609 VALUES (1, 'authority', '336', 'a', $$Content type term$$,
15610 TRUE, FALSE, FALSE);
15611 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15612                                  repeatable, mandatory, hidden)
15613 VALUES (1, 'authority', '336', 'b', $$Content type code$$,
15614 TRUE, FALSE, FALSE);
15615 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15616                                  repeatable, mandatory, hidden)
15617 VALUES (1, 'authority', '336', '2', $$Source$$,
15618 FALSE, FALSE, FALSE);
15619 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15620                                  repeatable, mandatory, hidden)
15621 VALUES (1, 'authority', '336', '3', $$Materials specified$$,
15622 FALSE, FALSE, FALSE);
15623 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15624                                  repeatable, mandatory, hidden)
15625 VALUES (1, 'authority', '336', '6', $$Linkage$$,
15626 FALSE, FALSE, FALSE);
15627 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15628                                  repeatable, mandatory, hidden)
15629 VALUES (1, 'authority', '336', '8', $$Field link and sequence number$$,
15630 TRUE, FALSE, FALSE);
15631 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
15632                               fixed_field, repeatable, mandatory, hidden)
15633 VALUES (1, 'authority', '360', $$Complex See Also Reference-Subject$$, $$and the that are required when relationships exist between established subjects that cannot be adequately conveyed by one or more simple cross references generated from 5XX See Also From Tracing fields. A phrase such as may be generated for display.$$,
15634 FALSE, TRUE, FALSE, FALSE);
15635 INSERT INTO config.record_attr_definition(name, label)
15636 VALUES ('marc21_authority_360_ind_1', 'MARC 21 authority field 360 indicator position 1');
15637 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15638 VALUES ('marc21_authority_360_ind_1', '#', $$Undefined$$, FALSE, TRUE);
15639 INSERT INTO config.record_attr_definition(name, label)
15640 VALUES ('marc21_authority_360_ind_2', 'MARC 21 authority field 360 indicator position 2');
15641 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15642 VALUES ('marc21_authority_360_ind_2', '#', $$Undefined$$, FALSE, TRUE);
15643 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15644                                  repeatable, mandatory, hidden)
15645 VALUES (1, 'authority', '360', 'a', $$Heading referred to$$,
15646 TRUE, FALSE, FALSE);
15647 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15648                                  repeatable, mandatory, hidden)
15649 VALUES (1, 'authority', '360', 'i', $$Explanatory text$$,
15650 TRUE, FALSE, FALSE);
15651 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15652                                  repeatable, mandatory, hidden)
15653 VALUES (1, 'authority', '360', '0', $$Authority record control number$$,
15654 TRUE, FALSE, FALSE);
15655 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15656                                  repeatable, mandatory, hidden)
15657 VALUES (1, 'authority', '360', '6', $$Linkage$$,
15658 FALSE, FALSE, FALSE);
15659 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15660                                  repeatable, mandatory, hidden)
15661 VALUES (1, 'authority', '360', '8', $$Field link and sequence number$$,
15662 TRUE, FALSE, FALSE);
15663 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
15664                               fixed_field, repeatable, mandatory, hidden)
15665 VALUES (1, 'authority', '370', $$Associated Place$$, $$A town, city, province, state, and/or country associated with persons, corporate bodies, families, works, and expressions.$$,
15666 FALSE, TRUE, FALSE, FALSE);
15667 INSERT INTO config.record_attr_definition(name, label)
15668 VALUES ('marc21_authority_370_ind_1', 'MARC 21 authority field 370 indicator position 1');
15669 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15670 VALUES ('marc21_authority_370_ind_1', '#', $$Undefined$$, FALSE, TRUE);
15671 INSERT INTO config.record_attr_definition(name, label)
15672 VALUES ('marc21_authority_370_ind_2', 'MARC 21 authority field 370 indicator position 2');
15673 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15674 VALUES ('marc21_authority_370_ind_2', '#', $$Undefined$$, FALSE, TRUE);
15675 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15676                                  repeatable, mandatory, hidden)
15677 VALUES (1, 'authority', '370', 'a', $$Place of birth$$,
15678 FALSE, FALSE, FALSE);
15679 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15680                                  repeatable, mandatory, hidden)
15681 VALUES (1, 'authority', '370', 'b', $$Place of death$$,
15682 FALSE, FALSE, FALSE);
15683 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15684                                  repeatable, mandatory, hidden)
15685 VALUES (1, 'authority', '370', 'c', $$Associated country$$,
15686 TRUE, FALSE, FALSE);
15687 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15688                                  repeatable, mandatory, hidden)
15689 VALUES (1, 'authority', '370', 'e', $$Place of residence/headquarters$$,
15690 TRUE, FALSE, FALSE);
15691 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15692                                  repeatable, mandatory, hidden)
15693 VALUES (1, 'authority', '370', 'f', $$Other associated place$$,
15694 TRUE, FALSE, FALSE);
15695 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15696                                  repeatable, mandatory, hidden)
15697 VALUES (1, 'authority', '370', 'g', $$Place of origin of work$$,
15698 TRUE, FALSE, FALSE);
15699 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15700                                  repeatable, mandatory, hidden)
15701 VALUES (1, 'authority', '370', 's', $$Start period$$,
15702 FALSE, FALSE, FALSE);
15703 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15704                                  repeatable, mandatory, hidden)
15705 VALUES (1, 'authority', '370', 't', $$End period$$,
15706 FALSE, FALSE, FALSE);
15707 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15708                                  repeatable, mandatory, hidden)
15709 VALUES (1, 'authority', '370', 'u', $$Uniform Resource Identifier$$,
15710 TRUE, FALSE, FALSE);
15711 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15712                                  repeatable, mandatory, hidden)
15713 VALUES (1, 'authority', '370', 'v', $$Source of information$$,
15714 TRUE, FALSE, FALSE);
15715 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15716                                  repeatable, mandatory, hidden)
15717 VALUES (1, 'authority', '370', '0', $$Record control number$$,
15718 TRUE, FALSE, FALSE);
15719 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15720                                  repeatable, mandatory, hidden)
15721 VALUES (1, 'authority', '370', '2', $$Source of term$$,
15722 TRUE, FALSE, FALSE);
15723 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15724                                  repeatable, mandatory, hidden)
15725 VALUES (1, 'authority', '370', '6', $$Linkage$$,
15726 FALSE, FALSE, FALSE);
15727 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15728                                  repeatable, mandatory, hidden)
15729 VALUES (1, 'authority', '370', '8', $$Field link and sequence number$$,
15730 TRUE, FALSE, FALSE);
15731 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
15732                               fixed_field, repeatable, mandatory, hidden)
15733 VALUES (1, 'authority', '371', $$Address$$, $$An address (as well as electronic access information such as email, telephone, fax, TTY, etc. numbers) associated with the entity described in the record. Multiple addresses, such as mailing addresses and addresses corresponding to the physical location of an item or facilities, are recorded in separate occurrences of field 371.$$,
15734 FALSE, TRUE, FALSE, FALSE);
15735 INSERT INTO config.record_attr_definition(name, label)
15736 VALUES ('marc21_authority_371_ind_1', 'MARC 21 authority field 371 indicator position 1');
15737 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15738 VALUES ('marc21_authority_371_ind_1', '#', $$Undefined$$, FALSE, TRUE);
15739 INSERT INTO config.record_attr_definition(name, label)
15740 VALUES ('marc21_authority_371_ind_2', 'MARC 21 authority field 371 indicator position 2');
15741 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15742 VALUES ('marc21_authority_371_ind_2', '#', $$Undefined$$, FALSE, TRUE);
15743 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15744                                  repeatable, mandatory, hidden)
15745 VALUES (1, 'authority', '371', 'a', $$Address$$,
15746 TRUE, FALSE, FALSE);
15747 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15748                                  repeatable, mandatory, hidden)
15749 VALUES (1, 'authority', '371', 'b', $$City$$,
15750 FALSE, FALSE, FALSE);
15751 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15752                                  repeatable, mandatory, hidden)
15753 VALUES (1, 'authority', '371', 'c', $$Intermediate jurisdiction$$,
15754 FALSE, FALSE, FALSE);
15755 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15756                                  repeatable, mandatory, hidden)
15757 VALUES (1, 'authority', '371', 'd', $$Country$$,
15758 FALSE, FALSE, FALSE);
15759 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15760                                  repeatable, mandatory, hidden)
15761 VALUES (1, 'authority', '371', 'e', $$Postal Code$$,
15762 FALSE, FALSE, FALSE);
15763 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15764                                  repeatable, mandatory, hidden)
15765 VALUES (1, 'authority', '371', 'm', $$Electronic mail address$$,
15766 TRUE, FALSE, FALSE);
15767 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15768                                  repeatable, mandatory, hidden)
15769 VALUES (1, 'authority', '371', 's', $$Start period$$,
15770 FALSE, FALSE, FALSE);
15771 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15772                                  repeatable, mandatory, hidden)
15773 VALUES (1, 'authority', '371', 't', $$End period$$,
15774 FALSE, FALSE, FALSE);
15775 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15776                                  repeatable, mandatory, hidden)
15777 VALUES (1, 'authority', '371', 'u', $$Uniform Resource Identifier$$,
15778 TRUE, FALSE, FALSE);
15779 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15780                                  repeatable, mandatory, hidden)
15781 VALUES (1, 'authority', '371', 'v', $$Source of information$$,
15782 TRUE, FALSE, FALSE);
15783 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15784                                  repeatable, mandatory, hidden)
15785 VALUES (1, 'authority', '371', 'z', $$Public note$$,
15786 TRUE, FALSE, FALSE);
15787 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15788                                  repeatable, mandatory, hidden)
15789 VALUES (1, 'authority', '371', '4', $$Relator code$$,
15790 TRUE, FALSE, FALSE);
15791 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15792                                  repeatable, mandatory, hidden)
15793 VALUES (1, 'authority', '371', '6', $$Linkage$$,
15794 FALSE, FALSE, FALSE);
15795 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15796                                  repeatable, mandatory, hidden)
15797 VALUES (1, 'authority', '371', '8', $$Field link and sequence number$$,
15798 TRUE, FALSE, FALSE);
15799 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
15800                               fixed_field, repeatable, mandatory, hidden)
15801 VALUES (1, 'authority', '372', $$Field of Activity$$, $$: a field of endeavor, area of expertise, etc., in which the person is engaged or was engaged$$,
15802 FALSE, TRUE, FALSE, FALSE);
15803 INSERT INTO config.record_attr_definition(name, label)
15804 VALUES ('marc21_authority_372_ind_1', 'MARC 21 authority field 372 indicator position 1');
15805 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15806 VALUES ('marc21_authority_372_ind_1', '#', $$Undefined$$, FALSE, TRUE);
15807 INSERT INTO config.record_attr_definition(name, label)
15808 VALUES ('marc21_authority_372_ind_2', 'MARC 21 authority field 372 indicator position 2');
15809 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15810 VALUES ('marc21_authority_372_ind_2', '#', $$Undefined$$, FALSE, TRUE);
15811 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15812                                  repeatable, mandatory, hidden)
15813 VALUES (1, 'authority', '372', 'a', $$Field of activity$$,
15814 TRUE, FALSE, FALSE);
15815 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15816                                  repeatable, mandatory, hidden)
15817 VALUES (1, 'authority', '372', 's', $$Start period$$,
15818 FALSE, FALSE, FALSE);
15819 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15820                                  repeatable, mandatory, hidden)
15821 VALUES (1, 'authority', '372', 't', $$End period$$,
15822 FALSE, FALSE, FALSE);
15823 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15824                                  repeatable, mandatory, hidden)
15825 VALUES (1, 'authority', '372', 'u', $$Uniform Resource Identifier$$,
15826 TRUE, FALSE, FALSE);
15827 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15828                                  repeatable, mandatory, hidden)
15829 VALUES (1, 'authority', '372', 'v', $$Source of information$$,
15830 TRUE, FALSE, FALSE);
15831 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15832                                  repeatable, mandatory, hidden)
15833 VALUES (1, 'authority', '372', '0', $$Record control number$$,
15834 TRUE, FALSE, FALSE);
15835 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15836                                  repeatable, mandatory, hidden)
15837 VALUES (1, 'authority', '372', '2', $$Source of term$$,
15838 FALSE, FALSE, FALSE);
15839 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15840                                  repeatable, mandatory, hidden)
15841 VALUES (1, 'authority', '372', '6', $$Linkage$$,
15842 FALSE, FALSE, FALSE);
15843 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15844                                  repeatable, mandatory, hidden)
15845 VALUES (1, 'authority', '372', '8', $$Field link and sequence number$$,
15846 TRUE, FALSE, FALSE);
15847 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
15848                               fixed_field, repeatable, mandatory, hidden)
15849 VALUES (1, 'authority', '373', $$Affiliation$$, $$Information about a group with which a person is or has been affiliated, including dates of affiliation.$$,
15850 FALSE, TRUE, FALSE, FALSE);
15851 INSERT INTO config.record_attr_definition(name, label)
15852 VALUES ('marc21_authority_373_ind_1', 'MARC 21 authority field 373 indicator position 1');
15853 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15854 VALUES ('marc21_authority_373_ind_1', '#', $$Undefined$$, FALSE, TRUE);
15855 INSERT INTO config.record_attr_definition(name, label)
15856 VALUES ('marc21_authority_373_ind_2', 'MARC 21 authority field 373 indicator position 2');
15857 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15858 VALUES ('marc21_authority_373_ind_2', '#', $$Undefined$$, FALSE, TRUE);
15859 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15860                                  repeatable, mandatory, hidden)
15861 VALUES (1, 'authority', '373', 'a', $$Affiliation$$,
15862 TRUE, FALSE, FALSE);
15863 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15864                                  repeatable, mandatory, hidden)
15865 VALUES (1, 'authority', '373', 's', $$Start period$$,
15866 FALSE, FALSE, FALSE);
15867 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15868                                  repeatable, mandatory, hidden)
15869 VALUES (1, 'authority', '373', 't', $$End period$$,
15870 FALSE, FALSE, FALSE);
15871 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15872                                  repeatable, mandatory, hidden)
15873 VALUES (1, 'authority', '373', 'u', $$Uniform Resource Identifier$$,
15874 TRUE, FALSE, FALSE);
15875 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15876                                  repeatable, mandatory, hidden)
15877 VALUES (1, 'authority', '373', 'v', $$Source of information$$,
15878 TRUE, FALSE, FALSE);
15879 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15880                                  repeatable, mandatory, hidden)
15881 VALUES (1, 'authority', '373', '0', $$Record control number$$,
15882 TRUE, FALSE, FALSE);
15883 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15884                                  repeatable, mandatory, hidden)
15885 VALUES (1, 'authority', '373', '2', $$Source of term$$,
15886 FALSE, FALSE, FALSE);
15887 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15888                                  repeatable, mandatory, hidden)
15889 VALUES (1, 'authority', '373', '6', $$Linkage$$,
15890 FALSE, FALSE, FALSE);
15891 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15892                                  repeatable, mandatory, hidden)
15893 VALUES (1, 'authority', '373', '8', $$Field link and sequence number$$,
15894 TRUE, FALSE, FALSE);
15895 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
15896                               fixed_field, repeatable, mandatory, hidden)
15897 VALUES (1, 'authority', '374', $$Occupation$$, $$Information about profession or occupation in which a person works or has worked, including dates applicable.$$,
15898 FALSE, TRUE, FALSE, FALSE);
15899 INSERT INTO config.record_attr_definition(name, label)
15900 VALUES ('marc21_authority_374_ind_1', 'MARC 21 authority field 374 indicator position 1');
15901 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15902 VALUES ('marc21_authority_374_ind_1', '#', $$Undefined$$, FALSE, TRUE);
15903 INSERT INTO config.record_attr_definition(name, label)
15904 VALUES ('marc21_authority_374_ind_2', 'MARC 21 authority field 374 indicator position 2');
15905 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15906 VALUES ('marc21_authority_374_ind_2', '#', $$Undefined$$, FALSE, TRUE);
15907 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15908                                  repeatable, mandatory, hidden)
15909 VALUES (1, 'authority', '374', 'a', $$Occupation$$,
15910 TRUE, FALSE, FALSE);
15911 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15912                                  repeatable, mandatory, hidden)
15913 VALUES (1, 'authority', '374', 's', $$Start period$$,
15914 FALSE, FALSE, FALSE);
15915 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15916                                  repeatable, mandatory, hidden)
15917 VALUES (1, 'authority', '374', 't', $$End period$$,
15918 FALSE, FALSE, FALSE);
15919 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15920                                  repeatable, mandatory, hidden)
15921 VALUES (1, 'authority', '374', 'u', $$Uniform Resource Identifier$$,
15922 TRUE, FALSE, FALSE);
15923 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15924                                  repeatable, mandatory, hidden)
15925 VALUES (1, 'authority', '374', 'v', $$Source of information$$,
15926 TRUE, FALSE, FALSE);
15927 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15928                                  repeatable, mandatory, hidden)
15929 VALUES (1, 'authority', '374', '0', $$Record control number$$,
15930 TRUE, FALSE, FALSE);
15931 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15932                                  repeatable, mandatory, hidden)
15933 VALUES (1, 'authority', '374', '2', $$Source of term$$,
15934 FALSE, FALSE, FALSE);
15935 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15936                                  repeatable, mandatory, hidden)
15937 VALUES (1, 'authority', '374', '6', $$Linkage$$,
15938 FALSE, FALSE, FALSE);
15939 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15940                                  repeatable, mandatory, hidden)
15941 VALUES (1, 'authority', '374', '8', $$Field link and sequence number$$,
15942 TRUE, FALSE, FALSE);
15943 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
15944                               fixed_field, repeatable, mandatory, hidden)
15945 VALUES (1, 'authority', '375', $$Gender$$, $$Information about gender of a person, including dates applicable.$$,
15946 FALSE, TRUE, FALSE, FALSE);
15947 INSERT INTO config.record_attr_definition(name, label)
15948 VALUES ('marc21_authority_375_ind_1', 'MARC 21 authority field 375 indicator position 1');
15949 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15950 VALUES ('marc21_authority_375_ind_1', '#', $$Undefined$$, FALSE, TRUE);
15951 INSERT INTO config.record_attr_definition(name, label)
15952 VALUES ('marc21_authority_375_ind_2', 'MARC 21 authority field 375 indicator position 2');
15953 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15954 VALUES ('marc21_authority_375_ind_2', '#', $$Undefined$$, FALSE, TRUE);
15955 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15956                                  repeatable, mandatory, hidden)
15957 VALUES (1, 'authority', '375', 'a', $$Gender$$,
15958 TRUE, FALSE, FALSE);
15959 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15960                                  repeatable, mandatory, hidden)
15961 VALUES (1, 'authority', '375', 's', $$Start period$$,
15962 FALSE, FALSE, FALSE);
15963 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15964                                  repeatable, mandatory, hidden)
15965 VALUES (1, 'authority', '375', 't', $$End period$$,
15966 FALSE, FALSE, FALSE);
15967 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15968                                  repeatable, mandatory, hidden)
15969 VALUES (1, 'authority', '375', 'u', $$Uniform Resource Identifier$$,
15970 TRUE, FALSE, FALSE);
15971 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15972                                  repeatable, mandatory, hidden)
15973 VALUES (1, 'authority', '375', 'v', $$Source of information$$,
15974 TRUE, FALSE, FALSE);
15975 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15976                                  repeatable, mandatory, hidden)
15977 VALUES (1, 'authority', '375', '2', $$Source of term$$,
15978 FALSE, FALSE, FALSE);
15979 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15980                                  repeatable, mandatory, hidden)
15981 VALUES (1, 'authority', '375', '6', $$Linkage$$,
15982 FALSE, FALSE, FALSE);
15983 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
15984                                  repeatable, mandatory, hidden)
15985 VALUES (1, 'authority', '375', '8', $$Field link and sequence number$$,
15986 TRUE, FALSE, FALSE);
15987 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
15988                               fixed_field, repeatable, mandatory, hidden)
15989 VALUES (1, 'authority', '376', $$Family Information$$, $$Additional information about families, including type of family, prominent member of the family, and hereditary title.$$,
15990 FALSE, TRUE, FALSE, FALSE);
15991 INSERT INTO config.record_attr_definition(name, label)
15992 VALUES ('marc21_authority_376_ind_1', 'MARC 21 authority field 376 indicator position 1');
15993 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15994 VALUES ('marc21_authority_376_ind_1', '#', $$Undefined$$, FALSE, TRUE);
15995 INSERT INTO config.record_attr_definition(name, label)
15996 VALUES ('marc21_authority_376_ind_2', 'MARC 21 authority field 376 indicator position 2');
15997 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
15998 VALUES ('marc21_authority_376_ind_2', '#', $$Undefined$$, FALSE, TRUE);
15999 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16000                                  repeatable, mandatory, hidden)
16001 VALUES (1, 'authority', '376', 'a', $$Type of family$$,
16002 TRUE, FALSE, FALSE);
16003 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16004                                  repeatable, mandatory, hidden)
16005 VALUES (1, 'authority', '376', 'b', $$Name of prominent member$$,
16006 TRUE, FALSE, FALSE);
16007 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16008                                  repeatable, mandatory, hidden)
16009 VALUES (1, 'authority', '376', 'c', $$Hereditary title$$,
16010 TRUE, FALSE, FALSE);
16011 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16012                                  repeatable, mandatory, hidden)
16013 VALUES (1, 'authority', '376', 's', $$Start period$$,
16014 FALSE, FALSE, FALSE);
16015 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16016                                  repeatable, mandatory, hidden)
16017 VALUES (1, 'authority', '376', 't', $$End period$$,
16018 FALSE, FALSE, FALSE);
16019 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16020                                  repeatable, mandatory, hidden)
16021 VALUES (1, 'authority', '376', 'u', $$Uniform Resource Identifier$$,
16022 TRUE, FALSE, FALSE);
16023 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16024                                  repeatable, mandatory, hidden)
16025 VALUES (1, 'authority', '376', 'v', $$Source of information$$,
16026 TRUE, FALSE, FALSE);
16027 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16028                                  repeatable, mandatory, hidden)
16029 VALUES (1, 'authority', '376', '0', $$Record control number$$,
16030 TRUE, FALSE, FALSE);
16031 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16032                                  repeatable, mandatory, hidden)
16033 VALUES (1, 'authority', '376', '2', $$Source of term$$,
16034 FALSE, FALSE, FALSE);
16035 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16036                                  repeatable, mandatory, hidden)
16037 VALUES (1, 'authority', '376', '6', $$Linkage$$,
16038 FALSE, FALSE, FALSE);
16039 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16040                                  repeatable, mandatory, hidden)
16041 VALUES (1, 'authority', '376', '8', $$Field link and sequence number$$,
16042 TRUE, FALSE, FALSE);
16043 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
16044                               fixed_field, repeatable, mandatory, hidden)
16045 VALUES (1, 'authority', '377', $$Associated Language$$, $$: the language a person uses when writing for publication, broadcasting, etc.$$,
16046 FALSE, TRUE, FALSE, FALSE);
16047 INSERT INTO config.record_attr_definition(name, label)
16048 VALUES ('marc21_authority_377_ind_1', 'MARC 21 authority field 377 indicator position 1');
16049 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16050 VALUES ('marc21_authority_377_ind_1', '#', $$Undefined$$, FALSE, TRUE);
16051 INSERT INTO config.record_attr_definition(name, label)
16052 VALUES ('marc21_authority_377_ind_2', 'MARC 21 authority field 377 indicator position 2');
16053 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16054 VALUES ('marc21_authority_377_ind_2', '#', $$MARC language code$$, FALSE, TRUE);
16055 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16056 VALUES ('marc21_authority_377_ind_2', '7', $$Source specified in $2$$, FALSE, TRUE);
16057 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16058                                  repeatable, mandatory, hidden)
16059 VALUES (1, 'authority', '377', 'a', $$Language code$$,
16060 TRUE, FALSE, FALSE);
16061 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16062                                  repeatable, mandatory, hidden)
16063 VALUES (1, 'authority', '377', '2', $$Source of term$$,
16064 FALSE, FALSE, FALSE);
16065 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16066                                  repeatable, mandatory, hidden)
16067 VALUES (1, 'authority', '377', '6', $$Linkage$$,
16068 FALSE, FALSE, FALSE);
16069 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16070                                  repeatable, mandatory, hidden)
16071 VALUES (1, 'authority', '377', '8', $$Field link and sequence number$$,
16072 TRUE, FALSE, FALSE);
16073 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
16074                               fixed_field, repeatable, mandatory, hidden)
16075 VALUES (1, 'authority', '380', $$Form of Work$$, $$A class or genre to which a work belongs. May be used to differentiate a work from another work with the same title.$$,
16076 FALSE, TRUE, FALSE, FALSE);
16077 INSERT INTO config.record_attr_definition(name, label)
16078 VALUES ('marc21_authority_380_ind_1', 'MARC 21 authority field 380 indicator position 1');
16079 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16080 VALUES ('marc21_authority_380_ind_1', '#', $$Undefined$$, FALSE, TRUE);
16081 INSERT INTO config.record_attr_definition(name, label)
16082 VALUES ('marc21_authority_380_ind_2', 'MARC 21 authority field 380 indicator position 2');
16083 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16084 VALUES ('marc21_authority_380_ind_2', '#', $$Undefined$$, FALSE, TRUE);
16085 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16086                                  repeatable, mandatory, hidden)
16087 VALUES (1, 'authority', '380', 'a', $$Form of work$$,
16088 TRUE, FALSE, FALSE);
16089 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16090                                  repeatable, mandatory, hidden)
16091 VALUES (1, 'authority', '380', '0', $$Record control number$$,
16092 TRUE, FALSE, FALSE);
16093 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16094                                  repeatable, mandatory, hidden)
16095 VALUES (1, 'authority', '380', '2', $$Source of term$$,
16096 FALSE, FALSE, FALSE);
16097 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16098                                  repeatable, mandatory, hidden)
16099 VALUES (1, 'authority', '380', '6', $$Linkage$$,
16100 FALSE, FALSE, FALSE);
16101 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16102                                  repeatable, mandatory, hidden)
16103 VALUES (1, 'authority', '380', '8', $$Field link and sequence number$$,
16104 TRUE, FALSE, FALSE);
16105 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
16106                               fixed_field, repeatable, mandatory, hidden)
16107 VALUES (1, 'authority', '381', $$Other Distinguishing Characteristics of Work or Expression$$, $$Any characteristic that is not accommodated in a special field that serves to characterize a work or expression. Examples are an issuing body, arranged statement of music, version, or a geographic term. May be used to differentiate a work from another work with the same title.$$,
16108 FALSE, TRUE, FALSE, FALSE);
16109 INSERT INTO config.record_attr_definition(name, label)
16110 VALUES ('marc21_authority_381_ind_1', 'MARC 21 authority field 381 indicator position 1');
16111 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16112 VALUES ('marc21_authority_381_ind_1', '#', $$Undefined$$, FALSE, TRUE);
16113 INSERT INTO config.record_attr_definition(name, label)
16114 VALUES ('marc21_authority_381_ind_2', 'MARC 21 authority field 381 indicator position 2');
16115 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16116 VALUES ('marc21_authority_381_ind_2', '#', $$Undefined$$, FALSE, TRUE);
16117 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16118                                  repeatable, mandatory, hidden)
16119 VALUES (1, 'authority', '381', 'a', $$Other distinguishing characteristic$$,
16120 TRUE, FALSE, FALSE);
16121 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16122                                  repeatable, mandatory, hidden)
16123 VALUES (1, 'authority', '381', 'u', $$Uniform Resource Identifier$$,
16124 TRUE, FALSE, FALSE);
16125 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16126                                  repeatable, mandatory, hidden)
16127 VALUES (1, 'authority', '381', 'v', $$Source of information$$,
16128 TRUE, FALSE, FALSE);
16129 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16130                                  repeatable, mandatory, hidden)
16131 VALUES (1, 'authority', '381', '0', $$Record control number$$,
16132 TRUE, FALSE, FALSE);
16133 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16134                                  repeatable, mandatory, hidden)
16135 VALUES (1, 'authority', '381', '2', $$Source of term$$,
16136 FALSE, FALSE, FALSE);
16137 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16138                                  repeatable, mandatory, hidden)
16139 VALUES (1, 'authority', '381', '6', $$Linkage$$,
16140 FALSE, FALSE, FALSE);
16141 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16142                                  repeatable, mandatory, hidden)
16143 VALUES (1, 'authority', '381', '8', $$Field link and sequence number$$,
16144 TRUE, FALSE, FALSE);
16145 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
16146                               fixed_field, repeatable, mandatory, hidden)
16147 VALUES (1, 'authority', '382', $$Medium of Performance$$, $$The instrumental, vocal, and/or other medium of performance for which a musical work was originally conceived or for which a musical expression is written or performed. May be used to differentiate a musical work or expression from another with the same title.$$,
16148 FALSE, TRUE, FALSE, FALSE);
16149 INSERT INTO config.record_attr_definition(name, label)
16150 VALUES ('marc21_authority_382_ind_1', 'MARC 21 authority field 382 indicator position 1');
16151 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16152 VALUES ('marc21_authority_382_ind_1', '#', $$Undefined$$, FALSE, TRUE);
16153 INSERT INTO config.record_attr_definition(name, label)
16154 VALUES ('marc21_authority_382_ind_2', 'MARC 21 authority field 382 indicator position 2');
16155 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16156 VALUES ('marc21_authority_382_ind_2', '#', $$Undefined$$, FALSE, TRUE);
16157 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16158                                  repeatable, mandatory, hidden)
16159 VALUES (1, 'authority', '382', 'a', $$Medium of performance$$,
16160 TRUE, FALSE, FALSE);
16161 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16162                                  repeatable, mandatory, hidden)
16163 VALUES (1, 'authority', '382', '0', $$Record control number$$,
16164 TRUE, FALSE, FALSE);
16165 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16166                                  repeatable, mandatory, hidden)
16167 VALUES (1, 'authority', '382', '2', $$Source of term$$,
16168 FALSE, FALSE, FALSE);
16169 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16170                                  repeatable, mandatory, hidden)
16171 VALUES (1, 'authority', '382', '6', $$Linkage$$,
16172 FALSE, FALSE, FALSE);
16173 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16174                                  repeatable, mandatory, hidden)
16175 VALUES (1, 'authority', '382', '8', $$Field link and sequence number$$,
16176 TRUE, FALSE, FALSE);
16177 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
16178                               fixed_field, repeatable, mandatory, hidden)
16179 VALUES (1, 'authority', '383', $$Numeric Designation of Musical Work$$, $$A serial number, opus number, or thematic index number assigned to a musical work by the composer, publisher, or a musicologist. May be used to differentiate a musical work from another with the same title.$$,
16180 FALSE, TRUE, FALSE, FALSE);
16181 INSERT INTO config.record_attr_definition(name, label)
16182 VALUES ('marc21_authority_383_ind_1', 'MARC 21 authority field 383 indicator position 1');
16183 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16184 VALUES ('marc21_authority_383_ind_1', '#', $$Undefined$$, FALSE, TRUE);
16185 INSERT INTO config.record_attr_definition(name, label)
16186 VALUES ('marc21_authority_383_ind_2', 'MARC 21 authority field 383 indicator position 2');
16187 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16188 VALUES ('marc21_authority_383_ind_2', '#', $$Undefined$$, FALSE, TRUE);
16189 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16190                                  repeatable, mandatory, hidden)
16191 VALUES (1, 'authority', '383', 'a', $$Serial number$$,
16192 TRUE, FALSE, FALSE);
16193 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16194                                  repeatable, mandatory, hidden)
16195 VALUES (1, 'authority', '383', 'b', $$Opus number$$,
16196 TRUE, FALSE, FALSE);
16197 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16198                                  repeatable, mandatory, hidden)
16199 VALUES (1, 'authority', '383', 'c', $$Thematic index number$$,
16200 TRUE, FALSE, FALSE);
16201 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16202                                  repeatable, mandatory, hidden)
16203 VALUES (1, 'authority', '383', '6', $$Linkage$$,
16204 FALSE, FALSE, FALSE);
16205 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16206                                  repeatable, mandatory, hidden)
16207 VALUES (1, 'authority', '383', '8', $$Field link and sequence number$$,
16208 TRUE, FALSE, FALSE);
16209 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
16210                               fixed_field, repeatable, mandatory, hidden)
16211 VALUES (1, 'authority', '384', $$Key$$, $$The set of pitch relationships that establishes a single pitch class as a tonal centre for a musical work or expression. May be used to differentiate a musical work or expression from another with the same title.$$,
16212 FALSE, FALSE, FALSE, FALSE);
16213 INSERT INTO config.record_attr_definition(name, label)
16214 VALUES ('marc21_authority_384_ind_1', 'MARC 21 authority field 384 indicator position 1');
16215 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16216 VALUES ('marc21_authority_384_ind_1', '#', $$Relationship to original unknown$$, FALSE, TRUE);
16217 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16218 VALUES ('marc21_authority_384_ind_1', '0', $$Original key$$, FALSE, TRUE);
16219 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16220 VALUES ('marc21_authority_384_ind_1', '1', $$Transposed key$$, FALSE, TRUE);
16221 INSERT INTO config.record_attr_definition(name, label)
16222 VALUES ('marc21_authority_384_ind_2', 'MARC 21 authority field 384 indicator position 2');
16223 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16224 VALUES ('marc21_authority_384_ind_2', '#', $$Undefined$$, FALSE, TRUE);
16225 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16226                                  repeatable, mandatory, hidden)
16227 VALUES (1, 'authority', '384', 'a', $$Key$$,
16228 FALSE, FALSE, FALSE);
16229 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16230                                  repeatable, mandatory, hidden)
16231 VALUES (1, 'authority', '384', '6', $$Linkage$$,
16232 FALSE, FALSE, FALSE);
16233 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16234                                  repeatable, mandatory, hidden)
16235 VALUES (1, 'authority', '384', '8', $$Field link and sequence number$$,
16236 TRUE, FALSE, FALSE);
16237 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
16238                               fixed_field, repeatable, mandatory, hidden)
16239 VALUES (1, 'authority', '400', $$See From Tracing-Personal Name$$, $$Tracing for a personal name reference.$$,
16240 FALSE, TRUE, FALSE, FALSE);
16241 INSERT INTO config.record_attr_definition(name, label)
16242 VALUES ('marc21_authority_400_ind_1', 'MARC 21 authority field 400 indicator position 1');
16243 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16244 VALUES ('marc21_authority_400_ind_1', '0', $$Forename$$, FALSE, TRUE);
16245 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16246 VALUES ('marc21_authority_400_ind_1', '1', $$Surname$$, FALSE, TRUE);
16247 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16248 VALUES ('marc21_authority_400_ind_1', '3', $$Family name$$, FALSE, TRUE);
16249 INSERT INTO config.record_attr_definition(name, label)
16250 VALUES ('marc21_authority_400_ind_2', 'MARC 21 authority field 400 indicator position 2');
16251 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16252 VALUES ('marc21_authority_400_ind_2', '#', $$Undefined$$, FALSE, TRUE);
16253 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16254                                  repeatable, mandatory, hidden)
16255 VALUES (1, 'authority', '400', 'a', $$Personal name$$,
16256 FALSE, FALSE, FALSE);
16257 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16258                                  repeatable, mandatory, hidden)
16259 VALUES (1, 'authority', '400', 'b', $$Numeration$$,
16260 FALSE, FALSE, FALSE);
16261 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16262                                  repeatable, mandatory, hidden)
16263 VALUES (1, 'authority', '400', 'c', $$Titles and other words associated with a name$$,
16264 TRUE, FALSE, FALSE);
16265 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16266                                  repeatable, mandatory, hidden)
16267 VALUES (1, 'authority', '400', 'd', $$Dates associated with a name$$,
16268 FALSE, FALSE, FALSE);
16269 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16270                                  repeatable, mandatory, hidden)
16271 VALUES (1, 'authority', '400', 'e', $$Relator term$$,
16272 TRUE, FALSE, FALSE);
16273 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16274                                  repeatable, mandatory, hidden)
16275 VALUES (1, 'authority', '400', 'f', $$Date of a work$$,
16276 FALSE, FALSE, FALSE);
16277 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16278                                  repeatable, mandatory, hidden)
16279 VALUES (1, 'authority', '400', 'g', $$Miscellaneous information$$,
16280 FALSE, FALSE, FALSE);
16281 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16282                                  repeatable, mandatory, hidden)
16283 VALUES (1, 'authority', '400', 'h', $$Medium$$,
16284 FALSE, FALSE, FALSE);
16285 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16286                                  repeatable, mandatory, hidden)
16287 VALUES (1, 'authority', '400', 'i', $$Relationship information$$,
16288 TRUE, FALSE, FALSE);
16289 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16290                                  repeatable, mandatory, hidden)
16291 VALUES (1, 'authority', '400', 'j', $$Attribution qualifier$$,
16292 TRUE, FALSE, FALSE);
16293 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16294                                  repeatable, mandatory, hidden)
16295 VALUES (1, 'authority', '400', 'k', $$Form subheading$$,
16296 TRUE, FALSE, FALSE);
16297 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16298                                  repeatable, mandatory, hidden)
16299 VALUES (1, 'authority', '400', 'l', $$Language of a work$$,
16300 FALSE, FALSE, FALSE);
16301 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16302                                  repeatable, mandatory, hidden)
16303 VALUES (1, 'authority', '400', 'm', $$Medium of performance for music$$,
16304 TRUE, FALSE, FALSE);
16305 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16306                                  repeatable, mandatory, hidden)
16307 VALUES (1, 'authority', '400', 'n', $$Number of part/section of a work$$,
16308 TRUE, FALSE, FALSE);
16309 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16310                                  repeatable, mandatory, hidden)
16311 VALUES (1, 'authority', '400', 'o', $$Arranged statement for music$$,
16312 FALSE, FALSE, FALSE);
16313 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16314                                  repeatable, mandatory, hidden)
16315 VALUES (1, 'authority', '400', 'p', $$Name of part/section of a work$$,
16316 TRUE, FALSE, FALSE);
16317 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16318                                  repeatable, mandatory, hidden)
16319 VALUES (1, 'authority', '400', 'q', $$Fuller form of name$$,
16320 FALSE, FALSE, FALSE);
16321 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16322                                  repeatable, mandatory, hidden)
16323 VALUES (1, 'authority', '400', 'r', $$Key for music$$,
16324 FALSE, FALSE, FALSE);
16325 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16326                                  repeatable, mandatory, hidden)
16327 VALUES (1, 'authority', '400', 's', $$Version$$,
16328 FALSE, FALSE, FALSE);
16329 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16330                                  repeatable, mandatory, hidden)
16331 VALUES (1, 'authority', '400', 't', $$Title of a work$$,
16332 FALSE, FALSE, FALSE);
16333 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16334                                  repeatable, mandatory, hidden)
16335 VALUES (1, 'authority', '400', 'v', $$Form subdivision$$,
16336 TRUE, FALSE, FALSE);
16337 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16338                                  repeatable, mandatory, hidden)
16339 VALUES (1, 'authority', '400', 'w', $$Control subfield$$,
16340 FALSE, FALSE, FALSE);
16341 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16342                                  repeatable, mandatory, hidden)
16343 VALUES (1, 'authority', '400', 'x', $$General subdivision$$,
16344 TRUE, FALSE, FALSE);
16345 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16346                                  repeatable, mandatory, hidden)
16347 VALUES (1, 'authority', '400', 'y', $$Chronological subdivision$$,
16348 TRUE, FALSE, FALSE);
16349 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16350                                  repeatable, mandatory, hidden)
16351 VALUES (1, 'authority', '400', 'z', $$Geographic subdivision$$,
16352 TRUE, FALSE, FALSE);
16353 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16354                                  repeatable, mandatory, hidden)
16355 VALUES (1, 'authority', '400', '4', $$Relationship code$$,
16356 TRUE, FALSE, FALSE);
16357 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16358                                  repeatable, mandatory, hidden)
16359 VALUES (1, 'authority', '400', '5', $$Institution to which field applies$$,
16360 TRUE, FALSE, FALSE);
16361 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16362                                  repeatable, mandatory, hidden)
16363 VALUES (1, 'authority', '400', '6', $$Linkage$$,
16364 FALSE, FALSE, FALSE);
16365 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16366                                  repeatable, mandatory, hidden)
16367 VALUES (1, 'authority', '400', '8', $$Field link and sequence number$$,
16368 TRUE, FALSE, FALSE);
16369 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
16370                               fixed_field, repeatable, mandatory, hidden)
16371 VALUES (1, 'authority', '410', $$See From Tracing-Corporate Name$$, $$Tracing for a corporate name reference.$$,
16372 FALSE, TRUE, FALSE, FALSE);
16373 INSERT INTO config.record_attr_definition(name, label)
16374 VALUES ('marc21_authority_410_ind_1', 'MARC 21 authority field 410 indicator position 1');
16375 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16376 VALUES ('marc21_authority_410_ind_1', '0', $$Inverted name$$, FALSE, TRUE);
16377 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16378 VALUES ('marc21_authority_410_ind_1', '1', $$Jurisdiction name$$, FALSE, TRUE);
16379 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16380 VALUES ('marc21_authority_410_ind_1', '2', $$Name in direct order$$, FALSE, TRUE);
16381 INSERT INTO config.record_attr_definition(name, label)
16382 VALUES ('marc21_authority_410_ind_2', 'MARC 21 authority field 410 indicator position 2');
16383 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16384 VALUES ('marc21_authority_410_ind_2', '#', $$Undefined$$, FALSE, TRUE);
16385 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16386                                  repeatable, mandatory, hidden)
16387 VALUES (1, 'authority', '410', 'a', $$Corporate name or jurisdiction name as entry element$$,
16388 FALSE, FALSE, FALSE);
16389 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16390                                  repeatable, mandatory, hidden)
16391 VALUES (1, 'authority', '410', 'b', $$Subordinate unit$$,
16392 TRUE, FALSE, FALSE);
16393 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16394                                  repeatable, mandatory, hidden)
16395 VALUES (1, 'authority', '410', 'c', $$Location of meeting$$,
16396 FALSE, FALSE, FALSE);
16397 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16398                                  repeatable, mandatory, hidden)
16399 VALUES (1, 'authority', '410', 'd', $$Date of meeting or treaty signing$$,
16400 TRUE, FALSE, FALSE);
16401 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16402                                  repeatable, mandatory, hidden)
16403 VALUES (1, 'authority', '410', 'e', $$Relator term$$,
16404 TRUE, FALSE, FALSE);
16405 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16406                                  repeatable, mandatory, hidden)
16407 VALUES (1, 'authority', '410', 'f', $$Date of a work$$,
16408 FALSE, FALSE, FALSE);
16409 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16410                                  repeatable, mandatory, hidden)
16411 VALUES (1, 'authority', '410', 'g', $$Miscellaneous information$$,
16412 FALSE, FALSE, FALSE);
16413 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16414                                  repeatable, mandatory, hidden)
16415 VALUES (1, 'authority', '410', 'h', $$Medium$$,
16416 FALSE, FALSE, FALSE);
16417 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16418                                  repeatable, mandatory, hidden)
16419 VALUES (1, 'authority', '410', 'i', $$Relationship information$$,
16420 TRUE, FALSE, FALSE);
16421 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16422                                  repeatable, mandatory, hidden)
16423 VALUES (1, 'authority', '410', 'k', $$Form subheading$$,
16424 TRUE, FALSE, FALSE);
16425 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16426                                  repeatable, mandatory, hidden)
16427 VALUES (1, 'authority', '410', 'l', $$Language of a work$$,
16428 FALSE, FALSE, FALSE);
16429 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16430                                  repeatable, mandatory, hidden)
16431 VALUES (1, 'authority', '410', 'm', $$Medium of performance for music$$,
16432 TRUE, FALSE, FALSE);
16433 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16434                                  repeatable, mandatory, hidden)
16435 VALUES (1, 'authority', '410', 'n', $$Number of part/section/meeting$$,
16436 TRUE, FALSE, FALSE);
16437 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16438                                  repeatable, mandatory, hidden)
16439 VALUES (1, 'authority', '410', 'o', $$Arranged statement for music$$,
16440 FALSE, FALSE, FALSE);
16441 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16442                                  repeatable, mandatory, hidden)
16443 VALUES (1, 'authority', '410', 'p', $$Name of part/section of a work$$,
16444 TRUE, FALSE, FALSE);
16445 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16446                                  repeatable, mandatory, hidden)
16447 VALUES (1, 'authority', '410', 'r', $$Key for music$$,
16448 FALSE, FALSE, FALSE);
16449 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16450                                  repeatable, mandatory, hidden)
16451 VALUES (1, 'authority', '410', 's', $$Version$$,
16452 FALSE, FALSE, FALSE);
16453 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16454                                  repeatable, mandatory, hidden)
16455 VALUES (1, 'authority', '410', 't', $$Title of a work$$,
16456 FALSE, FALSE, FALSE);
16457 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16458                                  repeatable, mandatory, hidden)
16459 VALUES (1, 'authority', '410', 'v', $$Form subdivision$$,
16460 TRUE, FALSE, FALSE);
16461 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16462                                  repeatable, mandatory, hidden)
16463 VALUES (1, 'authority', '410', 'w', $$Control subfield$$,
16464 FALSE, FALSE, FALSE);
16465 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16466                                  repeatable, mandatory, hidden)
16467 VALUES (1, 'authority', '410', 'x', $$General subdivision$$,
16468 TRUE, FALSE, FALSE);
16469 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16470                                  repeatable, mandatory, hidden)
16471 VALUES (1, 'authority', '410', 'y', $$Chronological subdivision$$,
16472 TRUE, FALSE, FALSE);
16473 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16474                                  repeatable, mandatory, hidden)
16475 VALUES (1, 'authority', '410', 'z', $$Geographic subdivision$$,
16476 TRUE, FALSE, FALSE);
16477 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16478                                  repeatable, mandatory, hidden)
16479 VALUES (1, 'authority', '410', '4', $$Relationship code$$,
16480 TRUE, FALSE, FALSE);
16481 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16482                                  repeatable, mandatory, hidden)
16483 VALUES (1, 'authority', '410', '5', $$Institution to which field applies$$,
16484 TRUE, FALSE, FALSE);
16485 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16486                                  repeatable, mandatory, hidden)
16487 VALUES (1, 'authority', '410', '6', $$Linkage$$,
16488 FALSE, FALSE, FALSE);
16489 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16490                                  repeatable, mandatory, hidden)
16491 VALUES (1, 'authority', '410', '8', $$Field link and sequence number$$,
16492 TRUE, FALSE, FALSE);
16493 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
16494                               fixed_field, repeatable, mandatory, hidden)
16495 VALUES (1, 'authority', '411', $$See From Tracing-Meeting Name$$, $$Tracing for a meeting name reference. It is used in an established heading record or an established heading and subdivision record to trace a see from reference from a meeting name not used to an established heading.$$,
16496 FALSE, TRUE, FALSE, FALSE);
16497 INSERT INTO config.record_attr_definition(name, label)
16498 VALUES ('marc21_authority_411_ind_1', 'MARC 21 authority field 411 indicator position 1');
16499 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16500 VALUES ('marc21_authority_411_ind_1', '0', $$Inverted name$$, FALSE, TRUE);
16501 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16502 VALUES ('marc21_authority_411_ind_1', '1', $$Jurisdiction name$$, FALSE, TRUE);
16503 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16504 VALUES ('marc21_authority_411_ind_1', '2', $$Name in direct order$$, FALSE, TRUE);
16505 INSERT INTO config.record_attr_definition(name, label)
16506 VALUES ('marc21_authority_411_ind_2', 'MARC 21 authority field 411 indicator position 2');
16507 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16508 VALUES ('marc21_authority_411_ind_2', '#', $$Undefined$$, FALSE, TRUE);
16509 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16510                                  repeatable, mandatory, hidden)
16511 VALUES (1, 'authority', '411', 'a', $$Meeting name or jurisdiction name as entry element$$,
16512 FALSE, FALSE, FALSE);
16513 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16514                                  repeatable, mandatory, hidden)
16515 VALUES (1, 'authority', '411', 'c', $$Location of meeting$$,
16516 FALSE, FALSE, FALSE);
16517 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16518                                  repeatable, mandatory, hidden)
16519 VALUES (1, 'authority', '411', 'd', $$Date of meeting$$,
16520 FALSE, FALSE, FALSE);
16521 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16522                                  repeatable, mandatory, hidden)
16523 VALUES (1, 'authority', '411', 'e', $$Subordinate unit$$,
16524 TRUE, FALSE, FALSE);
16525 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16526                                  repeatable, mandatory, hidden)
16527 VALUES (1, 'authority', '411', 'f', $$Date of a work$$,
16528 FALSE, FALSE, FALSE);
16529 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16530                                  repeatable, mandatory, hidden)
16531 VALUES (1, 'authority', '411', 'g', $$Miscellaneous information$$,
16532 FALSE, FALSE, FALSE);
16533 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16534                                  repeatable, mandatory, hidden)
16535 VALUES (1, 'authority', '411', 'h', $$Medium$$,
16536 FALSE, FALSE, FALSE);
16537 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16538                                  repeatable, mandatory, hidden)
16539 VALUES (1, 'authority', '411', 'i', $$Relationship information$$,
16540 TRUE, FALSE, FALSE);
16541 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16542                                  repeatable, mandatory, hidden)
16543 VALUES (1, 'authority', '411', 'j', $$Relator term$$,
16544 TRUE, FALSE, FALSE);
16545 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16546                                  repeatable, mandatory, hidden)
16547 VALUES (1, 'authority', '411', 'k', $$Form subheading$$,
16548 TRUE, FALSE, FALSE);
16549 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16550                                  repeatable, mandatory, hidden)
16551 VALUES (1, 'authority', '411', 'l', $$Language of a work$$,
16552 FALSE, FALSE, FALSE);
16553 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16554                                  repeatable, mandatory, hidden)
16555 VALUES (1, 'authority', '411', 'n', $$Number of part/section/meeting$$,
16556 TRUE, FALSE, FALSE);
16557 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16558                                  repeatable, mandatory, hidden)
16559 VALUES (1, 'authority', '411', 'p', $$Name of part/section of a work$$,
16560 TRUE, FALSE, FALSE);
16561 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16562                                  repeatable, mandatory, hidden)
16563 VALUES (1, 'authority', '411', 'q', $$Name of meeting following jurisdiction name entry element$$,
16564 FALSE, FALSE, FALSE);
16565 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16566                                  repeatable, mandatory, hidden)
16567 VALUES (1, 'authority', '411', 's', $$Version$$,
16568 FALSE, FALSE, FALSE);
16569 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16570                                  repeatable, mandatory, hidden)
16571 VALUES (1, 'authority', '411', 't', $$Title of a work$$,
16572 FALSE, FALSE, FALSE);
16573 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16574                                  repeatable, mandatory, hidden)
16575 VALUES (1, 'authority', '411', 'v', $$Form subdivision$$,
16576 TRUE, FALSE, FALSE);
16577 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16578                                  repeatable, mandatory, hidden)
16579 VALUES (1, 'authority', '411', 'w', $$Control subfield$$,
16580 FALSE, FALSE, FALSE);
16581 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16582                                  repeatable, mandatory, hidden)
16583 VALUES (1, 'authority', '411', 'x', $$General subdivision$$,
16584 TRUE, FALSE, FALSE);
16585 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16586                                  repeatable, mandatory, hidden)
16587 VALUES (1, 'authority', '411', 'y', $$Chronological subdivision$$,
16588 TRUE, FALSE, FALSE);
16589 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16590                                  repeatable, mandatory, hidden)
16591 VALUES (1, 'authority', '411', 'z', $$Geographic subdivision$$,
16592 TRUE, FALSE, FALSE);
16593 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16594                                  repeatable, mandatory, hidden)
16595 VALUES (1, 'authority', '411', '4', $$Relationship code$$,
16596 TRUE, FALSE, FALSE);
16597 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16598                                  repeatable, mandatory, hidden)
16599 VALUES (1, 'authority', '411', '5', $$Institution to which field applies$$,
16600 TRUE, FALSE, FALSE);
16601 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16602                                  repeatable, mandatory, hidden)
16603 VALUES (1, 'authority', '411', '6', $$Linkage$$,
16604 FALSE, FALSE, FALSE);
16605 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16606                                  repeatable, mandatory, hidden)
16607 VALUES (1, 'authority', '411', '8', $$Field link and sequence number$$,
16608 TRUE, FALSE, FALSE);
16609 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
16610                               fixed_field, repeatable, mandatory, hidden)
16611 VALUES (1, 'authority', '430', $$See From Tracing-Uniform Title$$, $$Tracing for a uniform title reference.$$,
16612 FALSE, TRUE, FALSE, FALSE);
16613 INSERT INTO config.record_attr_definition(name, label)
16614 VALUES ('marc21_authority_430_ind_1', 'MARC 21 authority field 430 indicator position 1');
16615 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16616 VALUES ('marc21_authority_430_ind_1', '#', $$Undefined$$, FALSE, TRUE);
16617 INSERT INTO config.record_attr_definition(name, label)
16618 VALUES ('marc21_authority_430_ind_2', 'MARC 21 authority field 430 indicator position 2');
16619 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16620 VALUES ('marc21_authority_430_ind_2', '0', $$No nonfiling characters$$, FALSE, TRUE);
16621 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16622 VALUES ('marc21_authority_430_ind_2', '1', $$Number of nonfiling characters - 1$$, FALSE, TRUE);
16623 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16624 VALUES ('marc21_authority_430_ind_2', '2', $$Number of nonfiling characters - 2$$, FALSE, TRUE);
16625 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16626 VALUES ('marc21_authority_430_ind_2', '3', $$Number of nonfiling characters - 3$$, FALSE, TRUE);
16627 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16628 VALUES ('marc21_authority_430_ind_2', '4', $$Number of nonfiling characters - 4$$, FALSE, TRUE);
16629 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16630 VALUES ('marc21_authority_430_ind_2', '5', $$Number of nonfiling characters - 5$$, FALSE, TRUE);
16631 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16632 VALUES ('marc21_authority_430_ind_2', '6', $$Number of nonfiling characters - 6$$, FALSE, TRUE);
16633 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16634 VALUES ('marc21_authority_430_ind_2', '7', $$Number of nonfiling characters - 7$$, FALSE, TRUE);
16635 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16636 VALUES ('marc21_authority_430_ind_2', '8', $$Number of nonfiling characters - 8$$, FALSE, TRUE);
16637 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16638 VALUES ('marc21_authority_430_ind_2', '9', $$Number of nonfiling characters - 9$$, FALSE, TRUE);
16639 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16640                                  repeatable, mandatory, hidden)
16641 VALUES (1, 'authority', '430', 'a', $$Uniform title$$,
16642 FALSE, FALSE, FALSE);
16643 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16644                                  repeatable, mandatory, hidden)
16645 VALUES (1, 'authority', '430', 'd', $$Date of treaty signing$$,
16646 TRUE, FALSE, FALSE);
16647 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16648                                  repeatable, mandatory, hidden)
16649 VALUES (1, 'authority', '430', 'f', $$Date of a work$$,
16650 FALSE, FALSE, FALSE);
16651 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16652                                  repeatable, mandatory, hidden)
16653 VALUES (1, 'authority', '430', 'g', $$Miscellaneous information$$,
16654 FALSE, FALSE, FALSE);
16655 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16656                                  repeatable, mandatory, hidden)
16657 VALUES (1, 'authority', '430', 'h', $$Medium$$,
16658 FALSE, FALSE, FALSE);
16659 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16660                                  repeatable, mandatory, hidden)
16661 VALUES (1, 'authority', '430', 'i', $$Relationship information$$,
16662 TRUE, FALSE, FALSE);
16663 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16664                                  repeatable, mandatory, hidden)
16665 VALUES (1, 'authority', '430', 'k', $$Form subheading$$,
16666 TRUE, FALSE, FALSE);
16667 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16668                                  repeatable, mandatory, hidden)
16669 VALUES (1, 'authority', '430', 'l', $$Language of a work$$,
16670 FALSE, FALSE, FALSE);
16671 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16672                                  repeatable, mandatory, hidden)
16673 VALUES (1, 'authority', '430', 'm', $$Medium of performance for music$$,
16674 TRUE, FALSE, FALSE);
16675 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16676                                  repeatable, mandatory, hidden)
16677 VALUES (1, 'authority', '430', 'n', $$Number of part/section of a work$$,
16678 TRUE, FALSE, FALSE);
16679 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16680                                  repeatable, mandatory, hidden)
16681 VALUES (1, 'authority', '430', 'o', $$Arranged statement for music$$,
16682 FALSE, FALSE, FALSE);
16683 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16684                                  repeatable, mandatory, hidden)
16685 VALUES (1, 'authority', '430', 'p', $$Name of part/section of a work$$,
16686 TRUE, FALSE, FALSE);
16687 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16688                                  repeatable, mandatory, hidden)
16689 VALUES (1, 'authority', '430', 'r', $$Key for music$$,
16690 FALSE, FALSE, FALSE);
16691 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16692                                  repeatable, mandatory, hidden)
16693 VALUES (1, 'authority', '430', 's', $$Version$$,
16694 FALSE, FALSE, FALSE);
16695 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16696                                  repeatable, mandatory, hidden)
16697 VALUES (1, 'authority', '430', 't', $$Title of a work$$,
16698 FALSE, FALSE, FALSE);
16699 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16700                                  repeatable, mandatory, hidden)
16701 VALUES (1, 'authority', '430', 'v', $$Form subdivision$$,
16702 TRUE, FALSE, FALSE);
16703 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16704                                  repeatable, mandatory, hidden)
16705 VALUES (1, 'authority', '430', 'w', $$Control subfield$$,
16706 FALSE, FALSE, FALSE);
16707 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16708                                  repeatable, mandatory, hidden)
16709 VALUES (1, 'authority', '430', 'x', $$General subdivision$$,
16710 TRUE, FALSE, FALSE);
16711 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16712                                  repeatable, mandatory, hidden)
16713 VALUES (1, 'authority', '430', 'y', $$Chronological subdivision$$,
16714 TRUE, FALSE, FALSE);
16715 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16716                                  repeatable, mandatory, hidden)
16717 VALUES (1, 'authority', '430', 'z', $$Geographic subdivision$$,
16718 TRUE, FALSE, FALSE);
16719 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16720                                  repeatable, mandatory, hidden)
16721 VALUES (1, 'authority', '430', '4', $$Relationship code$$,
16722 TRUE, FALSE, FALSE);
16723 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16724                                  repeatable, mandatory, hidden)
16725 VALUES (1, 'authority', '430', '5', $$Institution to which field applies$$,
16726 TRUE, FALSE, FALSE);
16727 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16728                                  repeatable, mandatory, hidden)
16729 VALUES (1, 'authority', '430', '6', $$Linkage$$,
16730 FALSE, FALSE, FALSE);
16731 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16732                                  repeatable, mandatory, hidden)
16733 VALUES (1, 'authority', '430', '8', $$Field link and sequence number$$,
16734 TRUE, FALSE, FALSE);
16735 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
16736                               fixed_field, repeatable, mandatory, hidden)
16737 VALUES (1, 'authority', '448', $$See From Tracing-Chronological Term$$, $$Tracing for a chronological term reference.$$,
16738 FALSE, TRUE, FALSE, FALSE);
16739 INSERT INTO config.record_attr_definition(name, label)
16740 VALUES ('marc21_authority_448_ind_1', 'MARC 21 authority field 448 indicator position 1');
16741 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16742 VALUES ('marc21_authority_448_ind_1', '#', $$Undefined$$, FALSE, TRUE);
16743 INSERT INTO config.record_attr_definition(name, label)
16744 VALUES ('marc21_authority_448_ind_2', 'MARC 21 authority field 448 indicator position 2');
16745 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16746 VALUES ('marc21_authority_448_ind_2', '#', $$Undefined$$, FALSE, TRUE);
16747 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16748                                  repeatable, mandatory, hidden)
16749 VALUES (1, 'authority', '448', 'a', $$Chronological term$$,
16750 FALSE, FALSE, FALSE);
16751 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16752                                  repeatable, mandatory, hidden)
16753 VALUES (1, 'authority', '448', 'i', $$Relationship information$$,
16754 TRUE, FALSE, FALSE);
16755 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16756                                  repeatable, mandatory, hidden)
16757 VALUES (1, 'authority', '448', 'v', $$Form subdivision$$,
16758 TRUE, FALSE, FALSE);
16759 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16760                                  repeatable, mandatory, hidden)
16761 VALUES (1, 'authority', '448', 'w', $$Control subfield$$,
16762 FALSE, FALSE, FALSE);
16763 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16764                                  repeatable, mandatory, hidden)
16765 VALUES (1, 'authority', '448', 'x', $$General subdivision$$,
16766 TRUE, FALSE, FALSE);
16767 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16768                                  repeatable, mandatory, hidden)
16769 VALUES (1, 'authority', '448', 'y', $$Chronological subdivision$$,
16770 TRUE, FALSE, FALSE);
16771 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16772                                  repeatable, mandatory, hidden)
16773 VALUES (1, 'authority', '448', 'z', $$Geographic subdivision$$,
16774 TRUE, FALSE, FALSE);
16775 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16776                                  repeatable, mandatory, hidden)
16777 VALUES (1, 'authority', '448', '4', $$Relationship code$$,
16778 TRUE, FALSE, FALSE);
16779 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16780                                  repeatable, mandatory, hidden)
16781 VALUES (1, 'authority', '448', '5', $$Institution to which field applies$$,
16782 TRUE, FALSE, FALSE);
16783 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16784                                  repeatable, mandatory, hidden)
16785 VALUES (1, 'authority', '448', '6', $$Linkage$$,
16786 FALSE, FALSE, FALSE);
16787 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16788                                  repeatable, mandatory, hidden)
16789 VALUES (1, 'authority', '448', '8', $$Field link and sequence number$$,
16790 TRUE, FALSE, FALSE);
16791 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
16792                               fixed_field, repeatable, mandatory, hidden)
16793 VALUES (1, 'authority', '450', $$See From Tracing-Topical Term$$, $$Tracing for a topical term reference.$$,
16794 FALSE, TRUE, FALSE, FALSE);
16795 INSERT INTO config.record_attr_definition(name, label)
16796 VALUES ('marc21_authority_450_ind_1', 'MARC 21 authority field 450 indicator position 1');
16797 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16798 VALUES ('marc21_authority_450_ind_1', '#', $$Undefined$$, FALSE, TRUE);
16799 INSERT INTO config.record_attr_definition(name, label)
16800 VALUES ('marc21_authority_450_ind_2', 'MARC 21 authority field 450 indicator position 2');
16801 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16802 VALUES ('marc21_authority_450_ind_2', '#', $$Undefined$$, FALSE, TRUE);
16803 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16804                                  repeatable, mandatory, hidden)
16805 VALUES (1, 'authority', '450', 'a', $$Topical term or geographic name entry element$$,
16806 FALSE, FALSE, FALSE);
16807 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16808                                  repeatable, mandatory, hidden)
16809 VALUES (1, 'authority', '450', 'b', $$Topical term following geographic name entry element$$,
16810 FALSE, FALSE, FALSE);
16811 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16812                                  repeatable, mandatory, hidden)
16813 VALUES (1, 'authority', '450', 'i', $$Relationship information$$,
16814 TRUE, FALSE, FALSE);
16815 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16816                                  repeatable, mandatory, hidden)
16817 VALUES (1, 'authority', '450', 'v', $$Form subdivision$$,
16818 TRUE, FALSE, FALSE);
16819 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16820                                  repeatable, mandatory, hidden)
16821 VALUES (1, 'authority', '450', 'w', $$Control subfield$$,
16822 FALSE, FALSE, FALSE);
16823 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16824                                  repeatable, mandatory, hidden)
16825 VALUES (1, 'authority', '450', 'x', $$General subdivision$$,
16826 TRUE, FALSE, FALSE);
16827 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16828                                  repeatable, mandatory, hidden)
16829 VALUES (1, 'authority', '450', 'y', $$Chronological subdivision$$,
16830 TRUE, FALSE, FALSE);
16831 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16832                                  repeatable, mandatory, hidden)
16833 VALUES (1, 'authority', '450', 'z', $$Geographic subdivision$$,
16834 TRUE, FALSE, FALSE);
16835 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16836                                  repeatable, mandatory, hidden)
16837 VALUES (1, 'authority', '450', '4', $$Relationship code$$,
16838 TRUE, FALSE, FALSE);
16839 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16840                                  repeatable, mandatory, hidden)
16841 VALUES (1, 'authority', '450', '5', $$Institution to which field applies$$,
16842 TRUE, FALSE, FALSE);
16843 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16844                                  repeatable, mandatory, hidden)
16845 VALUES (1, 'authority', '450', '6', $$Linkage$$,
16846 FALSE, FALSE, FALSE);
16847 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16848                                  repeatable, mandatory, hidden)
16849 VALUES (1, 'authority', '450', '8', $$Field link and sequence number$$,
16850 TRUE, FALSE, FALSE);
16851 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
16852                               fixed_field, repeatable, mandatory, hidden)
16853 VALUES (1, 'authority', '451', $$See From Tracing-Geographic Name$$, $$Tracing for a geographic name reference.$$,
16854 FALSE, TRUE, FALSE, FALSE);
16855 INSERT INTO config.record_attr_definition(name, label)
16856 VALUES ('marc21_authority_451_ind_1', 'MARC 21 authority field 451 indicator position 1');
16857 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16858 VALUES ('marc21_authority_451_ind_1', '#', $$Undefined$$, FALSE, TRUE);
16859 INSERT INTO config.record_attr_definition(name, label)
16860 VALUES ('marc21_authority_451_ind_2', 'MARC 21 authority field 451 indicator position 2');
16861 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16862 VALUES ('marc21_authority_451_ind_2', '#', $$Undefined$$, FALSE, TRUE);
16863 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16864                                  repeatable, mandatory, hidden)
16865 VALUES (1, 'authority', '451', 'a', $$Geographic name$$,
16866 FALSE, FALSE, FALSE);
16867 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16868                                  repeatable, mandatory, hidden)
16869 VALUES (1, 'authority', '451', 'i', $$Relationship information$$,
16870 TRUE, FALSE, FALSE);
16871 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16872                                  repeatable, mandatory, hidden)
16873 VALUES (1, 'authority', '451', 'v', $$Form subdivision$$,
16874 TRUE, FALSE, FALSE);
16875 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16876                                  repeatable, mandatory, hidden)
16877 VALUES (1, 'authority', '451', 'w', $$Control subfield$$,
16878 FALSE, FALSE, FALSE);
16879 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16880                                  repeatable, mandatory, hidden)
16881 VALUES (1, 'authority', '451', 'x', $$General subdivision$$,
16882 TRUE, FALSE, FALSE);
16883 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16884                                  repeatable, mandatory, hidden)
16885 VALUES (1, 'authority', '451', 'y', $$Chronological subdivision$$,
16886 TRUE, FALSE, FALSE);
16887 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16888                                  repeatable, mandatory, hidden)
16889 VALUES (1, 'authority', '451', 'z', $$Geographic subdivision$$,
16890 TRUE, FALSE, FALSE);
16891 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16892                                  repeatable, mandatory, hidden)
16893 VALUES (1, 'authority', '451', '4', $$Relationship code$$,
16894 TRUE, FALSE, FALSE);
16895 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16896                                  repeatable, mandatory, hidden)
16897 VALUES (1, 'authority', '451', '5', $$Institution to which field applies$$,
16898 TRUE, FALSE, FALSE);
16899 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16900                                  repeatable, mandatory, hidden)
16901 VALUES (1, 'authority', '451', '6', $$Linkage$$,
16902 FALSE, FALSE, FALSE);
16903 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16904                                  repeatable, mandatory, hidden)
16905 VALUES (1, 'authority', '451', '8', $$Field link and sequence number$$,
16906 TRUE, FALSE, FALSE);
16907 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
16908                               fixed_field, repeatable, mandatory, hidden)
16909 VALUES (1, 'authority', '455', $$See From Tracing-Genre/Form Term$$, $$Tracing for a genre/form term reference.$$,
16910 FALSE, TRUE, FALSE, FALSE);
16911 INSERT INTO config.record_attr_definition(name, label)
16912 VALUES ('marc21_authority_455_ind_1', 'MARC 21 authority field 455 indicator position 1');
16913 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16914 VALUES ('marc21_authority_455_ind_1', '#', $$Undefined$$, FALSE, TRUE);
16915 INSERT INTO config.record_attr_definition(name, label)
16916 VALUES ('marc21_authority_455_ind_2', 'MARC 21 authority field 455 indicator position 2');
16917 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16918 VALUES ('marc21_authority_455_ind_2', '#', $$Undefined$$, FALSE, TRUE);
16919 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16920                                  repeatable, mandatory, hidden)
16921 VALUES (1, 'authority', '455', 'a', $$Genre/form term$$,
16922 FALSE, FALSE, FALSE);
16923 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16924                                  repeatable, mandatory, hidden)
16925 VALUES (1, 'authority', '455', 'i', $$Relationship information$$,
16926 TRUE, FALSE, FALSE);
16927 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16928                                  repeatable, mandatory, hidden)
16929 VALUES (1, 'authority', '455', 'v', $$Form subdivision$$,
16930 TRUE, FALSE, FALSE);
16931 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16932                                  repeatable, mandatory, hidden)
16933 VALUES (1, 'authority', '455', 'w', $$Control subfield$$,
16934 FALSE, FALSE, FALSE);
16935 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16936                                  repeatable, mandatory, hidden)
16937 VALUES (1, 'authority', '455', 'x', $$General subdivision$$,
16938 TRUE, FALSE, FALSE);
16939 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16940                                  repeatable, mandatory, hidden)
16941 VALUES (1, 'authority', '455', 'y', $$Chronological subdivision$$,
16942 TRUE, FALSE, FALSE);
16943 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16944                                  repeatable, mandatory, hidden)
16945 VALUES (1, 'authority', '455', 'z', $$Geographic subdivision$$,
16946 TRUE, FALSE, FALSE);
16947 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16948                                  repeatable, mandatory, hidden)
16949 VALUES (1, 'authority', '455', '4', $$Relationship code$$,
16950 TRUE, FALSE, FALSE);
16951 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16952                                  repeatable, mandatory, hidden)
16953 VALUES (1, 'authority', '455', '5', $$Institution to which field applies$$,
16954 TRUE, FALSE, FALSE);
16955 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16956                                  repeatable, mandatory, hidden)
16957 VALUES (1, 'authority', '455', '6', $$Linkage$$,
16958 FALSE, FALSE, FALSE);
16959 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16960                                  repeatable, mandatory, hidden)
16961 VALUES (1, 'authority', '455', '8', $$Field link and sequence number$$,
16962 TRUE, FALSE, FALSE);
16963 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
16964                               fixed_field, repeatable, mandatory, hidden)
16965 VALUES (1, 'authority', '480', $$See From Tracing-General Subdivision$$, $$Tracing for a general subdivision reference.$$,
16966 FALSE, TRUE, FALSE, FALSE);
16967 INSERT INTO config.record_attr_definition(name, label)
16968 VALUES ('marc21_authority_480_ind_1', 'MARC 21 authority field 480 indicator position 1');
16969 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16970 VALUES ('marc21_authority_480_ind_1', '#', $$Undefined$$, FALSE, TRUE);
16971 INSERT INTO config.record_attr_definition(name, label)
16972 VALUES ('marc21_authority_480_ind_2', 'MARC 21 authority field 480 indicator position 2');
16973 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
16974 VALUES ('marc21_authority_480_ind_2', '#', $$Undefined$$, FALSE, TRUE);
16975 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16976                                  repeatable, mandatory, hidden)
16977 VALUES (1, 'authority', '480', 'i', $$Relationship information$$,
16978 TRUE, FALSE, FALSE);
16979 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16980                                  repeatable, mandatory, hidden)
16981 VALUES (1, 'authority', '480', 'v', $$Form subdivision$$,
16982 TRUE, FALSE, FALSE);
16983 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16984                                  repeatable, mandatory, hidden)
16985 VALUES (1, 'authority', '480', 'w', $$Control subfield$$,
16986 FALSE, FALSE, FALSE);
16987 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16988                                  repeatable, mandatory, hidden)
16989 VALUES (1, 'authority', '480', 'x', $$General subdivision$$,
16990 TRUE, FALSE, FALSE);
16991 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16992                                  repeatable, mandatory, hidden)
16993 VALUES (1, 'authority', '480', 'y', $$Chronological subdivision$$,
16994 TRUE, FALSE, FALSE);
16995 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
16996                                  repeatable, mandatory, hidden)
16997 VALUES (1, 'authority', '480', 'z', $$Geographic subdivision$$,
16998 TRUE, FALSE, FALSE);
16999 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17000                                  repeatable, mandatory, hidden)
17001 VALUES (1, 'authority', '480', '4', $$Relationship code$$,
17002 TRUE, FALSE, FALSE);
17003 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17004                                  repeatable, mandatory, hidden)
17005 VALUES (1, 'authority', '480', '5', $$Institution to which field applies$$,
17006 TRUE, FALSE, FALSE);
17007 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17008                                  repeatable, mandatory, hidden)
17009 VALUES (1, 'authority', '480', '6', $$Linkage$$,
17010 FALSE, FALSE, FALSE);
17011 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17012                                  repeatable, mandatory, hidden)
17013 VALUES (1, 'authority', '480', '8', $$Field link and sequence number$$,
17014 TRUE, FALSE, FALSE);
17015 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
17016                               fixed_field, repeatable, mandatory, hidden)
17017 VALUES (1, 'authority', '481', $$See From Tracing-Geographic Subdivision$$, $$Tracing for a geographic subdivision reference.$$,
17018 FALSE, TRUE, FALSE, FALSE);
17019 INSERT INTO config.record_attr_definition(name, label)
17020 VALUES ('marc21_authority_481_ind_1', 'MARC 21 authority field 481 indicator position 1');
17021 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17022 VALUES ('marc21_authority_481_ind_1', '#', $$Undefined$$, FALSE, TRUE);
17023 INSERT INTO config.record_attr_definition(name, label)
17024 VALUES ('marc21_authority_481_ind_2', 'MARC 21 authority field 481 indicator position 2');
17025 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17026 VALUES ('marc21_authority_481_ind_2', '#', $$Undefined$$, FALSE, TRUE);
17027 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17028                                  repeatable, mandatory, hidden)
17029 VALUES (1, 'authority', '481', 'i', $$Relationship information$$,
17030 TRUE, FALSE, FALSE);
17031 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17032                                  repeatable, mandatory, hidden)
17033 VALUES (1, 'authority', '481', 'v', $$Form subdivision$$,
17034 TRUE, FALSE, FALSE);
17035 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17036                                  repeatable, mandatory, hidden)
17037 VALUES (1, 'authority', '481', 'w', $$Control subfield$$,
17038 FALSE, FALSE, FALSE);
17039 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17040                                  repeatable, mandatory, hidden)
17041 VALUES (1, 'authority', '481', 'x', $$General subdivision$$,
17042 TRUE, FALSE, FALSE);
17043 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17044                                  repeatable, mandatory, hidden)
17045 VALUES (1, 'authority', '481', 'y', $$Chronological subdivision$$,
17046 TRUE, FALSE, FALSE);
17047 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17048                                  repeatable, mandatory, hidden)
17049 VALUES (1, 'authority', '481', 'z', $$Geographic subdivision$$,
17050 TRUE, FALSE, FALSE);
17051 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17052                                  repeatable, mandatory, hidden)
17053 VALUES (1, 'authority', '481', '4', $$Relationship code$$,
17054 TRUE, FALSE, FALSE);
17055 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17056                                  repeatable, mandatory, hidden)
17057 VALUES (1, 'authority', '481', '5', $$Institution to which field applies$$,
17058 TRUE, FALSE, FALSE);
17059 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17060                                  repeatable, mandatory, hidden)
17061 VALUES (1, 'authority', '481', '6', $$Linkage$$,
17062 FALSE, FALSE, FALSE);
17063 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17064                                  repeatable, mandatory, hidden)
17065 VALUES (1, 'authority', '481', '8', $$Field link and sequence number$$,
17066 TRUE, FALSE, FALSE);
17067 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
17068                               fixed_field, repeatable, mandatory, hidden)
17069 VALUES (1, 'authority', '482', $$See From Tracing-Chronological Subdivision$$, $$Tracing for a chronological subdivision reference.$$,
17070 FALSE, TRUE, FALSE, FALSE);
17071 INSERT INTO config.record_attr_definition(name, label)
17072 VALUES ('marc21_authority_482_ind_1', 'MARC 21 authority field 482 indicator position 1');
17073 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17074 VALUES ('marc21_authority_482_ind_1', '#', $$Undefined$$, FALSE, TRUE);
17075 INSERT INTO config.record_attr_definition(name, label)
17076 VALUES ('marc21_authority_482_ind_2', 'MARC 21 authority field 482 indicator position 2');
17077 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17078 VALUES ('marc21_authority_482_ind_2', '#', $$Undefined$$, FALSE, TRUE);
17079 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17080                                  repeatable, mandatory, hidden)
17081 VALUES (1, 'authority', '482', 'i', $$Relationship information$$,
17082 TRUE, FALSE, FALSE);
17083 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17084                                  repeatable, mandatory, hidden)
17085 VALUES (1, 'authority', '482', 'v', $$Form subdivision$$,
17086 TRUE, FALSE, FALSE);
17087 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17088                                  repeatable, mandatory, hidden)
17089 VALUES (1, 'authority', '482', 'w', $$Control subfield$$,
17090 FALSE, FALSE, FALSE);
17091 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17092                                  repeatable, mandatory, hidden)
17093 VALUES (1, 'authority', '482', 'x', $$General subdivision$$,
17094 TRUE, FALSE, FALSE);
17095 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17096                                  repeatable, mandatory, hidden)
17097 VALUES (1, 'authority', '482', 'y', $$Chronological subdivision$$,
17098 TRUE, FALSE, FALSE);
17099 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17100                                  repeatable, mandatory, hidden)
17101 VALUES (1, 'authority', '482', 'z', $$Geographic subdivision$$,
17102 TRUE, FALSE, FALSE);
17103 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17104                                  repeatable, mandatory, hidden)
17105 VALUES (1, 'authority', '482', '4', $$Relationship code$$,
17106 TRUE, FALSE, FALSE);
17107 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17108                                  repeatable, mandatory, hidden)
17109 VALUES (1, 'authority', '482', '5', $$Institution to which field applies$$,
17110 TRUE, FALSE, FALSE);
17111 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17112                                  repeatable, mandatory, hidden)
17113 VALUES (1, 'authority', '482', '6', $$Linkage$$,
17114 FALSE, FALSE, FALSE);
17115 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17116                                  repeatable, mandatory, hidden)
17117 VALUES (1, 'authority', '482', '8', $$Field link and sequence number$$,
17118 TRUE, FALSE, FALSE);
17119 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
17120                               fixed_field, repeatable, mandatory, hidden)
17121 VALUES (1, 'authority', '485', $$See From Tracing-Form Subdivision$$, $$Tracing for a form subdivision reference.$$,
17122 FALSE, TRUE, FALSE, FALSE);
17123 INSERT INTO config.record_attr_definition(name, label)
17124 VALUES ('marc21_authority_485_ind_1', 'MARC 21 authority field 485 indicator position 1');
17125 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17126 VALUES ('marc21_authority_485_ind_1', '#', $$Undefined$$, FALSE, TRUE);
17127 INSERT INTO config.record_attr_definition(name, label)
17128 VALUES ('marc21_authority_485_ind_2', 'MARC 21 authority field 485 indicator position 2');
17129 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17130 VALUES ('marc21_authority_485_ind_2', '#', $$Undefined$$, FALSE, TRUE);
17131 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17132                                  repeatable, mandatory, hidden)
17133 VALUES (1, 'authority', '485', 'i', $$Relationship information$$,
17134 TRUE, FALSE, FALSE);
17135 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17136                                  repeatable, mandatory, hidden)
17137 VALUES (1, 'authority', '485', 'v', $$Form subdivision$$,
17138 TRUE, FALSE, FALSE);
17139 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17140                                  repeatable, mandatory, hidden)
17141 VALUES (1, 'authority', '485', 'w', $$Control subfield$$,
17142 FALSE, FALSE, FALSE);
17143 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17144                                  repeatable, mandatory, hidden)
17145 VALUES (1, 'authority', '485', 'x', $$General subdivision$$,
17146 TRUE, FALSE, FALSE);
17147 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17148                                  repeatable, mandatory, hidden)
17149 VALUES (1, 'authority', '485', 'y', $$Chronological subdivision$$,
17150 TRUE, FALSE, FALSE);
17151 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17152                                  repeatable, mandatory, hidden)
17153 VALUES (1, 'authority', '485', 'z', $$Geographic subdivision$$,
17154 TRUE, FALSE, FALSE);
17155 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17156                                  repeatable, mandatory, hidden)
17157 VALUES (1, 'authority', '485', '4', $$Relationship code$$,
17158 TRUE, FALSE, FALSE);
17159 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17160                                  repeatable, mandatory, hidden)
17161 VALUES (1, 'authority', '485', '5', $$Institution to which field applies$$,
17162 TRUE, FALSE, FALSE);
17163 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17164                                  repeatable, mandatory, hidden)
17165 VALUES (1, 'authority', '485', '6', $$Linkage$$,
17166 FALSE, FALSE, FALSE);
17167 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17168                                  repeatable, mandatory, hidden)
17169 VALUES (1, 'authority', '485', '8', $$Field link and sequence number$$,
17170 TRUE, FALSE, FALSE);
17171 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
17172                               fixed_field, repeatable, mandatory, hidden)
17173 VALUES (1, 'authority', '500', $$See Also From Tracing-Personal Name$$, $$Tracing for a personal name reference.$$,
17174 FALSE, TRUE, FALSE, FALSE);
17175 INSERT INTO config.record_attr_definition(name, label)
17176 VALUES ('marc21_authority_500_ind_1', 'MARC 21 authority field 500 indicator position 1');
17177 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17178 VALUES ('marc21_authority_500_ind_1', '0', $$Forename$$, FALSE, TRUE);
17179 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17180 VALUES ('marc21_authority_500_ind_1', '1', $$Surname$$, FALSE, TRUE);
17181 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17182 VALUES ('marc21_authority_500_ind_1', '3', $$Family name$$, FALSE, TRUE);
17183 INSERT INTO config.record_attr_definition(name, label)
17184 VALUES ('marc21_authority_500_ind_2', 'MARC 21 authority field 500 indicator position 2');
17185 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17186 VALUES ('marc21_authority_500_ind_2', '#', $$Undefined$$, FALSE, TRUE);
17187 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17188                                  repeatable, mandatory, hidden)
17189 VALUES (1, 'authority', '500', 'a', $$Personal name$$,
17190 FALSE, FALSE, FALSE);
17191 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17192                                  repeatable, mandatory, hidden)
17193 VALUES (1, 'authority', '500', 'b', $$Numeration$$,
17194 FALSE, FALSE, FALSE);
17195 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17196                                  repeatable, mandatory, hidden)
17197 VALUES (1, 'authority', '500', 'c', $$Titles and other words associated with a name$$,
17198 TRUE, FALSE, FALSE);
17199 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17200                                  repeatable, mandatory, hidden)
17201 VALUES (1, 'authority', '500', 'd', $$Dates associated with a name$$,
17202 FALSE, FALSE, FALSE);
17203 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17204                                  repeatable, mandatory, hidden)
17205 VALUES (1, 'authority', '500', 'e', $$Relator term$$,
17206 TRUE, FALSE, FALSE);
17207 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17208                                  repeatable, mandatory, hidden)
17209 VALUES (1, 'authority', '500', 'f', $$Date of a work$$,
17210 FALSE, FALSE, FALSE);
17211 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17212                                  repeatable, mandatory, hidden)
17213 VALUES (1, 'authority', '500', 'g', $$Miscellaneous information$$,
17214 FALSE, FALSE, FALSE);
17215 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17216                                  repeatable, mandatory, hidden)
17217 VALUES (1, 'authority', '500', 'h', $$Medium$$,
17218 FALSE, FALSE, FALSE);
17219 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17220                                  repeatable, mandatory, hidden)
17221 VALUES (1, 'authority', '500', 'i', $$Relationship information$$,
17222 TRUE, FALSE, FALSE);
17223 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17224                                  repeatable, mandatory, hidden)
17225 VALUES (1, 'authority', '500', 'j', $$Attribution qualifier$$,
17226 TRUE, FALSE, FALSE);
17227 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17228                                  repeatable, mandatory, hidden)
17229 VALUES (1, 'authority', '500', 'k', $$Form subheading$$,
17230 TRUE, FALSE, FALSE);
17231 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17232                                  repeatable, mandatory, hidden)
17233 VALUES (1, 'authority', '500', 'l', $$Language of a work$$,
17234 FALSE, FALSE, FALSE);
17235 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17236                                  repeatable, mandatory, hidden)
17237 VALUES (1, 'authority', '500', 'm', $$Medium of performance for music$$,
17238 TRUE, FALSE, FALSE);
17239 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17240                                  repeatable, mandatory, hidden)
17241 VALUES (1, 'authority', '500', 'n', $$Number of part/section of a work$$,
17242 TRUE, FALSE, FALSE);
17243 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17244                                  repeatable, mandatory, hidden)
17245 VALUES (1, 'authority', '500', 'o', $$Arranged statement for music$$,
17246 FALSE, FALSE, FALSE);
17247 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17248                                  repeatable, mandatory, hidden)
17249 VALUES (1, 'authority', '500', 'p', $$Name of part/section of a work$$,
17250 TRUE, FALSE, FALSE);
17251 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17252                                  repeatable, mandatory, hidden)
17253 VALUES (1, 'authority', '500', 'q', $$Fuller form of name$$,
17254 FALSE, FALSE, FALSE);
17255 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17256                                  repeatable, mandatory, hidden)
17257 VALUES (1, 'authority', '500', 'r', $$Key for music$$,
17258 FALSE, FALSE, FALSE);
17259 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17260                                  repeatable, mandatory, hidden)
17261 VALUES (1, 'authority', '500', 's', $$Version$$,
17262 FALSE, FALSE, FALSE);
17263 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17264                                  repeatable, mandatory, hidden)
17265 VALUES (1, 'authority', '500', 't', $$Title of a work$$,
17266 FALSE, FALSE, FALSE);
17267 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17268                                  repeatable, mandatory, hidden)
17269 VALUES (1, 'authority', '500', 'v', $$Form subdivision$$,
17270 TRUE, FALSE, FALSE);
17271 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17272                                  repeatable, mandatory, hidden)
17273 VALUES (1, 'authority', '500', 'w', $$Control subfield$$,
17274 FALSE, FALSE, FALSE);
17275 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17276                                  repeatable, mandatory, hidden)
17277 VALUES (1, 'authority', '500', 'x', $$General subdivision$$,
17278 TRUE, FALSE, FALSE);
17279 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17280                                  repeatable, mandatory, hidden)
17281 VALUES (1, 'authority', '500', 'y', $$Chronological subdivision$$,
17282 TRUE, FALSE, FALSE);
17283 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17284                                  repeatable, mandatory, hidden)
17285 VALUES (1, 'authority', '500', 'z', $$Geographic subdivision$$,
17286 TRUE, FALSE, FALSE);
17287 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17288                                  repeatable, mandatory, hidden)
17289 VALUES (1, 'authority', '500', '0', $$Record control number$$,
17290 TRUE, FALSE, FALSE);
17291 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17292                                  repeatable, mandatory, hidden)
17293 VALUES (1, 'authority', '500', '4', $$Relationship code$$,
17294 TRUE, FALSE, FALSE);
17295 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17296                                  repeatable, mandatory, hidden)
17297 VALUES (1, 'authority', '500', '5', $$Institution to which field applies$$,
17298 TRUE, FALSE, FALSE);
17299 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17300                                  repeatable, mandatory, hidden)
17301 VALUES (1, 'authority', '500', '6', $$Linkage$$,
17302 FALSE, FALSE, FALSE);
17303 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17304                                  repeatable, mandatory, hidden)
17305 VALUES (1, 'authority', '500', '8', $$Field link and sequence number$$,
17306 TRUE, FALSE, FALSE);
17307 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
17308                               fixed_field, repeatable, mandatory, hidden)
17309 VALUES (1, 'authority', '510', $$See Also From Tracing-Corporate Name$$, $$Tracing for a corporate name reference.$$,
17310 FALSE, TRUE, FALSE, FALSE);
17311 INSERT INTO config.record_attr_definition(name, label)
17312 VALUES ('marc21_authority_510_ind_1', 'MARC 21 authority field 510 indicator position 1');
17313 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17314 VALUES ('marc21_authority_510_ind_1', '0', $$Inverted name$$, FALSE, TRUE);
17315 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17316 VALUES ('marc21_authority_510_ind_1', '1', $$Jurisdiction name$$, FALSE, TRUE);
17317 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17318 VALUES ('marc21_authority_510_ind_1', '2', $$Name in direct order$$, FALSE, TRUE);
17319 INSERT INTO config.record_attr_definition(name, label)
17320 VALUES ('marc21_authority_510_ind_2', 'MARC 21 authority field 510 indicator position 2');
17321 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17322 VALUES ('marc21_authority_510_ind_2', '#', $$Undefined$$, FALSE, TRUE);
17323 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17324                                  repeatable, mandatory, hidden)
17325 VALUES (1, 'authority', '510', 'a', $$Corporate name or jurisdiction name as entry element$$,
17326 FALSE, FALSE, FALSE);
17327 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17328                                  repeatable, mandatory, hidden)
17329 VALUES (1, 'authority', '510', 'b', $$Subordinate unit$$,
17330 TRUE, FALSE, FALSE);
17331 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17332                                  repeatable, mandatory, hidden)
17333 VALUES (1, 'authority', '510', 'c', $$Location of meeting$$,
17334 FALSE, FALSE, FALSE);
17335 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17336                                  repeatable, mandatory, hidden)
17337 VALUES (1, 'authority', '510', 'd', $$Date of meeting or treaty signing$$,
17338 TRUE, FALSE, FALSE);
17339 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17340                                  repeatable, mandatory, hidden)
17341 VALUES (1, 'authority', '510', 'e', $$Relator term$$,
17342 TRUE, FALSE, FALSE);
17343 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17344                                  repeatable, mandatory, hidden)
17345 VALUES (1, 'authority', '510', 'f', $$Date of a work$$,
17346 FALSE, FALSE, FALSE);
17347 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17348                                  repeatable, mandatory, hidden)
17349 VALUES (1, 'authority', '510', 'g', $$Miscellaneous information$$,
17350 FALSE, FALSE, FALSE);
17351 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17352                                  repeatable, mandatory, hidden)
17353 VALUES (1, 'authority', '510', 'h', $$Medium$$,
17354 FALSE, FALSE, FALSE);
17355 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17356                                  repeatable, mandatory, hidden)
17357 VALUES (1, 'authority', '510', 'i', $$Relationship information$$,
17358 TRUE, FALSE, FALSE);
17359 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17360                                  repeatable, mandatory, hidden)
17361 VALUES (1, 'authority', '510', 'k', $$Form subheading$$,
17362 TRUE, FALSE, FALSE);
17363 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17364                                  repeatable, mandatory, hidden)
17365 VALUES (1, 'authority', '510', 'l', $$Language of a work$$,
17366 FALSE, FALSE, FALSE);
17367 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17368                                  repeatable, mandatory, hidden)
17369 VALUES (1, 'authority', '510', 'm', $$Medium of performance for music$$,
17370 TRUE, FALSE, FALSE);
17371 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17372                                  repeatable, mandatory, hidden)
17373 VALUES (1, 'authority', '510', 'n', $$Number of part/section/meeting$$,
17374 TRUE, FALSE, FALSE);
17375 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17376                                  repeatable, mandatory, hidden)
17377 VALUES (1, 'authority', '510', 'o', $$Arranged statement for music$$,
17378 FALSE, FALSE, FALSE);
17379 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17380                                  repeatable, mandatory, hidden)
17381 VALUES (1, 'authority', '510', 'p', $$Name of part/section of a work$$,
17382 TRUE, FALSE, FALSE);
17383 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17384                                  repeatable, mandatory, hidden)
17385 VALUES (1, 'authority', '510', 'r', $$Key for music$$,
17386 FALSE, FALSE, FALSE);
17387 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17388                                  repeatable, mandatory, hidden)
17389 VALUES (1, 'authority', '510', 's', $$Version$$,
17390 FALSE, FALSE, FALSE);
17391 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17392                                  repeatable, mandatory, hidden)
17393 VALUES (1, 'authority', '510', 't', $$Title of a work$$,
17394 FALSE, FALSE, FALSE);
17395 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17396                                  repeatable, mandatory, hidden)
17397 VALUES (1, 'authority', '510', 'v', $$Form subdivision$$,
17398 TRUE, FALSE, FALSE);
17399 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17400                                  repeatable, mandatory, hidden)
17401 VALUES (1, 'authority', '510', 'w', $$Control subfield$$,
17402 FALSE, FALSE, FALSE);
17403 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17404                                  repeatable, mandatory, hidden)
17405 VALUES (1, 'authority', '510', 'x', $$General subdivision$$,
17406 TRUE, FALSE, FALSE);
17407 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17408                                  repeatable, mandatory, hidden)
17409 VALUES (1, 'authority', '510', 'y', $$Chronological subdivision$$,
17410 TRUE, FALSE, FALSE);
17411 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17412                                  repeatable, mandatory, hidden)
17413 VALUES (1, 'authority', '510', 'z', $$Geographic subdivision$$,
17414 TRUE, FALSE, FALSE);
17415 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17416                                  repeatable, mandatory, hidden)
17417 VALUES (1, 'authority', '510', '0', $$Record control number$$,
17418 TRUE, FALSE, FALSE);
17419 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17420                                  repeatable, mandatory, hidden)
17421 VALUES (1, 'authority', '510', '4', $$Relationship code$$,
17422 TRUE, FALSE, FALSE);
17423 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17424                                  repeatable, mandatory, hidden)
17425 VALUES (1, 'authority', '510', '5', $$Institution to which field applies$$,
17426 TRUE, FALSE, FALSE);
17427 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17428                                  repeatable, mandatory, hidden)
17429 VALUES (1, 'authority', '510', '6', $$Linkage$$,
17430 FALSE, FALSE, FALSE);
17431 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17432                                  repeatable, mandatory, hidden)
17433 VALUES (1, 'authority', '510', '8', $$Field link and sequence number$$,
17434 TRUE, FALSE, FALSE);
17435 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
17436                               fixed_field, repeatable, mandatory, hidden)
17437 VALUES (1, 'authority', '511', $$See Also From Tracing-Meeting Name$$, $$Tracing for a meeting name reference. It is used in an established heading record or an established heading and subdivision record to trace a see also from reference from an established meeting name to a related established heading.$$,
17438 FALSE, TRUE, FALSE, FALSE);
17439 INSERT INTO config.record_attr_definition(name, label)
17440 VALUES ('marc21_authority_511_ind_1', 'MARC 21 authority field 511 indicator position 1');
17441 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17442 VALUES ('marc21_authority_511_ind_1', '0', $$Inverted name$$, FALSE, TRUE);
17443 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17444 VALUES ('marc21_authority_511_ind_1', '1', $$Jurisdiction name$$, FALSE, TRUE);
17445 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17446 VALUES ('marc21_authority_511_ind_1', '2', $$Name in direct order$$, FALSE, TRUE);
17447 INSERT INTO config.record_attr_definition(name, label)
17448 VALUES ('marc21_authority_511_ind_2', 'MARC 21 authority field 511 indicator position 2');
17449 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17450 VALUES ('marc21_authority_511_ind_2', '#', $$Undefined$$, FALSE, TRUE);
17451 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17452                                  repeatable, mandatory, hidden)
17453 VALUES (1, 'authority', '511', 'a', $$Meeting name or jurisdiction name as entry element$$,
17454 FALSE, FALSE, FALSE);
17455 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17456                                  repeatable, mandatory, hidden)
17457 VALUES (1, 'authority', '511', 'c', $$Location of meeting$$,
17458 FALSE, FALSE, FALSE);
17459 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17460                                  repeatable, mandatory, hidden)
17461 VALUES (1, 'authority', '511', 'd', $$Date of meeting$$,
17462 FALSE, FALSE, FALSE);
17463 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17464                                  repeatable, mandatory, hidden)
17465 VALUES (1, 'authority', '511', 'e', $$Subordinate unit$$,
17466 TRUE, FALSE, FALSE);
17467 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17468                                  repeatable, mandatory, hidden)
17469 VALUES (1, 'authority', '511', 'f', $$Date of a work$$,
17470 FALSE, FALSE, FALSE);
17471 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17472                                  repeatable, mandatory, hidden)
17473 VALUES (1, 'authority', '511', 'g', $$Miscellaneous information$$,
17474 FALSE, FALSE, FALSE);
17475 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17476                                  repeatable, mandatory, hidden)
17477 VALUES (1, 'authority', '511', 'h', $$Medium$$,
17478 FALSE, FALSE, FALSE);
17479 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17480                                  repeatable, mandatory, hidden)
17481 VALUES (1, 'authority', '511', 'i', $$Relationship information$$,
17482 TRUE, FALSE, FALSE);
17483 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17484                                  repeatable, mandatory, hidden)
17485 VALUES (1, 'authority', '511', 'j', $$Relator term$$,
17486 TRUE, FALSE, FALSE);
17487 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17488                                  repeatable, mandatory, hidden)
17489 VALUES (1, 'authority', '511', 'k', $$Form subheading$$,
17490 TRUE, FALSE, FALSE);
17491 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17492                                  repeatable, mandatory, hidden)
17493 VALUES (1, 'authority', '511', 'l', $$Language of a work$$,
17494 FALSE, FALSE, FALSE);
17495 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17496                                  repeatable, mandatory, hidden)
17497 VALUES (1, 'authority', '511', 'n', $$Number of part/section/meeting$$,
17498 TRUE, FALSE, FALSE);
17499 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17500                                  repeatable, mandatory, hidden)
17501 VALUES (1, 'authority', '511', 'p', $$Name of part/section of a work$$,
17502 TRUE, FALSE, FALSE);
17503 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17504                                  repeatable, mandatory, hidden)
17505 VALUES (1, 'authority', '511', 'q', $$Name of meeting following jurisdiction name entry element$$,
17506 FALSE, FALSE, FALSE);
17507 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17508                                  repeatable, mandatory, hidden)
17509 VALUES (1, 'authority', '511', 's', $$Version$$,
17510 FALSE, FALSE, FALSE);
17511 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17512                                  repeatable, mandatory, hidden)
17513 VALUES (1, 'authority', '511', 't', $$Title of a work$$,
17514 FALSE, FALSE, FALSE);
17515 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17516                                  repeatable, mandatory, hidden)
17517 VALUES (1, 'authority', '511', 'v', $$Form subdivision$$,
17518 TRUE, FALSE, FALSE);
17519 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17520                                  repeatable, mandatory, hidden)
17521 VALUES (1, 'authority', '511', 'w', $$Control subfield$$,
17522 FALSE, FALSE, FALSE);
17523 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17524                                  repeatable, mandatory, hidden)
17525 VALUES (1, 'authority', '511', 'x', $$General subdivision$$,
17526 TRUE, FALSE, FALSE);
17527 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17528                                  repeatable, mandatory, hidden)
17529 VALUES (1, 'authority', '511', 'y', $$Chronological subdivision$$,
17530 TRUE, FALSE, FALSE);
17531 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17532                                  repeatable, mandatory, hidden)
17533 VALUES (1, 'authority', '511', 'z', $$Geographic subdivision$$,
17534 TRUE, FALSE, FALSE);
17535 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17536                                  repeatable, mandatory, hidden)
17537 VALUES (1, 'authority', '511', '0', $$Record control number$$,
17538 TRUE, FALSE, FALSE);
17539 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17540                                  repeatable, mandatory, hidden)
17541 VALUES (1, 'authority', '511', '4', $$Relationship code$$,
17542 TRUE, FALSE, FALSE);
17543 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17544                                  repeatable, mandatory, hidden)
17545 VALUES (1, 'authority', '511', '5', $$Institution to which field applies$$,
17546 TRUE, FALSE, FALSE);
17547 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17548                                  repeatable, mandatory, hidden)
17549 VALUES (1, 'authority', '511', '6', $$Linkage$$,
17550 FALSE, FALSE, FALSE);
17551 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17552                                  repeatable, mandatory, hidden)
17553 VALUES (1, 'authority', '511', '8', $$Field link and sequence number$$,
17554 TRUE, FALSE, FALSE);
17555 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
17556                               fixed_field, repeatable, mandatory, hidden)
17557 VALUES (1, 'authority', '530', $$See Also From Tracing-Uniform Title$$, $$Tracing for a uniform title reference.$$,
17558 FALSE, TRUE, FALSE, FALSE);
17559 INSERT INTO config.record_attr_definition(name, label)
17560 VALUES ('marc21_authority_530_ind_1', 'MARC 21 authority field 530 indicator position 1');
17561 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17562 VALUES ('marc21_authority_530_ind_1', '#', $$Undefined$$, FALSE, TRUE);
17563 INSERT INTO config.record_attr_definition(name, label)
17564 VALUES ('marc21_authority_530_ind_2', 'MARC 21 authority field 530 indicator position 2');
17565 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17566 VALUES ('marc21_authority_530_ind_2', '0', $$No nonfiling characters$$, FALSE, TRUE);
17567 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17568 VALUES ('marc21_authority_530_ind_2', '1', $$Number of nonfiling characters - 1$$, FALSE, TRUE);
17569 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17570 VALUES ('marc21_authority_530_ind_2', '2', $$Number of nonfiling characters - 2$$, FALSE, TRUE);
17571 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17572 VALUES ('marc21_authority_530_ind_2', '3', $$Number of nonfiling characters - 3$$, FALSE, TRUE);
17573 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17574 VALUES ('marc21_authority_530_ind_2', '4', $$Number of nonfiling characters - 4$$, FALSE, TRUE);
17575 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17576 VALUES ('marc21_authority_530_ind_2', '5', $$Number of nonfiling characters - 5$$, FALSE, TRUE);
17577 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17578 VALUES ('marc21_authority_530_ind_2', '6', $$Number of nonfiling characters - 6$$, FALSE, TRUE);
17579 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17580 VALUES ('marc21_authority_530_ind_2', '7', $$Number of nonfiling characters - 7$$, FALSE, TRUE);
17581 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17582 VALUES ('marc21_authority_530_ind_2', '8', $$Number of nonfiling characters - 8$$, FALSE, TRUE);
17583 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17584 VALUES ('marc21_authority_530_ind_2', '9', $$Number of nonfiling characters - 9$$, FALSE, TRUE);
17585 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17586                                  repeatable, mandatory, hidden)
17587 VALUES (1, 'authority', '530', 'a', $$Uniform title$$,
17588 FALSE, FALSE, FALSE);
17589 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17590                                  repeatable, mandatory, hidden)
17591 VALUES (1, 'authority', '530', 'd', $$Date of treaty signing$$,
17592 TRUE, FALSE, FALSE);
17593 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17594                                  repeatable, mandatory, hidden)
17595 VALUES (1, 'authority', '530', 'f', $$Date of a work$$,
17596 FALSE, FALSE, FALSE);
17597 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17598                                  repeatable, mandatory, hidden)
17599 VALUES (1, 'authority', '530', 'g', $$Miscellaneous information$$,
17600 FALSE, FALSE, FALSE);
17601 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17602                                  repeatable, mandatory, hidden)
17603 VALUES (1, 'authority', '530', 'h', $$Medium$$,
17604 FALSE, FALSE, FALSE);
17605 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17606                                  repeatable, mandatory, hidden)
17607 VALUES (1, 'authority', '530', 'i', $$Relationship information$$,
17608 TRUE, FALSE, FALSE);
17609 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17610                                  repeatable, mandatory, hidden)
17611 VALUES (1, 'authority', '530', 'k', $$Form subheading$$,
17612 TRUE, FALSE, FALSE);
17613 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17614                                  repeatable, mandatory, hidden)
17615 VALUES (1, 'authority', '530', 'l', $$Language of a work$$,
17616 FALSE, FALSE, FALSE);
17617 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17618                                  repeatable, mandatory, hidden)
17619 VALUES (1, 'authority', '530', 'm', $$Medium of performance for music$$,
17620 TRUE, FALSE, FALSE);
17621 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17622                                  repeatable, mandatory, hidden)
17623 VALUES (1, 'authority', '530', 'n', $$Number of part/section of a work$$,
17624 TRUE, FALSE, FALSE);
17625 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17626                                  repeatable, mandatory, hidden)
17627 VALUES (1, 'authority', '530', 'o', $$Arranged statement for music$$,
17628 FALSE, FALSE, FALSE);
17629 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17630                                  repeatable, mandatory, hidden)
17631 VALUES (1, 'authority', '530', 'p', $$Name of part/section of a work$$,
17632 TRUE, FALSE, FALSE);
17633 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17634                                  repeatable, mandatory, hidden)
17635 VALUES (1, 'authority', '530', 'r', $$Key for music$$,
17636 FALSE, FALSE, FALSE);
17637 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17638                                  repeatable, mandatory, hidden)
17639 VALUES (1, 'authority', '530', 's', $$Version$$,
17640 FALSE, FALSE, FALSE);
17641 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17642                                  repeatable, mandatory, hidden)
17643 VALUES (1, 'authority', '530', 't', $$Title of a work$$,
17644 FALSE, FALSE, FALSE);
17645 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17646                                  repeatable, mandatory, hidden)
17647 VALUES (1, 'authority', '530', 'v', $$Form subdivision$$,
17648 TRUE, FALSE, FALSE);
17649 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17650                                  repeatable, mandatory, hidden)
17651 VALUES (1, 'authority', '530', 'w', $$Control subfield$$,
17652 FALSE, FALSE, FALSE);
17653 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17654                                  repeatable, mandatory, hidden)
17655 VALUES (1, 'authority', '530', 'x', $$General subdivision$$,
17656 TRUE, FALSE, FALSE);
17657 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17658                                  repeatable, mandatory, hidden)
17659 VALUES (1, 'authority', '530', 'y', $$Chronological subdivision$$,
17660 TRUE, FALSE, FALSE);
17661 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17662                                  repeatable, mandatory, hidden)
17663 VALUES (1, 'authority', '530', 'z', $$Geographic subdivision$$,
17664 TRUE, FALSE, FALSE);
17665 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17666                                  repeatable, mandatory, hidden)
17667 VALUES (1, 'authority', '530', '0', $$Record control number$$,
17668 TRUE, FALSE, FALSE);
17669 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17670                                  repeatable, mandatory, hidden)
17671 VALUES (1, 'authority', '530', '4', $$Relationship code$$,
17672 TRUE, FALSE, FALSE);
17673 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17674                                  repeatable, mandatory, hidden)
17675 VALUES (1, 'authority', '530', '5', $$Institution to which field applies$$,
17676 TRUE, FALSE, FALSE);
17677 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17678                                  repeatable, mandatory, hidden)
17679 VALUES (1, 'authority', '530', '6', $$Linkage$$,
17680 FALSE, FALSE, FALSE);
17681 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17682                                  repeatable, mandatory, hidden)
17683 VALUES (1, 'authority', '530', '8', $$Field link and sequence number$$,
17684 TRUE, FALSE, FALSE);
17685 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
17686                               fixed_field, repeatable, mandatory, hidden)
17687 VALUES (1, 'authority', '548', $$See Also From Tracing-Chronological Term$$, $$Tracing for a chronological term reference.$$,
17688 FALSE, TRUE, FALSE, FALSE);
17689 INSERT INTO config.record_attr_definition(name, label)
17690 VALUES ('marc21_authority_548_ind_1', 'MARC 21 authority field 548 indicator position 1');
17691 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17692 VALUES ('marc21_authority_548_ind_1', '#', $$Undefined$$, FALSE, TRUE);
17693 INSERT INTO config.record_attr_definition(name, label)
17694 VALUES ('marc21_authority_548_ind_2', 'MARC 21 authority field 548 indicator position 2');
17695 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17696 VALUES ('marc21_authority_548_ind_2', '#', $$Undefined$$, FALSE, TRUE);
17697 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17698                                  repeatable, mandatory, hidden)
17699 VALUES (1, 'authority', '548', 'a', $$Chronological term$$,
17700 FALSE, FALSE, FALSE);
17701 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17702                                  repeatable, mandatory, hidden)
17703 VALUES (1, 'authority', '548', 'i', $$Relationship information$$,
17704 TRUE, FALSE, FALSE);
17705 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17706                                  repeatable, mandatory, hidden)
17707 VALUES (1, 'authority', '548', 'v', $$Form subdivision$$,
17708 TRUE, FALSE, FALSE);
17709 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17710                                  repeatable, mandatory, hidden)
17711 VALUES (1, 'authority', '548', 'w', $$Control subfield$$,
17712 FALSE, FALSE, FALSE);
17713 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17714                                  repeatable, mandatory, hidden)
17715 VALUES (1, 'authority', '548', 'x', $$General subdivision$$,
17716 TRUE, FALSE, FALSE);
17717 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17718                                  repeatable, mandatory, hidden)
17719 VALUES (1, 'authority', '548', 'y', $$Chronological subdivision$$,
17720 TRUE, FALSE, FALSE);
17721 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17722                                  repeatable, mandatory, hidden)
17723 VALUES (1, 'authority', '548', 'z', $$Geographic subdivision$$,
17724 TRUE, FALSE, FALSE);
17725 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17726                                  repeatable, mandatory, hidden)
17727 VALUES (1, 'authority', '548', '0', $$Record control number$$,
17728 TRUE, FALSE, FALSE);
17729 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17730                                  repeatable, mandatory, hidden)
17731 VALUES (1, 'authority', '548', '4', $$Relationship code$$,
17732 TRUE, FALSE, FALSE);
17733 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17734                                  repeatable, mandatory, hidden)
17735 VALUES (1, 'authority', '548', '5', $$Institution to which field applies$$,
17736 TRUE, FALSE, FALSE);
17737 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17738                                  repeatable, mandatory, hidden)
17739 VALUES (1, 'authority', '548', '6', $$Linkage$$,
17740 FALSE, FALSE, FALSE);
17741 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17742                                  repeatable, mandatory, hidden)
17743 VALUES (1, 'authority', '548', '8', $$Field link and sequence number$$,
17744 TRUE, FALSE, FALSE);
17745 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
17746                               fixed_field, repeatable, mandatory, hidden)
17747 VALUES (1, 'authority', '550', $$See Also From Tracing-Topical Term$$, $$Tracing for a topical term reference.$$,
17748 FALSE, TRUE, FALSE, FALSE);
17749 INSERT INTO config.record_attr_definition(name, label)
17750 VALUES ('marc21_authority_550_ind_1', 'MARC 21 authority field 550 indicator position 1');
17751 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17752 VALUES ('marc21_authority_550_ind_1', '#', $$Undefined$$, FALSE, TRUE);
17753 INSERT INTO config.record_attr_definition(name, label)
17754 VALUES ('marc21_authority_550_ind_2', 'MARC 21 authority field 550 indicator position 2');
17755 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17756 VALUES ('marc21_authority_550_ind_2', '#', $$Undefined$$, FALSE, TRUE);
17757 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17758                                  repeatable, mandatory, hidden)
17759 VALUES (1, 'authority', '550', 'a', $$Topical term or geographic name entry element$$,
17760 FALSE, FALSE, FALSE);
17761 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17762                                  repeatable, mandatory, hidden)
17763 VALUES (1, 'authority', '550', 'b', $$Topical term following geographic name entry element$$,
17764 FALSE, FALSE, FALSE);
17765 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17766                                  repeatable, mandatory, hidden)
17767 VALUES (1, 'authority', '550', 'i', $$Relationship information$$,
17768 TRUE, FALSE, FALSE);
17769 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17770                                  repeatable, mandatory, hidden)
17771 VALUES (1, 'authority', '550', 'v', $$Form subdivision$$,
17772 TRUE, FALSE, FALSE);
17773 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17774                                  repeatable, mandatory, hidden)
17775 VALUES (1, 'authority', '550', 'w', $$Control subfield$$,
17776 FALSE, FALSE, FALSE);
17777 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17778                                  repeatable, mandatory, hidden)
17779 VALUES (1, 'authority', '550', 'x', $$General subdivision$$,
17780 TRUE, FALSE, FALSE);
17781 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17782                                  repeatable, mandatory, hidden)
17783 VALUES (1, 'authority', '550', 'y', $$Chronological subdivision$$,
17784 TRUE, FALSE, FALSE);
17785 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17786                                  repeatable, mandatory, hidden)
17787 VALUES (1, 'authority', '550', 'z', $$Geographic subdivision$$,
17788 TRUE, FALSE, FALSE);
17789 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17790                                  repeatable, mandatory, hidden)
17791 VALUES (1, 'authority', '550', '0', $$Record control number$$,
17792 TRUE, FALSE, FALSE);
17793 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17794                                  repeatable, mandatory, hidden)
17795 VALUES (1, 'authority', '550', '4', $$Relationship code$$,
17796 TRUE, FALSE, FALSE);
17797 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17798                                  repeatable, mandatory, hidden)
17799 VALUES (1, 'authority', '550', '5', $$Institution to which field applies$$,
17800 TRUE, FALSE, FALSE);
17801 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17802                                  repeatable, mandatory, hidden)
17803 VALUES (1, 'authority', '550', '6', $$Linkage$$,
17804 FALSE, FALSE, FALSE);
17805 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17806                                  repeatable, mandatory, hidden)
17807 VALUES (1, 'authority', '550', '8', $$Field link and sequence number$$,
17808 TRUE, FALSE, FALSE);
17809 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
17810                               fixed_field, repeatable, mandatory, hidden)
17811 VALUES (1, 'authority', '551', $$See Also From Tracing-Geographic Name$$, $$Tracing for a geographic name reference.$$,
17812 FALSE, TRUE, FALSE, FALSE);
17813 INSERT INTO config.record_attr_definition(name, label)
17814 VALUES ('marc21_authority_551_ind_1', 'MARC 21 authority field 551 indicator position 1');
17815 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17816 VALUES ('marc21_authority_551_ind_1', '#', $$Undefined$$, FALSE, TRUE);
17817 INSERT INTO config.record_attr_definition(name, label)
17818 VALUES ('marc21_authority_551_ind_2', 'MARC 21 authority field 551 indicator position 2');
17819 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17820 VALUES ('marc21_authority_551_ind_2', '#', $$Undefined$$, FALSE, TRUE);
17821 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17822                                  repeatable, mandatory, hidden)
17823 VALUES (1, 'authority', '551', 'a', $$Geographic name$$,
17824 FALSE, FALSE, FALSE);
17825 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17826                                  repeatable, mandatory, hidden)
17827 VALUES (1, 'authority', '551', 'i', $$Relationship information$$,
17828 TRUE, FALSE, FALSE);
17829 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17830                                  repeatable, mandatory, hidden)
17831 VALUES (1, 'authority', '551', 'v', $$Form subdivision$$,
17832 TRUE, FALSE, FALSE);
17833 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17834                                  repeatable, mandatory, hidden)
17835 VALUES (1, 'authority', '551', 'w', $$Control subfield$$,
17836 FALSE, FALSE, FALSE);
17837 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17838                                  repeatable, mandatory, hidden)
17839 VALUES (1, 'authority', '551', 'x', $$General subdivision$$,
17840 TRUE, FALSE, FALSE);
17841 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17842                                  repeatable, mandatory, hidden)
17843 VALUES (1, 'authority', '551', 'y', $$Chronological subdivision$$,
17844 TRUE, FALSE, FALSE);
17845 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17846                                  repeatable, mandatory, hidden)
17847 VALUES (1, 'authority', '551', 'z', $$Geographic subdivision$$,
17848 TRUE, FALSE, FALSE);
17849 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17850                                  repeatable, mandatory, hidden)
17851 VALUES (1, 'authority', '551', '0', $$Record control number$$,
17852 TRUE, FALSE, FALSE);
17853 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17854                                  repeatable, mandatory, hidden)
17855 VALUES (1, 'authority', '551', '4', $$Relationship code$$,
17856 TRUE, FALSE, FALSE);
17857 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17858                                  repeatable, mandatory, hidden)
17859 VALUES (1, 'authority', '551', '5', $$Institution to which field applies$$,
17860 TRUE, FALSE, FALSE);
17861 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17862                                  repeatable, mandatory, hidden)
17863 VALUES (1, 'authority', '551', '6', $$Linkage$$,
17864 FALSE, FALSE, FALSE);
17865 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17866                                  repeatable, mandatory, hidden)
17867 VALUES (1, 'authority', '551', '8', $$Field link and sequence number$$,
17868 TRUE, FALSE, FALSE);
17869 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
17870                               fixed_field, repeatable, mandatory, hidden)
17871 VALUES (1, 'authority', '555', $$See Also From Tracing-Genre/Form Term$$, $$Tracing for a genre/form term reference.$$,
17872 FALSE, TRUE, FALSE, FALSE);
17873 INSERT INTO config.record_attr_definition(name, label)
17874 VALUES ('marc21_authority_555_ind_1', 'MARC 21 authority field 555 indicator position 1');
17875 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17876 VALUES ('marc21_authority_555_ind_1', '#', $$Undefined$$, FALSE, TRUE);
17877 INSERT INTO config.record_attr_definition(name, label)
17878 VALUES ('marc21_authority_555_ind_2', 'MARC 21 authority field 555 indicator position 2');
17879 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17880 VALUES ('marc21_authority_555_ind_2', '#', $$Undefined$$, FALSE, TRUE);
17881 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17882                                  repeatable, mandatory, hidden)
17883 VALUES (1, 'authority', '555', 'a', $$Genre/form term$$,
17884 FALSE, FALSE, FALSE);
17885 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17886                                  repeatable, mandatory, hidden)
17887 VALUES (1, 'authority', '555', 'i', $$Relationship information$$,
17888 TRUE, FALSE, FALSE);
17889 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17890                                  repeatable, mandatory, hidden)
17891 VALUES (1, 'authority', '555', 'v', $$Form subdivision$$,
17892 TRUE, FALSE, FALSE);
17893 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17894                                  repeatable, mandatory, hidden)
17895 VALUES (1, 'authority', '555', 'w', $$Control subfield$$,
17896 FALSE, FALSE, FALSE);
17897 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17898                                  repeatable, mandatory, hidden)
17899 VALUES (1, 'authority', '555', 'x', $$General subdivision$$,
17900 TRUE, FALSE, FALSE);
17901 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17902                                  repeatable, mandatory, hidden)
17903 VALUES (1, 'authority', '555', 'y', $$Chronological subdivision$$,
17904 TRUE, FALSE, FALSE);
17905 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17906                                  repeatable, mandatory, hidden)
17907 VALUES (1, 'authority', '555', 'z', $$Geographic subdivision$$,
17908 TRUE, FALSE, FALSE);
17909 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17910                                  repeatable, mandatory, hidden)
17911 VALUES (1, 'authority', '555', '0', $$Record control number$$,
17912 TRUE, FALSE, FALSE);
17913 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17914                                  repeatable, mandatory, hidden)
17915 VALUES (1, 'authority', '555', '4', $$Relationship code$$,
17916 TRUE, FALSE, FALSE);
17917 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17918                                  repeatable, mandatory, hidden)
17919 VALUES (1, 'authority', '555', '5', $$Institution to which field applies$$,
17920 TRUE, FALSE, FALSE);
17921 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17922                                  repeatable, mandatory, hidden)
17923 VALUES (1, 'authority', '555', '6', $$Linkage$$,
17924 FALSE, FALSE, FALSE);
17925 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17926                                  repeatable, mandatory, hidden)
17927 VALUES (1, 'authority', '555', '8', $$Field link and sequence number$$,
17928 TRUE, FALSE, FALSE);
17929 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
17930                               fixed_field, repeatable, mandatory, hidden)
17931 VALUES (1, 'authority', '580', $$See Also From Tracing-General Subdivision$$, $$Tracing for a general subdivision reference.$$,
17932 FALSE, TRUE, FALSE, FALSE);
17933 INSERT INTO config.record_attr_definition(name, label)
17934 VALUES ('marc21_authority_580_ind_1', 'MARC 21 authority field 580 indicator position 1');
17935 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17936 VALUES ('marc21_authority_580_ind_1', '#', $$Undefined$$, FALSE, TRUE);
17937 INSERT INTO config.record_attr_definition(name, label)
17938 VALUES ('marc21_authority_580_ind_2', 'MARC 21 authority field 580 indicator position 2');
17939 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17940 VALUES ('marc21_authority_580_ind_2', '#', $$Undefined$$, FALSE, TRUE);
17941 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17942                                  repeatable, mandatory, hidden)
17943 VALUES (1, 'authority', '580', 'i', $$Relationship information$$,
17944 TRUE, FALSE, FALSE);
17945 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17946                                  repeatable, mandatory, hidden)
17947 VALUES (1, 'authority', '580', 'v', $$Form subdivision$$,
17948 TRUE, FALSE, FALSE);
17949 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17950                                  repeatable, mandatory, hidden)
17951 VALUES (1, 'authority', '580', 'w', $$Control subfield$$,
17952 FALSE, FALSE, FALSE);
17953 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17954                                  repeatable, mandatory, hidden)
17955 VALUES (1, 'authority', '580', 'x', $$General subdivision$$,
17956 TRUE, FALSE, FALSE);
17957 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17958                                  repeatable, mandatory, hidden)
17959 VALUES (1, 'authority', '580', 'y', $$Chronological subdivision$$,
17960 TRUE, FALSE, FALSE);
17961 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17962                                  repeatable, mandatory, hidden)
17963 VALUES (1, 'authority', '580', 'z', $$Geographic subdivision$$,
17964 TRUE, FALSE, FALSE);
17965 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17966                                  repeatable, mandatory, hidden)
17967 VALUES (1, 'authority', '580', '0', $$Record control number$$,
17968 TRUE, FALSE, FALSE);
17969 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17970                                  repeatable, mandatory, hidden)
17971 VALUES (1, 'authority', '580', '4', $$Relationship code$$,
17972 TRUE, FALSE, FALSE);
17973 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17974                                  repeatable, mandatory, hidden)
17975 VALUES (1, 'authority', '580', '5', $$Institution to which field applies$$,
17976 TRUE, FALSE, FALSE);
17977 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17978                                  repeatable, mandatory, hidden)
17979 VALUES (1, 'authority', '580', '6', $$Linkage$$,
17980 FALSE, FALSE, FALSE);
17981 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17982                                  repeatable, mandatory, hidden)
17983 VALUES (1, 'authority', '580', '8', $$Field link and sequence number$$,
17984 TRUE, FALSE, FALSE);
17985 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
17986                               fixed_field, repeatable, mandatory, hidden)
17987 VALUES (1, 'authority', '581', $$See Also From Tracing-Geographic Subdivision$$, $$Tracing for a geographic subdivision reference.$$,
17988 FALSE, TRUE, FALSE, FALSE);
17989 INSERT INTO config.record_attr_definition(name, label)
17990 VALUES ('marc21_authority_581_ind_1', 'MARC 21 authority field 581 indicator position 1');
17991 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17992 VALUES ('marc21_authority_581_ind_1', '#', $$Undefined$$, FALSE, TRUE);
17993 INSERT INTO config.record_attr_definition(name, label)
17994 VALUES ('marc21_authority_581_ind_2', 'MARC 21 authority field 581 indicator position 2');
17995 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
17996 VALUES ('marc21_authority_581_ind_2', '#', $$Undefined$$, FALSE, TRUE);
17997 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
17998                                  repeatable, mandatory, hidden)
17999 VALUES (1, 'authority', '581', 'i', $$Relationship information$$,
18000 TRUE, FALSE, FALSE);
18001 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18002                                  repeatable, mandatory, hidden)
18003 VALUES (1, 'authority', '581', 'v', $$Form subdivision$$,
18004 TRUE, FALSE, FALSE);
18005 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18006                                  repeatable, mandatory, hidden)
18007 VALUES (1, 'authority', '581', 'w', $$Control subfield$$,
18008 FALSE, FALSE, FALSE);
18009 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18010                                  repeatable, mandatory, hidden)
18011 VALUES (1, 'authority', '581', 'x', $$General subdivision$$,
18012 TRUE, FALSE, FALSE);
18013 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18014                                  repeatable, mandatory, hidden)
18015 VALUES (1, 'authority', '581', 'y', $$Chronological subdivision$$,
18016 TRUE, FALSE, FALSE);
18017 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18018                                  repeatable, mandatory, hidden)
18019 VALUES (1, 'authority', '581', 'z', $$Geographic subdivision$$,
18020 TRUE, FALSE, FALSE);
18021 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18022                                  repeatable, mandatory, hidden)
18023 VALUES (1, 'authority', '581', '0', $$Record control number$$,
18024 TRUE, FALSE, FALSE);
18025 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18026                                  repeatable, mandatory, hidden)
18027 VALUES (1, 'authority', '581', '4', $$Relationship code$$,
18028 TRUE, FALSE, FALSE);
18029 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18030                                  repeatable, mandatory, hidden)
18031 VALUES (1, 'authority', '581', '5', $$Institution to which field applies$$,
18032 TRUE, FALSE, FALSE);
18033 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18034                                  repeatable, mandatory, hidden)
18035 VALUES (1, 'authority', '581', '6', $$Linkage$$,
18036 FALSE, FALSE, FALSE);
18037 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18038                                  repeatable, mandatory, hidden)
18039 VALUES (1, 'authority', '581', '8', $$Field link and sequence number$$,
18040 TRUE, FALSE, FALSE);
18041 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
18042                               fixed_field, repeatable, mandatory, hidden)
18043 VALUES (1, 'authority', '582', $$See Also From Tracing-Chronological Subdivision$$, $$Tracing for a chronological subdivision .$$,
18044 FALSE, TRUE, FALSE, FALSE);
18045 INSERT INTO config.record_attr_definition(name, label)
18046 VALUES ('marc21_authority_582_ind_1', 'MARC 21 authority field 582 indicator position 1');
18047 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18048 VALUES ('marc21_authority_582_ind_1', '#', $$Undefined$$, FALSE, TRUE);
18049 INSERT INTO config.record_attr_definition(name, label)
18050 VALUES ('marc21_authority_582_ind_2', 'MARC 21 authority field 582 indicator position 2');
18051 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18052 VALUES ('marc21_authority_582_ind_2', '#', $$Undefined$$, FALSE, TRUE);
18053 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18054                                  repeatable, mandatory, hidden)
18055 VALUES (1, 'authority', '582', 'i', $$Relationship information$$,
18056 TRUE, FALSE, FALSE);
18057 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18058                                  repeatable, mandatory, hidden)
18059 VALUES (1, 'authority', '582', 'v', $$Form subdivision$$,
18060 TRUE, FALSE, FALSE);
18061 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18062                                  repeatable, mandatory, hidden)
18063 VALUES (1, 'authority', '582', 'w', $$Control subfield$$,
18064 FALSE, FALSE, FALSE);
18065 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18066                                  repeatable, mandatory, hidden)
18067 VALUES (1, 'authority', '582', 'x', $$General subdivision$$,
18068 TRUE, FALSE, FALSE);
18069 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18070                                  repeatable, mandatory, hidden)
18071 VALUES (1, 'authority', '582', 'y', $$Chronological subdivision$$,
18072 TRUE, FALSE, FALSE);
18073 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18074                                  repeatable, mandatory, hidden)
18075 VALUES (1, 'authority', '582', 'z', $$Geographic subdivision$$,
18076 TRUE, FALSE, FALSE);
18077 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18078                                  repeatable, mandatory, hidden)
18079 VALUES (1, 'authority', '582', '0', $$Record control number$$,
18080 TRUE, FALSE, FALSE);
18081 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18082                                  repeatable, mandatory, hidden)
18083 VALUES (1, 'authority', '582', '4', $$Relationship code$$,
18084 TRUE, FALSE, FALSE);
18085 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18086                                  repeatable, mandatory, hidden)
18087 VALUES (1, 'authority', '582', '5', $$Institution to which field applies$$,
18088 TRUE, FALSE, FALSE);
18089 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18090                                  repeatable, mandatory, hidden)
18091 VALUES (1, 'authority', '582', '6', $$Linkage$$,
18092 FALSE, FALSE, FALSE);
18093 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18094                                  repeatable, mandatory, hidden)
18095 VALUES (1, 'authority', '582', '8', $$Field link and sequence number$$,
18096 TRUE, FALSE, FALSE);
18097 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
18098                               fixed_field, repeatable, mandatory, hidden)
18099 VALUES (1, 'authority', '585', $$See Also From Tracing-Form Subdivision$$, $$Tracing for a form subdivision reference.$$,
18100 FALSE, TRUE, FALSE, FALSE);
18101 INSERT INTO config.record_attr_definition(name, label)
18102 VALUES ('marc21_authority_585_ind_1', 'MARC 21 authority field 585 indicator position 1');
18103 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18104 VALUES ('marc21_authority_585_ind_1', '#', $$Undefined$$, FALSE, TRUE);
18105 INSERT INTO config.record_attr_definition(name, label)
18106 VALUES ('marc21_authority_585_ind_2', 'MARC 21 authority field 585 indicator position 2');
18107 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18108 VALUES ('marc21_authority_585_ind_2', '#', $$Undefined$$, FALSE, TRUE);
18109 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18110                                  repeatable, mandatory, hidden)
18111 VALUES (1, 'authority', '585', 'i', $$Relationship information$$,
18112 TRUE, FALSE, FALSE);
18113 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18114                                  repeatable, mandatory, hidden)
18115 VALUES (1, 'authority', '585', 'v', $$Form subdivision$$,
18116 TRUE, FALSE, FALSE);
18117 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18118                                  repeatable, mandatory, hidden)
18119 VALUES (1, 'authority', '585', 'w', $$Control subfield$$,
18120 FALSE, FALSE, FALSE);
18121 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18122                                  repeatable, mandatory, hidden)
18123 VALUES (1, 'authority', '585', 'x', $$General subdivision$$,
18124 TRUE, FALSE, FALSE);
18125 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18126                                  repeatable, mandatory, hidden)
18127 VALUES (1, 'authority', '585', 'y', $$Chronological subdivision$$,
18128 TRUE, FALSE, FALSE);
18129 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18130                                  repeatable, mandatory, hidden)
18131 VALUES (1, 'authority', '585', 'z', $$Geographic subdivision$$,
18132 TRUE, FALSE, FALSE);
18133 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18134                                  repeatable, mandatory, hidden)
18135 VALUES (1, 'authority', '585', '0', $$Record control number$$,
18136 TRUE, FALSE, FALSE);
18137 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18138                                  repeatable, mandatory, hidden)
18139 VALUES (1, 'authority', '585', '4', $$Relationship code$$,
18140 TRUE, FALSE, FALSE);
18141 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18142                                  repeatable, mandatory, hidden)
18143 VALUES (1, 'authority', '585', '5', $$Institution to which field applies$$,
18144 TRUE, FALSE, FALSE);
18145 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18146                                  repeatable, mandatory, hidden)
18147 VALUES (1, 'authority', '585', '6', $$Linkage$$,
18148 FALSE, FALSE, FALSE);
18149 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18150                                  repeatable, mandatory, hidden)
18151 VALUES (1, 'authority', '585', '8', $$Field link and sequence number$$,
18152 TRUE, FALSE, FALSE);
18153 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
18154                               fixed_field, repeatable, mandatory, hidden)
18155 VALUES (1, 'authority', '640', $$Series Dates of Publication and/or Sequential Designation$$, $$Beginning/ending date(s) of publication and/or sequential designations used on items in a series named in the 1XX field of an established heading record for a series. May also contain a citation for the source of the information.$$,
18156 FALSE, TRUE, FALSE, FALSE);
18157 INSERT INTO config.record_attr_definition(name, label)
18158 VALUES ('marc21_authority_640_ind_1', 'MARC 21 authority field 640 indicator position 1');
18159 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18160 VALUES ('marc21_authority_640_ind_1', '0', $$Formatted style$$, FALSE, TRUE);
18161 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18162 VALUES ('marc21_authority_640_ind_1', '1', $$Unformatted style$$, FALSE, TRUE);
18163 INSERT INTO config.record_attr_definition(name, label)
18164 VALUES ('marc21_authority_640_ind_2', 'MARC 21 authority field 640 indicator position 2');
18165 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18166 VALUES ('marc21_authority_640_ind_2', '#', $$Undefined$$, FALSE, TRUE);
18167 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18168                                  repeatable, mandatory, hidden)
18169 VALUES (1, 'authority', '640', 'a', $$Dates of publication and/or sequential designation$$,
18170 FALSE, FALSE, FALSE);
18171 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18172                                  repeatable, mandatory, hidden)
18173 VALUES (1, 'authority', '640', 'z', $$Source of information$$,
18174 FALSE, FALSE, FALSE);
18175 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18176                                  repeatable, mandatory, hidden)
18177 VALUES (1, 'authority', '640', '6', $$Linkage$$,
18178 FALSE, FALSE, FALSE);
18179 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18180                                  repeatable, mandatory, hidden)
18181 VALUES (1, 'authority', '640', '8', $$Field link and sequence number$$,
18182 TRUE, FALSE, FALSE);
18183 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
18184                               fixed_field, repeatable, mandatory, hidden)
18185 VALUES (1, 'authority', '641', $$Series Numbering Peculiarities$$, $$Note that describes irregularities in the report year coverage and/or numbering of a series named in the 1XX field of an established heading record for a series. May also contain a citation for the source of the information.$$,
18186 FALSE, TRUE, FALSE, FALSE);
18187 INSERT INTO config.record_attr_definition(name, label)
18188 VALUES ('marc21_authority_641_ind_1', 'MARC 21 authority field 641 indicator position 1');
18189 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18190 VALUES ('marc21_authority_641_ind_1', '#', $$Undefined$$, FALSE, TRUE);
18191 INSERT INTO config.record_attr_definition(name, label)
18192 VALUES ('marc21_authority_641_ind_2', 'MARC 21 authority field 641 indicator position 2');
18193 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18194 VALUES ('marc21_authority_641_ind_2', '#', $$Undefined$$, FALSE, TRUE);
18195 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18196                                  repeatable, mandatory, hidden)
18197 VALUES (1, 'authority', '641', 'a', $$Numbering peculiarities note$$,
18198 FALSE, FALSE, FALSE);
18199 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18200                                  repeatable, mandatory, hidden)
18201 VALUES (1, 'authority', '641', 'z', $$Source of information$$,
18202 FALSE, FALSE, FALSE);
18203 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18204                                  repeatable, mandatory, hidden)
18205 VALUES (1, 'authority', '641', '6', $$Linkage$$,
18206 FALSE, FALSE, FALSE);
18207 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18208                                  repeatable, mandatory, hidden)
18209 VALUES (1, 'authority', '641', '8', $$Field link and sequence number$$,
18210 TRUE, FALSE, FALSE);
18211 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
18212                               fixed_field, repeatable, mandatory, hidden)
18213 VALUES (1, 'authority', '642', $$Series Numbering Example$$, $$Series numbering example that is to be followed in the sequential designation portion of a series added entry tracing in bibliographic records for individual issues of the series named in the 1XX field of an established heading record for a series. Different ranges of volumes/dates or different series numbering examples for different organizations and/or different copies or sets within the same organization are also contained in separate 642 fields.$$,
18214 FALSE, TRUE, FALSE, FALSE);
18215 INSERT INTO config.record_attr_definition(name, label)
18216 VALUES ('marc21_authority_642_ind_1', 'MARC 21 authority field 642 indicator position 1');
18217 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18218 VALUES ('marc21_authority_642_ind_1', '#', $$Undefined$$, FALSE, TRUE);
18219 INSERT INTO config.record_attr_definition(name, label)
18220 VALUES ('marc21_authority_642_ind_2', 'MARC 21 authority field 642 indicator position 2');
18221 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18222 VALUES ('marc21_authority_642_ind_2', '#', $$Undefined$$, FALSE, TRUE);
18223 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18224                                  repeatable, mandatory, hidden)
18225 VALUES (1, 'authority', '642', 'a', $$Series numbering example$$,
18226 FALSE, FALSE, FALSE);
18227 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18228                                  repeatable, mandatory, hidden)
18229 VALUES (1, 'authority', '642', 'd', $$Volumes/dates to which series numbering example applies$$,
18230 FALSE, FALSE, FALSE);
18231 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18232                                  repeatable, mandatory, hidden)
18233 VALUES (1, 'authority', '642', '5', $$Institution/copy to which field applies$$,
18234 TRUE, FALSE, FALSE);
18235 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18236                                  repeatable, mandatory, hidden)
18237 VALUES (1, 'authority', '642', '6', $$Linkage$$,
18238 FALSE, FALSE, FALSE);
18239 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18240                                  repeatable, mandatory, hidden)
18241 VALUES (1, 'authority', '642', '8', $$Field link and sequence number$$,
18242 TRUE, FALSE, FALSE);
18243 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
18244                               fixed_field, repeatable, mandatory, hidden)
18245 VALUES (1, 'authority', '643', $$Series Place and Publisher/Issuing Body$$, $$Place of publication and the name of the publisher/issuing body of the series named in the 1XX field of an established heading record for a series. May also contain the volumes/dates to which the publication information applies.$$,
18246 FALSE, TRUE, FALSE, FALSE);
18247 INSERT INTO config.record_attr_definition(name, label)
18248 VALUES ('marc21_authority_643_ind_1', 'MARC 21 authority field 643 indicator position 1');
18249 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18250 VALUES ('marc21_authority_643_ind_1', '#', $$Undefined$$, FALSE, TRUE);
18251 INSERT INTO config.record_attr_definition(name, label)
18252 VALUES ('marc21_authority_643_ind_2', 'MARC 21 authority field 643 indicator position 2');
18253 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18254 VALUES ('marc21_authority_643_ind_2', '#', $$Undefined$$, FALSE, TRUE);
18255 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18256                                  repeatable, mandatory, hidden)
18257 VALUES (1, 'authority', '643', 'a', $$Place$$,
18258 TRUE, FALSE, FALSE);
18259 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18260                                  repeatable, mandatory, hidden)
18261 VALUES (1, 'authority', '643', 'b', $$Publisher/issuing body$$,
18262 TRUE, FALSE, FALSE);
18263 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18264                                  repeatable, mandatory, hidden)
18265 VALUES (1, 'authority', '643', 'd', $$Volumes/dates to which place and publisher/issuing body apply$$,
18266 FALSE, FALSE, FALSE);
18267 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18268                                  repeatable, mandatory, hidden)
18269 VALUES (1, 'authority', '643', '6', $$Linkage$$,
18270 FALSE, FALSE, FALSE);
18271 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18272                                  repeatable, mandatory, hidden)
18273 VALUES (1, 'authority', '643', '8', $$Field link and sequence number$$,
18274 TRUE, FALSE, FALSE);
18275 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
18276                               fixed_field, repeatable, mandatory, hidden)
18277 VALUES (1, 'authority', '644', $$Series Analysis Practice$$, $$One-character alphabetic code that indicates a specific organization's analysis practice for a series named in the 1XX field of an established heading record for a series. May also contain the volumes/dates and/or the institution/copy identification to which the practice applies.$$,
18278 FALSE, TRUE, FALSE, FALSE);
18279 INSERT INTO config.record_attr_definition(name, label)
18280 VALUES ('marc21_authority_644_ind_1', 'MARC 21 authority field 644 indicator position 1');
18281 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18282 VALUES ('marc21_authority_644_ind_1', '#', $$Undefined$$, FALSE, TRUE);
18283 INSERT INTO config.record_attr_definition(name, label)
18284 VALUES ('marc21_authority_644_ind_2', 'MARC 21 authority field 644 indicator position 2');
18285 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18286 VALUES ('marc21_authority_644_ind_2', '#', $$Undefined$$, FALSE, TRUE);
18287 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18288                                  repeatable, mandatory, hidden)
18289 VALUES (1, 'authority', '644', 'a', $$Series analysis practice$$,
18290 FALSE, FALSE, FALSE);
18291 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18292                                  repeatable, mandatory, hidden)
18293 VALUES (1, 'authority', '644', 'b', $$Exceptions to analysis practice$$,
18294 FALSE, FALSE, FALSE);
18295 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18296                                  repeatable, mandatory, hidden)
18297 VALUES (1, 'authority', '644', 'd', $$Volumes/dates to which analysis practice applies$$,
18298 FALSE, FALSE, FALSE);
18299 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18300                                  repeatable, mandatory, hidden)
18301 VALUES (1, 'authority', '644', '5', $$Institution/copy to which field applies$$,
18302 TRUE, FALSE, FALSE);
18303 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18304                                  repeatable, mandatory, hidden)
18305 VALUES (1, 'authority', '644', '6', $$Linkage$$,
18306 FALSE, FALSE, FALSE);
18307 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18308                                  repeatable, mandatory, hidden)
18309 VALUES (1, 'authority', '644', '8', $$Field link and sequence number$$,
18310 TRUE, FALSE, FALSE);
18311 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
18312                               fixed_field, repeatable, mandatory, hidden)
18313 VALUES (1, 'authority', '645', $$Series Tracing Practice$$, $$One-character alphabetic code that indicates a specific organization's tracing practice for a series named in the 1XX field of an established heading record for a series. May also contain the volumes/dates and/or the institution/copy identification to which the tracing practice applies.$$,
18314 FALSE, TRUE, FALSE, FALSE);
18315 INSERT INTO config.record_attr_definition(name, label)
18316 VALUES ('marc21_authority_645_ind_1', 'MARC 21 authority field 645 indicator position 1');
18317 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18318 VALUES ('marc21_authority_645_ind_1', '#', $$Undefined$$, FALSE, TRUE);
18319 INSERT INTO config.record_attr_definition(name, label)
18320 VALUES ('marc21_authority_645_ind_2', 'MARC 21 authority field 645 indicator position 2');
18321 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18322 VALUES ('marc21_authority_645_ind_2', '#', $$Undefined$$, FALSE, TRUE);
18323 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18324                                  repeatable, mandatory, hidden)
18325 VALUES (1, 'authority', '645', 'a', $$Series tracing practice$$,
18326 FALSE, FALSE, FALSE);
18327 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18328                                  repeatable, mandatory, hidden)
18329 VALUES (1, 'authority', '645', 'd', $$Volumes/dates to which tracing practice applies$$,
18330 FALSE, FALSE, FALSE);
18331 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18332                                  repeatable, mandatory, hidden)
18333 VALUES (1, 'authority', '645', '5', $$Institution/copy to which field applies$$,
18334 TRUE, FALSE, FALSE);
18335 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18336                                  repeatable, mandatory, hidden)
18337 VALUES (1, 'authority', '645', '6', $$Linkage$$,
18338 FALSE, FALSE, FALSE);
18339 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18340                                  repeatable, mandatory, hidden)
18341 VALUES (1, 'authority', '645', '8', $$Field link and sequence number$$,
18342 TRUE, FALSE, FALSE);
18343 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
18344                               fixed_field, repeatable, mandatory, hidden)
18345 VALUES (1, 'authority', '646', $$Series Classification Practice$$, $$One-character alphabetic code that indicates a specific organization's classification practice for a series named in the 1XX field of an established heading record for a series. May also contain the volumes/dates and/or the institution/copy identification to which the classification practice applies.$$,
18346 FALSE, TRUE, FALSE, FALSE);
18347 INSERT INTO config.record_attr_definition(name, label)
18348 VALUES ('marc21_authority_646_ind_1', 'MARC 21 authority field 646 indicator position 1');
18349 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18350 VALUES ('marc21_authority_646_ind_1', '#', $$Undefined$$, FALSE, TRUE);
18351 INSERT INTO config.record_attr_definition(name, label)
18352 VALUES ('marc21_authority_646_ind_2', 'MARC 21 authority field 646 indicator position 2');
18353 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18354 VALUES ('marc21_authority_646_ind_2', '#', $$Undefined$$, FALSE, TRUE);
18355 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18356                                  repeatable, mandatory, hidden)
18357 VALUES (1, 'authority', '646', 'a', $$Series classification practice$$,
18358 FALSE, FALSE, FALSE);
18359 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18360                                  repeatable, mandatory, hidden)
18361 VALUES (1, 'authority', '646', 'd', $$Volumes/dates to which classification practice applies$$,
18362 FALSE, FALSE, FALSE);
18363 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18364                                  repeatable, mandatory, hidden)
18365 VALUES (1, 'authority', '646', '5', $$Institution to which field applies$$,
18366 TRUE, FALSE, FALSE);
18367 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18368                                  repeatable, mandatory, hidden)
18369 VALUES (1, 'authority', '646', '6', $$Linkage$$,
18370 FALSE, FALSE, FALSE);
18371 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18372                                  repeatable, mandatory, hidden)
18373 VALUES (1, 'authority', '646', '8', $$Field link and sequence number$$,
18374 TRUE, FALSE, FALSE);
18375 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
18376                               fixed_field, repeatable, mandatory, hidden)
18377 VALUES (1, 'authority', '663', $$Complex See Also Reference-Name$$, $$and the that are required when relationships exist between an established name and other established names that cannot be adequately conveyed by one or more simple cross references generated from 5XX See Also From Tracing fields.$$,
18378 FALSE, FALSE, FALSE, FALSE);
18379 INSERT INTO config.record_attr_definition(name, label)
18380 VALUES ('marc21_authority_663_ind_1', 'MARC 21 authority field 663 indicator position 1');
18381 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18382 VALUES ('marc21_authority_663_ind_1', '#', $$Undefined$$, FALSE, TRUE);
18383 INSERT INTO config.record_attr_definition(name, label)
18384 VALUES ('marc21_authority_663_ind_2', 'MARC 21 authority field 663 indicator position 2');
18385 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18386 VALUES ('marc21_authority_663_ind_2', '#', $$Undefined$$, FALSE, TRUE);
18387 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18388                                  repeatable, mandatory, hidden)
18389 VALUES (1, 'authority', '663', 'a', $$Explanatory text$$,
18390 TRUE, FALSE, FALSE);
18391 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18392                                  repeatable, mandatory, hidden)
18393 VALUES (1, 'authority', '663', 'b', $$Heading referred to$$,
18394 TRUE, FALSE, FALSE);
18395 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18396                                  repeatable, mandatory, hidden)
18397 VALUES (1, 'authority', '663', 't', $$Title referred to$$,
18398 TRUE, FALSE, FALSE);
18399 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18400                                  repeatable, mandatory, hidden)
18401 VALUES (1, 'authority', '663', '6', $$Linkage$$,
18402 FALSE, FALSE, FALSE);
18403 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18404                                  repeatable, mandatory, hidden)
18405 VALUES (1, 'authority', '663', '8', $$Field link and sequence number$$,
18406 TRUE, FALSE, FALSE);
18407 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
18408                               fixed_field, repeatable, mandatory, hidden)
18409 VALUES (1, 'authority', '664', $$Complex See Reference-Name$$, $$and the that are required in a reference record for names when relationships exist between an unestablished name and one or more established names that cannot be adequately conveyed by simple cross references generated from 4XX See From Tracing fields in the established heading records.$$,
18410 FALSE, FALSE, FALSE, FALSE);
18411 INSERT INTO config.record_attr_definition(name, label)
18412 VALUES ('marc21_authority_664_ind_1', 'MARC 21 authority field 664 indicator position 1');
18413 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18414 VALUES ('marc21_authority_664_ind_1', '#', $$Undefined$$, FALSE, TRUE);
18415 INSERT INTO config.record_attr_definition(name, label)
18416 VALUES ('marc21_authority_664_ind_2', 'MARC 21 authority field 664 indicator position 2');
18417 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18418 VALUES ('marc21_authority_664_ind_2', '#', $$Undefined$$, FALSE, TRUE);
18419 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18420                                  repeatable, mandatory, hidden)
18421 VALUES (1, 'authority', '664', 'a', $$Explanatory text$$,
18422 TRUE, FALSE, FALSE);
18423 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18424                                  repeatable, mandatory, hidden)
18425 VALUES (1, 'authority', '664', 'b', $$Heading referred to$$,
18426 TRUE, FALSE, FALSE);
18427 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18428                                  repeatable, mandatory, hidden)
18429 VALUES (1, 'authority', '664', 't', $$Title referred to$$,
18430 TRUE, FALSE, FALSE);
18431 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18432                                  repeatable, mandatory, hidden)
18433 VALUES (1, 'authority', '664', '6', $$Linkage$$,
18434 FALSE, FALSE, FALSE);
18435 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18436                                  repeatable, mandatory, hidden)
18437 VALUES (1, 'authority', '664', '8', $$Field link and sequence number$$,
18438 TRUE, FALSE, FALSE);
18439 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
18440                               fixed_field, repeatable, mandatory, hidden)
18441 VALUES (1, 'authority', '665', $$History Reference$$, $$Text for reference notes with historical information for names that is used in an established heading record when more information is needed about the relationships that exist among three or more established names (usually corporate names) than can be adequately conveyed by simple cross references generated from 5XX See Also From Tracing fields in the established heading records.$$,
18442 FALSE, FALSE, FALSE, FALSE);
18443 INSERT INTO config.record_attr_definition(name, label)
18444 VALUES ('marc21_authority_665_ind_1', 'MARC 21 authority field 665 indicator position 1');
18445 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18446 VALUES ('marc21_authority_665_ind_1', '#', $$Undefined$$, FALSE, TRUE);
18447 INSERT INTO config.record_attr_definition(name, label)
18448 VALUES ('marc21_authority_665_ind_2', 'MARC 21 authority field 665 indicator position 2');
18449 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18450 VALUES ('marc21_authority_665_ind_2', '#', $$Undefined$$, FALSE, TRUE);
18451 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18452                                  repeatable, mandatory, hidden)
18453 VALUES (1, 'authority', '665', 'a', $$History reference$$,
18454 TRUE, FALSE, FALSE);
18455 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18456                                  repeatable, mandatory, hidden)
18457 VALUES (1, 'authority', '665', '6', $$Linkage$$,
18458 FALSE, FALSE, FALSE);
18459 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18460                                  repeatable, mandatory, hidden)
18461 VALUES (1, 'authority', '665', '8', $$Field link and sequence number$$,
18462 TRUE, FALSE, FALSE);
18463 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
18464                               fixed_field, repeatable, mandatory, hidden)
18465 VALUES (1, 'authority', '666', $$General Explanatory Reference-Name$$, $$Note in a reference record that explains how names having a common characteristic (e.g., surnames with separately written prefixes) are entered in a file.$$,
18466 FALSE, FALSE, FALSE, FALSE);
18467 INSERT INTO config.record_attr_definition(name, label)
18468 VALUES ('marc21_authority_666_ind_1', 'MARC 21 authority field 666 indicator position 1');
18469 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18470 VALUES ('marc21_authority_666_ind_1', '#', $$Undefined$$, FALSE, TRUE);
18471 INSERT INTO config.record_attr_definition(name, label)
18472 VALUES ('marc21_authority_666_ind_2', 'MARC 21 authority field 666 indicator position 2');
18473 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18474 VALUES ('marc21_authority_666_ind_2', '#', $$Undefined$$, FALSE, TRUE);
18475 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18476                                  repeatable, mandatory, hidden)
18477 VALUES (1, 'authority', '666', 'a', $$General explanatory reference$$,
18478 TRUE, FALSE, FALSE);
18479 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18480                                  repeatable, mandatory, hidden)
18481 VALUES (1, 'authority', '666', '6', $$Linkage$$,
18482 FALSE, FALSE, FALSE);
18483 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18484                                  repeatable, mandatory, hidden)
18485 VALUES (1, 'authority', '666', '8', $$Field link and sequence number$$,
18486 TRUE, FALSE, FALSE);
18487 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
18488                               fixed_field, repeatable, mandatory, hidden)
18489 VALUES (1, 'authority', '667', $$Nonpublic General Note$$, $$Note that provides general information about a 1XX heading for which a specialized note field has not been defined.$$,
18490 FALSE, TRUE, FALSE, FALSE);
18491 INSERT INTO config.record_attr_definition(name, label)
18492 VALUES ('marc21_authority_667_ind_1', 'MARC 21 authority field 667 indicator position 1');
18493 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18494 VALUES ('marc21_authority_667_ind_1', '#', $$Undefined$$, FALSE, TRUE);
18495 INSERT INTO config.record_attr_definition(name, label)
18496 VALUES ('marc21_authority_667_ind_2', 'MARC 21 authority field 667 indicator position 2');
18497 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18498 VALUES ('marc21_authority_667_ind_2', '#', $$Undefined$$, FALSE, TRUE);
18499 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18500                                  repeatable, mandatory, hidden)
18501 VALUES (1, 'authority', '667', 'a', $$Nonpublic general note$$,
18502 FALSE, FALSE, FALSE);
18503 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18504                                  repeatable, mandatory, hidden)
18505 VALUES (1, 'authority', '667', '5', $$Institution to which field applies$$,
18506 TRUE, FALSE, FALSE);
18507 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18508                                  repeatable, mandatory, hidden)
18509 VALUES (1, 'authority', '667', '6', $$Linkage$$,
18510 FALSE, FALSE, FALSE);
18511 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18512                                  repeatable, mandatory, hidden)
18513 VALUES (1, 'authority', '667', '8', $$Field link and sequence number$$,
18514 TRUE, FALSE, FALSE);
18515 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
18516                               fixed_field, repeatable, mandatory, hidden)
18517 VALUES (1, 'authority', '670', $$Source Data Found$$, $$Citation for a consulted source in which information is found about the 1XX heading in an established heading record, an established heading and subdivision record, a subdivision record or a reference record. May also include the information found in the source.$$,
18518 FALSE, TRUE, FALSE, FALSE);
18519 INSERT INTO config.record_attr_definition(name, label)
18520 VALUES ('marc21_authority_670_ind_1', 'MARC 21 authority field 670 indicator position 1');
18521 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18522 VALUES ('marc21_authority_670_ind_1', '#', $$Undefined$$, FALSE, TRUE);
18523 INSERT INTO config.record_attr_definition(name, label)
18524 VALUES ('marc21_authority_670_ind_2', 'MARC 21 authority field 670 indicator position 2');
18525 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18526 VALUES ('marc21_authority_670_ind_2', '#', $$Undefined$$, FALSE, TRUE);
18527 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18528                                  repeatable, mandatory, hidden)
18529 VALUES (1, 'authority', '670', 'a', $$Source citation$$,
18530 FALSE, FALSE, FALSE);
18531 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18532                                  repeatable, mandatory, hidden)
18533 VALUES (1, 'authority', '670', 'b', $$Information found$$,
18534 FALSE, FALSE, FALSE);
18535 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18536                                  repeatable, mandatory, hidden)
18537 VALUES (1, 'authority', '670', 'u', $$Uniform Resource Identifier$$,
18538 TRUE, FALSE, FALSE);
18539 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18540                                  repeatable, mandatory, hidden)
18541 VALUES (1, 'authority', '670', '6', $$Linkage$$,
18542 FALSE, FALSE, FALSE);
18543 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18544                                  repeatable, mandatory, hidden)
18545 VALUES (1, 'authority', '670', '8', $$Field link and sequence number$$,
18546 TRUE, FALSE, FALSE);
18547 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
18548                               fixed_field, repeatable, mandatory, hidden)
18549 VALUES (1, 'authority', '675', $$Source Data Not Found$$, $$Citation for a consulted source in which no information is found about the 1XX heading in an established heading record, an established heading and subdivision record, or a subdivision record.$$,
18550 FALSE, FALSE, FALSE, FALSE);
18551 INSERT INTO config.record_attr_definition(name, label)
18552 VALUES ('marc21_authority_675_ind_1', 'MARC 21 authority field 675 indicator position 1');
18553 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18554 VALUES ('marc21_authority_675_ind_1', '#', $$Undefined$$, FALSE, TRUE);
18555 INSERT INTO config.record_attr_definition(name, label)
18556 VALUES ('marc21_authority_675_ind_2', 'MARC 21 authority field 675 indicator position 2');
18557 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18558 VALUES ('marc21_authority_675_ind_2', '#', $$Undefined$$, FALSE, TRUE);
18559 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18560                                  repeatable, mandatory, hidden)
18561 VALUES (1, 'authority', '675', 'a', $$Source citation$$,
18562 TRUE, FALSE, FALSE);
18563 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18564                                  repeatable, mandatory, hidden)
18565 VALUES (1, 'authority', '675', '6', $$Linkage$$,
18566 FALSE, FALSE, FALSE);
18567 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18568                                  repeatable, mandatory, hidden)
18569 VALUES (1, 'authority', '675', '8', $$Field link and sequence number$$,
18570 TRUE, FALSE, FALSE);
18571 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
18572                               fixed_field, repeatable, mandatory, hidden)
18573 VALUES (1, 'authority', '678', $$Biographical or Historical Data$$, $$Summary of the essential biographical, historical, or other information about the 1XX heading in an established heading record, an established heading and subdivision record, or a subdivision record.$$,
18574 FALSE, TRUE, FALSE, FALSE);
18575 INSERT INTO config.record_attr_definition(name, label)
18576 VALUES ('marc21_authority_678_ind_1', 'MARC 21 authority field 678 indicator position 1');
18577 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18578 VALUES ('marc21_authority_678_ind_1', '#', $$No information provided$$, FALSE, TRUE);
18579 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18580 VALUES ('marc21_authority_678_ind_1', '0', $$Biographical sketch$$, FALSE, TRUE);
18581 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18582 VALUES ('marc21_authority_678_ind_1', '1', $$Administrative history$$, FALSE, TRUE);
18583 INSERT INTO config.record_attr_definition(name, label)
18584 VALUES ('marc21_authority_678_ind_2', 'MARC 21 authority field 678 indicator position 2');
18585 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18586 VALUES ('marc21_authority_678_ind_2', '#', $$Undefined$$, FALSE, TRUE);
18587 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18588                                  repeatable, mandatory, hidden)
18589 VALUES (1, 'authority', '678', 'a', $$Biographical or historical data$$,
18590 TRUE, FALSE, FALSE);
18591 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18592                                  repeatable, mandatory, hidden)
18593 VALUES (1, 'authority', '678', 'b', $$Expansion$$,
18594 FALSE, FALSE, FALSE);
18595 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18596                                  repeatable, mandatory, hidden)
18597 VALUES (1, 'authority', '678', 'u', $$Uniform Resource Identifier$$,
18598 TRUE, FALSE, FALSE);
18599 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18600                                  repeatable, mandatory, hidden)
18601 VALUES (1, 'authority', '678', '6', $$Linkage$$,
18602 FALSE, FALSE, FALSE);
18603 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18604                                  repeatable, mandatory, hidden)
18605 VALUES (1, 'authority', '678', '8', $$Field link and sequence number$$,
18606 TRUE, FALSE, FALSE);
18607 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
18608                               fixed_field, repeatable, mandatory, hidden)
18609 VALUES (1, 'authority', '680', $$Public General Note$$, $$Note that provides general information about a 1XX heading for which a specialized note field has not been defined. The note is written in a form adequate for public display.$$,
18610 FALSE, TRUE, FALSE, FALSE);
18611 INSERT INTO config.record_attr_definition(name, label)
18612 VALUES ('marc21_authority_680_ind_1', 'MARC 21 authority field 680 indicator position 1');
18613 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18614 VALUES ('marc21_authority_680_ind_1', '#', $$Undefined$$, FALSE, TRUE);
18615 INSERT INTO config.record_attr_definition(name, label)
18616 VALUES ('marc21_authority_680_ind_2', 'MARC 21 authority field 680 indicator position 2');
18617 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18618 VALUES ('marc21_authority_680_ind_2', '#', $$Undefined$$, FALSE, TRUE);
18619 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18620                                  repeatable, mandatory, hidden)
18621 VALUES (1, 'authority', '680', 'a', $$Heading or subdivision term$$,
18622 TRUE, FALSE, FALSE);
18623 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18624                                  repeatable, mandatory, hidden)
18625 VALUES (1, 'authority', '680', 'i', $$Explanatory text$$,
18626 TRUE, FALSE, FALSE);
18627 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18628                                  repeatable, mandatory, hidden)
18629 VALUES (1, 'authority', '680', '5', $$Institution to which field applies$$,
18630 TRUE, FALSE, FALSE);
18631 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18632                                  repeatable, mandatory, hidden)
18633 VALUES (1, 'authority', '680', '6', $$Linkage$$,
18634 FALSE, FALSE, FALSE);
18635 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18636                                  repeatable, mandatory, hidden)
18637 VALUES (1, 'authority', '680', '8', $$Field link and sequence number$$,
18638 TRUE, FALSE, FALSE);
18639 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
18640                               fixed_field, repeatable, mandatory, hidden)
18641 VALUES (1, 'authority', '681', $$Subject Example Tracing Note$$, $$Note that documents the use of the 1XX subject or authorized subdivision heading as an example or reference in fields 260 Complex See Reference, 360 Complex See Also Reference, and/or 680 Public General Note in another authority record.$$,
18642 FALSE, TRUE, FALSE, FALSE);
18643 INSERT INTO config.record_attr_definition(name, label)
18644 VALUES ('marc21_authority_681_ind_1', 'MARC 21 authority field 681 indicator position 1');
18645 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18646 VALUES ('marc21_authority_681_ind_1', '#', $$Undefined$$, FALSE, TRUE);
18647 INSERT INTO config.record_attr_definition(name, label)
18648 VALUES ('marc21_authority_681_ind_2', 'MARC 21 authority field 681 indicator position 2');
18649 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18650 VALUES ('marc21_authority_681_ind_2', '#', $$Undefined$$, FALSE, TRUE);
18651 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18652                                  repeatable, mandatory, hidden)
18653 VALUES (1, 'authority', '681', 'a', $$Subject heading or subdivision term$$,
18654 TRUE, FALSE, FALSE);
18655 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18656                                  repeatable, mandatory, hidden)
18657 VALUES (1, 'authority', '681', 'i', $$Explanatory text$$,
18658 TRUE, FALSE, FALSE);
18659 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18660                                  repeatable, mandatory, hidden)
18661 VALUES (1, 'authority', '681', '6', $$Linkage$$,
18662 FALSE, FALSE, FALSE);
18663 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18664                                  repeatable, mandatory, hidden)
18665 VALUES (1, 'authority', '681', '8', $$Field link and sequence number$$,
18666 TRUE, FALSE, FALSE);
18667 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
18668                               fixed_field, repeatable, mandatory, hidden)
18669 VALUES (1, 'authority', '682', $$Deleted Heading Information$$, $$Explanation for the deletion of an established heading or subdivision record from an authority file. The replacement heading(s) may be contained in subfield(s) $a.$$,
18670 FALSE, FALSE, FALSE, FALSE);
18671 INSERT INTO config.record_attr_definition(name, label)
18672 VALUES ('marc21_authority_682_ind_1', 'MARC 21 authority field 682 indicator position 1');
18673 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18674 VALUES ('marc21_authority_682_ind_1', '#', $$Undefined$$, FALSE, TRUE);
18675 INSERT INTO config.record_attr_definition(name, label)
18676 VALUES ('marc21_authority_682_ind_2', 'MARC 21 authority field 682 indicator position 2');
18677 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18678 VALUES ('marc21_authority_682_ind_2', '#', $$Undefined$$, FALSE, TRUE);
18679 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18680                                  repeatable, mandatory, hidden)
18681 VALUES (1, 'authority', '682', 'a', $$Replacement heading$$,
18682 TRUE, FALSE, FALSE);
18683 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18684                                  repeatable, mandatory, hidden)
18685 VALUES (1, 'authority', '682', 'i', $$Explanatory text$$,
18686 TRUE, FALSE, FALSE);
18687 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18688                                  repeatable, mandatory, hidden)
18689 VALUES (1, 'authority', '682', '0', $$Replacement authority record control number$$,
18690 TRUE, FALSE, FALSE);
18691 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18692                                  repeatable, mandatory, hidden)
18693 VALUES (1, 'authority', '682', '6', $$Linkage$$,
18694 FALSE, FALSE, FALSE);
18695 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18696                                  repeatable, mandatory, hidden)
18697 VALUES (1, 'authority', '682', '8', $$Field link and sequence number$$,
18698 TRUE, FALSE, FALSE);
18699 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
18700                               fixed_field, repeatable, mandatory, hidden)
18701 VALUES (1, 'authority', '688', $$Application History Note$$, $$Information that documents changes in the application of a 1XX heading.$$,
18702 FALSE, TRUE, FALSE, FALSE);
18703 INSERT INTO config.record_attr_definition(name, label)
18704 VALUES ('marc21_authority_688_ind_1', 'MARC 21 authority field 688 indicator position 1');
18705 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18706 VALUES ('marc21_authority_688_ind_1', '#', $$Undefined$$, FALSE, TRUE);
18707 INSERT INTO config.record_attr_definition(name, label)
18708 VALUES ('marc21_authority_688_ind_2', 'MARC 21 authority field 688 indicator position 2');
18709 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18710 VALUES ('marc21_authority_688_ind_2', '#', $$Undefined$$, FALSE, TRUE);
18711 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18712                                  repeatable, mandatory, hidden)
18713 VALUES (1, 'authority', '688', 'a', $$Application history note$$,
18714 FALSE, FALSE, FALSE);
18715 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18716                                  repeatable, mandatory, hidden)
18717 VALUES (1, 'authority', '688', '5', $$Institution to which field applies$$,
18718 TRUE, FALSE, FALSE);
18719 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18720                                  repeatable, mandatory, hidden)
18721 VALUES (1, 'authority', '688', '6', $$Linkage$$,
18722 FALSE, FALSE, FALSE);
18723 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18724                                  repeatable, mandatory, hidden)
18725 VALUES (1, 'authority', '688', '8', $$Field link and sequence number$$,
18726 TRUE, FALSE, FALSE);
18727 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
18728                               fixed_field, repeatable, mandatory, hidden)
18729 VALUES (1, 'authority', '700', $$Established Heading Linking Entry-Personal Name$$, $$Personal name heading that is equivalent to the heading contained in the 1XX field or the same record. It links headings within a system or from different thesauri or authority files.$$,
18730 FALSE, TRUE, FALSE, FALSE);
18731 INSERT INTO config.record_attr_definition(name, label)
18732 VALUES ('marc21_authority_700_ind_1', 'MARC 21 authority field 700 indicator position 1');
18733 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18734 VALUES ('marc21_authority_700_ind_1', '0', $$Forename$$, FALSE, TRUE);
18735 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18736 VALUES ('marc21_authority_700_ind_1', '1', $$Surname$$, FALSE, TRUE);
18737 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18738 VALUES ('marc21_authority_700_ind_1', '3', $$Family name$$, FALSE, TRUE);
18739 INSERT INTO config.record_attr_definition(name, label)
18740 VALUES ('marc21_authority_700_ind_2', 'MARC 21 authority field 700 indicator position 2');
18741 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18742 VALUES ('marc21_authority_700_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE);
18743 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18744 VALUES ('marc21_authority_700_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE);
18745 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18746 VALUES ('marc21_authority_700_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE);
18747 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18748 VALUES ('marc21_authority_700_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE);
18749 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18750 VALUES ('marc21_authority_700_ind_2', '4', $$Source not specified$$, FALSE, TRUE);
18751 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18752 VALUES ('marc21_authority_700_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE);
18753 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18754 VALUES ('marc21_authority_700_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE);
18755 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18756 VALUES ('marc21_authority_700_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
18757 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18758                                  repeatable, mandatory, hidden)
18759 VALUES (1, 'authority', '700', 'a', $$Personal name$$,
18760 FALSE, FALSE, FALSE);
18761 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18762                                  repeatable, mandatory, hidden)
18763 VALUES (1, 'authority', '700', 'b', $$Numeration$$,
18764 FALSE, FALSE, FALSE);
18765 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18766                                  repeatable, mandatory, hidden)
18767 VALUES (1, 'authority', '700', 'c', $$Titles and other words associated with a name$$,
18768 TRUE, FALSE, FALSE);
18769 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18770                                  repeatable, mandatory, hidden)
18771 VALUES (1, 'authority', '700', 'd', $$Dates associated with a name$$,
18772 FALSE, FALSE, FALSE);
18773 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18774                                  repeatable, mandatory, hidden)
18775 VALUES (1, 'authority', '700', 'e', $$Relator term$$,
18776 TRUE, FALSE, FALSE);
18777 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18778                                  repeatable, mandatory, hidden)
18779 VALUES (1, 'authority', '700', 'f', $$Date of a work$$,
18780 FALSE, FALSE, FALSE);
18781 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18782                                  repeatable, mandatory, hidden)
18783 VALUES (1, 'authority', '700', 'g', $$Miscellaneous information$$,
18784 FALSE, FALSE, FALSE);
18785 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18786                                  repeatable, mandatory, hidden)
18787 VALUES (1, 'authority', '700', 'h', $$Medium$$,
18788 FALSE, FALSE, FALSE);
18789 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18790                                  repeatable, mandatory, hidden)
18791 VALUES (1, 'authority', '700', 'j', $$Attribution qualifier$$,
18792 TRUE, FALSE, FALSE);
18793 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18794                                  repeatable, mandatory, hidden)
18795 VALUES (1, 'authority', '700', 'k', $$Form subheading$$,
18796 TRUE, FALSE, FALSE);
18797 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18798                                  repeatable, mandatory, hidden)
18799 VALUES (1, 'authority', '700', 'l', $$Language of a work$$,
18800 FALSE, FALSE, FALSE);
18801 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18802                                  repeatable, mandatory, hidden)
18803 VALUES (1, 'authority', '700', 'm', $$Medium of performance for music$$,
18804 TRUE, FALSE, FALSE);
18805 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18806                                  repeatable, mandatory, hidden)
18807 VALUES (1, 'authority', '700', 'n', $$Number of part/section of a work$$,
18808 TRUE, FALSE, FALSE);
18809 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18810                                  repeatable, mandatory, hidden)
18811 VALUES (1, 'authority', '700', 'o', $$Arranged statement for music$$,
18812 FALSE, FALSE, FALSE);
18813 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18814                                  repeatable, mandatory, hidden)
18815 VALUES (1, 'authority', '700', 'p', $$Name of part/section of a work$$,
18816 TRUE, FALSE, FALSE);
18817 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18818                                  repeatable, mandatory, hidden)
18819 VALUES (1, 'authority', '700', 'q', $$Fuller form of name$$,
18820 FALSE, FALSE, FALSE);
18821 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18822                                  repeatable, mandatory, hidden)
18823 VALUES (1, 'authority', '700', 'r', $$Key for music$$,
18824 FALSE, FALSE, FALSE);
18825 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18826                                  repeatable, mandatory, hidden)
18827 VALUES (1, 'authority', '700', 's', $$Version$$,
18828 FALSE, FALSE, FALSE);
18829 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18830                                  repeatable, mandatory, hidden)
18831 VALUES (1, 'authority', '700', 't', $$Title of a work$$,
18832 FALSE, FALSE, FALSE);
18833 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18834                                  repeatable, mandatory, hidden)
18835 VALUES (1, 'authority', '700', 'v', $$Form subdivision$$,
18836 TRUE, FALSE, FALSE);
18837 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18838                                  repeatable, mandatory, hidden)
18839 VALUES (1, 'authority', '700', 'w', $$Control subfield$$,
18840 FALSE, FALSE, FALSE);
18841 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
18842                               fixed_field, repeatable, mandatory, hidden)
18843 VALUES (1, 'authority', '710', $$Established Heading Linking Entry-Corporate Name$$, $$Corporate name that is equivalent to the name contained in the 110 field of the same record. It links headings within a system or from different thesauri or authority files.$$,
18844 FALSE, TRUE, FALSE, FALSE);
18845 INSERT INTO config.record_attr_definition(name, label)
18846 VALUES ('marc21_authority_710_ind_1', 'MARC 21 authority field 710 indicator position 1');
18847 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18848 VALUES ('marc21_authority_710_ind_1', '0', $$Inverted name$$, FALSE, TRUE);
18849 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18850 VALUES ('marc21_authority_710_ind_1', '1', $$Jurisdiction name$$, FALSE, TRUE);
18851 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18852 VALUES ('marc21_authority_710_ind_1', '2', $$Name in direct order$$, FALSE, TRUE);
18853 INSERT INTO config.record_attr_definition(name, label)
18854 VALUES ('marc21_authority_710_ind_2', 'MARC 21 authority field 710 indicator position 2');
18855 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18856 VALUES ('marc21_authority_710_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE);
18857 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18858 VALUES ('marc21_authority_710_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE);
18859 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18860 VALUES ('marc21_authority_710_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE);
18861 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18862 VALUES ('marc21_authority_710_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE);
18863 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18864 VALUES ('marc21_authority_710_ind_2', '4', $$Source not specified$$, FALSE, TRUE);
18865 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18866 VALUES ('marc21_authority_710_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE);
18867 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18868 VALUES ('marc21_authority_710_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE);
18869 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18870 VALUES ('marc21_authority_710_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
18871 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18872                                  repeatable, mandatory, hidden)
18873 VALUES (1, 'authority', '710', 'a', $$Corporate name or jurisdiction name as entry element$$,
18874 FALSE, FALSE, FALSE);
18875 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18876                                  repeatable, mandatory, hidden)
18877 VALUES (1, 'authority', '710', 'b', $$Subordinate unit$$,
18878 TRUE, FALSE, FALSE);
18879 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18880                                  repeatable, mandatory, hidden)
18881 VALUES (1, 'authority', '710', 'c', $$Location of meeting$$,
18882 FALSE, FALSE, FALSE);
18883 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18884                                  repeatable, mandatory, hidden)
18885 VALUES (1, 'authority', '710', 'd', $$Date of meeting or treaty signing$$,
18886 TRUE, FALSE, FALSE);
18887 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18888                                  repeatable, mandatory, hidden)
18889 VALUES (1, 'authority', '710', 'e', $$Relator term$$,
18890 TRUE, FALSE, FALSE);
18891 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18892                                  repeatable, mandatory, hidden)
18893 VALUES (1, 'authority', '710', 'f', $$Date of a work$$,
18894 FALSE, FALSE, FALSE);
18895 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18896                                  repeatable, mandatory, hidden)
18897 VALUES (1, 'authority', '710', 'g', $$Miscellaneous information$$,
18898 FALSE, FALSE, FALSE);
18899 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18900                                  repeatable, mandatory, hidden)
18901 VALUES (1, 'authority', '710', 'h', $$Medium$$,
18902 FALSE, FALSE, FALSE);
18903 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18904                                  repeatable, mandatory, hidden)
18905 VALUES (1, 'authority', '710', 'k', $$Form subheading$$,
18906 TRUE, FALSE, FALSE);
18907 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18908                                  repeatable, mandatory, hidden)
18909 VALUES (1, 'authority', '710', 'l', $$Language of a work$$,
18910 FALSE, FALSE, FALSE);
18911 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18912                                  repeatable, mandatory, hidden)
18913 VALUES (1, 'authority', '710', 'm', $$Medium of performance for music$$,
18914 TRUE, FALSE, FALSE);
18915 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18916                                  repeatable, mandatory, hidden)
18917 VALUES (1, 'authority', '710', 'n', $$Number of part/section/meeting$$,
18918 TRUE, FALSE, FALSE);
18919 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18920                                  repeatable, mandatory, hidden)
18921 VALUES (1, 'authority', '710', 'o', $$Arranged statement for music$$,
18922 FALSE, FALSE, FALSE);
18923 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18924                                  repeatable, mandatory, hidden)
18925 VALUES (1, 'authority', '710', 'p', $$Name of part/section of a work$$,
18926 TRUE, FALSE, FALSE);
18927 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18928                                  repeatable, mandatory, hidden)
18929 VALUES (1, 'authority', '710', 'r', $$Key for music$$,
18930 FALSE, FALSE, FALSE);
18931 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18932                                  repeatable, mandatory, hidden)
18933 VALUES (1, 'authority', '710', 's', $$Version$$,
18934 FALSE, FALSE, FALSE);
18935 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18936                                  repeatable, mandatory, hidden)
18937 VALUES (1, 'authority', '710', 't', $$Title of a work$$,
18938 FALSE, FALSE, FALSE);
18939 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18940                                  repeatable, mandatory, hidden)
18941 VALUES (1, 'authority', '710', 'v', $$Form subdivision$$,
18942 TRUE, FALSE, FALSE);
18943 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18944                                  repeatable, mandatory, hidden)
18945 VALUES (1, 'authority', '710', 'w', $$Control subfield$$,
18946 FALSE, FALSE, FALSE);
18947 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
18948                               fixed_field, repeatable, mandatory, hidden)
18949 VALUES (1, 'authority', '711', $$Established Heading Linking Entry-Meeting Name$$, $$Meeting name that is equivalent to the name contained in the 111 field of the same record. It links headings within a system or from different thesauri or authority files.$$,
18950 FALSE, TRUE, FALSE, FALSE);
18951 INSERT INTO config.record_attr_definition(name, label)
18952 VALUES ('marc21_authority_711_ind_1', 'MARC 21 authority field 711 indicator position 1');
18953 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18954 VALUES ('marc21_authority_711_ind_1', '0', $$Inverted name$$, FALSE, TRUE);
18955 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18956 VALUES ('marc21_authority_711_ind_1', '1', $$Jurisdiction name$$, FALSE, TRUE);
18957 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18958 VALUES ('marc21_authority_711_ind_1', '2', $$Name in direct order$$, FALSE, TRUE);
18959 INSERT INTO config.record_attr_definition(name, label)
18960 VALUES ('marc21_authority_711_ind_2', 'MARC 21 authority field 711 indicator position 2');
18961 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18962 VALUES ('marc21_authority_711_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE);
18963 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18964 VALUES ('marc21_authority_711_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE);
18965 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18966 VALUES ('marc21_authority_711_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE);
18967 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18968 VALUES ('marc21_authority_711_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE);
18969 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18970 VALUES ('marc21_authority_711_ind_2', '4', $$Source not specified$$, FALSE, TRUE);
18971 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18972 VALUES ('marc21_authority_711_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE);
18973 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18974 VALUES ('marc21_authority_711_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE);
18975 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
18976 VALUES ('marc21_authority_711_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
18977 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18978                                  repeatable, mandatory, hidden)
18979 VALUES (1, 'authority', '711', 'a', $$Meeting name or jurisdiction name as entry element$$,
18980 FALSE, FALSE, FALSE);
18981 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18982                                  repeatable, mandatory, hidden)
18983 VALUES (1, 'authority', '711', 'c', $$Location of meeting$$,
18984 FALSE, FALSE, FALSE);
18985 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18986                                  repeatable, mandatory, hidden)
18987 VALUES (1, 'authority', '711', 'd', $$Date of meeting$$,
18988 FALSE, FALSE, FALSE);
18989 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18990                                  repeatable, mandatory, hidden)
18991 VALUES (1, 'authority', '711', 'e', $$Subordinate unit$$,
18992 TRUE, FALSE, FALSE);
18993 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18994                                  repeatable, mandatory, hidden)
18995 VALUES (1, 'authority', '711', 'f', $$Date of a work$$,
18996 FALSE, FALSE, FALSE);
18997 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
18998                                  repeatable, mandatory, hidden)
18999 VALUES (1, 'authority', '711', 'g', $$Miscellaneous information$$,
19000 FALSE, FALSE, FALSE);
19001 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19002                                  repeatable, mandatory, hidden)
19003 VALUES (1, 'authority', '711', 'h', $$Medium$$,
19004 FALSE, FALSE, FALSE);
19005 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19006                                  repeatable, mandatory, hidden)
19007 VALUES (1, 'authority', '711', 'j', $$Relator term$$,
19008 TRUE, FALSE, FALSE);
19009 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19010                                  repeatable, mandatory, hidden)
19011 VALUES (1, 'authority', '711', 'k', $$Form subheading$$,
19012 TRUE, FALSE, FALSE);
19013 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19014                                  repeatable, mandatory, hidden)
19015 VALUES (1, 'authority', '711', 'l', $$Language of a work$$,
19016 FALSE, FALSE, FALSE);
19017 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19018                                  repeatable, mandatory, hidden)
19019 VALUES (1, 'authority', '711', 'n', $$Number of part/section/meeting$$,
19020 TRUE, FALSE, FALSE);
19021 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19022                                  repeatable, mandatory, hidden)
19023 VALUES (1, 'authority', '711', 'p', $$Name of part/section of a work$$,
19024 TRUE, FALSE, FALSE);
19025 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19026                                  repeatable, mandatory, hidden)
19027 VALUES (1, 'authority', '711', 'q', $$Name of meeting following jurisdiction name entry element$$,
19028 FALSE, FALSE, FALSE);
19029 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19030                                  repeatable, mandatory, hidden)
19031 VALUES (1, 'authority', '711', 's', $$Version$$,
19032 FALSE, FALSE, FALSE);
19033 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19034                                  repeatable, mandatory, hidden)
19035 VALUES (1, 'authority', '711', 't', $$Title of a work$$,
19036 FALSE, FALSE, FALSE);
19037 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19038                                  repeatable, mandatory, hidden)
19039 VALUES (1, 'authority', '711', 'v', $$Form subdivision$$,
19040 TRUE, FALSE, FALSE);
19041 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19042                                  repeatable, mandatory, hidden)
19043 VALUES (1, 'authority', '711', 'w', $$Control subfield$$,
19044 FALSE, FALSE, FALSE);
19045 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
19046                               fixed_field, repeatable, mandatory, hidden)
19047 VALUES (1, 'authority', '730', $$Established Heading Linking Entry-Uniform Title$$, $$Uniform title that is equivalent to the title contained in the 130 field of the same record. It links equivalent headings within a system or from different thesauri or authority files.$$,
19048 FALSE, TRUE, FALSE, FALSE);
19049 INSERT INTO config.record_attr_definition(name, label)
19050 VALUES ('marc21_authority_730_ind_1', 'MARC 21 authority field 730 indicator position 1');
19051 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19052 VALUES ('marc21_authority_730_ind_1', '#', $$Undefined$$, FALSE, TRUE);
19053 INSERT INTO config.record_attr_definition(name, label)
19054 VALUES ('marc21_authority_730_ind_2', 'MARC 21 authority field 730 indicator position 2');
19055 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19056 VALUES ('marc21_authority_730_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE);
19057 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19058 VALUES ('marc21_authority_730_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE);
19059 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19060 VALUES ('marc21_authority_730_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE);
19061 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19062 VALUES ('marc21_authority_730_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE);
19063 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19064 VALUES ('marc21_authority_730_ind_2', '4', $$Source not specified$$, FALSE, TRUE);
19065 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19066 VALUES ('marc21_authority_730_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE);
19067 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19068 VALUES ('marc21_authority_730_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE);
19069 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19070 VALUES ('marc21_authority_730_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
19071 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19072                                  repeatable, mandatory, hidden)
19073 VALUES (1, 'authority', '730', 'a', $$Uniform title$$,
19074 FALSE, FALSE, FALSE);
19075 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19076                                  repeatable, mandatory, hidden)
19077 VALUES (1, 'authority', '730', 'd', $$Date of treaty signing$$,
19078 TRUE, FALSE, FALSE);
19079 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19080                                  repeatable, mandatory, hidden)
19081 VALUES (1, 'authority', '730', 'f', $$Date of a work$$,
19082 FALSE, FALSE, FALSE);
19083 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19084                                  repeatable, mandatory, hidden)
19085 VALUES (1, 'authority', '730', 'g', $$Miscellaneous information$$,
19086 FALSE, FALSE, FALSE);
19087 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19088                                  repeatable, mandatory, hidden)
19089 VALUES (1, 'authority', '730', 'h', $$Medium$$,
19090 FALSE, FALSE, FALSE);
19091 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19092                                  repeatable, mandatory, hidden)
19093 VALUES (1, 'authority', '730', 'k', $$Form subheading$$,
19094 TRUE, FALSE, FALSE);
19095 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19096                                  repeatable, mandatory, hidden)
19097 VALUES (1, 'authority', '730', 'l', $$Language of a work$$,
19098 FALSE, FALSE, FALSE);
19099 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19100                                  repeatable, mandatory, hidden)
19101 VALUES (1, 'authority', '730', 'm', $$Medium of performance for music$$,
19102 TRUE, FALSE, FALSE);
19103 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19104                                  repeatable, mandatory, hidden)
19105 VALUES (1, 'authority', '730', 'n', $$Number of part/section of a work$$,
19106 TRUE, FALSE, FALSE);
19107 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19108                                  repeatable, mandatory, hidden)
19109 VALUES (1, 'authority', '730', 'o', $$Arranged statement for music$$,
19110 FALSE, FALSE, FALSE);
19111 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19112                                  repeatable, mandatory, hidden)
19113 VALUES (1, 'authority', '730', 'p', $$Name of part/section of a work$$,
19114 TRUE, FALSE, FALSE);
19115 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19116                                  repeatable, mandatory, hidden)
19117 VALUES (1, 'authority', '730', 'r', $$Key for music$$,
19118 FALSE, FALSE, FALSE);
19119 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19120                                  repeatable, mandatory, hidden)
19121 VALUES (1, 'authority', '730', 's', $$Version$$,
19122 FALSE, FALSE, FALSE);
19123 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19124                                  repeatable, mandatory, hidden)
19125 VALUES (1, 'authority', '730', 't', $$Title of a work$$,
19126 FALSE, FALSE, FALSE);
19127 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19128                                  repeatable, mandatory, hidden)
19129 VALUES (1, 'authority', '730', 'v', $$Form subdivision$$,
19130 TRUE, FALSE, FALSE);
19131 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19132                                  repeatable, mandatory, hidden)
19133 VALUES (1, 'authority', '730', 'w', $$Control subfield$$,
19134 FALSE, FALSE, FALSE);
19135 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
19136                               fixed_field, repeatable, mandatory, hidden)
19137 VALUES (1, 'authority', '748', $$Established Heading Linking Entry-Chronological Term$$, $$Chronological term that is equivalent to the 148 chronological term or 182 chronological subdivision heading field of the same record. It links headings within a system or from different thesauri or authority files.$$,
19138 FALSE, TRUE, FALSE, FALSE);
19139 INSERT INTO config.record_attr_definition(name, label)
19140 VALUES ('marc21_authority_748_ind_1', 'MARC 21 authority field 748 indicator position 1');
19141 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19142 VALUES ('marc21_authority_748_ind_1', '#', $$Undefined$$, FALSE, TRUE);
19143 INSERT INTO config.record_attr_definition(name, label)
19144 VALUES ('marc21_authority_748_ind_2', 'MARC 21 authority field 748 indicator position 2');
19145 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19146 VALUES ('marc21_authority_748_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE);
19147 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19148 VALUES ('marc21_authority_748_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE);
19149 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19150 VALUES ('marc21_authority_748_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE);
19151 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19152 VALUES ('marc21_authority_748_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE);
19153 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19154 VALUES ('marc21_authority_748_ind_2', '4', $$Source not specified$$, FALSE, TRUE);
19155 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19156 VALUES ('marc21_authority_748_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE);
19157 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19158 VALUES ('marc21_authority_748_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE);
19159 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19160 VALUES ('marc21_authority_748_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
19161 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19162                                  repeatable, mandatory, hidden)
19163 VALUES (1, 'authority', '748', 'a', $$Chronological term$$,
19164 FALSE, FALSE, FALSE);
19165 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19166                                  repeatable, mandatory, hidden)
19167 VALUES (1, 'authority', '748', 'v', $$Form subdivision$$,
19168 TRUE, FALSE, FALSE);
19169 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19170                                  repeatable, mandatory, hidden)
19171 VALUES (1, 'authority', '748', 'w', $$Control subfield$$,
19172 FALSE, FALSE, FALSE);
19173 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
19174                               fixed_field, repeatable, mandatory, hidden)
19175 VALUES (1, 'authority', '750', $$Established Heading Linking Entry-Topical Term$$, $$Topical term that is equivalent to the 150 topical term or 180 general subdivision heading field of the same record. It links headings within a system or from different thesauri or authority files.$$,
19176 FALSE, TRUE, FALSE, FALSE);
19177 INSERT INTO config.record_attr_definition(name, label)
19178 VALUES ('marc21_authority_750_ind_1', 'MARC 21 authority field 750 indicator position 1');
19179 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19180 VALUES ('marc21_authority_750_ind_1', '#', $$Undefined$$, FALSE, TRUE);
19181 INSERT INTO config.record_attr_definition(name, label)
19182 VALUES ('marc21_authority_750_ind_2', 'MARC 21 authority field 750 indicator position 2');
19183 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19184 VALUES ('marc21_authority_750_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE);
19185 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19186 VALUES ('marc21_authority_750_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE);
19187 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19188 VALUES ('marc21_authority_750_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE);
19189 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19190 VALUES ('marc21_authority_750_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE);
19191 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19192 VALUES ('marc21_authority_750_ind_2', '4', $$Source not specified$$, FALSE, TRUE);
19193 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19194 VALUES ('marc21_authority_750_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE);
19195 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19196 VALUES ('marc21_authority_750_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE);
19197 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19198 VALUES ('marc21_authority_750_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
19199 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19200                                  repeatable, mandatory, hidden)
19201 VALUES (1, 'authority', '750', 'a', $$Topical term or geographic name entry element$$,
19202 FALSE, FALSE, FALSE);
19203 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19204                                  repeatable, mandatory, hidden)
19205 VALUES (1, 'authority', '750', 'b', $$Topical term following geographic name entry element$$,
19206 FALSE, FALSE, FALSE);
19207 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19208                                  repeatable, mandatory, hidden)
19209 VALUES (1, 'authority', '750', 'v', $$Form subdivision$$,
19210 TRUE, FALSE, FALSE);
19211 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19212                                  repeatable, mandatory, hidden)
19213 VALUES (1, 'authority', '750', 'w', $$Control subfield$$,
19214 FALSE, FALSE, FALSE);
19215 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
19216                               fixed_field, repeatable, mandatory, hidden)
19217 VALUES (1, 'authority', '751', $$Established Heading Linking Entry-Geographic Name$$, $$Geographic name that is equivalent to the 151 geographic name or 181 geographic subdivision field of the same record. It links headings within a system or from different thesauri or authority files.$$,
19218 FALSE, TRUE, FALSE, FALSE);
19219 INSERT INTO config.record_attr_definition(name, label)
19220 VALUES ('marc21_authority_751_ind_1', 'MARC 21 authority field 751 indicator position 1');
19221 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19222 VALUES ('marc21_authority_751_ind_1', '#', $$Undefined$$, FALSE, TRUE);
19223 INSERT INTO config.record_attr_definition(name, label)
19224 VALUES ('marc21_authority_751_ind_2', 'MARC 21 authority field 751 indicator position 2');
19225 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19226 VALUES ('marc21_authority_751_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE);
19227 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19228 VALUES ('marc21_authority_751_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE);
19229 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19230 VALUES ('marc21_authority_751_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE);
19231 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19232 VALUES ('marc21_authority_751_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE);
19233 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19234 VALUES ('marc21_authority_751_ind_2', '4', $$Source not specified$$, FALSE, TRUE);
19235 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19236 VALUES ('marc21_authority_751_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE);
19237 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19238 VALUES ('marc21_authority_751_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE);
19239 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19240 VALUES ('marc21_authority_751_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
19241 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19242                                  repeatable, mandatory, hidden)
19243 VALUES (1, 'authority', '751', 'a', $$Geographic name$$,
19244 FALSE, FALSE, FALSE);
19245 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19246                                  repeatable, mandatory, hidden)
19247 VALUES (1, 'authority', '751', 'v', $$Form subdivision$$,
19248 TRUE, FALSE, FALSE);
19249 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19250                                  repeatable, mandatory, hidden)
19251 VALUES (1, 'authority', '751', 'w', $$Control subfield$$,
19252 FALSE, FALSE, FALSE);
19253 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
19254                               fixed_field, repeatable, mandatory, hidden)
19255 VALUES (1, 'authority', '755', $$Established Heading Linking Entry-Genre/Form Term$$, $$Genre/form term that is equivalent to the 155 genre/form term or 185 form subdivision heading field of the same record. It links headings within a system or from different thesauri or authority files.$$,
19256 FALSE, TRUE, FALSE, FALSE);
19257 INSERT INTO config.record_attr_definition(name, label)
19258 VALUES ('marc21_authority_755_ind_1', 'MARC 21 authority field 755 indicator position 1');
19259 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19260 VALUES ('marc21_authority_755_ind_1', '#', $$Undefined$$, FALSE, TRUE);
19261 INSERT INTO config.record_attr_definition(name, label)
19262 VALUES ('marc21_authority_755_ind_2', 'MARC 21 authority field 755 indicator position 2');
19263 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19264 VALUES ('marc21_authority_755_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE);
19265 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19266 VALUES ('marc21_authority_755_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE);
19267 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19268 VALUES ('marc21_authority_755_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE);
19269 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19270 VALUES ('marc21_authority_755_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE);
19271 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19272 VALUES ('marc21_authority_755_ind_2', '4', $$Source not specified$$, FALSE, TRUE);
19273 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19274 VALUES ('marc21_authority_755_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE);
19275 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19276 VALUES ('marc21_authority_755_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE);
19277 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19278 VALUES ('marc21_authority_755_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
19279 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19280                                  repeatable, mandatory, hidden)
19281 VALUES (1, 'authority', '755', 'a', $$Genre/form term as entry element$$,
19282 FALSE, FALSE, FALSE);
19283 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19284                                  repeatable, mandatory, hidden)
19285 VALUES (1, 'authority', '755', 'v', $$Form subdivision$$,
19286 TRUE, FALSE, FALSE);
19287 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19288                                  repeatable, mandatory, hidden)
19289 VALUES (1, 'authority', '755', 'w', $$Control subfield$$,
19290 FALSE, FALSE, FALSE);
19291 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
19292                               fixed_field, repeatable, mandatory, hidden)
19293 VALUES (1, 'authority', '780', $$Subdivision Linking Entry-General Subdivision$$, $$General subdivision term that is equivalent to the 150 topical term or 180 general subdivision field of the same record. It links headings within a system or from different thesauri or authority files.$$,
19294 FALSE, TRUE, FALSE, FALSE);
19295 INSERT INTO config.record_attr_definition(name, label)
19296 VALUES ('marc21_authority_780_ind_1', 'MARC 21 authority field 780 indicator position 1');
19297 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19298 VALUES ('marc21_authority_780_ind_1', '#', $$Undefined$$, FALSE, TRUE);
19299 INSERT INTO config.record_attr_definition(name, label)
19300 VALUES ('marc21_authority_780_ind_2', 'MARC 21 authority field 780 indicator position 2');
19301 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19302 VALUES ('marc21_authority_780_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE);
19303 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19304 VALUES ('marc21_authority_780_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE);
19305 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19306 VALUES ('marc21_authority_780_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE);
19307 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19308 VALUES ('marc21_authority_780_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE);
19309 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19310 VALUES ('marc21_authority_780_ind_2', '4', $$Source not specified$$, FALSE, TRUE);
19311 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19312 VALUES ('marc21_authority_780_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE);
19313 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19314 VALUES ('marc21_authority_780_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE);
19315 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19316 VALUES ('marc21_authority_780_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
19317 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19318                                  repeatable, mandatory, hidden)
19319 VALUES (1, 'authority', '780', 'v', $$Form subdivision$$,
19320 TRUE, FALSE, FALSE);
19321 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19322                                  repeatable, mandatory, hidden)
19323 VALUES (1, 'authority', '780', 'w', $$Control subfield$$,
19324 FALSE, FALSE, FALSE);
19325 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19326                                  repeatable, mandatory, hidden)
19327 VALUES (1, 'authority', '780', 'a', $$Link not displayed$$,
19328 TRUE, FALSE, FALSE);
19329 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19330                                  repeatable, mandatory, hidden)
19331 VALUES (1, 'authority', '780', 'b', $$Link not displayed, field 788 used$$,
19332 TRUE, FALSE, FALSE);
19333 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19334                                  repeatable, mandatory, hidden)
19335 VALUES (1, 'authority', '780', 'c', $$Link not displayed, non-7XX field used$$,
19336 TRUE, FALSE, FALSE);
19337 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19338                                  repeatable, mandatory, hidden)
19339 VALUES (1, 'authority', '780', 'n', $$Not applicable$$,
19340 TRUE, FALSE, FALSE);
19341 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
19342                               fixed_field, repeatable, mandatory, hidden)
19343 VALUES (1, 'authority', '781', $$Subdivision Linking Entry-Geographic Subdivision$$, $$Geographic subdivision name that is equivalent to the 151 geographic name or 181 geographic subdivision field of the same record. It links headings within a system or from different thesauri or authority files.$$,
19344 FALSE, TRUE, FALSE, FALSE);
19345 INSERT INTO config.record_attr_definition(name, label)
19346 VALUES ('marc21_authority_781_ind_1', 'MARC 21 authority field 781 indicator position 1');
19347 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19348 VALUES ('marc21_authority_781_ind_1', '#', $$Undefined$$, FALSE, TRUE);
19349 INSERT INTO config.record_attr_definition(name, label)
19350 VALUES ('marc21_authority_781_ind_2', 'MARC 21 authority field 781 indicator position 2');
19351 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19352 VALUES ('marc21_authority_781_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE);
19353 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19354 VALUES ('marc21_authority_781_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE);
19355 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19356 VALUES ('marc21_authority_781_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE);
19357 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19358 VALUES ('marc21_authority_781_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE);
19359 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19360 VALUES ('marc21_authority_781_ind_2', '4', $$Source not specified$$, FALSE, TRUE);
19361 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19362 VALUES ('marc21_authority_781_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE);
19363 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19364 VALUES ('marc21_authority_781_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE);
19365 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19366 VALUES ('marc21_authority_781_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
19367 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19368                                  repeatable, mandatory, hidden)
19369 VALUES (1, 'authority', '781', 'v', $$Form subdivision$$,
19370 TRUE, FALSE, FALSE);
19371 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19372                                  repeatable, mandatory, hidden)
19373 VALUES (1, 'authority', '781', 'w', $$Control subfield$$,
19374 FALSE, FALSE, FALSE);
19375 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19376                                  repeatable, mandatory, hidden)
19377 VALUES (1, 'authority', '781', 'a', $$Link not displayed$$,
19378 TRUE, FALSE, FALSE);
19379 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19380                                  repeatable, mandatory, hidden)
19381 VALUES (1, 'authority', '781', 'b', $$Link not displayed, field 788 used$$,
19382 TRUE, FALSE, FALSE);
19383 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19384                                  repeatable, mandatory, hidden)
19385 VALUES (1, 'authority', '781', 'c', $$Link not displayed, non-7XX field used$$,
19386 TRUE, FALSE, FALSE);
19387 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19388                                  repeatable, mandatory, hidden)
19389 VALUES (1, 'authority', '781', 'n', $$Not applicable$$,
19390 TRUE, FALSE, FALSE);
19391 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
19392                               fixed_field, repeatable, mandatory, hidden)
19393 VALUES (1, 'authority', '782', $$Subdivision Linking Entry-Chronological Subdivision$$, $$Chronological subdivision term that is equivalent to the 150 topical term or 182 chronological subdivision field of the same record. It links headings within a system or from different thesauri or authority files.$$,
19394 FALSE, TRUE, FALSE, FALSE);
19395 INSERT INTO config.record_attr_definition(name, label)
19396 VALUES ('marc21_authority_782_ind_1', 'MARC 21 authority field 782 indicator position 1');
19397 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19398 VALUES ('marc21_authority_782_ind_1', '#', $$Undefined$$, FALSE, TRUE);
19399 INSERT INTO config.record_attr_definition(name, label)
19400 VALUES ('marc21_authority_782_ind_2', 'MARC 21 authority field 782 indicator position 2');
19401 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19402 VALUES ('marc21_authority_782_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE);
19403 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19404 VALUES ('marc21_authority_782_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE);
19405 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19406 VALUES ('marc21_authority_782_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE);
19407 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19408 VALUES ('marc21_authority_782_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE);
19409 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19410 VALUES ('marc21_authority_782_ind_2', '4', $$Source not specified$$, FALSE, TRUE);
19411 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19412 VALUES ('marc21_authority_782_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE);
19413 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19414 VALUES ('marc21_authority_782_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE);
19415 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19416 VALUES ('marc21_authority_782_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
19417 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19418                                  repeatable, mandatory, hidden)
19419 VALUES (1, 'authority', '782', 'v', $$Form subdivision$$,
19420 TRUE, FALSE, FALSE);
19421 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19422                                  repeatable, mandatory, hidden)
19423 VALUES (1, 'authority', '782', 'w', $$Control subfield$$,
19424 FALSE, FALSE, FALSE);
19425 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19426                                  repeatable, mandatory, hidden)
19427 VALUES (1, 'authority', '782', 'a', $$Link not displayed$$,
19428 TRUE, FALSE, FALSE);
19429 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19430                                  repeatable, mandatory, hidden)
19431 VALUES (1, 'authority', '782', 'b', $$Link not displayed, field 788 used$$,
19432 TRUE, FALSE, FALSE);
19433 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19434                                  repeatable, mandatory, hidden)
19435 VALUES (1, 'authority', '782', 'c', $$Link not displayed, non-7XX field used$$,
19436 TRUE, FALSE, FALSE);
19437 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19438                                  repeatable, mandatory, hidden)
19439 VALUES (1, 'authority', '782', 'n', $$Not applicable$$,
19440 TRUE, FALSE, FALSE);
19441 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
19442                               fixed_field, repeatable, mandatory, hidden)
19443 VALUES (1, 'authority', '785', $$Subdivision Linking Entry-Form Subdivision$$, $$Form subdivision term that is equivalent to the 155 genre/form or 185 form subdivision field of the same record. It links headings within a system or from different thesauri or authority files.$$,
19444 FALSE, TRUE, FALSE, FALSE);
19445 INSERT INTO config.record_attr_definition(name, label)
19446 VALUES ('marc21_authority_785_ind_1', 'MARC 21 authority field 785 indicator position 1');
19447 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19448 VALUES ('marc21_authority_785_ind_1', '#', $$Undefined$$, FALSE, TRUE);
19449 INSERT INTO config.record_attr_definition(name, label)
19450 VALUES ('marc21_authority_785_ind_2', 'MARC 21 authority field 785 indicator position 2');
19451 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19452 VALUES ('marc21_authority_785_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE);
19453 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19454 VALUES ('marc21_authority_785_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE);
19455 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19456 VALUES ('marc21_authority_785_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE);
19457 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19458 VALUES ('marc21_authority_785_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE);
19459 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19460 VALUES ('marc21_authority_785_ind_2', '4', $$Source not specified$$, FALSE, TRUE);
19461 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19462 VALUES ('marc21_authority_785_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE);
19463 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19464 VALUES ('marc21_authority_785_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE);
19465 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19466 VALUES ('marc21_authority_785_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
19467 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19468                                  repeatable, mandatory, hidden)
19469 VALUES (1, 'authority', '785', 'v', $$Form subdivision$$,
19470 TRUE, FALSE, FALSE);
19471 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19472                                  repeatable, mandatory, hidden)
19473 VALUES (1, 'authority', '785', 'w', $$Control subfield$$,
19474 FALSE, FALSE, FALSE);
19475 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19476                                  repeatable, mandatory, hidden)
19477 VALUES (1, 'authority', '785', 'a', $$Link not displayed$$,
19478 TRUE, FALSE, FALSE);
19479 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19480                                  repeatable, mandatory, hidden)
19481 VALUES (1, 'authority', '785', 'b', $$Link not displayed, field 788 used$$,
19482 TRUE, FALSE, FALSE);
19483 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19484                                  repeatable, mandatory, hidden)
19485 VALUES (1, 'authority', '785', 'c', $$Link not displayed, non-7XX field used$$,
19486 TRUE, FALSE, FALSE);
19487 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19488                                  repeatable, mandatory, hidden)
19489 VALUES (1, 'authority', '785', 'n', $$Not applicable$$,
19490 TRUE, FALSE, FALSE);
19491 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
19492                               fixed_field, repeatable, mandatory, hidden)
19493 VALUES (1, 'authority', '788', $$Complex Linking Entry Data$$, $$Explanatory text and the headings referred to when the linking relationship between headings from different subject heading systems or thesauri cannot be adequately conveyed by fields 700-785. No subelements of the are separately subfield coded. Adjacent headings referred to may be contained in a single subfield $a. The heading referred to may be an established heading or a subject subdivision that is not equivalent to but is related to the heading in the 1XX field.$$,
19494 FALSE, FALSE, FALSE, FALSE);
19495 INSERT INTO config.record_attr_definition(name, label)
19496 VALUES ('marc21_authority_788_ind_1', 'MARC 21 authority field 788 indicator position 1');
19497 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19498 VALUES ('marc21_authority_788_ind_1', '#', $$Undefined$$, FALSE, TRUE);
19499 INSERT INTO config.record_attr_definition(name, label)
19500 VALUES ('marc21_authority_788_ind_2', 'MARC 21 authority field 788 indicator position 2');
19501 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19502 VALUES ('marc21_authority_788_ind_2', '0', $$Library of Congress Subject Headings$$, FALSE, TRUE);
19503 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19504 VALUES ('marc21_authority_788_ind_2', '1', $$LC subject headings for children's literature$$, FALSE, TRUE);
19505 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19506 VALUES ('marc21_authority_788_ind_2', '2', $$Medical Subject Headings$$, FALSE, TRUE);
19507 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19508 VALUES ('marc21_authority_788_ind_2', '3', $$National Agricultural Library subject authority file$$, FALSE, TRUE);
19509 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19510 VALUES ('marc21_authority_788_ind_2', '4', $$Source not specified$$, FALSE, TRUE);
19511 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19512 VALUES ('marc21_authority_788_ind_2', '5', $$Canadian Subject Headings$$, FALSE, TRUE);
19513 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19514 VALUES ('marc21_authority_788_ind_2', '6', $$Répertoire de vedettes-matière$$, FALSE, TRUE);
19515 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19516 VALUES ('marc21_authority_788_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
19517 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19518                                  repeatable, mandatory, hidden)
19519 VALUES (1, 'authority', '788', 'a', $$Heading referred to$$,
19520 TRUE, FALSE, FALSE);
19521 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19522                                  repeatable, mandatory, hidden)
19523 VALUES (1, 'authority', '788', 'i', $$Explanatory text$$,
19524 TRUE, FALSE, FALSE);
19525 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19526                                  repeatable, mandatory, hidden)
19527 VALUES (1, 'authority', '788', '2', $$Source of heading or term$$,
19528 FALSE, FALSE, FALSE);
19529 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19530                                  repeatable, mandatory, hidden)
19531 VALUES (1, 'authority', '788', '5', $$Institution to which field applies$$,
19532 TRUE, FALSE, FALSE);
19533 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19534                                  repeatable, mandatory, hidden)
19535 VALUES (1, 'authority', '788', '6', $$Linkage$$,
19536 FALSE, FALSE, FALSE);
19537 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19538                                  repeatable, mandatory, hidden)
19539 VALUES (1, 'authority', '788', '8', $$Field link and sequence number$$,
19540 TRUE, FALSE, FALSE);
19541 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
19542                               fixed_field, repeatable, mandatory, hidden)
19543 VALUES (1, 'authority', '856', $$Electronic Location and Access$$, $$Information needed to locate and access electronic information. The field may be used in an authority record to provide supplementary information available electronically about the entity for which the record was created.$$,
19544 FALSE, TRUE, FALSE, FALSE);
19545 INSERT INTO config.record_attr_definition(name, label)
19546 VALUES ('marc21_authority_856_ind_1', 'MARC 21 authority field 856 indicator position 1');
19547 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19548 VALUES ('marc21_authority_856_ind_1', '#', $$No information provided$$, FALSE, TRUE);
19549 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19550 VALUES ('marc21_authority_856_ind_1', '0', $$Email$$, FALSE, TRUE);
19551 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19552 VALUES ('marc21_authority_856_ind_1', '1', $$FTP$$, FALSE, TRUE);
19553 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19554 VALUES ('marc21_authority_856_ind_1', '2', $$Remote login (Telnet)$$, FALSE, TRUE);
19555 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19556 VALUES ('marc21_authority_856_ind_1', '3', $$Dial-up$$, FALSE, TRUE);
19557 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19558 VALUES ('marc21_authority_856_ind_1', '4', $$HTTP$$, FALSE, TRUE);
19559 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19560 VALUES ('marc21_authority_856_ind_1', '7', $$Method specified in subfield $2$$, FALSE, TRUE);
19561 INSERT INTO config.record_attr_definition(name, label)
19562 VALUES ('marc21_authority_856_ind_2', 'MARC 21 authority field 856 indicator position 2');
19563 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19564 VALUES ('marc21_authority_856_ind_2', '#', $$No information provided$$, FALSE, TRUE);
19565 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19566 VALUES ('marc21_authority_856_ind_2', '0', $$Resource$$, FALSE, TRUE);
19567 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19568 VALUES ('marc21_authority_856_ind_2', '1', $$Version of resource$$, FALSE, TRUE);
19569 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19570 VALUES ('marc21_authority_856_ind_2', '2', $$Related resource$$, FALSE, TRUE);
19571 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19572 VALUES ('marc21_authority_856_ind_2', '8', $$No display constant generated$$, FALSE, TRUE);
19573 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19574                                  repeatable, mandatory, hidden)
19575 VALUES (1, 'authority', '856', 'a', $$Host name$$,
19576 TRUE, FALSE, FALSE);
19577 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19578                                  repeatable, mandatory, hidden)
19579 VALUES (1, 'authority', '856', 'b', $$Access number$$,
19580 TRUE, FALSE, FALSE);
19581 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19582                                  repeatable, mandatory, hidden)
19583 VALUES (1, 'authority', '856', 'c', $$Compression information$$,
19584 TRUE, FALSE, FALSE);
19585 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19586                                  repeatable, mandatory, hidden)
19587 VALUES (1, 'authority', '856', 'd', $$Path$$,
19588 TRUE, FALSE, FALSE);
19589 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19590                                  repeatable, mandatory, hidden)
19591 VALUES (1, 'authority', '856', 'f', $$Electronic name$$,
19592 TRUE, FALSE, FALSE);
19593 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19594                                  repeatable, mandatory, hidden)
19595 VALUES (1, 'authority', '856', 'h', $$Processor of request$$,
19596 FALSE, FALSE, FALSE);
19597 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19598                                  repeatable, mandatory, hidden)
19599 VALUES (1, 'authority', '856', 'i', $$Instruction$$,
19600 TRUE, FALSE, FALSE);
19601 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19602                                  repeatable, mandatory, hidden)
19603 VALUES (1, 'authority', '856', 'j', $$Bits per second$$,
19604 FALSE, FALSE, FALSE);
19605 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19606                                  repeatable, mandatory, hidden)
19607 VALUES (1, 'authority', '856', 'k', $$Password$$,
19608 FALSE, FALSE, FALSE);
19609 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19610                                  repeatable, mandatory, hidden)
19611 VALUES (1, 'authority', '856', 'l', $$Logon$$,
19612 FALSE, FALSE, FALSE);
19613 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19614                                  repeatable, mandatory, hidden)
19615 VALUES (1, 'authority', '856', 'm', $$Contact for access assistance$$,
19616 TRUE, FALSE, FALSE);
19617 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19618                                  repeatable, mandatory, hidden)
19619 VALUES (1, 'authority', '856', 'n', $$Name of location of host$$,
19620 FALSE, FALSE, FALSE);
19621 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19622                                  repeatable, mandatory, hidden)
19623 VALUES (1, 'authority', '856', 'o', $$Operating system$$,
19624 FALSE, FALSE, FALSE);
19625 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19626                                  repeatable, mandatory, hidden)
19627 VALUES (1, 'authority', '856', 'p', $$Port$$,
19628 FALSE, FALSE, FALSE);
19629 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19630                                  repeatable, mandatory, hidden)
19631 VALUES (1, 'authority', '856', 'q', $$Electronic format type$$,
19632 FALSE, FALSE, FALSE);
19633 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19634                                  repeatable, mandatory, hidden)
19635 VALUES (1, 'authority', '856', 'r', $$Settings$$,
19636 FALSE, FALSE, FALSE);
19637 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19638                                  repeatable, mandatory, hidden)
19639 VALUES (1, 'authority', '856', 's', $$File size$$,
19640 TRUE, FALSE, FALSE);
19641 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19642                                  repeatable, mandatory, hidden)
19643 VALUES (1, 'authority', '856', 't', $$Terminal emulation$$,
19644 TRUE, FALSE, FALSE);
19645 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19646                                  repeatable, mandatory, hidden)
19647 VALUES (1, 'authority', '856', 'u', $$Uniform Resource Identifier$$,
19648 TRUE, FALSE, FALSE);
19649 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19650                                  repeatable, mandatory, hidden)
19651 VALUES (1, 'authority', '856', 'v', $$Hours access method available$$,
19652 TRUE, FALSE, FALSE);
19653 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19654                                  repeatable, mandatory, hidden)
19655 VALUES (1, 'authority', '856', 'w', $$Record control number$$,
19656 TRUE, FALSE, FALSE);
19657 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19658                                  repeatable, mandatory, hidden)
19659 VALUES (1, 'authority', '856', 'x', $$Nonpublic note$$,
19660 TRUE, FALSE, FALSE);
19661 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19662                                  repeatable, mandatory, hidden)
19663 VALUES (1, 'authority', '856', 'y', $$Link text$$,
19664 TRUE, FALSE, FALSE);
19665 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19666                                  repeatable, mandatory, hidden)
19667 VALUES (1, 'authority', '856', 'z', $$Public note$$,
19668 TRUE, FALSE, FALSE);
19669 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19670                                  repeatable, mandatory, hidden)
19671 VALUES (1, 'authority', '856', '2', $$Access method$$,
19672 FALSE, FALSE, FALSE);
19673 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19674                                  repeatable, mandatory, hidden)
19675 VALUES (1, 'authority', '856', '3', $$Materials specified$$,
19676 FALSE, FALSE, FALSE);
19677 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19678                                  repeatable, mandatory, hidden)
19679 VALUES (1, 'authority', '856', '6', $$Linkage$$,
19680 FALSE, FALSE, FALSE);
19681 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19682                                  repeatable, mandatory, hidden)
19683 VALUES (1, 'authority', '856', '8', $$Field link and sequence number$$,
19684 TRUE, FALSE, FALSE);
19685 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
19686                               fixed_field, repeatable, mandatory, hidden)
19687 VALUES (1, 'authority', '880', $$Alternate Graphic Representation$$, $$Full content-designated representation, in a different script, of another field in the same record. Field 880 is linked to the associated regular field by subfield $6 (Linkage). A subfield $6 in the associated field also links that field to the 880 field. The data in field 880 may be in more than one script.$$,
19688 FALSE, TRUE, FALSE, FALSE);
19689 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19690                                  repeatable, mandatory, hidden)
19691 VALUES (1, 'authority', '880', '6', $$Linkage$$,
19692 FALSE, FALSE, FALSE);
19693 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
19694                               fixed_field, repeatable, mandatory, hidden)
19695 VALUES (1, 'serial', '001', $$Control Number$$, $$System control number assigned to a separate holdings record. For interchange purposes, documentation of the structure of the control number and input conventions are provided to exchange partners by the organization initiating the interchange.$$,
19696 TRUE, FALSE, FALSE, FALSE);
19697 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
19698                               fixed_field, repeatable, mandatory, hidden)
19699 VALUES (1, 'serial', '003', $$Control Number Identifier$$, $$MARC code for the agency whose system control number is present in field 001 (Control Number).$$,
19700 TRUE, FALSE, FALSE, FALSE);
19701 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
19702                               fixed_field, repeatable, mandatory, hidden)
19703 VALUES (1, 'serial', '004', $$Control Number for Related Bibliographic Record$$, $$System control number of the MARC bibliographic record for which a separate holdings record was created.$$,
19704 TRUE, FALSE, FALSE, FALSE);
19705 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
19706                               fixed_field, repeatable, mandatory, hidden)
19707 VALUES (1, 'serial', '005', $$Date and Time of Latest Transaction$$, $$Sixteen characters that specify the date and time of the latest record transaction and serve as a version identifier for the record. They are recorded according to (ISO 8601). The date requires 8 numeric characters in the pattern (4 for the year, 2 for the month, and 2 for the day). The time requires 8 numeric characters in the pattern (2 for the hour, 2 for the minute, 2 for the second, and 2 for a decimal fraction of the second, including the decimal point)expressed in terms of the 24-hour (00-23) clock.$$,
19708 TRUE, FALSE, FALSE, FALSE);
19709 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
19710                               fixed_field, repeatable, mandatory, hidden)
19711 VALUES (1, 'serial', '007', $$Physical Description Fixed Field$$, $$Codes that describe the physical characteristics of the copy of the bibliographic item for which holdings are recorded. See the description of in the for complete character position definitions and the content designators defined for this field. The Category of material code (007/00) may be described textually in field 842 (Textual Physical Form Designator).$$,
19712 TRUE, FALSE, FALSE, FALSE);
19713 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
19714                               fixed_field, repeatable, mandatory, hidden)
19715 VALUES (1, 'serial', '008', $$Fixed-Length Data Elements-General Information$$, $$Thirty-two character positions (00-31) that contain data elements that provide coded information about the record. The data elements are positionally defined. Each defined character position must contain either a defined code or a fill character ( | ). The fill character is used when no attempt is made to supply a defined code for a specific character position.$$,
19716 TRUE, FALSE, FALSE, FALSE);
19717 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
19718                               fixed_field, repeatable, mandatory, hidden)
19719 VALUES (1, 'serial', '010', $$Library of Congress Control Number$$, $$Control number, assigned by the Library of Congress, of the related MARC bibliographic record for which a separate holdings record is made.$$,
19720 FALSE, FALSE, FALSE, FALSE);
19721 INSERT INTO config.record_attr_definition(name, label)
19722 VALUES ('marc21_serial_010_ind_1', 'MARC 21 serial field 010 indicator position 1');
19723 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19724 VALUES ('marc21_serial_010_ind_1', '#', $$Undefined$$, FALSE, TRUE);
19725 INSERT INTO config.record_attr_definition(name, label)
19726 VALUES ('marc21_serial_010_ind_2', 'MARC 21 serial field 010 indicator position 2');
19727 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19728 VALUES ('marc21_serial_010_ind_2', '#', $$Undefined$$, FALSE, TRUE);
19729 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19730                                  repeatable, mandatory, hidden)
19731 VALUES (1, 'serial', '010', 'a', $$LC control number$$,
19732 FALSE, FALSE, FALSE);
19733 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19734                                  repeatable, mandatory, hidden)
19735 VALUES (1, 'serial', '010', 'b', $$NUCMC control number$$,
19736 TRUE, FALSE, FALSE);
19737 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19738                                  repeatable, mandatory, hidden)
19739 VALUES (1, 'serial', '010', 'z', $$Canceled or invalid LC control number$$,
19740 TRUE, FALSE, FALSE);
19741 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19742                                  repeatable, mandatory, hidden)
19743 VALUES (1, 'serial', '010', '8', $$Field link and sequence number$$,
19744 TRUE, FALSE, FALSE);
19745 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
19746                               fixed_field, repeatable, mandatory, hidden)
19747 VALUES (1, 'serial', '014', $$Linkage Number$$, $$Control number, assigned by a bibliographic network, of a separate holdings record or its related bibliographic record for which a separate holdings record is made.$$,
19748 FALSE, TRUE, FALSE, FALSE);
19749 INSERT INTO config.record_attr_definition(name, label)
19750 VALUES ('marc21_serial_014_ind_1', 'MARC 21 serial field 014 indicator position 1');
19751 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19752 VALUES ('marc21_serial_014_ind_1', '0', $$Holdings record number$$, FALSE, TRUE);
19753 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19754 VALUES ('marc21_serial_014_ind_1', '1', $$Bibliographic record number$$, FALSE, TRUE);
19755 INSERT INTO config.record_attr_definition(name, label)
19756 VALUES ('marc21_serial_014_ind_2', 'MARC 21 serial field 014 indicator position 2');
19757 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19758 VALUES ('marc21_serial_014_ind_2', '#', $$Undefined$$, FALSE, TRUE);
19759 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19760                                  repeatable, mandatory, hidden)
19761 VALUES (1, 'serial', '014', 'a', $$Linkage number$$,
19762 FALSE, FALSE, FALSE);
19763 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19764                                  repeatable, mandatory, hidden)
19765 VALUES (1, 'serial', '014', 'b', $$Source of number$$,
19766 FALSE, FALSE, FALSE);
19767 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19768                                  repeatable, mandatory, hidden)
19769 VALUES (1, 'serial', '014', 'z', $$Canceled or invalid linkage number$$,
19770 TRUE, FALSE, FALSE);
19771 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19772                                  repeatable, mandatory, hidden)
19773 VALUES (1, 'serial', '014', '6', $$Linkage$$,
19774 FALSE, FALSE, FALSE);
19775 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
19776                               fixed_field, repeatable, mandatory, hidden)
19777 VALUES (1, 'serial', '016', $$National Bibliographic Agency Control Number$$, $$Control number, assigned by a national bibliographic agency other than the Library of Congress, of the related bibliographic record for which a separate holdings record is made.$$,
19778 FALSE, TRUE, FALSE, FALSE);
19779 INSERT INTO config.record_attr_definition(name, label)
19780 VALUES ('marc21_serial_016_ind_1', 'MARC 21 serial field 016 indicator position 1');
19781 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19782 VALUES ('marc21_serial_016_ind_1', '#', $$Library and Archives Canada$$, FALSE, TRUE);
19783 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19784 VALUES ('marc21_serial_016_ind_1', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
19785 INSERT INTO config.record_attr_definition(name, label)
19786 VALUES ('marc21_serial_016_ind_2', 'MARC 21 serial field 016 indicator position 2');
19787 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19788 VALUES ('marc21_serial_016_ind_2', '#', $$Undefined$$, FALSE, TRUE);
19789 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19790                                  repeatable, mandatory, hidden)
19791 VALUES (1, 'serial', '016', 'a', $$Record control number$$,
19792 FALSE, FALSE, FALSE);
19793 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19794                                  repeatable, mandatory, hidden)
19795 VALUES (1, 'serial', '016', 'z', $$Canceled or invalid control number$$,
19796 TRUE, FALSE, FALSE);
19797 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19798                                  repeatable, mandatory, hidden)
19799 VALUES (1, 'serial', '016', '2', $$Source$$,
19800 FALSE, FALSE, FALSE);
19801 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19802                                  repeatable, mandatory, hidden)
19803 VALUES (1, 'serial', '016', '8', $$Field link and sequence number$$,
19804 TRUE, FALSE, FALSE);
19805 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
19806                               fixed_field, repeatable, mandatory, hidden)
19807 VALUES (1, 'serial', '017', $$Copyright or Legal Deposit Number$$, $$Copyright registration or legal deposit number for an item that was acquired by copyright or legal deposit.$$,
19808 FALSE, TRUE, FALSE, FALSE);
19809 INSERT INTO config.record_attr_definition(name, label)
19810 VALUES ('marc21_serial_017_ind_1', 'MARC 21 serial field 017 indicator position 1');
19811 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19812 VALUES ('marc21_serial_017_ind_1', '#', $$Undefined$$, FALSE, TRUE);
19813 INSERT INTO config.record_attr_definition(name, label)
19814 VALUES ('marc21_serial_017_ind_2', 'MARC 21 serial field 017 indicator position 2');
19815 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19816 VALUES ('marc21_serial_017_ind_2', '#', $$Copyright or legal deposit number$$, FALSE, TRUE);
19817 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19818 VALUES ('marc21_serial_017_ind_2', '8', $$No display constant generated$$, FALSE, TRUE);
19819 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19820                                  repeatable, mandatory, hidden)
19821 VALUES (1, 'serial', '017', 'a', $$Copyright or legal deposit number$$,
19822 TRUE, FALSE, FALSE);
19823 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19824                                  repeatable, mandatory, hidden)
19825 VALUES (1, 'serial', '017', 'b', $$Assigning agency$$,
19826 FALSE, FALSE, FALSE);
19827 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19828                                  repeatable, mandatory, hidden)
19829 VALUES (1, 'serial', '017', 'd', $$Date$$,
19830 FALSE, FALSE, FALSE);
19831 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19832                                  repeatable, mandatory, hidden)
19833 VALUES (1, 'serial', '017', 'i', $$Display text$$,
19834 FALSE, FALSE, FALSE);
19835 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19836                                  repeatable, mandatory, hidden)
19837 VALUES (1, 'serial', '017', 'z', $$Canceled/invalid copyright or legal deposit number$$,
19838 TRUE, FALSE, FALSE);
19839 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19840                                  repeatable, mandatory, hidden)
19841 VALUES (1, 'serial', '017', '2', $$Source$$,
19842 FALSE, FALSE, FALSE);
19843 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19844                                  repeatable, mandatory, hidden)
19845 VALUES (1, 'serial', '017', '6', $$Linkage$$,
19846 FALSE, FALSE, FALSE);
19847 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19848                                  repeatable, mandatory, hidden)
19849 VALUES (1, 'serial', '017', '8', $$Field link and sequence number$$,
19850 TRUE, FALSE, FALSE);
19851 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
19852                               fixed_field, repeatable, mandatory, hidden)
19853 VALUES (1, 'serial', '020', $$International Standard Book Number$$, $$International Standard Book Number (ISBN) copied from subfield $a of field 020 (International Standard Book Number) of the MARC bibliographic record that represents the description of the item for which a separate holdings record is created.$$,
19854 FALSE, TRUE, FALSE, FALSE);
19855 INSERT INTO config.record_attr_definition(name, label)
19856 VALUES ('marc21_serial_020_ind_1', 'MARC 21 serial field 020 indicator position 1');
19857 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19858 VALUES ('marc21_serial_020_ind_1', '#', $$Undefined$$, FALSE, TRUE);
19859 INSERT INTO config.record_attr_definition(name, label)
19860 VALUES ('marc21_serial_020_ind_2', 'MARC 21 serial field 020 indicator position 2');
19861 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19862 VALUES ('marc21_serial_020_ind_2', '#', $$Undefined$$, FALSE, TRUE);
19863 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19864                                  repeatable, mandatory, hidden)
19865 VALUES (1, 'serial', '020', 'a', $$International Standard Book Number$$,
19866 FALSE, FALSE, FALSE);
19867 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19868                                  repeatable, mandatory, hidden)
19869 VALUES (1, 'serial', '020', 'c', $$Terms of availability$$,
19870 FALSE, FALSE, FALSE);
19871 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19872                                  repeatable, mandatory, hidden)
19873 VALUES (1, 'serial', '020', 'z', $$Canceled/invalid ISBN$$,
19874 TRUE, FALSE, FALSE);
19875 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19876                                  repeatable, mandatory, hidden)
19877 VALUES (1, 'serial', '020', '6', $$Linkage$$,
19878 FALSE, FALSE, FALSE);
19879 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19880                                  repeatable, mandatory, hidden)
19881 VALUES (1, 'serial', '020', '8', $$Field link and sequence number$$,
19882 TRUE, FALSE, FALSE);
19883 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
19884                               fixed_field, repeatable, mandatory, hidden)
19885 VALUES (1, 'serial', '022', $$International Standard Serial Number$$, $$International Standard Serial Number (ISSN) copied from subfield $a of field 022 (International Standard Serial Number) of the MARC bibliographic record that represents the description of the item for which a separate holdings record is created.$$,
19886 FALSE, TRUE, FALSE, FALSE);
19887 INSERT INTO config.record_attr_definition(name, label)
19888 VALUES ('marc21_serial_022_ind_1', 'MARC 21 serial field 022 indicator position 1');
19889 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19890 VALUES ('marc21_serial_022_ind_1', '#', $$No level specified$$, FALSE, TRUE);
19891 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19892 VALUES ('marc21_serial_022_ind_1', '0', $$Continuing resource of international interest$$, FALSE, TRUE);
19893 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19894 VALUES ('marc21_serial_022_ind_1', '1', $$Continuing resource not of international interest$$, FALSE, TRUE);
19895 INSERT INTO config.record_attr_definition(name, label)
19896 VALUES ('marc21_serial_022_ind_2', 'MARC 21 serial field 022 indicator position 2');
19897 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19898 VALUES ('marc21_serial_022_ind_2', '#', $$Undefined$$, FALSE, TRUE);
19899 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19900                                  repeatable, mandatory, hidden)
19901 VALUES (1, 'serial', '022', 'a', $$International Standard Serial Number$$,
19902 FALSE, FALSE, FALSE);
19903 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19904                                  repeatable, mandatory, hidden)
19905 VALUES (1, 'serial', '022', 'l', $$ISSN-L$$,
19906 FALSE, FALSE, FALSE);
19907 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19908                                  repeatable, mandatory, hidden)
19909 VALUES (1, 'serial', '022', 'm', $$Canceled ISSN-L$$,
19910 TRUE, FALSE, FALSE);
19911 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19912                                  repeatable, mandatory, hidden)
19913 VALUES (1, 'serial', '022', 'y', $$Incorrect ISSN$$,
19914 TRUE, FALSE, FALSE);
19915 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19916                                  repeatable, mandatory, hidden)
19917 VALUES (1, 'serial', '022', 'z', $$Canceled ISSN$$,
19918 TRUE, FALSE, FALSE);
19919 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19920                                  repeatable, mandatory, hidden)
19921 VALUES (1, 'serial', '022', '6', $$Linkage$$,
19922 FALSE, FALSE, FALSE);
19923 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19924                                  repeatable, mandatory, hidden)
19925 VALUES (1, 'serial', '022', '8', $$Field link and sequence number$$,
19926 TRUE, FALSE, FALSE);
19927 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
19928                               fixed_field, repeatable, mandatory, hidden)
19929 VALUES (1, 'serial', '024', $$Other Standard Identifier$$, $$Standard number or code published on an item which cannot be accommodated in another field (e.g., field 020 (International Standard Book Number), 022 (International Standard Serial Number), 027 (Standard Technical Report Number)). The type of standard number or code is identified in the first indicator position or in subfield $2 (Source of number or code).$$,
19930 FALSE, TRUE, FALSE, FALSE);
19931 INSERT INTO config.record_attr_definition(name, label)
19932 VALUES ('marc21_serial_024_ind_1', 'MARC 21 serial field 024 indicator position 1');
19933 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19934 VALUES ('marc21_serial_024_ind_1', '0', $$International Standard Recording Code$$, FALSE, TRUE);
19935 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19936 VALUES ('marc21_serial_024_ind_1', '1', $$Universal Product Code$$, FALSE, TRUE);
19937 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19938 VALUES ('marc21_serial_024_ind_1', '2', $$International Standard Music Number$$, FALSE, TRUE);
19939 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19940 VALUES ('marc21_serial_024_ind_1', '3', $$International Article Number$$, FALSE, TRUE);
19941 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19942 VALUES ('marc21_serial_024_ind_1', '4', $$Serial Item and Contribution Identifier$$, FALSE, TRUE);
19943 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19944 VALUES ('marc21_serial_024_ind_1', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
19945 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19946 VALUES ('marc21_serial_024_ind_1', '8', $$Unspecified type of standard number or code$$, FALSE, TRUE);
19947 INSERT INTO config.record_attr_definition(name, label)
19948 VALUES ('marc21_serial_024_ind_2', 'MARC 21 serial field 024 indicator position 2');
19949 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19950 VALUES ('marc21_serial_024_ind_2', '#', $$No information provided$$, FALSE, TRUE);
19951 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19952 VALUES ('marc21_serial_024_ind_2', '0', $$No difference$$, FALSE, TRUE);
19953 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19954 VALUES ('marc21_serial_024_ind_2', '1', $$Difference$$, FALSE, TRUE);
19955 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19956                                  repeatable, mandatory, hidden)
19957 VALUES (1, 'serial', '024', 'a', $$Standard number or code$$,
19958 FALSE, FALSE, FALSE);
19959 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19960                                  repeatable, mandatory, hidden)
19961 VALUES (1, 'serial', '024', 'c', $$Terms of availability$$,
19962 FALSE, FALSE, FALSE);
19963 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19964                                  repeatable, mandatory, hidden)
19965 VALUES (1, 'serial', '024', 'd', $$Additional codes following the standard number or code$$,
19966 FALSE, FALSE, FALSE);
19967 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19968                                  repeatable, mandatory, hidden)
19969 VALUES (1, 'serial', '024', 'z', $$Canceled/invalid standard number or code$$,
19970 TRUE, FALSE, FALSE);
19971 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19972                                  repeatable, mandatory, hidden)
19973 VALUES (1, 'serial', '024', '2', $$Source of number or code$$,
19974 FALSE, FALSE, FALSE);
19975 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19976                                  repeatable, mandatory, hidden)
19977 VALUES (1, 'serial', '024', '6', $$Linkage$$,
19978 FALSE, FALSE, FALSE);
19979 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19980                                  repeatable, mandatory, hidden)
19981 VALUES (1, 'serial', '024', '8', $$Field link and sequence number$$,
19982 TRUE, FALSE, FALSE);
19983 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
19984                               fixed_field, repeatable, mandatory, hidden)
19985 VALUES (1, 'serial', '027', $$Standard Technical Report Number$$, $$International Standard Technical Report number (ISRN) or a Standard Technical Report Number (STRN) copied from subfield $a of field 027 of the MARC bibliographic record that represents the description of the item for which a separate holdings record is created.$$,
19986 FALSE, TRUE, FALSE, FALSE);
19987 INSERT INTO config.record_attr_definition(name, label)
19988 VALUES ('marc21_serial_027_ind_1', 'MARC 21 serial field 027 indicator position 1');
19989 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19990 VALUES ('marc21_serial_027_ind_1', '#', $$Undefined$$, FALSE, TRUE);
19991 INSERT INTO config.record_attr_definition(name, label)
19992 VALUES ('marc21_serial_027_ind_2', 'MARC 21 serial field 027 indicator position 2');
19993 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
19994 VALUES ('marc21_serial_027_ind_2', '#', $$Undefined$$, FALSE, TRUE);
19995 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
19996                                  repeatable, mandatory, hidden)
19997 VALUES (1, 'serial', '027', 'a', $$Standard Technical Report Number$$,
19998 FALSE, FALSE, FALSE);
19999 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20000                                  repeatable, mandatory, hidden)
20001 VALUES (1, 'serial', '027', 'z', $$Canceled/invalid STRN$$,
20002 TRUE, FALSE, FALSE);
20003 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20004                                  repeatable, mandatory, hidden)
20005 VALUES (1, 'serial', '027', '6', $$Linkage$$,
20006 FALSE, FALSE, FALSE);
20007 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20008                                  repeatable, mandatory, hidden)
20009 VALUES (1, 'serial', '027', '8', $$Field link and sequence number$$,
20010 TRUE, FALSE, FALSE);
20011 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
20012                               fixed_field, repeatable, mandatory, hidden)
20013 VALUES (1, 'serial', '030', $$CODEN Designation$$, $$CODEN designation, a unique identifier for scientific and technical periodical titles, copied from field 030 of the MARC bibliographic record that represents the description of the item for which a separate holdings record is created.$$,
20014 FALSE, FALSE, FALSE, FALSE);
20015 INSERT INTO config.record_attr_definition(name, label)
20016 VALUES ('marc21_serial_030_ind_1', 'MARC 21 serial field 030 indicator position 1');
20017 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20018 VALUES ('marc21_serial_030_ind_1', '#', $$Undefined$$, FALSE, TRUE);
20019 INSERT INTO config.record_attr_definition(name, label)
20020 VALUES ('marc21_serial_030_ind_2', 'MARC 21 serial field 030 indicator position 2');
20021 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20022 VALUES ('marc21_serial_030_ind_2', '#', $$Undefined$$, FALSE, TRUE);
20023 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20024                                  repeatable, mandatory, hidden)
20025 VALUES (1, 'serial', '030', 'a', $$CODEN$$,
20026 FALSE, FALSE, FALSE);
20027 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20028                                  repeatable, mandatory, hidden)
20029 VALUES (1, 'serial', '030', 'z', $$Canceled/invalid CODEN$$,
20030 TRUE, FALSE, FALSE);
20031 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20032                                  repeatable, mandatory, hidden)
20033 VALUES (1, 'serial', '030', '6', $$Linkage$$,
20034 FALSE, FALSE, FALSE);
20035 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20036                                  repeatable, mandatory, hidden)
20037 VALUES (1, 'serial', '030', '8', $$Field link and sequence number$$,
20038 TRUE, FALSE, FALSE);
20039 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
20040                               fixed_field, repeatable, mandatory, hidden)
20041 VALUES (1, 'serial', '035', $$System Control Number$$, $$Control number, assigned by any agency, of a holdings record or a related bibliographic record for which a separate holdings record is made.$$,
20042 FALSE, TRUE, FALSE, FALSE);
20043 INSERT INTO config.record_attr_definition(name, label)
20044 VALUES ('marc21_serial_035_ind_1', 'MARC 21 serial field 035 indicator position 1');
20045 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20046 VALUES ('marc21_serial_035_ind_1', '#', $$Undefined$$, FALSE, TRUE);
20047 INSERT INTO config.record_attr_definition(name, label)
20048 VALUES ('marc21_serial_035_ind_2', 'MARC 21 serial field 035 indicator position 2');
20049 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20050 VALUES ('marc21_serial_035_ind_2', '#', $$Undefined$$, FALSE, TRUE);
20051 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20052                                  repeatable, mandatory, hidden)
20053 VALUES (1, 'serial', '035', 'a', $$System control number$$,
20054 FALSE, FALSE, FALSE);
20055 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20056                                  repeatable, mandatory, hidden)
20057 VALUES (1, 'serial', '035', 'z', $$Canceled or invalid control number$$,
20058 TRUE, FALSE, FALSE);
20059 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20060                                  repeatable, mandatory, hidden)
20061 VALUES (1, 'serial', '035', '6', $$Linkage$$,
20062 FALSE, FALSE, FALSE);
20063 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20064                                  repeatable, mandatory, hidden)
20065 VALUES (1, 'serial', '035', '8', $$Field link and sequence number$$,
20066 TRUE, FALSE, FALSE);
20067 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
20068                               fixed_field, repeatable, mandatory, hidden)
20069 VALUES (1, 'serial', '040', $$Record Source$$, $$MARC code for or the name of the organization(s) that created the original, assigned MARC content designation and transcribed the record into machine-readable form, or modified an existing MARC record. These data and the code in 008/39 (Cataloging source) specify the parties responsible for the content, content designation, and transcription of the bibliographic record.$$,
20070 FALSE, FALSE, FALSE, FALSE);
20071 INSERT INTO config.record_attr_definition(name, label)
20072 VALUES ('marc21_serial_040_ind_1', 'MARC 21 serial field 040 indicator position 1');
20073 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20074 VALUES ('marc21_serial_040_ind_1', '#', $$Undefined$$, FALSE, TRUE);
20075 INSERT INTO config.record_attr_definition(name, label)
20076 VALUES ('marc21_serial_040_ind_2', 'MARC 21 serial field 040 indicator position 2');
20077 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20078 VALUES ('marc21_serial_040_ind_2', '#', $$Undefined$$, FALSE, TRUE);
20079 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20080                                  repeatable, mandatory, hidden)
20081 VALUES (1, 'serial', '040', 'a', $$Original cataloging agency$$,
20082 FALSE, FALSE, FALSE);
20083 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20084                                  repeatable, mandatory, hidden)
20085 VALUES (1, 'serial', '040', 'b', $$Language of cataloging$$,
20086 FALSE, FALSE, FALSE);
20087 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20088                                  repeatable, mandatory, hidden)
20089 VALUES (1, 'serial', '040', 'c', $$Transcribing agency$$,
20090 FALSE, FALSE, FALSE);
20091 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20092                                  repeatable, mandatory, hidden)
20093 VALUES (1, 'serial', '040', 'd', $$Modifying agency$$,
20094 TRUE, FALSE, FALSE);
20095 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20096                                  repeatable, mandatory, hidden)
20097 VALUES (1, 'serial', '040', '6', $$Linkage$$,
20098 FALSE, FALSE, FALSE);
20099 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20100                                  repeatable, mandatory, hidden)
20101 VALUES (1, 'serial', '040', '8', $$Field link and sequence number$$,
20102 TRUE, FALSE, FALSE);
20103 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
20104                               fixed_field, repeatable, mandatory, hidden)
20105 VALUES (1, 'serial', '066', $$Character Sets Present$$, $$Used in records encoded with characters from sets other than ISO 10646 (or Unicode) to specify the character sets for data content that are present in the record. A detailed description of the standard escape sequences used in MARC records is provided in .$$,
20106 FALSE, FALSE, FALSE, FALSE);
20107 INSERT INTO config.record_attr_definition(name, label)
20108 VALUES ('marc21_serial_066_ind_1', 'MARC 21 serial field 066 indicator position 1');
20109 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20110 VALUES ('marc21_serial_066_ind_1', '#', $$Undefined$$, FALSE, TRUE);
20111 INSERT INTO config.record_attr_definition(name, label)
20112 VALUES ('marc21_serial_066_ind_2', 'MARC 21 serial field 066 indicator position 2');
20113 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20114 VALUES ('marc21_serial_066_ind_2', '#', $$Undefined$$, FALSE, TRUE);
20115 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20116                                  repeatable, mandatory, hidden)
20117 VALUES (1, 'serial', '066', 'a', $$Primary G0 character set$$,
20118 FALSE, FALSE, FALSE);
20119 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20120                                  repeatable, mandatory, hidden)
20121 VALUES (1, 'serial', '066', 'b', $$Primary G1 character set$$,
20122 FALSE, FALSE, FALSE);
20123 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20124                                  repeatable, mandatory, hidden)
20125 VALUES (1, 'serial', '066', 'c', $$Alternate G0 or G1 character set$$,
20126 TRUE, FALSE, FALSE);
20127 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
20128                               fixed_field, repeatable, mandatory, hidden)
20129 VALUES (1, 'serial', '337', $$Media Type$$, $$Media type reflects the general type of intermediation device required to view, play, run, etc., the content of a resource. Used as an alternative to or in addition to the coded expression of Media type in field 007/00 (Category of material). Field 337 information enables indication of more specific media types and media types from various lists.$$,
20130 FALSE, TRUE, FALSE, FALSE);
20131 INSERT INTO config.record_attr_definition(name, label)
20132 VALUES ('marc21_serial_337_ind_1', 'MARC 21 serial field 337 indicator position 1');
20133 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20134 VALUES ('marc21_serial_337_ind_1', '#', $$Undefined$$, FALSE, TRUE);
20135 INSERT INTO config.record_attr_definition(name, label)
20136 VALUES ('marc21_serial_337_ind_2', 'MARC 21 serial field 337 indicator position 2');
20137 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20138 VALUES ('marc21_serial_337_ind_2', '#', $$Undefined$$, FALSE, TRUE);
20139 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20140                                  repeatable, mandatory, hidden)
20141 VALUES (1, 'serial', '337', 'a', $$Media type term$$,
20142 TRUE, FALSE, FALSE);
20143 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20144                                  repeatable, mandatory, hidden)
20145 VALUES (1, 'serial', '337', 'b', $$Media type code$$,
20146 TRUE, FALSE, FALSE);
20147 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20148                                  repeatable, mandatory, hidden)
20149 VALUES (1, 'serial', '337', '2', $$Source$$,
20150 FALSE, FALSE, FALSE);
20151 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20152                                  repeatable, mandatory, hidden)
20153 VALUES (1, 'serial', '337', '3', $$Materials specified$$,
20154 FALSE, FALSE, FALSE);
20155 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20156                                  repeatable, mandatory, hidden)
20157 VALUES (1, 'serial', '337', '6', $$Linkage$$,
20158 FALSE, FALSE, FALSE);
20159 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20160                                  repeatable, mandatory, hidden)
20161 VALUES (1, 'serial', '337', '8', $$Field link and sequence number$$,
20162 TRUE, FALSE, FALSE);
20163 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
20164                               fixed_field, repeatable, mandatory, hidden)
20165 VALUES (1, 'serial', '338', $$Carrier Type$$, $$Carrier type reflects the format of the storage medium and housing of a carrier in combination with the media type (which indicates the intermediation device required to view, play, run, etc., the content of a resource). Used as an alternative to or in addition to the coded expression of carrier type in field 007/01 (Specific material designation). Field 338 information enables indication of more specific carrier types and carrier types from various lists.$$,
20166 FALSE, TRUE, FALSE, FALSE);
20167 INSERT INTO config.record_attr_definition(name, label)
20168 VALUES ('marc21_serial_338_ind_1', 'MARC 21 serial field 338 indicator position 1');
20169 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20170 VALUES ('marc21_serial_338_ind_1', '#', $$Undefined$$, FALSE, TRUE);
20171 INSERT INTO config.record_attr_definition(name, label)
20172 VALUES ('marc21_serial_338_ind_2', 'MARC 21 serial field 338 indicator position 2');
20173 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20174 VALUES ('marc21_serial_338_ind_2', '#', $$Undefined$$, FALSE, TRUE);
20175 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20176                                  repeatable, mandatory, hidden)
20177 VALUES (1, 'serial', '338', 'a', $$Carrier type term$$,
20178 TRUE, FALSE, FALSE);
20179 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20180                                  repeatable, mandatory, hidden)
20181 VALUES (1, 'serial', '338', '2', $$Source$$,
20182 FALSE, FALSE, FALSE);
20183 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20184                                  repeatable, mandatory, hidden)
20185 VALUES (1, 'serial', '338', '3', $$Materials specified$$,
20186 FALSE, FALSE, FALSE);
20187 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20188                                  repeatable, mandatory, hidden)
20189 VALUES (1, 'serial', '338', '6', $$Linkage$$,
20190 FALSE, FALSE, FALSE);
20191 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20192                                  repeatable, mandatory, hidden)
20193 VALUES (1, 'serial', '338', '8', $$Field link and sequence number$$,
20194 TRUE, FALSE, FALSE);
20195 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
20196                               fixed_field, repeatable, mandatory, hidden)
20197 VALUES (1, 'serial', '506', $$Restrictions on Access Note$$, $$Information about restrictions imposed on access to the described materials.$$,
20198 FALSE, TRUE, FALSE, FALSE);
20199 INSERT INTO config.record_attr_definition(name, label)
20200 VALUES ('marc21_serial_506_ind_1', 'MARC 21 serial field 506 indicator position 1');
20201 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20202 VALUES ('marc21_serial_506_ind_1', '#', $$No information provided$$, FALSE, TRUE);
20203 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20204 VALUES ('marc21_serial_506_ind_1', '0', $$No restrictions$$, FALSE, TRUE);
20205 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20206 VALUES ('marc21_serial_506_ind_1', '1', $$Restrictions apply$$, FALSE, TRUE);
20207 INSERT INTO config.record_attr_definition(name, label)
20208 VALUES ('marc21_serial_506_ind_2', 'MARC 21 serial field 506 indicator position 2');
20209 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20210 VALUES ('marc21_serial_506_ind_2', '#', $$Undefined$$, FALSE, TRUE);
20211 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20212                                  repeatable, mandatory, hidden)
20213 VALUES (1, 'serial', '506', 'a', $$Terms governing access$$,
20214 FALSE, FALSE, FALSE);
20215 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20216                                  repeatable, mandatory, hidden)
20217 VALUES (1, 'serial', '506', 'b', $$Jurisdiction$$,
20218 TRUE, FALSE, FALSE);
20219 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20220                                  repeatable, mandatory, hidden)
20221 VALUES (1, 'serial', '506', 'c', $$Physical access provisions$$,
20222 TRUE, FALSE, FALSE);
20223 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20224                                  repeatable, mandatory, hidden)
20225 VALUES (1, 'serial', '506', 'd', $$Authorized users$$,
20226 TRUE, FALSE, FALSE);
20227 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20228                                  repeatable, mandatory, hidden)
20229 VALUES (1, 'serial', '506', 'e', $$Authorization$$,
20230 TRUE, FALSE, FALSE);
20231 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20232                                  repeatable, mandatory, hidden)
20233 VALUES (1, 'serial', '506', 'f', $$Standardized terminology for access restriction$$,
20234 TRUE, FALSE, FALSE);
20235 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20236                                  repeatable, mandatory, hidden)
20237 VALUES (1, 'serial', '506', 'u', $$Uniform Resource Identifier$$,
20238 TRUE, FALSE, FALSE);
20239 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20240                                  repeatable, mandatory, hidden)
20241 VALUES (1, 'serial', '506', '2', $$Source of term$$,
20242 FALSE, FALSE, FALSE);
20243 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20244                                  repeatable, mandatory, hidden)
20245 VALUES (1, 'serial', '506', '3', $$Materials specified$$,
20246 FALSE, FALSE, FALSE);
20247 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20248                                  repeatable, mandatory, hidden)
20249 VALUES (1, 'serial', '506', '5', $$Institution to which field applies$$,
20250 FALSE, FALSE, FALSE);
20251 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20252                                  repeatable, mandatory, hidden)
20253 VALUES (1, 'serial', '506', '6', $$Linkage$$,
20254 FALSE, FALSE, FALSE);
20255 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20256                                  repeatable, mandatory, hidden)
20257 VALUES (1, 'serial', '506', '8', $$Field link and sequence number$$,
20258 TRUE, FALSE, FALSE);
20259 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
20260                               fixed_field, repeatable, mandatory, hidden)
20261 VALUES (1, 'serial', '538', $$System Details Note$$, $$Technical information about an item, such as the presence or absence of certain kinds of codes; or the physical characteristics of a computer file, such as recording densities, parity, blocking factors, mode of access, software programming language, computer requirements, peripheral requirements, trade name or recording systems, number of lines of resolution, and modulation frequency. For sound and videorecordings, information about the trade name or recording system(s) (e.g., VHS), modulation frequency and number of lines of resolution may be included.$$,
20262 FALSE, TRUE, FALSE, FALSE);
20263 INSERT INTO config.record_attr_definition(name, label)
20264 VALUES ('marc21_serial_538_ind_1', 'MARC 21 serial field 538 indicator position 1');
20265 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20266 VALUES ('marc21_serial_538_ind_1', '#', $$Undefined$$, FALSE, TRUE);
20267 INSERT INTO config.record_attr_definition(name, label)
20268 VALUES ('marc21_serial_538_ind_2', 'MARC 21 serial field 538 indicator position 2');
20269 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20270 VALUES ('marc21_serial_538_ind_2', '#', $$Undefined$$, FALSE, TRUE);
20271 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20272                                  repeatable, mandatory, hidden)
20273 VALUES (1, 'serial', '538', 'a', $$System details note$$,
20274 FALSE, FALSE, FALSE);
20275 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20276                                  repeatable, mandatory, hidden)
20277 VALUES (1, 'serial', '538', 'i', $$Display text$$,
20278 FALSE, FALSE, FALSE);
20279 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20280                                  repeatable, mandatory, hidden)
20281 VALUES (1, 'serial', '538', 'u', $$Uniform Resource Identifier$$,
20282 TRUE, FALSE, FALSE);
20283 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20284                                  repeatable, mandatory, hidden)
20285 VALUES (1, 'serial', '538', '3', $$Materials specified$$,
20286 FALSE, FALSE, FALSE);
20287 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20288                                  repeatable, mandatory, hidden)
20289 VALUES (1, 'serial', '538', '5', $$Institution to which field applies$$,
20290 TRUE, FALSE, FALSE);
20291 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20292                                  repeatable, mandatory, hidden)
20293 VALUES (1, 'serial', '538', '6', $$Linkage$$,
20294 FALSE, FALSE, FALSE);
20295 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20296                                  repeatable, mandatory, hidden)
20297 VALUES (1, 'serial', '538', '8', $$Field link and sequence number$$,
20298 TRUE, FALSE, FALSE);
20299 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
20300                               fixed_field, repeatable, mandatory, hidden)
20301 VALUES (1, 'serial', '541', $$Immediate Source of Acquisition Note$$, $$Information on the immediate source of acquisition of the described materials. Used primarily for original or historical items or other archival collections.$$,
20302 FALSE, TRUE, FALSE, FALSE);
20303 INSERT INTO config.record_attr_definition(name, label)
20304 VALUES ('marc21_serial_541_ind_1', 'MARC 21 serial field 541 indicator position 1');
20305 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20306 VALUES ('marc21_serial_541_ind_1', '#', $$No information provided$$, FALSE, TRUE);
20307 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20308 VALUES ('marc21_serial_541_ind_1', '0', $$Private$$, FALSE, TRUE);
20309 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20310 VALUES ('marc21_serial_541_ind_1', '1', $$Not private$$, FALSE, TRUE);
20311 INSERT INTO config.record_attr_definition(name, label)
20312 VALUES ('marc21_serial_541_ind_2', 'MARC 21 serial field 541 indicator position 2');
20313 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20314 VALUES ('marc21_serial_541_ind_2', '#', $$Undefined$$, FALSE, TRUE);
20315 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20316                                  repeatable, mandatory, hidden)
20317 VALUES (1, 'serial', '541', 'a', $$Source of acquisition$$,
20318 FALSE, FALSE, FALSE);
20319 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20320                                  repeatable, mandatory, hidden)
20321 VALUES (1, 'serial', '541', 'b', $$Address$$,
20322 FALSE, FALSE, FALSE);
20323 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20324                                  repeatable, mandatory, hidden)
20325 VALUES (1, 'serial', '541', 'c', $$Method of acquisition$$,
20326 FALSE, FALSE, FALSE);
20327 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20328                                  repeatable, mandatory, hidden)
20329 VALUES (1, 'serial', '541', 'd', $$Date of acquisition$$,
20330 FALSE, FALSE, FALSE);
20331 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20332                                  repeatable, mandatory, hidden)
20333 VALUES (1, 'serial', '541', 'e', $$Accession number$$,
20334 FALSE, FALSE, FALSE);
20335 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20336                                  repeatable, mandatory, hidden)
20337 VALUES (1, 'serial', '541', 'f', $$Owner$$,
20338 FALSE, FALSE, FALSE);
20339 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20340                                  repeatable, mandatory, hidden)
20341 VALUES (1, 'serial', '541', 'h', $$Purchase price$$,
20342 FALSE, FALSE, FALSE);
20343 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20344                                  repeatable, mandatory, hidden)
20345 VALUES (1, 'serial', '541', 'n', $$Extent$$,
20346 TRUE, FALSE, FALSE);
20347 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20348                                  repeatable, mandatory, hidden)
20349 VALUES (1, 'serial', '541', 'o', $$Type of unit$$,
20350 TRUE, FALSE, FALSE);
20351 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20352                                  repeatable, mandatory, hidden)
20353 VALUES (1, 'serial', '541', '3', $$Materials specified$$,
20354 FALSE, FALSE, FALSE);
20355 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20356                                  repeatable, mandatory, hidden)
20357 VALUES (1, 'serial', '541', '5', $$Institution to which field applies$$,
20358 FALSE, FALSE, FALSE);
20359 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20360                                  repeatable, mandatory, hidden)
20361 VALUES (1, 'serial', '541', '6', $$Linkage$$,
20362 FALSE, FALSE, FALSE);
20363 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20364                                  repeatable, mandatory, hidden)
20365 VALUES (1, 'serial', '541', '8', $$Field link and sequence number$$,
20366 TRUE, FALSE, FALSE);
20367 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
20368                               fixed_field, repeatable, mandatory, hidden)
20369 VALUES (1, 'serial', '561', $$Ownership and Custodial History$$, $$Information concerning the ownership and custodial history of the described materials from the time of their creation to the time of their accessioning, including the time at which individual items or group of items were first brought together in their current arrangement or collation.$$,
20370 FALSE, TRUE, FALSE, FALSE);
20371 INSERT INTO config.record_attr_definition(name, label)
20372 VALUES ('marc21_serial_561_ind_1', 'MARC 21 serial field 561 indicator position 1');
20373 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20374 VALUES ('marc21_serial_561_ind_1', '#', $$No information provided$$, FALSE, TRUE);
20375 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20376 VALUES ('marc21_serial_561_ind_1', '0', $$Private$$, FALSE, TRUE);
20377 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20378 VALUES ('marc21_serial_561_ind_1', '1', $$Not private$$, FALSE, TRUE);
20379 INSERT INTO config.record_attr_definition(name, label)
20380 VALUES ('marc21_serial_561_ind_2', 'MARC 21 serial field 561 indicator position 2');
20381 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20382 VALUES ('marc21_serial_561_ind_2', '#', $$Undefined$$, FALSE, TRUE);
20383 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20384                                  repeatable, mandatory, hidden)
20385 VALUES (1, 'serial', '561', 'a', $$History$$,
20386 FALSE, FALSE, FALSE);
20387 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20388                                  repeatable, mandatory, hidden)
20389 VALUES (1, 'serial', '561', '3', $$Materials specified$$,
20390 FALSE, FALSE, FALSE);
20391 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20392                                  repeatable, mandatory, hidden)
20393 VALUES (1, 'serial', '561', '5', $$Institution to which field applies$$,
20394 FALSE, FALSE, FALSE);
20395 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20396                                  repeatable, mandatory, hidden)
20397 VALUES (1, 'serial', '561', '6', $$Linkage$$,
20398 FALSE, FALSE, FALSE);
20399 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20400                                  repeatable, mandatory, hidden)
20401 VALUES (1, 'serial', '561', '8', $$Field link and sequence number$$,
20402 TRUE, FALSE, FALSE);
20403 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
20404                               fixed_field, repeatable, mandatory, hidden)
20405 VALUES (1, 'serial', '562', $$Copy and Version Identification Note$$, $$Information that distinguishes the copy(s) or version(s) of materials held by an archive or manuscript repository when more than one copy or version exists or could exist.$$,
20406 FALSE, TRUE, FALSE, FALSE);
20407 INSERT INTO config.record_attr_definition(name, label)
20408 VALUES ('marc21_serial_562_ind_1', 'MARC 21 serial field 562 indicator position 1');
20409 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20410 VALUES ('marc21_serial_562_ind_1', '#', $$Undefined$$, FALSE, TRUE);
20411 INSERT INTO config.record_attr_definition(name, label)
20412 VALUES ('marc21_serial_562_ind_2', 'MARC 21 serial field 562 indicator position 2');
20413 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20414 VALUES ('marc21_serial_562_ind_2', '#', $$Undefined$$, FALSE, TRUE);
20415 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20416                                  repeatable, mandatory, hidden)
20417 VALUES (1, 'serial', '562', 'a', $$Identifying markings$$,
20418 TRUE, FALSE, FALSE);
20419 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20420                                  repeatable, mandatory, hidden)
20421 VALUES (1, 'serial', '562', 'b', $$Copy identification$$,
20422 TRUE, FALSE, FALSE);
20423 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20424                                  repeatable, mandatory, hidden)
20425 VALUES (1, 'serial', '562', 'c', $$Version identification$$,
20426 TRUE, FALSE, FALSE);
20427 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20428                                  repeatable, mandatory, hidden)
20429 VALUES (1, 'serial', '562', 'd', $$Presentation format$$,
20430 TRUE, FALSE, FALSE);
20431 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20432                                  repeatable, mandatory, hidden)
20433 VALUES (1, 'serial', '562', 'e', $$Number of copies$$,
20434 TRUE, FALSE, FALSE);
20435 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20436                                  repeatable, mandatory, hidden)
20437 VALUES (1, 'serial', '562', '3', $$Materials specified$$,
20438 FALSE, FALSE, FALSE);
20439 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20440                                  repeatable, mandatory, hidden)
20441 VALUES (1, 'serial', '562', '5', $$Institution to which field applies$$,
20442 FALSE, FALSE, FALSE);
20443 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20444                                  repeatable, mandatory, hidden)
20445 VALUES (1, 'serial', '562', '6', $$Linkage$$,
20446 FALSE, FALSE, FALSE);
20447 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20448                                  repeatable, mandatory, hidden)
20449 VALUES (1, 'serial', '562', '8', $$Field link and sequence number$$,
20450 TRUE, FALSE, FALSE);
20451 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
20452                               fixed_field, repeatable, mandatory, hidden)
20453 VALUES (1, 'serial', '563', $$Binding Information$$, $$Binding information intended primarily for use with antiquarian materials, rare books, and other special collections.$$,
20454 FALSE, TRUE, FALSE, FALSE);
20455 INSERT INTO config.record_attr_definition(name, label)
20456 VALUES ('marc21_serial_563_ind_1', 'MARC 21 serial field 563 indicator position 1');
20457 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20458 VALUES ('marc21_serial_563_ind_1', '#', $$Undefined$$, FALSE, TRUE);
20459 INSERT INTO config.record_attr_definition(name, label)
20460 VALUES ('marc21_serial_563_ind_2', 'MARC 21 serial field 563 indicator position 2');
20461 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20462 VALUES ('marc21_serial_563_ind_2', '#', $$Undefined$$, FALSE, TRUE);
20463 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20464                                  repeatable, mandatory, hidden)
20465 VALUES (1, 'serial', '563', 'a', $$Binding note$$,
20466 FALSE, FALSE, FALSE);
20467 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20468                                  repeatable, mandatory, hidden)
20469 VALUES (1, 'serial', '563', 'u', $$Uniform Resource Identifier$$,
20470 TRUE, FALSE, FALSE);
20471 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20472                                  repeatable, mandatory, hidden)
20473 VALUES (1, 'serial', '563', '3', $$Materials specified$$,
20474 FALSE, FALSE, FALSE);
20475 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20476                                  repeatable, mandatory, hidden)
20477 VALUES (1, 'serial', '563', '5', $$Institution to which field applies$$,
20478 FALSE, FALSE, FALSE);
20479 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20480                                  repeatable, mandatory, hidden)
20481 VALUES (1, 'serial', '563', '6', $$Linkage$$,
20482 FALSE, FALSE, FALSE);
20483 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20484                                  repeatable, mandatory, hidden)
20485 VALUES (1, 'serial', '563', '8', $$Field link and sequence number$$,
20486 TRUE, FALSE, FALSE);
20487 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
20488                               fixed_field, repeatable, mandatory, hidden)
20489 VALUES (1, 'serial', '583', $$Action Note$$, $$Information about processing and reference or preservation actions related to the bibliographic item for which a separate holdings record is created. For those using the field to record preservation activities, a list of may be used and the authority for the terminology may be indicated in subfield $2.$$,
20490 FALSE, TRUE, FALSE, FALSE);
20491 INSERT INTO config.record_attr_definition(name, label)
20492 VALUES ('marc21_serial_583_ind_1', 'MARC 21 serial field 583 indicator position 1');
20493 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20494 VALUES ('marc21_serial_583_ind_1', '#', $$No information provided$$, FALSE, TRUE);
20495 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20496 VALUES ('marc21_serial_583_ind_1', '0', $$Private$$, FALSE, TRUE);
20497 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20498 VALUES ('marc21_serial_583_ind_1', '1', $$Not private$$, FALSE, TRUE);
20499 INSERT INTO config.record_attr_definition(name, label)
20500 VALUES ('marc21_serial_583_ind_2', 'MARC 21 serial field 583 indicator position 2');
20501 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20502 VALUES ('marc21_serial_583_ind_2', '#', $$Undefined$$, FALSE, TRUE);
20503 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20504                                  repeatable, mandatory, hidden)
20505 VALUES (1, 'serial', '583', 'a', $$Action$$,
20506 FALSE, FALSE, FALSE);
20507 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20508                                  repeatable, mandatory, hidden)
20509 VALUES (1, 'serial', '583', 'b', $$Action identification$$,
20510 TRUE, FALSE, FALSE);
20511 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20512                                  repeatable, mandatory, hidden)
20513 VALUES (1, 'serial', '583', 'c', $$Time/date of action$$,
20514 TRUE, FALSE, FALSE);
20515 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20516                                  repeatable, mandatory, hidden)
20517 VALUES (1, 'serial', '583', 'd', $$Action interval$$,
20518 TRUE, FALSE, FALSE);
20519 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20520                                  repeatable, mandatory, hidden)
20521 VALUES (1, 'serial', '583', 'e', $$Contingency for action$$,
20522 TRUE, FALSE, FALSE);
20523 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20524                                  repeatable, mandatory, hidden)
20525 VALUES (1, 'serial', '583', 'f', $$Authorization$$,
20526 TRUE, FALSE, FALSE);
20527 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20528                                  repeatable, mandatory, hidden)
20529 VALUES (1, 'serial', '583', 'h', $$Jurisdiction$$,
20530 TRUE, FALSE, FALSE);
20531 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20532                                  repeatable, mandatory, hidden)
20533 VALUES (1, 'serial', '583', 'i', $$Method of action$$,
20534 TRUE, FALSE, FALSE);
20535 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20536                                  repeatable, mandatory, hidden)
20537 VALUES (1, 'serial', '583', 'j', $$Site of action$$,
20538 TRUE, FALSE, FALSE);
20539 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20540                                  repeatable, mandatory, hidden)
20541 VALUES (1, 'serial', '583', 'k', $$Action agent$$,
20542 TRUE, FALSE, FALSE);
20543 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20544                                  repeatable, mandatory, hidden)
20545 VALUES (1, 'serial', '583', 'l', $$Status$$,
20546 TRUE, FALSE, FALSE);
20547 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20548                                  repeatable, mandatory, hidden)
20549 VALUES (1, 'serial', '583', 'n', $$Extent$$,
20550 TRUE, FALSE, FALSE);
20551 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20552                                  repeatable, mandatory, hidden)
20553 VALUES (1, 'serial', '583', 'o', $$Type of unit$$,
20554 TRUE, FALSE, FALSE);
20555 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20556                                  repeatable, mandatory, hidden)
20557 VALUES (1, 'serial', '583', 'u', $$Uniform Resource Identifier$$,
20558 TRUE, FALSE, FALSE);
20559 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20560                                  repeatable, mandatory, hidden)
20561 VALUES (1, 'serial', '583', 'x', $$Nonpublic note$$,
20562 TRUE, FALSE, FALSE);
20563 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20564                                  repeatable, mandatory, hidden)
20565 VALUES (1, 'serial', '583', 'z', $$Public note$$,
20566 TRUE, FALSE, FALSE);
20567 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20568                                  repeatable, mandatory, hidden)
20569 VALUES (1, 'serial', '583', '2', $$Source of term$$,
20570 FALSE, FALSE, FALSE);
20571 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20572                                  repeatable, mandatory, hidden)
20573 VALUES (1, 'serial', '583', '3', $$Materials specified$$,
20574 FALSE, FALSE, FALSE);
20575 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20576                                  repeatable, mandatory, hidden)
20577 VALUES (1, 'serial', '583', '5', $$Institution to which field applies$$,
20578 FALSE, FALSE, FALSE);
20579 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20580                                  repeatable, mandatory, hidden)
20581 VALUES (1, 'serial', '583', '6', $$Linkage$$,
20582 FALSE, FALSE, FALSE);
20583 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20584                                  repeatable, mandatory, hidden)
20585 VALUES (1, 'serial', '583', '8', $$Field link and sequence number$$,
20586 TRUE, FALSE, FALSE);
20587 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
20588                               fixed_field, repeatable, mandatory, hidden)
20589 VALUES (1, 'serial', '841', $$Holdings Coded Data Values$$, $$When holdings data are embedded in a bibliographic record, this field contains certain coded information that would apply to the holdings information if it were in a separate holdings record in field 008 (Fixed-Length Data Elements).$$,
20590 FALSE, FALSE, FALSE, FALSE);
20591 INSERT INTO config.record_attr_definition(name, label)
20592 VALUES ('marc21_serial_841_ind_1', 'MARC 21 serial field 841 indicator position 1');
20593 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20594 VALUES ('marc21_serial_841_ind_1', '#', $$Undefined$$, FALSE, TRUE);
20595 INSERT INTO config.record_attr_definition(name, label)
20596 VALUES ('marc21_serial_841_ind_2', 'MARC 21 serial field 841 indicator position 2');
20597 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20598 VALUES ('marc21_serial_841_ind_2', '#', $$Undefined$$, FALSE, TRUE);
20599 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20600                                  repeatable, mandatory, hidden)
20601 VALUES (1, 'serial', '841', 'a', $$Type of record$$,
20602 FALSE, FALSE, FALSE);
20603 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20604                                  repeatable, mandatory, hidden)
20605 VALUES (1, 'serial', '841', 'b', $$Fixed-length data elements$$,
20606 FALSE, FALSE, FALSE);
20607 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20608                                  repeatable, mandatory, hidden)
20609 VALUES (1, 'serial', '841', 'e', $$Encoding level$$,
20610 FALSE, FALSE, FALSE);
20611 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
20612                               fixed_field, repeatable, mandatory, hidden)
20613 VALUES (1, 'serial', '842', $$Textual Physical Form Designator$$, $$Designation in textual form of the physical form of the item. The physical form designator specifies the physical medium or form, or type of material of the unit held. The general physical form designator in coded form is recorded in field 007 (Physical Description Fixed Field).$$,
20614 FALSE, FALSE, FALSE, FALSE);
20615 INSERT INTO config.record_attr_definition(name, label)
20616 VALUES ('marc21_serial_842_ind_1', 'MARC 21 serial field 842 indicator position 1');
20617 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20618 VALUES ('marc21_serial_842_ind_1', '#', $$Undefined$$, FALSE, TRUE);
20619 INSERT INTO config.record_attr_definition(name, label)
20620 VALUES ('marc21_serial_842_ind_2', 'MARC 21 serial field 842 indicator position 2');
20621 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20622 VALUES ('marc21_serial_842_ind_2', '#', $$Undefined$$, FALSE, TRUE);
20623 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20624                                  repeatable, mandatory, hidden)
20625 VALUES (1, 'serial', '842', 'a', $$Textual physical form designator$$,
20626 FALSE, FALSE, FALSE);
20627 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20628                                  repeatable, mandatory, hidden)
20629 VALUES (1, 'serial', '842', '6', $$Linkage$$,
20630 FALSE, FALSE, FALSE);
20631 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20632                                  repeatable, mandatory, hidden)
20633 VALUES (1, 'serial', '842', '8', $$Field link and sequence number$$,
20634 TRUE, FALSE, FALSE);
20635 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
20636                               fixed_field, repeatable, mandatory, hidden)
20637 VALUES (1, 'serial', '843', $$Reproduction Note$$, $$Description of an item that is a reproduction of original materials. Used when an institution chooses to have the main portion of the bibliographic record description reflect the original and the notes in field 843 reflect information about the copy.$$,
20638 FALSE, TRUE, FALSE, FALSE);
20639 INSERT INTO config.record_attr_definition(name, label)
20640 VALUES ('marc21_serial_843_ind_1', 'MARC 21 serial field 843 indicator position 1');
20641 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20642 VALUES ('marc21_serial_843_ind_1', '#', $$Undefined$$, FALSE, TRUE);
20643 INSERT INTO config.record_attr_definition(name, label)
20644 VALUES ('marc21_serial_843_ind_2', 'MARC 21 serial field 843 indicator position 2');
20645 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20646 VALUES ('marc21_serial_843_ind_2', '#', $$Undefined$$, FALSE, TRUE);
20647 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20648                                  repeatable, mandatory, hidden)
20649 VALUES (1, 'serial', '843', 'a', $$Type of reproduction$$,
20650 FALSE, FALSE, FALSE);
20651 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20652                                  repeatable, mandatory, hidden)
20653 VALUES (1, 'serial', '843', 'b', $$Place of reproduction$$,
20654 TRUE, FALSE, FALSE);
20655 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20656                                  repeatable, mandatory, hidden)
20657 VALUES (1, 'serial', '843', 'c', $$Agency responsible for reproduction$$,
20658 TRUE, FALSE, FALSE);
20659 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20660                                  repeatable, mandatory, hidden)
20661 VALUES (1, 'serial', '843', 'd', $$Date of reproduction$$,
20662 FALSE, FALSE, FALSE);
20663 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20664                                  repeatable, mandatory, hidden)
20665 VALUES (1, 'serial', '843', 'e', $$Physical description of reproduction$$,
20666 FALSE, FALSE, FALSE);
20667 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20668                                  repeatable, mandatory, hidden)
20669 VALUES (1, 'serial', '843', 'f', $$Series statement of reproduction$$,
20670 TRUE, FALSE, FALSE);
20671 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20672                                  repeatable, mandatory, hidden)
20673 VALUES (1, 'serial', '843', 'm', $$Dates of publication and/or sequential designation of issues reproduced$$,
20674 TRUE, FALSE, FALSE);
20675 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20676                                  repeatable, mandatory, hidden)
20677 VALUES (1, 'serial', '843', 'n', $$Note about reproduction$$,
20678 TRUE, FALSE, FALSE);
20679 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20680                                  repeatable, mandatory, hidden)
20681 VALUES (1, 'serial', '843', '3', $$Materials specified$$,
20682 FALSE, FALSE, FALSE);
20683 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20684                                  repeatable, mandatory, hidden)
20685 VALUES (1, 'serial', '843', '5', $$Institution to which field applies$$,
20686 FALSE, FALSE, FALSE);
20687 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20688                                  repeatable, mandatory, hidden)
20689 VALUES (1, 'serial', '843', '6', $$Linkage$$,
20690 FALSE, FALSE, FALSE);
20691 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20692                                  repeatable, mandatory, hidden)
20693 VALUES (1, 'serial', '843', '7', $$Fixed-length data elements of reproduction$$,
20694 FALSE, FALSE, FALSE);
20695 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20696                                  repeatable, mandatory, hidden)
20697 VALUES (1, 'serial', '843', '8', $$Field link and sequence number$$,
20698 TRUE, FALSE, FALSE);
20699 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
20700                               fixed_field, repeatable, mandatory, hidden)
20701 VALUES (1, 'serial', '844', $$Name of Unit$$, $$Bibliographic title or a supplied designation describing a basic bibliographic unit, supplementary material, or an index. A supplement or index designation used as a caption is contained in fields 853-855 (Captions and Pattern), subfield $a-$h (Enumeration captions).$$,
20702 FALSE, FALSE, FALSE, FALSE);
20703 INSERT INTO config.record_attr_definition(name, label)
20704 VALUES ('marc21_serial_844_ind_1', 'MARC 21 serial field 844 indicator position 1');
20705 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20706 VALUES ('marc21_serial_844_ind_1', '#', $$Undefined$$, FALSE, TRUE);
20707 INSERT INTO config.record_attr_definition(name, label)
20708 VALUES ('marc21_serial_844_ind_2', 'MARC 21 serial field 844 indicator position 2');
20709 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20710 VALUES ('marc21_serial_844_ind_2', '#', $$Undefined$$, FALSE, TRUE);
20711 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20712                                  repeatable, mandatory, hidden)
20713 VALUES (1, 'serial', '844', 'a', $$Name of unit$$,
20714 FALSE, FALSE, FALSE);
20715 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20716                                  repeatable, mandatory, hidden)
20717 VALUES (1, 'serial', '844', '6', $$Linkage$$,
20718 FALSE, FALSE, FALSE);
20719 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20720                                  repeatable, mandatory, hidden)
20721 VALUES (1, 'serial', '844', '8', $$Field link and sequence number$$,
20722 TRUE, FALSE, FALSE);
20723 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
20724                               fixed_field, repeatable, mandatory, hidden)
20725 VALUES (1, 'serial', '845', $$Terms Governing Use and Reproduction Note$$, $$Terms governing the use and reproduction of a bibliographic item when the holding organization will lend (008/20, Lending policy, code a) and reproduce (008/21, Reproduction policy, code a) the item.$$,
20726 FALSE, TRUE, FALSE, FALSE);
20727 INSERT INTO config.record_attr_definition(name, label)
20728 VALUES ('marc21_serial_845_ind_1', 'MARC 21 serial field 845 indicator position 1');
20729 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20730 VALUES ('marc21_serial_845_ind_1', '#', $$Undefined$$, FALSE, TRUE);
20731 INSERT INTO config.record_attr_definition(name, label)
20732 VALUES ('marc21_serial_845_ind_2', 'MARC 21 serial field 845 indicator position 2');
20733 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20734 VALUES ('marc21_serial_845_ind_2', '#', $$Undefined$$, FALSE, TRUE);
20735 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20736                                  repeatable, mandatory, hidden)
20737 VALUES (1, 'serial', '845', 'a', $$Terms governing use and reproduction$$,
20738 FALSE, FALSE, FALSE);
20739 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20740                                  repeatable, mandatory, hidden)
20741 VALUES (1, 'serial', '845', 'b', $$Jurisdiction$$,
20742 FALSE, FALSE, FALSE);
20743 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20744                                  repeatable, mandatory, hidden)
20745 VALUES (1, 'serial', '845', 'c', $$Authorization$$,
20746 FALSE, FALSE, FALSE);
20747 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20748                                  repeatable, mandatory, hidden)
20749 VALUES (1, 'serial', '845', 'd', $$Authorized users$$,
20750 FALSE, FALSE, FALSE);
20751 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20752                                  repeatable, mandatory, hidden)
20753 VALUES (1, 'serial', '845', 'u', $$Uniform Resource Identifier$$,
20754 TRUE, FALSE, FALSE);
20755 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20756                                  repeatable, mandatory, hidden)
20757 VALUES (1, 'serial', '845', '3', $$Materials specified$$,
20758 FALSE, FALSE, FALSE);
20759 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20760                                  repeatable, mandatory, hidden)
20761 VALUES (1, 'serial', '845', '5', $$Institution to which field applies$$,
20762 FALSE, FALSE, FALSE);
20763 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20764                                  repeatable, mandatory, hidden)
20765 VALUES (1, 'serial', '845', '6', $$Linkage$$,
20766 FALSE, FALSE, FALSE);
20767 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20768                                  repeatable, mandatory, hidden)
20769 VALUES (1, 'serial', '845', '8', $$Field link and sequence number$$,
20770 TRUE, FALSE, FALSE);
20771 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
20772                               fixed_field, repeatable, mandatory, hidden)
20773 VALUES (1, 'serial', '852', $$Location$$, $$Organization holding the item or from which it is available. May also contain detailed information about how to locate the item in a collection.$$,
20774 FALSE, TRUE, FALSE, FALSE);
20775 INSERT INTO config.record_attr_definition(name, label)
20776 VALUES ('marc21_serial_852_ind_1', 'MARC 21 serial field 852 indicator position 1');
20777 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20778 VALUES ('marc21_serial_852_ind_1', '#', $$No information provided$$, FALSE, TRUE);
20779 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20780 VALUES ('marc21_serial_852_ind_1', '0', $$Library of Congress classification$$, FALSE, TRUE);
20781 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20782 VALUES ('marc21_serial_852_ind_1', '1', $$Dewey Decimal classification$$, FALSE, TRUE);
20783 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20784 VALUES ('marc21_serial_852_ind_1', '2', $$National Library of Medicine classification$$, FALSE, TRUE);
20785 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20786 VALUES ('marc21_serial_852_ind_1', '3', $$Superintendent of Documents classification$$, FALSE, TRUE);
20787 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20788 VALUES ('marc21_serial_852_ind_1', '4', $$Shelving control number$$, FALSE, TRUE);
20789 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20790 VALUES ('marc21_serial_852_ind_1', '5', $$Title$$, FALSE, TRUE);
20791 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20792 VALUES ('marc21_serial_852_ind_1', '6', $$Shelved separately$$, FALSE, TRUE);
20793 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20794 VALUES ('marc21_serial_852_ind_1', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
20795 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20796 VALUES ('marc21_serial_852_ind_1', '8', $$Other scheme$$, FALSE, TRUE);
20797 INSERT INTO config.record_attr_definition(name, label)
20798 VALUES ('marc21_serial_852_ind_2', 'MARC 21 serial field 852 indicator position 2');
20799 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20800 VALUES ('marc21_serial_852_ind_2', '#', $$No information provided$$, FALSE, TRUE);
20801 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20802 VALUES ('marc21_serial_852_ind_2', '0', $$Not enumeration$$, FALSE, TRUE);
20803 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20804 VALUES ('marc21_serial_852_ind_2', '1', $$Primary enumeration$$, FALSE, TRUE);
20805 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20806 VALUES ('marc21_serial_852_ind_2', '2', $$Alternative enumeration$$, FALSE, TRUE);
20807 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20808                                  repeatable, mandatory, hidden)
20809 VALUES (1, 'serial', '852', 'a', $$Location$$,
20810 FALSE, FALSE, FALSE);
20811 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20812                                  repeatable, mandatory, hidden)
20813 VALUES (1, 'serial', '852', 'b', $$Sublocation or collection$$,
20814 TRUE, FALSE, FALSE);
20815 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20816                                  repeatable, mandatory, hidden)
20817 VALUES (1, 'serial', '852', 'c', $$Shelving location$$,
20818 TRUE, FALSE, FALSE);
20819 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20820                                  repeatable, mandatory, hidden)
20821 VALUES (1, 'serial', '852', 'd', $$Former shelving location$$,
20822 TRUE, FALSE, FALSE);
20823 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20824                                  repeatable, mandatory, hidden)
20825 VALUES (1, 'serial', '852', 'e', $$Address$$,
20826 TRUE, FALSE, FALSE);
20827 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20828                                  repeatable, mandatory, hidden)
20829 VALUES (1, 'serial', '852', 'f', $$Coded location qualifier$$,
20830 TRUE, FALSE, FALSE);
20831 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20832                                  repeatable, mandatory, hidden)
20833 VALUES (1, 'serial', '852', 'g', $$Non-coded location qualifier$$,
20834 TRUE, FALSE, FALSE);
20835 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20836                                  repeatable, mandatory, hidden)
20837 VALUES (1, 'serial', '852', 'h', $$Classification part$$,
20838 FALSE, FALSE, FALSE);
20839 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20840                                  repeatable, mandatory, hidden)
20841 VALUES (1, 'serial', '852', 'i', $$Item part$$,
20842 TRUE, FALSE, FALSE);
20843 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20844                                  repeatable, mandatory, hidden)
20845 VALUES (1, 'serial', '852', 'j', $$Shelving control number$$,
20846 FALSE, FALSE, FALSE);
20847 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20848                                  repeatable, mandatory, hidden)
20849 VALUES (1, 'serial', '852', 'k', $$Call number prefix$$,
20850 TRUE, FALSE, FALSE);
20851 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20852                                  repeatable, mandatory, hidden)
20853 VALUES (1, 'serial', '852', 'l', $$Shelving form of title$$,
20854 FALSE, FALSE, FALSE);
20855 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20856                                  repeatable, mandatory, hidden)
20857 VALUES (1, 'serial', '852', 'm', $$Call number suffix$$,
20858 TRUE, FALSE, FALSE);
20859 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20860                                  repeatable, mandatory, hidden)
20861 VALUES (1, 'serial', '852', 'n', $$Country code$$,
20862 FALSE, FALSE, FALSE);
20863 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20864                                  repeatable, mandatory, hidden)
20865 VALUES (1, 'serial', '852', 'p', $$Piece designation$$,
20866 FALSE, FALSE, FALSE);
20867 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20868                                  repeatable, mandatory, hidden)
20869 VALUES (1, 'serial', '852', 'q', $$Piece physical condition$$,
20870 FALSE, FALSE, FALSE);
20871 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20872                                  repeatable, mandatory, hidden)
20873 VALUES (1, 'serial', '852', 's', $$Copyright article-fee code$$,
20874 TRUE, FALSE, FALSE);
20875 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20876                                  repeatable, mandatory, hidden)
20877 VALUES (1, 'serial', '852', 't', $$Copy number$$,
20878 FALSE, FALSE, FALSE);
20879 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20880                                  repeatable, mandatory, hidden)
20881 VALUES (1, 'serial', '852', 'u', $$Uniform Resource Identifier$$,
20882 TRUE, FALSE, FALSE);
20883 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20884                                  repeatable, mandatory, hidden)
20885 VALUES (1, 'serial', '852', 'x', $$Nonpublic note$$,
20886 TRUE, FALSE, FALSE);
20887 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20888                                  repeatable, mandatory, hidden)
20889 VALUES (1, 'serial', '852', 'z', $$Public note$$,
20890 TRUE, FALSE, FALSE);
20891 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20892                                  repeatable, mandatory, hidden)
20893 VALUES (1, 'serial', '852', '2', $$Source of classification or shelving scheme$$,
20894 FALSE, FALSE, FALSE);
20895 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20896                                  repeatable, mandatory, hidden)
20897 VALUES (1, 'serial', '852', '3', $$Materials specified$$,
20898 FALSE, FALSE, FALSE);
20899 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20900                                  repeatable, mandatory, hidden)
20901 VALUES (1, 'serial', '852', '6', $$Linkage$$,
20902 FALSE, FALSE, FALSE);
20903 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20904                                  repeatable, mandatory, hidden)
20905 VALUES (1, 'serial', '852', '8', $$Sequence number$$,
20906 FALSE, FALSE, FALSE);
20907 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
20908                               fixed_field, repeatable, mandatory, hidden)
20909 VALUES (1, 'serial', '853', $$Captions and Pattern - Basic Bibliographic Unit$$, $$Captions that identify the enumeration and chronology levels and codes that define the publication pattern of the holdings described in the 863-865 Enumeration and Chronology fields. Any related 853-855 and 863-865 fields are linked by a number in subfield $8 (Field link and sequence number).$$,
20910 FALSE, TRUE, FALSE, FALSE);
20911 INSERT INTO config.record_attr_definition(name, label)
20912 VALUES ('marc21_serial_853_ind_1', 'MARC 21 serial field 853 indicator position 1');
20913 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20914 VALUES ('marc21_serial_853_ind_1', '0', $$Cannot compress or expand$$, FALSE, TRUE);
20915 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20916 VALUES ('marc21_serial_853_ind_1', '1', $$Can compress but not expand$$, FALSE, TRUE);
20917 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20918 VALUES ('marc21_serial_853_ind_1', '2', $$Can compress or expand$$, FALSE, TRUE);
20919 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20920 VALUES ('marc21_serial_853_ind_1', '3', $$Unknown$$, FALSE, TRUE);
20921 INSERT INTO config.record_attr_definition(name, label)
20922 VALUES ('marc21_serial_853_ind_2', 'MARC 21 serial field 853 indicator position 2');
20923 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20924 VALUES ('marc21_serial_853_ind_2', '0', $$Captions verified; all levels present$$, FALSE, TRUE);
20925 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20926 VALUES ('marc21_serial_853_ind_2', '1', $$Captions verified; all levels may not be present$$, FALSE, TRUE);
20927 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20928 VALUES ('marc21_serial_853_ind_2', '2', $$Captions unverified; all levels present$$, FALSE, TRUE);
20929 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
20930 VALUES ('marc21_serial_853_ind_2', '3', $$Captions unverified; all levels may not be present$$, FALSE, TRUE);
20931 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20932                                  repeatable, mandatory, hidden)
20933 VALUES (1, 'serial', '853', 'a', $$First level of enumeration$$,
20934 TRUE, FALSE, FALSE);
20935 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20936                                  repeatable, mandatory, hidden)
20937 VALUES (1, 'serial', '853', 'b', $$Second level of enumeration$$,
20938 TRUE, FALSE, FALSE);
20939 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20940                                  repeatable, mandatory, hidden)
20941 VALUES (1, 'serial', '853', 'c', $$Third level of enumeration$$,
20942 TRUE, FALSE, FALSE);
20943 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20944                                  repeatable, mandatory, hidden)
20945 VALUES (1, 'serial', '853', 'd', $$Fourth level of enumeration$$,
20946 TRUE, FALSE, FALSE);
20947 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20948                                  repeatable, mandatory, hidden)
20949 VALUES (1, 'serial', '853', 'e', $$Fifth level of enumeration$$,
20950 TRUE, FALSE, FALSE);
20951 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20952                                  repeatable, mandatory, hidden)
20953 VALUES (1, 'serial', '853', 'f', $$Sixth level of enumeration$$,
20954 TRUE, FALSE, FALSE);
20955 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20956                                  repeatable, mandatory, hidden)
20957 VALUES (1, 'serial', '853', 'g', $$Alternative numbering scheme, first level of enumeration$$,
20958 TRUE, FALSE, FALSE);
20959 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20960                                  repeatable, mandatory, hidden)
20961 VALUES (1, 'serial', '853', 'h', $$Alternative numbering scheme, second level of enumeration$$,
20962 TRUE, FALSE, FALSE);
20963 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20964                                  repeatable, mandatory, hidden)
20965 VALUES (1, 'serial', '853', 'i', $$First level of chronology$$,
20966 TRUE, FALSE, FALSE);
20967 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20968                                  repeatable, mandatory, hidden)
20969 VALUES (1, 'serial', '853', 'j', $$Second level of chronology$$,
20970 TRUE, FALSE, FALSE);
20971 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20972                                  repeatable, mandatory, hidden)
20973 VALUES (1, 'serial', '853', 'k', $$Third level of chronology$$,
20974 TRUE, FALSE, FALSE);
20975 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20976                                  repeatable, mandatory, hidden)
20977 VALUES (1, 'serial', '853', 'l', $$Fourth level of chronology$$,
20978 TRUE, FALSE, FALSE);
20979 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20980                                  repeatable, mandatory, hidden)
20981 VALUES (1, 'serial', '853', 'm', $$Alternative numbering scheme, chronology$$,
20982 TRUE, FALSE, FALSE);
20983 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20984                                  repeatable, mandatory, hidden)
20985 VALUES (1, 'serial', '853', 'n', $$Pattern note$$,
20986 TRUE, FALSE, FALSE);
20987 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20988                                  repeatable, mandatory, hidden)
20989 VALUES (1, 'serial', '853', 'o', $$Type of unit$$,
20990 TRUE, FALSE, FALSE);
20991 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20992                                  repeatable, mandatory, hidden)
20993 VALUES (1, 'serial', '853', 'p', $$Number of pieces per issuance$$,
20994 TRUE, FALSE, FALSE);
20995 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
20996                                  repeatable, mandatory, hidden)
20997 VALUES (1, 'serial', '853', 't', $$Copy$$,
20998 TRUE, FALSE, FALSE);
20999 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21000                                  repeatable, mandatory, hidden)
21001 VALUES (1, 'serial', '853', 'u', $$Bibliographic units per next higher level$$,
21002 TRUE, FALSE, FALSE);
21003 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21004                                  repeatable, mandatory, hidden)
21005 VALUES (1, 'serial', '853', 'v', $$Numbering continuity$$,
21006 TRUE, FALSE, FALSE);
21007 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21008                                  repeatable, mandatory, hidden)
21009 VALUES (1, 'serial', '853', 'w', $$Frequency$$,
21010 TRUE, FALSE, FALSE);
21011 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21012                                  repeatable, mandatory, hidden)
21013 VALUES (1, 'serial', '853', 'x', $$Calendar change$$,
21014 TRUE, FALSE, FALSE);
21015 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21016                                  repeatable, mandatory, hidden)
21017 VALUES (1, 'serial', '853', 'y', $$Regularity pattern$$,
21018 TRUE, FALSE, FALSE);
21019 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21020                                  repeatable, mandatory, hidden)
21021 VALUES (1, 'serial', '853', 'z', $$Numbering scheme$$,
21022 TRUE, FALSE, FALSE);
21023 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21024                                  repeatable, mandatory, hidden)
21025 VALUES (1, 'serial', '853', '2', $$Source of caption abbreviation$$,
21026 TRUE, FALSE, FALSE);
21027 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21028                                  repeatable, mandatory, hidden)
21029 VALUES (1, 'serial', '853', '3', $$Materials specified$$,
21030 TRUE, FALSE, FALSE);
21031 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21032                                  repeatable, mandatory, hidden)
21033 VALUES (1, 'serial', '853', '6', $$Linkage$$,
21034 TRUE, FALSE, FALSE);
21035 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21036                                  repeatable, mandatory, hidden)
21037 VALUES (1, 'serial', '853', '8', $$Field link and sequence number$$,
21038 TRUE, FALSE, FALSE);
21039 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
21040                               fixed_field, repeatable, mandatory, hidden)
21041 VALUES (1, 'serial', '854', $$Captions and Pattern - Supplementary Material$$, $$Captions that identify the enumeration and chronology levels and codes that define the publication pattern of the holdings described in the 863-865 Enumeration and Chronology fields. Any related 853-855 and 863-865 fields are linked by a number in subfield $8 (Field link and sequence number).$$,
21042 FALSE, TRUE, FALSE, FALSE);
21043 INSERT INTO config.record_attr_definition(name, label)
21044 VALUES ('marc21_serial_854_ind_1', 'MARC 21 serial field 854 indicator position 1');
21045 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21046 VALUES ('marc21_serial_854_ind_1', '0', $$Cannot compress or expand$$, FALSE, TRUE);
21047 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21048 VALUES ('marc21_serial_854_ind_1', '1', $$Can compress but not expand$$, FALSE, TRUE);
21049 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21050 VALUES ('marc21_serial_854_ind_1', '2', $$Can compress or expand$$, FALSE, TRUE);
21051 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21052 VALUES ('marc21_serial_854_ind_1', '3', $$Unknown$$, FALSE, TRUE);
21053 INSERT INTO config.record_attr_definition(name, label)
21054 VALUES ('marc21_serial_854_ind_2', 'MARC 21 serial field 854 indicator position 2');
21055 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21056 VALUES ('marc21_serial_854_ind_2', '0', $$Captions verified; all levels present$$, FALSE, TRUE);
21057 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21058 VALUES ('marc21_serial_854_ind_2', '1', $$Captions verified; all levels may not be present$$, FALSE, TRUE);
21059 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21060 VALUES ('marc21_serial_854_ind_2', '2', $$Captions unverified; all levels present$$, FALSE, TRUE);
21061 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21062 VALUES ('marc21_serial_854_ind_2', '3', $$Captions unverified; all levels may not be present$$, FALSE, TRUE);
21063 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21064                                  repeatable, mandatory, hidden)
21065 VALUES (1, 'serial', '854', 'a', $$First level of enumeration$$,
21066 TRUE, FALSE, FALSE);
21067 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21068                                  repeatable, mandatory, hidden)
21069 VALUES (1, 'serial', '854', 'b', $$Second level of enumeration$$,
21070 TRUE, FALSE, FALSE);
21071 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21072                                  repeatable, mandatory, hidden)
21073 VALUES (1, 'serial', '854', 'c', $$Third level of enumeration$$,
21074 TRUE, FALSE, FALSE);
21075 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21076                                  repeatable, mandatory, hidden)
21077 VALUES (1, 'serial', '854', 'd', $$Fourth level of enumeration$$,
21078 TRUE, FALSE, FALSE);
21079 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21080                                  repeatable, mandatory, hidden)
21081 VALUES (1, 'serial', '854', 'e', $$Fifth level of enumeration$$,
21082 TRUE, FALSE, FALSE);
21083 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21084                                  repeatable, mandatory, hidden)
21085 VALUES (1, 'serial', '854', 'f', $$Sixth level of enumeration$$,
21086 TRUE, FALSE, FALSE);
21087 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21088                                  repeatable, mandatory, hidden)
21089 VALUES (1, 'serial', '854', 'g', $$Alternative numbering scheme, first level of enumeration$$,
21090 TRUE, FALSE, FALSE);
21091 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21092                                  repeatable, mandatory, hidden)
21093 VALUES (1, 'serial', '854', 'h', $$Alternative numbering scheme, second level of enumeration$$,
21094 TRUE, FALSE, FALSE);
21095 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21096                                  repeatable, mandatory, hidden)
21097 VALUES (1, 'serial', '854', 'i', $$First level of chronology$$,
21098 TRUE, FALSE, FALSE);
21099 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21100                                  repeatable, mandatory, hidden)
21101 VALUES (1, 'serial', '854', 'j', $$Second level of chronology$$,
21102 TRUE, FALSE, FALSE);
21103 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21104                                  repeatable, mandatory, hidden)
21105 VALUES (1, 'serial', '854', 'k', $$Third level of chronology$$,
21106 TRUE, FALSE, FALSE);
21107 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21108                                  repeatable, mandatory, hidden)
21109 VALUES (1, 'serial', '854', 'l', $$Fourth level of chronology$$,
21110 TRUE, FALSE, FALSE);
21111 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21112                                  repeatable, mandatory, hidden)
21113 VALUES (1, 'serial', '854', 'm', $$Alternative numbering scheme, chronology$$,
21114 TRUE, FALSE, FALSE);
21115 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21116                                  repeatable, mandatory, hidden)
21117 VALUES (1, 'serial', '854', 'n', $$Pattern note$$,
21118 TRUE, FALSE, FALSE);
21119 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21120                                  repeatable, mandatory, hidden)
21121 VALUES (1, 'serial', '854', 'o', $$Type of unit$$,
21122 TRUE, FALSE, FALSE);
21123 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21124                                  repeatable, mandatory, hidden)
21125 VALUES (1, 'serial', '854', 'p', $$Number of pieces per issuance$$,
21126 TRUE, FALSE, FALSE);
21127 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21128                                  repeatable, mandatory, hidden)
21129 VALUES (1, 'serial', '854', 't', $$Copy$$,
21130 TRUE, FALSE, FALSE);
21131 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21132                                  repeatable, mandatory, hidden)
21133 VALUES (1, 'serial', '854', 'u', $$Bibliographic units per next higher level$$,
21134 TRUE, FALSE, FALSE);
21135 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21136                                  repeatable, mandatory, hidden)
21137 VALUES (1, 'serial', '854', 'v', $$Numbering continuity$$,
21138 TRUE, FALSE, FALSE);
21139 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21140                                  repeatable, mandatory, hidden)
21141 VALUES (1, 'serial', '854', 'w', $$Frequency$$,
21142 TRUE, FALSE, FALSE);
21143 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21144                                  repeatable, mandatory, hidden)
21145 VALUES (1, 'serial', '854', 'x', $$Calendar change$$,
21146 TRUE, FALSE, FALSE);
21147 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21148                                  repeatable, mandatory, hidden)
21149 VALUES (1, 'serial', '854', 'y', $$Regularity pattern$$,
21150 TRUE, FALSE, FALSE);
21151 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21152                                  repeatable, mandatory, hidden)
21153 VALUES (1, 'serial', '854', 'z', $$Numbering scheme$$,
21154 TRUE, FALSE, FALSE);
21155 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21156                                  repeatable, mandatory, hidden)
21157 VALUES (1, 'serial', '854', '2', $$Source of caption abbreviation$$,
21158 TRUE, FALSE, FALSE);
21159 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21160                                  repeatable, mandatory, hidden)
21161 VALUES (1, 'serial', '854', '3', $$Materials specified$$,
21162 TRUE, FALSE, FALSE);
21163 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21164                                  repeatable, mandatory, hidden)
21165 VALUES (1, 'serial', '854', '6', $$Linkage$$,
21166 TRUE, FALSE, FALSE);
21167 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21168                                  repeatable, mandatory, hidden)
21169 VALUES (1, 'serial', '854', '8', $$Field link and sequence number$$,
21170 TRUE, FALSE, FALSE);
21171 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
21172                               fixed_field, repeatable, mandatory, hidden)
21173 VALUES (1, 'serial', '855', $$Captions and Pattern - Indexes$$, $$Captions that identify the enumeration and chronology levels and codes that define the publication pattern of the holdings described in the 863-865 Enumeration and Chronology fields. Any related 853-855 and 863-865 fields are linked by a number in subfield $8 (Field link and sequence number).$$,
21174 FALSE, TRUE, FALSE, FALSE);
21175 INSERT INTO config.record_attr_definition(name, label)
21176 VALUES ('marc21_serial_855_ind_1', 'MARC 21 serial field 855 indicator position 1');
21177 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21178 VALUES ('marc21_serial_855_ind_1', '#', $$Undefined$$, FALSE, TRUE);
21179 INSERT INTO config.record_attr_definition(name, label)
21180 VALUES ('marc21_serial_855_ind_2', 'MARC 21 serial field 855 indicator position 2');
21181 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21182 VALUES ('marc21_serial_855_ind_2', '#', $$Undefined$$, FALSE, TRUE);
21183 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21184                                  repeatable, mandatory, hidden)
21185 VALUES (1, 'serial', '855', 'a', $$First level of enumeration$$,
21186 TRUE, FALSE, FALSE);
21187 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21188                                  repeatable, mandatory, hidden)
21189 VALUES (1, 'serial', '855', 'b', $$Second level of enumeration$$,
21190 TRUE, FALSE, FALSE);
21191 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21192                                  repeatable, mandatory, hidden)
21193 VALUES (1, 'serial', '855', 'c', $$Third level of enumeration$$,
21194 TRUE, FALSE, FALSE);
21195 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21196                                  repeatable, mandatory, hidden)
21197 VALUES (1, 'serial', '855', 'd', $$Fourth level of enumeration$$,
21198 TRUE, FALSE, FALSE);
21199 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21200                                  repeatable, mandatory, hidden)
21201 VALUES (1, 'serial', '855', 'e', $$Fifth level of enumeration$$,
21202 TRUE, FALSE, FALSE);
21203 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21204                                  repeatable, mandatory, hidden)
21205 VALUES (1, 'serial', '855', 'f', $$Sixth level of enumeration$$,
21206 TRUE, FALSE, FALSE);
21207 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21208                                  repeatable, mandatory, hidden)
21209 VALUES (1, 'serial', '855', 'g', $$Alternative numbering scheme, first level of enumeration$$,
21210 TRUE, FALSE, FALSE);
21211 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21212                                  repeatable, mandatory, hidden)
21213 VALUES (1, 'serial', '855', 'h', $$Alternative numbering scheme, second level of enumeration$$,
21214 TRUE, FALSE, FALSE);
21215 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21216                                  repeatable, mandatory, hidden)
21217 VALUES (1, 'serial', '855', 'i', $$First level of chronology$$,
21218 TRUE, FALSE, FALSE);
21219 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21220                                  repeatable, mandatory, hidden)
21221 VALUES (1, 'serial', '855', 'j', $$Second level of chronology$$,
21222 TRUE, FALSE, FALSE);
21223 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21224                                  repeatable, mandatory, hidden)
21225 VALUES (1, 'serial', '855', 'k', $$Third level of chronology$$,
21226 TRUE, FALSE, FALSE);
21227 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21228                                  repeatable, mandatory, hidden)
21229 VALUES (1, 'serial', '855', 'l', $$Fourth level of chronology$$,
21230 TRUE, FALSE, FALSE);
21231 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21232                                  repeatable, mandatory, hidden)
21233 VALUES (1, 'serial', '855', 'm', $$Alternative numbering scheme, chronology$$,
21234 TRUE, FALSE, FALSE);
21235 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21236                                  repeatable, mandatory, hidden)
21237 VALUES (1, 'serial', '855', 'n', $$Pattern note$$,
21238 TRUE, FALSE, FALSE);
21239 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21240                                  repeatable, mandatory, hidden)
21241 VALUES (1, 'serial', '855', 'o', $$Type of unit$$,
21242 TRUE, FALSE, FALSE);
21243 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21244                                  repeatable, mandatory, hidden)
21245 VALUES (1, 'serial', '855', 'p', $$Number of pieces per issuance$$,
21246 TRUE, FALSE, FALSE);
21247 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21248                                  repeatable, mandatory, hidden)
21249 VALUES (1, 'serial', '855', 't', $$Copy$$,
21250 TRUE, FALSE, FALSE);
21251 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21252                                  repeatable, mandatory, hidden)
21253 VALUES (1, 'serial', '855', 'u', $$Bibliographic units per next higher level$$,
21254 TRUE, FALSE, FALSE);
21255 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21256                                  repeatable, mandatory, hidden)
21257 VALUES (1, 'serial', '855', 'v', $$Numbering continuity$$,
21258 TRUE, FALSE, FALSE);
21259 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21260                                  repeatable, mandatory, hidden)
21261 VALUES (1, 'serial', '855', 'w', $$Frequency$$,
21262 TRUE, FALSE, FALSE);
21263 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21264                                  repeatable, mandatory, hidden)
21265 VALUES (1, 'serial', '855', 'x', $$Calendar change$$,
21266 TRUE, FALSE, FALSE);
21267 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21268                                  repeatable, mandatory, hidden)
21269 VALUES (1, 'serial', '855', 'y', $$Regularity pattern$$,
21270 TRUE, FALSE, FALSE);
21271 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21272                                  repeatable, mandatory, hidden)
21273 VALUES (1, 'serial', '855', 'z', $$Numbering scheme$$,
21274 TRUE, FALSE, FALSE);
21275 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21276                                  repeatable, mandatory, hidden)
21277 VALUES (1, 'serial', '855', '2', $$Source of caption abbreviation$$,
21278 TRUE, FALSE, FALSE);
21279 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21280                                  repeatable, mandatory, hidden)
21281 VALUES (1, 'serial', '855', '3', $$Materials specified$$,
21282 TRUE, FALSE, FALSE);
21283 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21284                                  repeatable, mandatory, hidden)
21285 VALUES (1, 'serial', '855', '6', $$Linkage$$,
21286 TRUE, FALSE, FALSE);
21287 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21288                                  repeatable, mandatory, hidden)
21289 VALUES (1, 'serial', '855', '8', $$Field link and sequence number$$,
21290 TRUE, FALSE, FALSE);
21291 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
21292                               fixed_field, repeatable, mandatory, hidden)
21293 VALUES (1, 'serial', '856', $$Electronic Location and Access$$, $$Information required to locate an electronic resource. The information identifies the electronic location containing the resource or from which it is available. It also contains information needed to retrieve the resource by the access method identified in the first indicator position. The relationship of the electronic location and access information in field 856 to the resource identified by the record as a whole is identified by the second indicator. The information contained in this field is sufficient to allow for the electronic transfer of a file, subscription to an electronic journal, or logon to an electronic resource. In some cases, only unique data elements are recorded which allow the user to access a locator table on a remote host containing the remaining information needed to access the resource.$$,
21294 FALSE, TRUE, FALSE, FALSE);
21295 INSERT INTO config.record_attr_definition(name, label)
21296 VALUES ('marc21_serial_856_ind_1', 'MARC 21 serial field 856 indicator position 1');
21297 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21298 VALUES ('marc21_serial_856_ind_1', '#', $$No information provided$$, FALSE, TRUE);
21299 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21300 VALUES ('marc21_serial_856_ind_1', '0', $$Email$$, FALSE, TRUE);
21301 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21302 VALUES ('marc21_serial_856_ind_1', '1', $$FTP$$, FALSE, TRUE);
21303 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21304 VALUES ('marc21_serial_856_ind_1', '2', $$Remote login (Telnet)$$, FALSE, TRUE);
21305 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21306 VALUES ('marc21_serial_856_ind_1', '3', $$Dial-up$$, FALSE, TRUE);
21307 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21308 VALUES ('marc21_serial_856_ind_1', '4', $$HTTP$$, FALSE, TRUE);
21309 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21310 VALUES ('marc21_serial_856_ind_1', '7', $$Method specified in subfield $2$$, FALSE, TRUE);
21311 INSERT INTO config.record_attr_definition(name, label)
21312 VALUES ('marc21_serial_856_ind_2', 'MARC 21 serial field 856 indicator position 2');
21313 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21314 VALUES ('marc21_serial_856_ind_2', '#', $$No information provided$$, FALSE, TRUE);
21315 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21316 VALUES ('marc21_serial_856_ind_2', '0', $$Resource$$, FALSE, TRUE);
21317 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21318 VALUES ('marc21_serial_856_ind_2', '1', $$Version of resource$$, FALSE, TRUE);
21319 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21320 VALUES ('marc21_serial_856_ind_2', '2', $$Related resource$$, FALSE, TRUE);
21321 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21322 VALUES ('marc21_serial_856_ind_2', '8', $$No display constant generated$$, FALSE, TRUE);
21323 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21324                                  repeatable, mandatory, hidden)
21325 VALUES (1, 'serial', '856', 'a', $$Host name$$,
21326 TRUE, FALSE, FALSE);
21327 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21328                                  repeatable, mandatory, hidden)
21329 VALUES (1, 'serial', '856', 'b', $$Access number$$,
21330 TRUE, FALSE, FALSE);
21331 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21332                                  repeatable, mandatory, hidden)
21333 VALUES (1, 'serial', '856', 'c', $$Compression information$$,
21334 TRUE, FALSE, FALSE);
21335 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21336                                  repeatable, mandatory, hidden)
21337 VALUES (1, 'serial', '856', 'd', $$Path$$,
21338 TRUE, FALSE, FALSE);
21339 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21340                                  repeatable, mandatory, hidden)
21341 VALUES (1, 'serial', '856', 'f', $$Electronic name$$,
21342 TRUE, FALSE, FALSE);
21343 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21344                                  repeatable, mandatory, hidden)
21345 VALUES (1, 'serial', '856', 'h', $$Processor of request$$,
21346 FALSE, FALSE, FALSE);
21347 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21348                                  repeatable, mandatory, hidden)
21349 VALUES (1, 'serial', '856', 'i', $$Instruction$$,
21350 TRUE, FALSE, FALSE);
21351 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21352                                  repeatable, mandatory, hidden)
21353 VALUES (1, 'serial', '856', 'j', $$Bits per second$$,
21354 FALSE, FALSE, FALSE);
21355 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21356                                  repeatable, mandatory, hidden)
21357 VALUES (1, 'serial', '856', 'k', $$Password$$,
21358 FALSE, FALSE, FALSE);
21359 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21360                                  repeatable, mandatory, hidden)
21361 VALUES (1, 'serial', '856', 'l', $$Logon$$,
21362 FALSE, FALSE, FALSE);
21363 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21364                                  repeatable, mandatory, hidden)
21365 VALUES (1, 'serial', '856', 'm', $$Contact for access assistance$$,
21366 TRUE, FALSE, FALSE);
21367 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21368                                  repeatable, mandatory, hidden)
21369 VALUES (1, 'serial', '856', 'n', $$Name of location of host$$,
21370 FALSE, FALSE, FALSE);
21371 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21372                                  repeatable, mandatory, hidden)
21373 VALUES (1, 'serial', '856', 'o', $$Operating system$$,
21374 FALSE, FALSE, FALSE);
21375 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21376                                  repeatable, mandatory, hidden)
21377 VALUES (1, 'serial', '856', 'p', $$Port$$,
21378 FALSE, FALSE, FALSE);
21379 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21380                                  repeatable, mandatory, hidden)
21381 VALUES (1, 'serial', '856', 'q', $$Electronic format type$$,
21382 FALSE, FALSE, FALSE);
21383 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21384                                  repeatable, mandatory, hidden)
21385 VALUES (1, 'serial', '856', 'r', $$Settings$$,
21386 FALSE, FALSE, FALSE);
21387 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21388                                  repeatable, mandatory, hidden)
21389 VALUES (1, 'serial', '856', 's', $$File size$$,
21390 TRUE, FALSE, FALSE);
21391 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21392                                  repeatable, mandatory, hidden)
21393 VALUES (1, 'serial', '856', 't', $$Terminal emulation$$,
21394 TRUE, FALSE, FALSE);
21395 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21396                                  repeatable, mandatory, hidden)
21397 VALUES (1, 'serial', '856', 'u', $$Uniform Resource Identifier$$,
21398 TRUE, FALSE, FALSE);
21399 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21400                                  repeatable, mandatory, hidden)
21401 VALUES (1, 'serial', '856', 'v', $$Hours access method available$$,
21402 TRUE, FALSE, FALSE);
21403 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21404                                  repeatable, mandatory, hidden)
21405 VALUES (1, 'serial', '856', 'w', $$Record control number$$,
21406 TRUE, FALSE, FALSE);
21407 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21408                                  repeatable, mandatory, hidden)
21409 VALUES (1, 'serial', '856', 'x', $$Nonpublic note$$,
21410 TRUE, FALSE, FALSE);
21411 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21412                                  repeatable, mandatory, hidden)
21413 VALUES (1, 'serial', '856', 'y', $$Link text$$,
21414 TRUE, FALSE, FALSE);
21415 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21416                                  repeatable, mandatory, hidden)
21417 VALUES (1, 'serial', '856', 'z', $$Public note$$,
21418 TRUE, FALSE, FALSE);
21419 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21420                                  repeatable, mandatory, hidden)
21421 VALUES (1, 'serial', '856', '2', $$Access method$$,
21422 FALSE, FALSE, FALSE);
21423 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21424                                  repeatable, mandatory, hidden)
21425 VALUES (1, 'serial', '856', '3', $$Materials specified$$,
21426 FALSE, FALSE, FALSE);
21427 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21428                                  repeatable, mandatory, hidden)
21429 VALUES (1, 'serial', '856', '6', $$Linkage$$,
21430 FALSE, FALSE, FALSE);
21431 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21432                                  repeatable, mandatory, hidden)
21433 VALUES (1, 'serial', '856', '8', $$Field link and sequence number$$,
21434 TRUE, FALSE, FALSE);
21435 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
21436                               fixed_field, repeatable, mandatory, hidden)
21437 VALUES (1, 'serial', '863', $$Enumeration and Chronology - Basic Bibliographic Unit$$, $$Description of the holdings of a bibliographic item in the collections of the reporting organization. The captions that identify the enumeration and chronology levels and the codes that define the publication pattern of the holdings are contained in the Captions and Pattern fields (853-855) that are linked to the 863-865 fields by a number in subfield $8 (Field link and sequence number).$$,
21438 FALSE, TRUE, FALSE, FALSE);
21439 INSERT INTO config.record_attr_definition(name, label)
21440 VALUES ('marc21_serial_863_ind_1', 'MARC 21 serial field 863 indicator position 1');
21441 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21442 VALUES ('marc21_serial_863_ind_1', '#', $$No information provided$$, FALSE, TRUE);
21443 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21444 VALUES ('marc21_serial_863_ind_1', '3', $$Holdings level 3$$, FALSE, TRUE);
21445 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21446 VALUES ('marc21_serial_863_ind_1', '4', $$Holdings level 4$$, FALSE, TRUE);
21447 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21448 VALUES ('marc21_serial_863_ind_1', '5', $$Holdings level 4 with piece designation$$, FALSE, TRUE);
21449 INSERT INTO config.record_attr_definition(name, label)
21450 VALUES ('marc21_serial_863_ind_2', 'MARC 21 serial field 863 indicator position 2');
21451 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21452 VALUES ('marc21_serial_863_ind_2', '#', $$No information provided$$, FALSE, TRUE);
21453 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21454 VALUES ('marc21_serial_863_ind_2', '0', $$Compressed$$, FALSE, TRUE);
21455 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21456 VALUES ('marc21_serial_863_ind_2', '1', $$Uncompressed$$, FALSE, TRUE);
21457 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21458 VALUES ('marc21_serial_863_ind_2', '2', $$Compressed, use textual display$$, FALSE, TRUE);
21459 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21460 VALUES ('marc21_serial_863_ind_2', '3', $$Uncompressed, use textual display$$, FALSE, TRUE);
21461 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21462 VALUES ('marc21_serial_863_ind_2', '4', $$Item(s) not published$$, FALSE, TRUE);
21463 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21464                                  repeatable, mandatory, hidden)
21465 VALUES (1, 'serial', '863', 'a', $$First level of enumeration$$,
21466 TRUE, FALSE, FALSE);
21467 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21468                                  repeatable, mandatory, hidden)
21469 VALUES (1, 'serial', '863', 'b', $$Second level of enumeration$$,
21470 TRUE, FALSE, FALSE);
21471 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21472                                  repeatable, mandatory, hidden)
21473 VALUES (1, 'serial', '863', 'c', $$Third level of enumeration$$,
21474 TRUE, FALSE, FALSE);
21475 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21476                                  repeatable, mandatory, hidden)
21477 VALUES (1, 'serial', '863', 'd', $$Fourth level of enumeration$$,
21478 TRUE, FALSE, FALSE);
21479 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21480                                  repeatable, mandatory, hidden)
21481 VALUES (1, 'serial', '863', 'e', $$Fifth level of enumeration$$,
21482 TRUE, FALSE, FALSE);
21483 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21484                                  repeatable, mandatory, hidden)
21485 VALUES (1, 'serial', '863', 'f', $$Sixth level of enumeration$$,
21486 TRUE, FALSE, FALSE);
21487 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21488                                  repeatable, mandatory, hidden)
21489 VALUES (1, 'serial', '863', 'g', $$Alternative numbering scheme, first level of enumeration$$,
21490 TRUE, FALSE, FALSE);
21491 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21492                                  repeatable, mandatory, hidden)
21493 VALUES (1, 'serial', '863', 'h', $$Alternative numbering scheme, second level of enumeration$$,
21494 TRUE, FALSE, FALSE);
21495 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21496                                  repeatable, mandatory, hidden)
21497 VALUES (1, 'serial', '863', 'i', $$First level of chronology$$,
21498 TRUE, FALSE, FALSE);
21499 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21500                                  repeatable, mandatory, hidden)
21501 VALUES (1, 'serial', '863', 'j', $$Second level of chronology$$,
21502 TRUE, FALSE, FALSE);
21503 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21504                                  repeatable, mandatory, hidden)
21505 VALUES (1, 'serial', '863', 'k', $$Third level of chronology$$,
21506 TRUE, FALSE, FALSE);
21507 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21508                                  repeatable, mandatory, hidden)
21509 VALUES (1, 'serial', '863', 'l', $$Fourth level of chronology$$,
21510 TRUE, FALSE, FALSE);
21511 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21512                                  repeatable, mandatory, hidden)
21513 VALUES (1, 'serial', '863', 'm', $$Alternative numbering scheme, chronology$$,
21514 TRUE, FALSE, FALSE);
21515 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21516                                  repeatable, mandatory, hidden)
21517 VALUES (1, 'serial', '863', 'n', $$Converted Gregorian year$$,
21518 TRUE, FALSE, FALSE);
21519 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21520                                  repeatable, mandatory, hidden)
21521 VALUES (1, 'serial', '863', 'o', $$Type of unit$$,
21522 TRUE, FALSE, FALSE);
21523 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21524                                  repeatable, mandatory, hidden)
21525 VALUES (1, 'serial', '863', 'p', $$Piece designation$$,
21526 TRUE, FALSE, FALSE);
21527 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21528                                  repeatable, mandatory, hidden)
21529 VALUES (1, 'serial', '863', 'q', $$Piece physical condition$$,
21530 TRUE, FALSE, FALSE);
21531 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21532                                  repeatable, mandatory, hidden)
21533 VALUES (1, 'serial', '863', 's', $$Copyright article-fee code$$,
21534 TRUE, FALSE, FALSE);
21535 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21536                                  repeatable, mandatory, hidden)
21537 VALUES (1, 'serial', '863', 't', $$Copy number$$,
21538 TRUE, FALSE, FALSE);
21539 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21540                                  repeatable, mandatory, hidden)
21541 VALUES (1, 'serial', '863', 'v', $$Issuing date$$,
21542 TRUE, FALSE, FALSE);
21543 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21544                                  repeatable, mandatory, hidden)
21545 VALUES (1, 'serial', '863', 'w', $$Break indicator$$,
21546 TRUE, FALSE, FALSE);
21547 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21548                                  repeatable, mandatory, hidden)
21549 VALUES (1, 'serial', '863', 'x', $$Nonpublic note$$,
21550 TRUE, FALSE, FALSE);
21551 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21552                                  repeatable, mandatory, hidden)
21553 VALUES (1, 'serial', '863', 'z', $$Public note$$,
21554 TRUE, FALSE, FALSE);
21555 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21556                                  repeatable, mandatory, hidden)
21557 VALUES (1, 'serial', '863', '6', $$Linkage$$,
21558 TRUE, FALSE, FALSE);
21559 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21560                                  repeatable, mandatory, hidden)
21561 VALUES (1, 'serial', '863', '8', $$Field link and sequence number$$,
21562 TRUE, FALSE, FALSE);
21563 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
21564                               fixed_field, repeatable, mandatory, hidden)
21565 VALUES (1, 'serial', '864', $$Enumeration and Chronology - Supplementary Material$$, $$Description of the holdings of a bibliographic item in the collections of the reporting organization. The captions that identify the enumeration and chronology levels and the codes that define the publication pattern of the holdings are contained in the Captions and Pattern fields (853-855) that are linked to the 863-865 fields by a number in subfield $8 (Field link and sequence number).$$,
21566 FALSE, TRUE, FALSE, FALSE);
21567 INSERT INTO config.record_attr_definition(name, label)
21568 VALUES ('marc21_serial_864_ind_1', 'MARC 21 serial field 864 indicator position 1');
21569 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21570 VALUES ('marc21_serial_864_ind_1', '#', $$No information provided$$, FALSE, TRUE);
21571 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21572 VALUES ('marc21_serial_864_ind_1', '3', $$Holdings level 3$$, FALSE, TRUE);
21573 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21574 VALUES ('marc21_serial_864_ind_1', '4', $$Holdings level 4$$, FALSE, TRUE);
21575 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21576 VALUES ('marc21_serial_864_ind_1', '5', $$Holdings level 4 with piece designation$$, FALSE, TRUE);
21577 INSERT INTO config.record_attr_definition(name, label)
21578 VALUES ('marc21_serial_864_ind_2', 'MARC 21 serial field 864 indicator position 2');
21579 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21580 VALUES ('marc21_serial_864_ind_2', '#', $$No information provided$$, FALSE, TRUE);
21581 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21582 VALUES ('marc21_serial_864_ind_2', '0', $$Compressed$$, FALSE, TRUE);
21583 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21584 VALUES ('marc21_serial_864_ind_2', '1', $$Uncompressed$$, FALSE, TRUE);
21585 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21586 VALUES ('marc21_serial_864_ind_2', '2', $$Compressed, use textual display$$, FALSE, TRUE);
21587 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21588 VALUES ('marc21_serial_864_ind_2', '3', $$Uncompressed, use textual display$$, FALSE, TRUE);
21589 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21590 VALUES ('marc21_serial_864_ind_2', '4', $$Item(s) not published$$, FALSE, TRUE);
21591 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21592                                  repeatable, mandatory, hidden)
21593 VALUES (1, 'serial', '864', 'a', $$First level of enumeration$$,
21594 TRUE, FALSE, FALSE);
21595 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21596                                  repeatable, mandatory, hidden)
21597 VALUES (1, 'serial', '864', 'b', $$Second level of enumeration$$,
21598 TRUE, FALSE, FALSE);
21599 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21600                                  repeatable, mandatory, hidden)
21601 VALUES (1, 'serial', '864', 'c', $$Third level of enumeration$$,
21602 TRUE, FALSE, FALSE);
21603 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21604                                  repeatable, mandatory, hidden)
21605 VALUES (1, 'serial', '864', 'd', $$Fourth level of enumeration$$,
21606 TRUE, FALSE, FALSE);
21607 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21608                                  repeatable, mandatory, hidden)
21609 VALUES (1, 'serial', '864', 'e', $$Fifth level of enumeration$$,
21610 TRUE, FALSE, FALSE);
21611 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21612                                  repeatable, mandatory, hidden)
21613 VALUES (1, 'serial', '864', 'f', $$Sixth level of enumeration$$,
21614 TRUE, FALSE, FALSE);
21615 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21616                                  repeatable, mandatory, hidden)
21617 VALUES (1, 'serial', '864', 'g', $$Alternative numbering scheme, first level of enumeration$$,
21618 TRUE, FALSE, FALSE);
21619 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21620                                  repeatable, mandatory, hidden)
21621 VALUES (1, 'serial', '864', 'h', $$Alternative numbering scheme, second level of enumeration$$,
21622 TRUE, FALSE, FALSE);
21623 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21624                                  repeatable, mandatory, hidden)
21625 VALUES (1, 'serial', '864', 'i', $$First level of chronology$$,
21626 TRUE, FALSE, FALSE);
21627 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21628                                  repeatable, mandatory, hidden)
21629 VALUES (1, 'serial', '864', 'j', $$Second level of chronology$$,
21630 TRUE, FALSE, FALSE);
21631 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21632                                  repeatable, mandatory, hidden)
21633 VALUES (1, 'serial', '864', 'k', $$Third level of chronology$$,
21634 TRUE, FALSE, FALSE);
21635 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21636                                  repeatable, mandatory, hidden)
21637 VALUES (1, 'serial', '864', 'l', $$Fourth level of chronology$$,
21638 TRUE, FALSE, FALSE);
21639 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21640                                  repeatable, mandatory, hidden)
21641 VALUES (1, 'serial', '864', 'm', $$Alternative numbering scheme, chronology$$,
21642 TRUE, FALSE, FALSE);
21643 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21644                                  repeatable, mandatory, hidden)
21645 VALUES (1, 'serial', '864', 'n', $$Converted Gregorian year$$,
21646 TRUE, FALSE, FALSE);
21647 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21648                                  repeatable, mandatory, hidden)
21649 VALUES (1, 'serial', '864', 'o', $$Type of unit$$,
21650 TRUE, FALSE, FALSE);
21651 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21652                                  repeatable, mandatory, hidden)
21653 VALUES (1, 'serial', '864', 'p', $$Piece designation$$,
21654 TRUE, FALSE, FALSE);
21655 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21656                                  repeatable, mandatory, hidden)
21657 VALUES (1, 'serial', '864', 'q', $$Piece physical condition$$,
21658 TRUE, FALSE, FALSE);
21659 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21660                                  repeatable, mandatory, hidden)
21661 VALUES (1, 'serial', '864', 's', $$Copyright article-fee code$$,
21662 TRUE, FALSE, FALSE);
21663 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21664                                  repeatable, mandatory, hidden)
21665 VALUES (1, 'serial', '864', 't', $$Copy number$$,
21666 TRUE, FALSE, FALSE);
21667 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21668                                  repeatable, mandatory, hidden)
21669 VALUES (1, 'serial', '864', 'v', $$Issuing date$$,
21670 TRUE, FALSE, FALSE);
21671 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21672                                  repeatable, mandatory, hidden)
21673 VALUES (1, 'serial', '864', 'w', $$Break indicator$$,
21674 TRUE, FALSE, FALSE);
21675 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21676                                  repeatable, mandatory, hidden)
21677 VALUES (1, 'serial', '864', 'x', $$Nonpublic note$$,
21678 TRUE, FALSE, FALSE);
21679 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21680                                  repeatable, mandatory, hidden)
21681 VALUES (1, 'serial', '864', 'z', $$Public note$$,
21682 TRUE, FALSE, FALSE);
21683 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21684                                  repeatable, mandatory, hidden)
21685 VALUES (1, 'serial', '864', '6', $$Linkage$$,
21686 TRUE, FALSE, FALSE);
21687 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21688                                  repeatable, mandatory, hidden)
21689 VALUES (1, 'serial', '864', '8', $$Field link and sequence number$$,
21690 TRUE, FALSE, FALSE);
21691 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
21692                               fixed_field, repeatable, mandatory, hidden)
21693 VALUES (1, 'serial', '865', $$Enumeration and Chronology - Indexes$$, $$Description of the holdings of a bibliographic item in the collections of the reporting organization. The captions that identify the enumeration and chronology levels and the codes that define the publication pattern of the holdings are contained in the Captions and Pattern fields (853-855) that are linked to the 863-865 fields by a number in subfield $8 (Field link and sequence number).$$,
21694 FALSE, TRUE, FALSE, FALSE);
21695 INSERT INTO config.record_attr_definition(name, label)
21696 VALUES ('marc21_serial_865_ind_1', 'MARC 21 serial field 865 indicator position 1');
21697 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21698 VALUES ('marc21_serial_865_ind_1', '#', $$No information provided$$, FALSE, TRUE);
21699 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21700 VALUES ('marc21_serial_865_ind_1', '4', $$Holdings level 4$$, FALSE, TRUE);
21701 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21702 VALUES ('marc21_serial_865_ind_1', '5', $$Holdings level 4 with piece designation$$, FALSE, TRUE);
21703 INSERT INTO config.record_attr_definition(name, label)
21704 VALUES ('marc21_serial_865_ind_2', 'MARC 21 serial field 865 indicator position 2');
21705 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21706 VALUES ('marc21_serial_865_ind_2', '#', $$No information provided$$, FALSE, TRUE);
21707 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21708 VALUES ('marc21_serial_865_ind_2', '1', $$Uncompressed$$, FALSE, TRUE);
21709 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21710 VALUES ('marc21_serial_865_ind_2', '3', $$Uncompressed, use textual display$$, FALSE, TRUE);
21711 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21712                                  repeatable, mandatory, hidden)
21713 VALUES (1, 'serial', '865', 'a', $$First level of enumeration$$,
21714 TRUE, FALSE, FALSE);
21715 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21716                                  repeatable, mandatory, hidden)
21717 VALUES (1, 'serial', '865', 'b', $$Second level of enumeration$$,
21718 TRUE, FALSE, FALSE);
21719 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21720                                  repeatable, mandatory, hidden)
21721 VALUES (1, 'serial', '865', 'c', $$Third level of enumeration$$,
21722 TRUE, FALSE, FALSE);
21723 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21724                                  repeatable, mandatory, hidden)
21725 VALUES (1, 'serial', '865', 'd', $$Fourth level of enumeration$$,
21726 TRUE, FALSE, FALSE);
21727 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21728                                  repeatable, mandatory, hidden)
21729 VALUES (1, 'serial', '865', 'e', $$Fifth level of enumeration$$,
21730 TRUE, FALSE, FALSE);
21731 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21732                                  repeatable, mandatory, hidden)
21733 VALUES (1, 'serial', '865', 'f', $$Sixth level of enumeration$$,
21734 TRUE, FALSE, FALSE);
21735 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21736                                  repeatable, mandatory, hidden)
21737 VALUES (1, 'serial', '865', 'g', $$Alternative numbering scheme, first level of enumeration$$,
21738 TRUE, FALSE, FALSE);
21739 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21740                                  repeatable, mandatory, hidden)
21741 VALUES (1, 'serial', '865', 'h', $$Alternative numbering scheme, second level of enumeration$$,
21742 TRUE, FALSE, FALSE);
21743 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21744                                  repeatable, mandatory, hidden)
21745 VALUES (1, 'serial', '865', 'i', $$First level of chronology$$,
21746 TRUE, FALSE, FALSE);
21747 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21748                                  repeatable, mandatory, hidden)
21749 VALUES (1, 'serial', '865', 'j', $$Second level of chronology$$,
21750 TRUE, FALSE, FALSE);
21751 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21752                                  repeatable, mandatory, hidden)
21753 VALUES (1, 'serial', '865', 'k', $$Third level of chronology$$,
21754 TRUE, FALSE, FALSE);
21755 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21756                                  repeatable, mandatory, hidden)
21757 VALUES (1, 'serial', '865', 'l', $$Fourth level of chronology$$,
21758 TRUE, FALSE, FALSE);
21759 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21760                                  repeatable, mandatory, hidden)
21761 VALUES (1, 'serial', '865', 'm', $$Alternative numbering scheme, chronology$$,
21762 TRUE, FALSE, FALSE);
21763 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21764                                  repeatable, mandatory, hidden)
21765 VALUES (1, 'serial', '865', 'n', $$Converted Gregorian year$$,
21766 TRUE, FALSE, FALSE);
21767 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21768                                  repeatable, mandatory, hidden)
21769 VALUES (1, 'serial', '865', 'o', $$Type of unit$$,
21770 TRUE, FALSE, FALSE);
21771 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21772                                  repeatable, mandatory, hidden)
21773 VALUES (1, 'serial', '865', 'p', $$Piece designation$$,
21774 TRUE, FALSE, FALSE);
21775 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21776                                  repeatable, mandatory, hidden)
21777 VALUES (1, 'serial', '865', 'q', $$Piece physical condition$$,
21778 TRUE, FALSE, FALSE);
21779 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21780                                  repeatable, mandatory, hidden)
21781 VALUES (1, 'serial', '865', 's', $$Copyright article-fee code$$,
21782 TRUE, FALSE, FALSE);
21783 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21784                                  repeatable, mandatory, hidden)
21785 VALUES (1, 'serial', '865', 't', $$Copy number$$,
21786 TRUE, FALSE, FALSE);
21787 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21788                                  repeatable, mandatory, hidden)
21789 VALUES (1, 'serial', '865', 'v', $$Issuing date$$,
21790 TRUE, FALSE, FALSE);
21791 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21792                                  repeatable, mandatory, hidden)
21793 VALUES (1, 'serial', '865', 'w', $$Break indicator$$,
21794 TRUE, FALSE, FALSE);
21795 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21796                                  repeatable, mandatory, hidden)
21797 VALUES (1, 'serial', '865', 'x', $$Nonpublic note$$,
21798 TRUE, FALSE, FALSE);
21799 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21800                                  repeatable, mandatory, hidden)
21801 VALUES (1, 'serial', '865', 'z', $$Public note$$,
21802 TRUE, FALSE, FALSE);
21803 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21804                                  repeatable, mandatory, hidden)
21805 VALUES (1, 'serial', '865', '6', $$Linkage$$,
21806 TRUE, FALSE, FALSE);
21807 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21808                                  repeatable, mandatory, hidden)
21809 VALUES (1, 'serial', '865', '8', $$Field link and sequence number$$,
21810 TRUE, FALSE, FALSE);
21811 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
21812                               fixed_field, repeatable, mandatory, hidden)
21813 VALUES (1, 'serial', '866', $$Textual Holdings - Basic Bibliographic Unit$$, $$Textual description which may include both the captions and enumeration and chronology for the holdings of a bibliographic item in the collections of the reporting organization. These fields are normally not used in holdings for single-part items. They may be used the coded 853-855 Captions and Pattern and 863-865 Enumeration and Chronology fields for multipart and serial items when those fields cannot be used adequately to describe the holdings. The 866-868 fields may also be used an Enumeration and Chronology field and any related Captions and Pattern field to record and generate an alternative display for all or part of the enumeration and chronology and captions and pattern fields.$$,
21814 FALSE, TRUE, FALSE, FALSE);
21815 INSERT INTO config.record_attr_definition(name, label)
21816 VALUES ('marc21_serial_866_ind_1', 'MARC 21 serial field 866 indicator position 1');
21817 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21818 VALUES ('marc21_serial_866_ind_1', '#', $$No information provided$$, FALSE, TRUE);
21819 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21820 VALUES ('marc21_serial_866_ind_1', '3', $$Holdings level 3$$, FALSE, TRUE);
21821 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21822 VALUES ('marc21_serial_866_ind_1', '4', $$Holdings level 4$$, FALSE, TRUE);
21823 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21824 VALUES ('marc21_serial_866_ind_1', '5', $$Holdings level 4 with piece designation$$, FALSE, TRUE);
21825 INSERT INTO config.record_attr_definition(name, label)
21826 VALUES ('marc21_serial_866_ind_2', 'MARC 21 serial field 866 indicator position 2');
21827 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21828 VALUES ('marc21_serial_866_ind_2', '0', $$Non-standard$$, FALSE, TRUE);
21829 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21830 VALUES ('marc21_serial_866_ind_2', '1', $$ANSI/NISO Z39.71 or ISO 10324$$, FALSE, TRUE);
21831 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21832 VALUES ('marc21_serial_866_ind_2', '2', $$ANSI Z39.42$$, FALSE, TRUE);
21833 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21834 VALUES ('marc21_serial_866_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
21835 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21836                                  repeatable, mandatory, hidden)
21837 VALUES (1, 'serial', '866', 'a', $$Textual holdings$$,
21838 TRUE, FALSE, FALSE);
21839 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21840                                  repeatable, mandatory, hidden)
21841 VALUES (1, 'serial', '866', 'x', $$Nonpublic note$$,
21842 TRUE, FALSE, FALSE);
21843 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21844                                  repeatable, mandatory, hidden)
21845 VALUES (1, 'serial', '866', 'z', $$Public note$$,
21846 TRUE, FALSE, FALSE);
21847 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21848                                  repeatable, mandatory, hidden)
21849 VALUES (1, 'serial', '866', '2', $$Source of notation$$,
21850 TRUE, FALSE, FALSE);
21851 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21852                                  repeatable, mandatory, hidden)
21853 VALUES (1, 'serial', '866', '6', $$Linkage$$,
21854 TRUE, FALSE, FALSE);
21855 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21856                                  repeatable, mandatory, hidden)
21857 VALUES (1, 'serial', '866', '8', $$Field link and sequence number$$,
21858 TRUE, FALSE, FALSE);
21859 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
21860                               fixed_field, repeatable, mandatory, hidden)
21861 VALUES (1, 'serial', '867', $$Textual Holdings - Supplementary Material$$, $$Textual description which may include both the captions and enumeration and chronology for the holdings of a bibliographic item in the collections of the reporting organization. These fields are normally not used in holdings for single-part items. They may be used the coded 853-855 Captions and Pattern and 863-865 Enumeration and Chronology fields for multipart and serial items when those fields cannot be used adequately to describe the holdings. The 866-868 fields may also be used an Enumeration and Chronology field and any related Captions and Pattern field to record and generate an alternative display for all or part of the enumeration and chronology and captions and pattern fields.$$,
21862 FALSE, TRUE, FALSE, FALSE);
21863 INSERT INTO config.record_attr_definition(name, label)
21864 VALUES ('marc21_serial_867_ind_1', 'MARC 21 serial field 867 indicator position 1');
21865 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21866 VALUES ('marc21_serial_867_ind_1', '#', $$No information provided$$, FALSE, TRUE);
21867 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21868 VALUES ('marc21_serial_867_ind_1', '3', $$Holdings level 3$$, FALSE, TRUE);
21869 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21870 VALUES ('marc21_serial_867_ind_1', '4', $$Holdings level 4$$, FALSE, TRUE);
21871 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21872 VALUES ('marc21_serial_867_ind_1', '5', $$Holdings level 4 with piece designation$$, FALSE, TRUE);
21873 INSERT INTO config.record_attr_definition(name, label)
21874 VALUES ('marc21_serial_867_ind_2', 'MARC 21 serial field 867 indicator position 2');
21875 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21876 VALUES ('marc21_serial_867_ind_2', '0', $$Non-standard$$, FALSE, TRUE);
21877 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21878 VALUES ('marc21_serial_867_ind_2', '1', $$ANSI/NISO Z39.71 or ISO 10324$$, FALSE, TRUE);
21879 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21880 VALUES ('marc21_serial_867_ind_2', '2', $$ANSI Z39.42$$, FALSE, TRUE);
21881 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21882 VALUES ('marc21_serial_867_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
21883 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21884                                  repeatable, mandatory, hidden)
21885 VALUES (1, 'serial', '867', 'a', $$Textual holdings$$,
21886 TRUE, FALSE, FALSE);
21887 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21888                                  repeatable, mandatory, hidden)
21889 VALUES (1, 'serial', '867', 'x', $$Nonpublic note$$,
21890 TRUE, FALSE, FALSE);
21891 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21892                                  repeatable, mandatory, hidden)
21893 VALUES (1, 'serial', '867', 'z', $$Public note$$,
21894 TRUE, FALSE, FALSE);
21895 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21896                                  repeatable, mandatory, hidden)
21897 VALUES (1, 'serial', '867', '2', $$Source of notation$$,
21898 TRUE, FALSE, FALSE);
21899 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21900                                  repeatable, mandatory, hidden)
21901 VALUES (1, 'serial', '867', '6', $$Linkage$$,
21902 TRUE, FALSE, FALSE);
21903 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21904                                  repeatable, mandatory, hidden)
21905 VALUES (1, 'serial', '867', '8', $$Field link and sequence number$$,
21906 TRUE, FALSE, FALSE);
21907 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
21908                               fixed_field, repeatable, mandatory, hidden)
21909 VALUES (1, 'serial', '868', $$Textual Holdings - Indexes$$, $$Textual description which may include both the captions and enumeration and chronology for the holdings of a bibliographic item in the collections of the reporting organization. These fields are normally not used in holdings for single-part items. They may be used the coded 853-855 Captions and Pattern and 863-865 Enumeration and Chronology fields for multipart and serial items when those fields cannot be used adequately to describe the holdings. The 866-868 fields may also be used an Enumeration and Chronology field and any related Captions and Pattern field to record and generate an alternative display for all or part of the enumeration and chronology and captions and pattern fields.$$,
21910 FALSE, TRUE, FALSE, FALSE);
21911 INSERT INTO config.record_attr_definition(name, label)
21912 VALUES ('marc21_serial_868_ind_1', 'MARC 21 serial field 868 indicator position 1');
21913 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21914 VALUES ('marc21_serial_868_ind_1', '#', $$No information provided$$, FALSE, TRUE);
21915 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21916 VALUES ('marc21_serial_868_ind_1', '3', $$Holdings level 3$$, FALSE, TRUE);
21917 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21918 VALUES ('marc21_serial_868_ind_1', '4', $$Holdings level 4$$, FALSE, TRUE);
21919 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21920 VALUES ('marc21_serial_868_ind_1', '5', $$Holdings level 4 with piece designation$$, FALSE, TRUE);
21921 INSERT INTO config.record_attr_definition(name, label)
21922 VALUES ('marc21_serial_868_ind_2', 'MARC 21 serial field 868 indicator position 2');
21923 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21924 VALUES ('marc21_serial_868_ind_2', '0', $$Non-standard$$, FALSE, TRUE);
21925 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21926 VALUES ('marc21_serial_868_ind_2', '1', $$ANSI/NISO Z39.71 or ISO 10324$$, FALSE, TRUE);
21927 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21928 VALUES ('marc21_serial_868_ind_2', '2', $$ANSI Z39.42$$, FALSE, TRUE);
21929 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21930 VALUES ('marc21_serial_868_ind_2', '7', $$Source specified in subfield $2$$, FALSE, TRUE);
21931 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21932                                  repeatable, mandatory, hidden)
21933 VALUES (1, 'serial', '868', 'a', $$Textual holdings$$,
21934 TRUE, FALSE, FALSE);
21935 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21936                                  repeatable, mandatory, hidden)
21937 VALUES (1, 'serial', '868', 'x', $$Nonpublic note$$,
21938 TRUE, FALSE, FALSE);
21939 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21940                                  repeatable, mandatory, hidden)
21941 VALUES (1, 'serial', '868', 'z', $$Public note$$,
21942 TRUE, FALSE, FALSE);
21943 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21944                                  repeatable, mandatory, hidden)
21945 VALUES (1, 'serial', '868', '2', $$Source of notation$$,
21946 TRUE, FALSE, FALSE);
21947 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21948                                  repeatable, mandatory, hidden)
21949 VALUES (1, 'serial', '868', '6', $$Linkage$$,
21950 TRUE, FALSE, FALSE);
21951 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21952                                  repeatable, mandatory, hidden)
21953 VALUES (1, 'serial', '868', '8', $$Field link and sequence number$$,
21954 TRUE, FALSE, FALSE);
21955 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
21956                               fixed_field, repeatable, mandatory, hidden)
21957 VALUES (1, 'serial', '876', $$Item Information - Basic Bibliographic Unit$$, $$Item level information about the pieces to the item specified in the holdings record. They contain various data elements that it may be desirable to record for specific items for use in acquisition or circulation applications, among others.$$,
21958 FALSE, TRUE, FALSE, FALSE);
21959 INSERT INTO config.record_attr_definition(name, label)
21960 VALUES ('marc21_serial_876_ind_1', 'MARC 21 serial field 876 indicator position 1');
21961 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21962 VALUES ('marc21_serial_876_ind_1', '#', $$Undefined$$, FALSE, TRUE);
21963 INSERT INTO config.record_attr_definition(name, label)
21964 VALUES ('marc21_serial_876_ind_2', 'MARC 21 serial field 876 indicator position 2');
21965 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
21966 VALUES ('marc21_serial_876_ind_2', '#', $$Undefined$$, FALSE, TRUE);
21967 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21968                                  repeatable, mandatory, hidden)
21969 VALUES (1, 'serial', '876', 'a', $$Internal item number$$,
21970 TRUE, FALSE, FALSE);
21971 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21972                                  repeatable, mandatory, hidden)
21973 VALUES (1, 'serial', '876', 'b', $$Invalid or canceled internal item number$$,
21974 TRUE, FALSE, FALSE);
21975 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21976                                  repeatable, mandatory, hidden)
21977 VALUES (1, 'serial', '876', 'c', $$Cost$$,
21978 TRUE, FALSE, FALSE);
21979 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21980                                  repeatable, mandatory, hidden)
21981 VALUES (1, 'serial', '876', 'd', $$Date acquired$$,
21982 TRUE, FALSE, FALSE);
21983 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21984                                  repeatable, mandatory, hidden)
21985 VALUES (1, 'serial', '876', 'e', $$Source of acquisition$$,
21986 TRUE, FALSE, FALSE);
21987 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21988                                  repeatable, mandatory, hidden)
21989 VALUES (1, 'serial', '876', 'h', $$Use restrictions$$,
21990 TRUE, FALSE, FALSE);
21991 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21992                                  repeatable, mandatory, hidden)
21993 VALUES (1, 'serial', '876', 'j', $$Item status$$,
21994 TRUE, FALSE, FALSE);
21995 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
21996                                  repeatable, mandatory, hidden)
21997 VALUES (1, 'serial', '876', 'l', $$Temporary location$$,
21998 TRUE, FALSE, FALSE);
21999 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22000                                  repeatable, mandatory, hidden)
22001 VALUES (1, 'serial', '876', 'p', $$Piece designation$$,
22002 TRUE, FALSE, FALSE);
22003 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22004                                  repeatable, mandatory, hidden)
22005 VALUES (1, 'serial', '876', 'r', $$Invalid or canceled piece designation$$,
22006 TRUE, FALSE, FALSE);
22007 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22008                                  repeatable, mandatory, hidden)
22009 VALUES (1, 'serial', '876', 't', $$Copy number$$,
22010 TRUE, FALSE, FALSE);
22011 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22012                                  repeatable, mandatory, hidden)
22013 VALUES (1, 'serial', '876', 'x', $$Nonpublic note$$,
22014 TRUE, FALSE, FALSE);
22015 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22016                                  repeatable, mandatory, hidden)
22017 VALUES (1, 'serial', '876', 'z', $$Public note$$,
22018 TRUE, FALSE, FALSE);
22019 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22020                                  repeatable, mandatory, hidden)
22021 VALUES (1, 'serial', '876', '3', $$Materials specified$$,
22022 TRUE, FALSE, FALSE);
22023 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22024                                  repeatable, mandatory, hidden)
22025 VALUES (1, 'serial', '876', '6', $$Linkage$$,
22026 TRUE, FALSE, FALSE);
22027 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22028                                  repeatable, mandatory, hidden)
22029 VALUES (1, 'serial', '876', '8', $$Field link and sequence number$$,
22030 TRUE, FALSE, FALSE);
22031 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
22032                               fixed_field, repeatable, mandatory, hidden)
22033 VALUES (1, 'serial', '877', $$Item Information - Supplementary Material$$, $$Item level information about the pieces to the item specified in the holdings record. They contain various data elements that it may be desirable to record for specific items for use in acquisition or circulation applications, among others.$$,
22034 FALSE, TRUE, FALSE, FALSE);
22035 INSERT INTO config.record_attr_definition(name, label)
22036 VALUES ('marc21_serial_877_ind_1', 'MARC 21 serial field 877 indicator position 1');
22037 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
22038 VALUES ('marc21_serial_877_ind_1', '#', $$Undefined$$, FALSE, TRUE);
22039 INSERT INTO config.record_attr_definition(name, label)
22040 VALUES ('marc21_serial_877_ind_2', 'MARC 21 serial field 877 indicator position 2');
22041 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
22042 VALUES ('marc21_serial_877_ind_2', '#', $$Undefined$$, FALSE, TRUE);
22043 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22044                                  repeatable, mandatory, hidden)
22045 VALUES (1, 'serial', '877', 'a', $$Internal item number$$,
22046 TRUE, FALSE, FALSE);
22047 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22048                                  repeatable, mandatory, hidden)
22049 VALUES (1, 'serial', '877', 'b', $$Invalid or canceled internal item number$$,
22050 TRUE, FALSE, FALSE);
22051 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22052                                  repeatable, mandatory, hidden)
22053 VALUES (1, 'serial', '877', 'c', $$Cost$$,
22054 TRUE, FALSE, FALSE);
22055 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22056                                  repeatable, mandatory, hidden)
22057 VALUES (1, 'serial', '877', 'd', $$Date acquired$$,
22058 TRUE, FALSE, FALSE);
22059 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22060                                  repeatable, mandatory, hidden)
22061 VALUES (1, 'serial', '877', 'e', $$Source of acquisition$$,
22062 TRUE, FALSE, FALSE);
22063 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22064                                  repeatable, mandatory, hidden)
22065 VALUES (1, 'serial', '877', 'h', $$Use restrictions$$,
22066 TRUE, FALSE, FALSE);
22067 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22068                                  repeatable, mandatory, hidden)
22069 VALUES (1, 'serial', '877', 'j', $$Item status$$,
22070 TRUE, FALSE, FALSE);
22071 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22072                                  repeatable, mandatory, hidden)
22073 VALUES (1, 'serial', '877', 'l', $$Temporary location$$,
22074 TRUE, FALSE, FALSE);
22075 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22076                                  repeatable, mandatory, hidden)
22077 VALUES (1, 'serial', '877', 'p', $$Piece designation$$,
22078 TRUE, FALSE, FALSE);
22079 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22080                                  repeatable, mandatory, hidden)
22081 VALUES (1, 'serial', '877', 'r', $$Invalid or canceled piece designation$$,
22082 TRUE, FALSE, FALSE);
22083 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22084                                  repeatable, mandatory, hidden)
22085 VALUES (1, 'serial', '877', 't', $$Copy number$$,
22086 TRUE, FALSE, FALSE);
22087 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22088                                  repeatable, mandatory, hidden)
22089 VALUES (1, 'serial', '877', 'x', $$Nonpublic note$$,
22090 TRUE, FALSE, FALSE);
22091 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22092                                  repeatable, mandatory, hidden)
22093 VALUES (1, 'serial', '877', 'z', $$Public note$$,
22094 TRUE, FALSE, FALSE);
22095 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22096                                  repeatable, mandatory, hidden)
22097 VALUES (1, 'serial', '877', '3', $$Materials specified$$,
22098 TRUE, FALSE, FALSE);
22099 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22100                                  repeatable, mandatory, hidden)
22101 VALUES (1, 'serial', '877', '6', $$Linkage$$,
22102 TRUE, FALSE, FALSE);
22103 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22104                                  repeatable, mandatory, hidden)
22105 VALUES (1, 'serial', '877', '8', $$Field link and sequence number$$,
22106 TRUE, FALSE, FALSE);
22107 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
22108                               fixed_field, repeatable, mandatory, hidden)
22109 VALUES (1, 'serial', '878', $$Item Information - Indexes$$, $$Item level information about the pieces to the item specified in the holdings record. They contain various data elements that it may be desirable to record for specific items for use in acquisition or circulation applications, among others.$$,
22110 FALSE, TRUE, FALSE, FALSE);
22111 INSERT INTO config.record_attr_definition(name, label)
22112 VALUES ('marc21_serial_878_ind_1', 'MARC 21 serial field 878 indicator position 1');
22113 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
22114 VALUES ('marc21_serial_878_ind_1', '#', $$Undefined$$, FALSE, TRUE);
22115 INSERT INTO config.record_attr_definition(name, label)
22116 VALUES ('marc21_serial_878_ind_2', 'MARC 21 serial field 878 indicator position 2');
22117 INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple)
22118 VALUES ('marc21_serial_878_ind_2', '#', $$Undefined$$, FALSE, TRUE);
22119 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22120                                  repeatable, mandatory, hidden)
22121 VALUES (1, 'serial', '878', 'a', $$Internal item number$$,
22122 TRUE, FALSE, FALSE);
22123 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22124                                  repeatable, mandatory, hidden)
22125 VALUES (1, 'serial', '878', 'b', $$Invalid or canceled internal item number$$,
22126 TRUE, FALSE, FALSE);
22127 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22128                                  repeatable, mandatory, hidden)
22129 VALUES (1, 'serial', '878', 'c', $$Cost$$,
22130 TRUE, FALSE, FALSE);
22131 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22132                                  repeatable, mandatory, hidden)
22133 VALUES (1, 'serial', '878', 'd', $$Date acquired$$,
22134 TRUE, FALSE, FALSE);
22135 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22136                                  repeatable, mandatory, hidden)
22137 VALUES (1, 'serial', '878', 'e', $$Source of acquisition$$,
22138 TRUE, FALSE, FALSE);
22139 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22140                                  repeatable, mandatory, hidden)
22141 VALUES (1, 'serial', '878', 'h', $$Use restrictions$$,
22142 TRUE, FALSE, FALSE);
22143 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22144                                  repeatable, mandatory, hidden)
22145 VALUES (1, 'serial', '878', 'j', $$Item status$$,
22146 TRUE, FALSE, FALSE);
22147 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22148                                  repeatable, mandatory, hidden)
22149 VALUES (1, 'serial', '878', 'l', $$Temporary location$$,
22150 TRUE, FALSE, FALSE);
22151 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22152                                  repeatable, mandatory, hidden)
22153 VALUES (1, 'serial', '878', 'p', $$Piece designation$$,
22154 TRUE, FALSE, FALSE);
22155 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22156                                  repeatable, mandatory, hidden)
22157 VALUES (1, 'serial', '878', 'r', $$Invalid or canceled piece designation$$,
22158 TRUE, FALSE, FALSE);
22159 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22160                                  repeatable, mandatory, hidden)
22161 VALUES (1, 'serial', '878', 't', $$Copy number$$,
22162 TRUE, FALSE, FALSE);
22163 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22164                                  repeatable, mandatory, hidden)
22165 VALUES (1, 'serial', '878', 'x', $$Nonpublic note$$,
22166 TRUE, FALSE, FALSE);
22167 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22168                                  repeatable, mandatory, hidden)
22169 VALUES (1, 'serial', '878', 'z', $$Public note$$,
22170 TRUE, FALSE, FALSE);
22171 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22172                                  repeatable, mandatory, hidden)
22173 VALUES (1, 'serial', '878', '3', $$Materials specified$$,
22174 TRUE, FALSE, FALSE);
22175 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22176                                  repeatable, mandatory, hidden)
22177 VALUES (1, 'serial', '878', '6', $$Linkage$$,
22178 TRUE, FALSE, FALSE);
22179 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22180                                  repeatable, mandatory, hidden)
22181 VALUES (1, 'serial', '878', '8', $$Field link and sequence number$$,
22182 TRUE, FALSE, FALSE);
22183 INSERT INTO config.marc_field(marc_format, marc_record_type, tag, name, description,
22184                               fixed_field, repeatable, mandatory, hidden)
22185 VALUES (1, 'serial', '880', $$Alternate Graphic Representation$$, $$Fully content-designated, alternate graphic representation of another field in the same record. Field 880 is linked to the associated regular field by subfield $6 (Linkage). A subfield $6 in the associated field links that field to the 880 field. When an associated field does not exist in the record, field 880 is constructed as if it did and a reserved occurrence number (00) is used to indicate the special situation. The data in field 880 may be in more than one script.$$,
22186 FALSE, TRUE, FALSE, FALSE);
22187 INSERT INTO config.marc_subfield(marc_format, marc_record_type, tag, code, description,
22188                                  repeatable, mandatory, hidden)
22189 VALUES (1, 'serial', '880', '6', $$Linkage$$,
22190 FALSE, FALSE, FALSE);
22191
22192
22193 SELECT evergreen.upgrade_deps_block_check('0935', :eg_version);
22194
22195 INSERT INTO permission.perm_list ( code, description ) VALUES
22196  ( 'ADMIN_TAG_TABLE', oils_i18n_gettext( '',
22197     'Allow administration of MARC tag tables', 'ppl', 'description'
22198  ));
22199
22200 COMMIT;
22201
22202 BEGIN;
22203
22204 SELECT evergreen.upgrade_deps_block_check('0937', :eg_version);
22205
22206 ALTER TABLE config.record_attr_definition
22207     ADD COLUMN vocabulary TEXT;
22208
22209 ALTER TABLE config.coded_value_map
22210     ADD COLUMN concept_uri TEXT;
22211
22212 COMMIT;
22213
22214 BEGIN;
22215
22216 SELECT evergreen.upgrade_deps_block_check('0938', :eg_version);
22217
22218 INSERT INTO config.record_attr_definition (name, label, format, xpath, vocabulary) VALUES (
22219     'content_type', oils_i18n_gettext('content_type', 'Content Type', 'ccvm', 'label'),
22220     'marcxml',
22221     $$//marc:datafield[@tag='336']/marc:subfield[@code='a']$$,
22222     'http://rdaregistry.info/termList/RDAContentType'
22223 );
22224 INSERT INTO config.record_attr_definition (name, label, format, xpath, vocabulary) VALUES (
22225     'media_type', oils_i18n_gettext('media_type', 'Media Type', 'ccvm', 'label'),
22226     'marcxml',
22227     $$//marc:datafield[@tag='337']/marc:subfield[@code='a']$$,
22228     'http://rdaregistry.info/termList/RDAMediaType'
22229 );
22230 INSERT INTO config.record_attr_definition (name, label, format, xpath, vocabulary) VALUES (
22231     'carrier_type', oils_i18n_gettext('carrier_type', 'Carrier Type', 'ccvm', 'label'),
22232     'marcxml',
22233     $$//marc:datafield[@tag='338']/marc:subfield[@code='a']$$,
22234     'http://rdaregistry.info/termList/RDACarrierType'
22235 );
22236
22237 -- RDA content type, media type, and carrier type
22238 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22239   VALUES (634, 'content_type', 'two-dimensional moving image',
22240   oils_i18n_gettext(634, 'two-dimensional moving image', 'ccvm', 'value'),
22241   'http://rdaregistry.info/termList/RDAContentType/1023');
22242 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22243   VALUES (635, 'content_type', 'three-dimensional moving image',
22244   oils_i18n_gettext(635, 'three-dimensional moving image', 'ccvm', 'value'),
22245   'http://rdaregistry.info/termList/RDAContentType/1022');
22246 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22247   VALUES (636, 'content_type', 'three-dimensional form',
22248   oils_i18n_gettext(636, 'three-dimensional form', 'ccvm', 'value'),
22249   'http://rdaregistry.info/termList/RDAContentType/1021');
22250 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22251   VALUES (637, 'content_type', 'text',
22252   oils_i18n_gettext(637, 'text', 'ccvm', 'value'),
22253   'http://rdaregistry.info/termList/RDAContentType/1020');
22254 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22255   VALUES (638, 'content_type', 'tactile three-dimensional form',
22256   oils_i18n_gettext(638, 'tactile three-dimensional form', 'ccvm', 'value'),
22257   'http://rdaregistry.info/termList/RDAContentType/1019');
22258 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22259   VALUES (639, 'content_type', 'tactile text',
22260   oils_i18n_gettext(639, 'tactile text', 'ccvm', 'value'),
22261   'http://rdaregistry.info/termList/RDAContentType/1018');
22262 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22263   VALUES (640, 'content_type', 'tactile notated movement',
22264   oils_i18n_gettext(640, 'tactile notated movement', 'ccvm', 'value'),
22265   'http://rdaregistry.info/termList/RDAContentType/1017');
22266 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22267   VALUES (641, 'content_type', 'tactile notated music',
22268   oils_i18n_gettext(641, 'tactile notated music', 'ccvm', 'value'),
22269   'http://rdaregistry.info/termList/RDAContentType/1016');
22270 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22271   VALUES (642, 'content_type', 'tactile image',
22272   oils_i18n_gettext(642, 'tactile image', 'ccvm', 'value'),
22273   'http://rdaregistry.info/termList/RDAContentType/1015');
22274 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22275   VALUES (643, 'content_type', 'still image',
22276   oils_i18n_gettext(643, 'still image', 'ccvm', 'value'),
22277   'http://rdaregistry.info/termList/RDAContentType/1014');
22278 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22279   VALUES (644, 'content_type', 'spoken word',
22280   oils_i18n_gettext(644, 'spoken word', 'ccvm', 'value'),
22281   'http://rdaregistry.info/termList/RDAContentType/1013');
22282 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22283   VALUES (645, 'content_type', 'sounds',
22284   oils_i18n_gettext(645, 'sounds', 'ccvm', 'value'),
22285   'http://rdaregistry.info/termList/RDAContentType/1012');
22286 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22287   VALUES (646, 'content_type', 'performed music',
22288   oils_i18n_gettext(646, 'performed music', 'ccvm', 'value'),
22289   'http://rdaregistry.info/termList/RDAContentType/1011');
22290 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22291   VALUES (647, 'content_type', 'notated music',
22292   oils_i18n_gettext(647, 'notated music', 'ccvm', 'value'),
22293   'http://rdaregistry.info/termList/RDAContentType/1010');
22294 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22295   VALUES (648, 'content_type', 'notated movement',
22296   oils_i18n_gettext(648, 'notated movement', 'ccvm', 'value'),
22297   'http://rdaregistry.info/termList/RDAContentType/1009');
22298 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22299   VALUES (649, 'content_type', 'computer program',
22300   oils_i18n_gettext(649, 'computer program', 'ccvm', 'value'),
22301   'http://rdaregistry.info/termList/RDAContentType/1008');
22302 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22303   VALUES (650, 'content_type', 'computer dataset',
22304   oils_i18n_gettext(650, 'computer dataset', 'ccvm', 'value'),
22305   'http://rdaregistry.info/termList/RDAContentType/1007');
22306 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22307   VALUES (651, 'content_type', 'cartographic three-dimensional form',
22308   oils_i18n_gettext(651, 'cartographic three-dimensional form', 'ccvm', 'value'),
22309   'http://rdaregistry.info/termList/RDAContentType/1006');
22310 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22311   VALUES (652, 'content_type', 'cartographic tactile three-dimensional form',
22312   oils_i18n_gettext(652, 'cartographic tactile three-dimensional form', 'ccvm', 'value'),
22313   'http://rdaregistry.info/termList/RDAContentType/1005');
22314 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22315   VALUES (653, 'content_type', 'cartographic tactile image',
22316   oils_i18n_gettext(653, 'cartographic tactile image', 'ccvm', 'value'),
22317   'http://rdaregistry.info/termList/RDAContentType/1004');
22318 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22319   VALUES (654, 'content_type', 'cartographic moving image',
22320   oils_i18n_gettext(654, 'cartographic moving image', 'ccvm', 'value'),
22321   'http://rdaregistry.info/termList/RDAContentType/1003');
22322 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22323   VALUES (655, 'content_type', 'cartographic image',
22324   oils_i18n_gettext(655, 'cartographic image', 'ccvm', 'value'),
22325   'http://rdaregistry.info/termList/RDAContentType/1002');
22326 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22327   VALUES (656, 'content_type', 'cartographic dataset',
22328   oils_i18n_gettext(656, 'cartographic dataset', 'ccvm', 'value'),
22329   'http://rdaregistry.info/termList/RDAContentType/1001');
22330 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22331   VALUES (657, 'media_type', 'video',
22332   oils_i18n_gettext(657, 'video', 'ccvm', 'value'),
22333   'http://rdaregistry.info/termList/RDAMediaType/1008');
22334 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22335   VALUES (658, 'media_type', 'unmediated',
22336   oils_i18n_gettext(658, 'unmediated', 'ccvm', 'value'),
22337   'http://rdaregistry.info/termList/RDAMediaType/1007');
22338 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22339   VALUES (659, 'media_type', 'stereographic',
22340   oils_i18n_gettext(659, 'stereographic', 'ccvm', 'value'),
22341   'http://rdaregistry.info/termList/RDAMediaType/1006');
22342 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22343   VALUES (660, 'media_type', 'projected',
22344   oils_i18n_gettext(660, 'projected', 'ccvm', 'value'),
22345   'http://rdaregistry.info/termList/RDAMediaType/1005');
22346 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22347   VALUES (661, 'media_type', 'microscopic',
22348   oils_i18n_gettext(661, 'microscopic', 'ccvm', 'value'),
22349   'http://rdaregistry.info/termList/RDAMediaType/1004');
22350 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22351   VALUES (662, 'media_type', 'computer',
22352   oils_i18n_gettext(662, 'computer', 'ccvm', 'value'),
22353   'http://rdaregistry.info/termList/RDAMediaType/1003');
22354 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22355   VALUES (663, 'media_type', 'microform',
22356   oils_i18n_gettext(663, 'microform', 'ccvm', 'value'),
22357   'http://rdaregistry.info/termList/RDAMediaType/1002');
22358 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22359   VALUES (664, 'media_type', 'audio',
22360   oils_i18n_gettext(664, 'audio', 'ccvm', 'value'),
22361   'http://rdaregistry.info/termList/RDAMediaType/1001');
22362 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22363   VALUES (665, 'media_type', 'Published',
22364   oils_i18n_gettext(665, 'Published', 'ccvm', 'value'),
22365   'http://metadataregistry.org/uri/RegStatus/1001');
22366 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22367   VALUES (666, 'carrier_type', 'film roll',
22368   oils_i18n_gettext(666, 'film roll', 'ccvm', 'value'),
22369   'http://rdaregistry.info/termList/RDACarrierType/1069');
22370 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22371   VALUES (667, 'carrier_type', 'videodisc',
22372   oils_i18n_gettext(667, 'videodisc', 'ccvm', 'value'),
22373   'http://rdaregistry.info/termList/RDACarrierType/1060');
22374 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22375   VALUES (668, 'carrier_type', 'object',
22376   oils_i18n_gettext(668, 'object', 'ccvm', 'value'),
22377   'http://rdaregistry.info/termList/RDACarrierType/1059');
22378 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22379   VALUES (669, 'carrier_type', 'microfilm roll',
22380   oils_i18n_gettext(669, 'microfilm roll', 'ccvm', 'value'),
22381   'http://rdaregistry.info/termList/RDACarrierType/1056');
22382 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22383   VALUES (670, 'carrier_type', 'videotape reel',
22384   oils_i18n_gettext(670, 'videotape reel', 'ccvm', 'value'),
22385   'http://rdaregistry.info/termList/RDACarrierType/1053');
22386 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22387   VALUES (671, 'carrier_type', 'videocassette',
22388   oils_i18n_gettext(671, 'videocassette', 'ccvm', 'value'),
22389   'http://rdaregistry.info/termList/RDACarrierType/1052');
22390 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22391   VALUES (672, 'carrier_type', 'video cartridge',
22392   oils_i18n_gettext(672, 'video cartridge', 'ccvm', 'value'),
22393   'http://rdaregistry.info/termList/RDACarrierType/1051');
22394 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22395   VALUES (673, 'carrier_type', 'volume',
22396   oils_i18n_gettext(673, 'volume', 'ccvm', 'value'),
22397   'http://rdaregistry.info/termList/RDACarrierType/1049');
22398 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22399   VALUES (674, 'carrier_type', 'sheet',
22400   oils_i18n_gettext(674, 'sheet', 'ccvm', 'value'),
22401   'http://rdaregistry.info/termList/RDACarrierType/1048');
22402 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22403   VALUES (675, 'carrier_type', 'roll',
22404   oils_i18n_gettext(675, 'roll', 'ccvm', 'value'),
22405   'http://rdaregistry.info/termList/RDACarrierType/1047');
22406 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22407   VALUES (676, 'carrier_type', 'flipchart',
22408   oils_i18n_gettext(676, 'flipchart', 'ccvm', 'value'),
22409   'http://rdaregistry.info/termList/RDACarrierType/1046');
22410 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22411   VALUES (677, 'carrier_type', 'card',
22412   oils_i18n_gettext(677, 'card', 'ccvm', 'value'),
22413   'http://rdaregistry.info/termList/RDACarrierType/1045');
22414 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22415   VALUES (678, 'carrier_type', 'stereograph disc',
22416   oils_i18n_gettext(678, 'stereograph disc', 'ccvm', 'value'),
22417   'http://rdaregistry.info/termList/RDACarrierType/1043');
22418 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22419   VALUES (679, 'carrier_type', 'stereograph card',
22420   oils_i18n_gettext(679, 'stereograph card', 'ccvm', 'value'),
22421   'http://rdaregistry.info/termList/RDACarrierType/1042');
22422 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22423   VALUES (680, 'carrier_type', 'slide',
22424   oils_i18n_gettext(680, 'slide', 'ccvm', 'value'),
22425   'http://rdaregistry.info/termList/RDACarrierType/1040');
22426 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22427   VALUES (681, 'carrier_type', 'overhead transparency',
22428   oils_i18n_gettext(681, 'overhead transparency', 'ccvm', 'value'),
22429   'http://rdaregistry.info/termList/RDACarrierType/1039');
22430 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22431   VALUES (682, 'carrier_type', 'filmstrip cartridge',
22432   oils_i18n_gettext(682, 'filmstrip cartridge', 'ccvm', 'value'),
22433   'http://rdaregistry.info/termList/RDACarrierType/1037');
22434 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22435   VALUES (683, 'carrier_type', 'filmstrip',
22436   oils_i18n_gettext(683, 'filmstrip', 'ccvm', 'value'),
22437   'http://rdaregistry.info/termList/RDACarrierType/1036');
22438 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22439   VALUES (684, 'carrier_type', 'filmslip',
22440   oils_i18n_gettext(684, 'filmslip', 'ccvm', 'value'),
22441   'http://rdaregistry.info/termList/RDACarrierType/1035');
22442 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22443   VALUES (685, 'carrier_type', 'film reel',
22444   oils_i18n_gettext(685, 'film reel', 'ccvm', 'value'),
22445   'http://rdaregistry.info/termList/RDACarrierType/1034');
22446 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22447   VALUES (686, 'carrier_type', 'film cassette',
22448   oils_i18n_gettext(686, 'film cassette', 'ccvm', 'value'),
22449   'http://rdaregistry.info/termList/RDACarrierType/1033');
22450 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22451   VALUES (687, 'carrier_type', 'film cartridge',
22452   oils_i18n_gettext(687, 'film cartridge', 'ccvm', 'value'),
22453   'http://rdaregistry.info/termList/RDACarrierType/1032');
22454 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22455   VALUES (688, 'carrier_type', 'microscope slide',
22456   oils_i18n_gettext(688, 'microscope slide', 'ccvm', 'value'),
22457   'http://rdaregistry.info/termList/RDACarrierType/1030');
22458 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22459   VALUES (689, 'carrier_type', 'microopaque',
22460   oils_i18n_gettext(689, 'microopaque', 'ccvm', 'value'),
22461   'http://rdaregistry.info/termList/RDACarrierType/1028');
22462 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22463   VALUES (690, 'carrier_type', 'microfilm slip',
22464   oils_i18n_gettext(690, 'microfilm slip', 'ccvm', 'value'),
22465   'http://rdaregistry.info/termList/RDACarrierType/1027');
22466 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22467   VALUES (691, 'carrier_type', 'microfilm reel',
22468   oils_i18n_gettext(691, 'microfilm reel', 'ccvm', 'value'),
22469   'http://rdaregistry.info/termList/RDACarrierType/1026');
22470 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22471   VALUES (692, 'carrier_type', 'microfilm cassette',
22472   oils_i18n_gettext(692, 'microfilm cassette', 'ccvm', 'value'),
22473   'http://rdaregistry.info/termList/RDACarrierType/1025');
22474 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22475   VALUES (693, 'carrier_type', 'microfilm cartridge',
22476   oils_i18n_gettext(693, 'microfilm cartridge', 'ccvm', 'value'),
22477   'http://rdaregistry.info/termList/RDACarrierType/1024');
22478 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22479   VALUES (694, 'carrier_type', 'microfiche cassette',
22480   oils_i18n_gettext(694, 'microfiche cassette', 'ccvm', 'value'),
22481   'http://rdaregistry.info/termList/RDACarrierType/1023');
22482 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22483   VALUES (695, 'carrier_type', 'microfiche',
22484   oils_i18n_gettext(695, 'microfiche', 'ccvm', 'value'),
22485   'http://rdaregistry.info/termList/RDACarrierType/1022');
22486 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22487   VALUES (696, 'carrier_type', 'aperture card',
22488   oils_i18n_gettext(696, 'aperture card', 'ccvm', 'value'),
22489   'http://rdaregistry.info/termList/RDACarrierType/1021');
22490 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22491   VALUES (697, 'carrier_type', 'online resource',
22492   oils_i18n_gettext(697, 'online resource', 'ccvm', 'value'),
22493   'http://rdaregistry.info/termList/RDACarrierType/1018');
22494 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22495   VALUES (698, 'carrier_type', 'computer tape reel',
22496   oils_i18n_gettext(698, 'computer tape reel', 'ccvm', 'value'),
22497   'http://rdaregistry.info/termList/RDACarrierType/1017');
22498 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22499   VALUES (699, 'carrier_type', 'computer tape cassette',
22500   oils_i18n_gettext(699, 'computer tape cassette', 'ccvm', 'value'),
22501   'http://rdaregistry.info/termList/RDACarrierType/1016');
22502 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22503   VALUES (700, 'carrier_type', 'computer tape cartridge',
22504   oils_i18n_gettext(700, 'computer tape cartridge', 'ccvm', 'value'),
22505   'http://rdaregistry.info/termList/RDACarrierType/1015');
22506 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22507   VALUES (701, 'carrier_type', 'computer disc cartridge',
22508   oils_i18n_gettext(701, 'computer disc cartridge', 'ccvm', 'value'),
22509   'http://rdaregistry.info/termList/RDACarrierType/1014');
22510 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22511   VALUES (702, 'carrier_type', 'computer disc',
22512   oils_i18n_gettext(702, 'computer disc', 'ccvm', 'value'),
22513   'http://rdaregistry.info/termList/RDACarrierType/1013');
22514 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22515   VALUES (703, 'carrier_type', 'computer chip cartridge',
22516   oils_i18n_gettext(703, 'computer chip cartridge', 'ccvm', 'value'),
22517   'http://rdaregistry.info/termList/RDACarrierType/1012');
22518 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22519   VALUES (704, 'carrier_type', 'computer card',
22520   oils_i18n_gettext(704, 'computer card', 'ccvm', 'value'),
22521   'http://rdaregistry.info/termList/RDACarrierType/1011');
22522 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22523   VALUES (705, 'carrier_type', 'audiotape reel',
22524   oils_i18n_gettext(705, 'audiotape reel', 'ccvm', 'value'),
22525   'http://rdaregistry.info/termList/RDACarrierType/1008');
22526 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22527   VALUES (706, 'carrier_type', 'audiocassette',
22528   oils_i18n_gettext(706, 'audiocassette', 'ccvm', 'value'),
22529   'http://rdaregistry.info/termList/RDACarrierType/1007');
22530 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22531   VALUES (707, 'carrier_type', 'audio roll',
22532   oils_i18n_gettext(707, 'audio roll', 'ccvm', 'value'),
22533   'http://rdaregistry.info/termList/RDACarrierType/1006');
22534 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22535   VALUES (708, 'carrier_type', 'sound-track reel',
22536   oils_i18n_gettext(708, 'sound-track reel', 'ccvm', 'value'),
22537   'http://rdaregistry.info/termList/RDACarrierType/1005');
22538 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22539   VALUES (709, 'carrier_type', 'audio disc',
22540   oils_i18n_gettext(709, 'audio disc', 'ccvm', 'value'),
22541   'http://rdaregistry.info/termList/RDACarrierType/1004');
22542 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22543   VALUES (710, 'carrier_type', 'audio cylinder',
22544   oils_i18n_gettext(710, 'audio cylinder', 'ccvm', 'value'),
22545   'http://rdaregistry.info/termList/RDACarrierType/1003');
22546 INSERT INTO config.coded_value_map (id, ctype, code, value, concept_uri)
22547   VALUES (711, 'carrier_type', 'audio cartridge',
22548   oils_i18n_gettext(711, 'audio cartridge', 'ccvm', 'value'),
22549   'http://rdaregistry.info/termList/RDACarrierType/1002');
22550
22551 UPDATE config.marc_subfield set value_ctype = 'content_type'
22552 WHERE  tag = '336' AND code = 'a' AND marc_record_type = 'biblio';
22553 UPDATE config.marc_subfield set value_ctype = 'media_type'
22554 WHERE  tag = '337' AND code = 'a' AND marc_record_type = 'biblio';
22555 UPDATE config.marc_subfield set value_ctype = 'carrier_type'
22556 WHERE  tag = '338' AND code = 'a' AND marc_record_type = 'biblio';
22557
22558 SELECT evergreen.upgrade_deps_block_check('0939', :eg_version);
22559
22560 --create hook for actor.usr.expire_date
22561 INSERT INTO action_trigger.hook (key, core_type, description, passive)
22562     VALUES ('au.expired', 'au', 'A user account has expired', 't');
22563         
22564 --SQL to create event definition for 30 day account pre-expiration notice
22565 --Inactive, owned by top of org tree by default.  Modify to suit needs.
22566 --Can set reactor to 'ProcessTemplate' for testing.  Will generate emails in DB, but not actually send.
22567
22568 INSERT INTO action_trigger.event_definition (
22569     active, owner, name, hook, 
22570     validator, reactor, delay, delay_field,
22571     max_delay, repeat_delay, template
22572 )  VALUES (
22573     'f', '1', '30 Day Account Expiration Courtesy Notice', 'au.expired',
22574     'NOOP_True', 'SendEmail', '-30 days', 'expire_date',
22575     '-29 days', '30 days',
22576 $$
22577 [%- USE date -%]
22578 [%- user = target -%]
22579 [%- lib = target.home_ou -%]
22580 To: [%- params.recipient_email || user.email %]
22581 From: [%- helpers.get_org_setting(target.home_ou.id, 'org.bounced_emails') || lib.email || params.sender_email || default_sender %]
22582 Reply-To: [%- helpers.get_org_setting(target.home_ou.id, 'org.bounced_emails') || lib.email || params.sender_email || default_sender %]
22583 Subject: Courtesy Notice - Library Account Expiration in 30 days
22584 Auto-Submitted: auto-generated
22585
22586 Dear [% user.first_given_name %] [% user.family_name %],
22587
22588 Our records indicate your library account is due to expire in 30 days.  Please visit your local library at your convenience to renew your account in order to avoid a disruption in access to library service.
22589
22590 Sincerely,
22591 [% lib.name %]
22592
22593 Contact your library for more information:
22594
22595 [% lib.name %]
22596 [%- SET addr = lib.mailing_address -%]
22597 [%- IF !addr -%] [%- SET addr = lib.billing_address -%] [%- END %]
22598 [% addr.street1 %] [% addr.street2 %]
22599 [% addr.city %], [% addr.state %]
22600 [% addr.post_code %]
22601 [% lib.phone %]
22602
22603 $$);
22604         
22605 --insert environment values
22606 INSERT INTO action_trigger.environment (event_def, path) VALUES
22607     (CURRVAL('action_trigger.event_definition_id_seq'), 'home_ou.mailing_address'),
22608     (CURRVAL('action_trigger.event_definition_id_seq'), 'home_ou.billing_address');
22609         
22610
22611 SELECT evergreen.upgrade_deps_block_check('0942', :eg_version);
22612
22613 CREATE OR REPLACE FUNCTION authority.extract_thesaurus( marcxml TEXT ) RETURNS TEXT AS $func$
22614 DECLARE
22615     thes_code TEXT;
22616 BEGIN
22617     thes_code := vandelay.marc21_extract_fixed_field(marcxml,'Subj');
22618     IF thes_code IS NULL THEN
22619         thes_code := '|';
22620     ELSIF thes_code = 'z' THEN
22621         thes_code := COALESCE( oils_xpath_string('//*[@tag="040"]/*[@code="f"][1]', marcxml), '' );
22622     END IF;
22623     RETURN thes_code;
22624 END;
22625 $func$ LANGUAGE PLPGSQL STABLE STRICT;
22626
22627 -- Intended to be used in a unique index on authority.record_entry like so:
22628 -- CREATE UNIQUE INDEX unique_by_heading_and_thesaurus
22629 --   ON authority.record_entry (heading)
22630 --   WHERE deleted IS FALSE or deleted = FALSE;
22631 CREATE OR REPLACE FUNCTION authority.normalize_heading( marcxml TEXT, no_thesaurus BOOL ) RETURNS TEXT AS $func$
22632 DECLARE
22633     acsaf           authority.control_set_authority_field%ROWTYPE;
22634     tag_used        TEXT;
22635     nfi_used        TEXT;
22636     sf              TEXT;
22637     sf_node         TEXT;
22638     tag_node        TEXT;
22639     thes_code       TEXT;
22640     cset            INT;
22641     heading_text    TEXT;
22642     tmp_text        TEXT;
22643     first_sf        BOOL;
22644     auth_id         INT DEFAULT COALESCE(NULLIF(oils_xpath_string('//*[@tag="901"]/*[local-name()="subfield" and @code="c"]', marcxml), ''), '0')::INT; 
22645 BEGIN
22646     SELECT control_set INTO cset FROM authority.record_entry WHERE id = auth_id;
22647
22648     IF cset IS NULL THEN
22649         SELECT  control_set INTO cset
22650           FROM  authority.control_set_authority_field
22651           WHERE tag IN ( SELECT  UNNEST(XPATH('//*[starts-with(@tag,"1")]/@tag',marcxml::XML)::TEXT[]))
22652           LIMIT 1;
22653     END IF;
22654
22655     heading_text := '';
22656     FOR acsaf IN SELECT * FROM authority.control_set_authority_field WHERE control_set = cset AND main_entry IS NULL LOOP
22657         tag_used := acsaf.tag;
22658         nfi_used := acsaf.nfi;
22659         first_sf := TRUE;
22660
22661         FOR tag_node IN SELECT unnest(oils_xpath('//*[@tag="'||tag_used||'"]',marcxml)) LOOP
22662             FOR sf_node IN SELECT unnest(oils_xpath('./*[contains("'||acsaf.sf_list||'",@code)]',tag_node)) LOOP
22663
22664                 tmp_text := oils_xpath_string('.', sf_node);
22665                 sf := oils_xpath_string('./@code', sf_node);
22666
22667                 IF first_sf AND tmp_text IS NOT NULL AND nfi_used IS NOT NULL THEN
22668
22669                     tmp_text := SUBSTRING(
22670                         tmp_text FROM
22671                         COALESCE(
22672                             NULLIF(
22673                                 REGEXP_REPLACE(
22674                                     oils_xpath_string('./@ind'||nfi_used, tag_node),
22675                                     $$\D+$$,
22676                                     '',
22677                                     'g'
22678                                 ),
22679                                 ''
22680                             )::INT,
22681                             0
22682                         ) + 1
22683                     );
22684
22685                 END IF;
22686
22687                 first_sf := FALSE;
22688
22689                 IF tmp_text IS NOT NULL AND tmp_text <> '' THEN
22690                     heading_text := heading_text || E'\u2021' || sf || ' ' || tmp_text;
22691                 END IF;
22692             END LOOP;
22693
22694             EXIT WHEN heading_text <> '';
22695         END LOOP;
22696
22697         EXIT WHEN heading_text <> '';
22698     END LOOP;
22699
22700     IF heading_text <> '' THEN
22701         IF no_thesaurus IS TRUE THEN
22702             heading_text := tag_used || ' ' || public.naco_normalize(heading_text);
22703         ELSE
22704             thes_code := authority.extract_thesaurus(marcxml);
22705             heading_text := tag_used || '_' || COALESCE(nfi_used,'-') || '_' || thes_code || ' ' || public.naco_normalize(heading_text);
22706         END IF;
22707     ELSE
22708         heading_text := 'NOHEADING_' || thes_code || ' ' || MD5(marcxml);
22709     END IF;
22710
22711     RETURN heading_text;
22712 END;
22713 $func$ LANGUAGE PLPGSQL STABLE STRICT;
22714
22715 ALTER TABLE authority.simple_heading ADD COLUMN thesaurus TEXT;
22716 CREATE INDEX authority_simple_heading_thesaurus_idx ON authority.simple_heading (thesaurus);
22717
22718 CREATE OR REPLACE FUNCTION authority.simple_heading_set( marcxml TEXT ) RETURNS SETOF authority.simple_heading AS $func$
22719 DECLARE
22720     res             authority.simple_heading%ROWTYPE;
22721     acsaf           authority.control_set_authority_field%ROWTYPE;
22722     tag_used        TEXT;
22723     nfi_used        TEXT;
22724     sf              TEXT;
22725     cset            INT;
22726     heading_text    TEXT;
22727     joiner_text     TEXT;
22728     sort_text       TEXT;
22729     tmp_text        TEXT;
22730     tmp_xml         TEXT;
22731     first_sf        BOOL;
22732     auth_id         INT DEFAULT COALESCE(NULLIF(oils_xpath_string('//*[@tag="901"]/*[local-name()="subfield" and @code="c"]', marcxml), ''), '0')::INT; 
22733 BEGIN
22734
22735     SELECT control_set INTO cset FROM authority.record_entry WHERE id = auth_id;
22736
22737     IF cset IS NULL THEN
22738         SELECT  control_set INTO cset
22739           FROM  authority.control_set_authority_field
22740           WHERE tag IN ( SELECT  UNNEST(XPATH('//*[starts-with(@tag,"1")]/@tag',marcxml::XML)::TEXT[]))
22741           LIMIT 1;
22742     END IF;
22743
22744     res.record := auth_id;
22745     res.thesaurus := authority.extract_thesaurus(marcxml);
22746
22747     FOR acsaf IN SELECT * FROM authority.control_set_authority_field WHERE control_set = cset LOOP
22748
22749         res.atag := acsaf.id;
22750         tag_used := acsaf.tag;
22751         nfi_used := acsaf.nfi;
22752         joiner_text := COALESCE(acsaf.joiner, ' ');
22753
22754         FOR tmp_xml IN SELECT UNNEST(XPATH('//*[@tag="'||tag_used||'"]', marcxml::XML)::TEXT[]) LOOP
22755
22756             heading_text := COALESCE(
22757                 oils_xpath_string('./*[contains("'||acsaf.display_sf_list||'",@code)]', tmp_xml, joiner_text),
22758                 ''
22759             );
22760
22761             IF nfi_used IS NOT NULL THEN
22762
22763                 sort_text := SUBSTRING(
22764                     heading_text FROM
22765                     COALESCE(
22766                         NULLIF(
22767                             REGEXP_REPLACE(
22768                                 oils_xpath_string('./@ind'||nfi_used, tmp_xml::TEXT),
22769                                 $$\D+$$,
22770                                 '',
22771                                 'g'
22772                             ),
22773                             ''
22774                         )::INT,
22775                         0
22776                     ) + 1
22777                 );
22778
22779             ELSE
22780                 sort_text := heading_text;
22781             END IF;
22782
22783             IF heading_text IS NOT NULL AND heading_text <> '' THEN
22784                 res.value := heading_text;
22785                 res.sort_value := public.naco_normalize(sort_text);
22786                 res.index_vector = to_tsvector('keyword'::regconfig, res.sort_value);
22787                 RETURN NEXT res;
22788             END IF;
22789
22790         END LOOP;
22791
22792     END LOOP;
22793
22794     RETURN;
22795 END;
22796
22797 $func$ LANGUAGE PLPGSQL STABLE STRICT;
22798 -- AFTER UPDATE OR INSERT trigger for authority.record_entry
22799 CREATE OR REPLACE FUNCTION authority.indexing_ingest_or_delete () RETURNS TRIGGER AS $func$
22800 DECLARE
22801     ashs    authority.simple_heading%ROWTYPE;
22802     mbe_row metabib.browse_entry%ROWTYPE;
22803     mbe_id  BIGINT;
22804     ash_id  BIGINT;
22805 BEGIN
22806
22807     IF NEW.deleted IS TRUE THEN -- If this authority is deleted
22808         DELETE FROM authority.bib_linking WHERE authority = NEW.id; -- Avoid updating fields in bibs that are no longer visible
22809         DELETE FROM authority.full_rec WHERE record = NEW.id; -- Avoid validating fields against deleted authority records
22810         DELETE FROM authority.simple_heading WHERE record = NEW.id;
22811           -- Should remove matching $0 from controlled fields at the same time?
22812
22813         -- XXX What do we about the actual linking subfields present in
22814         -- authority records that target this one when this happens?
22815         DELETE FROM authority.authority_linking
22816             WHERE source = NEW.id OR target = NEW.id;
22817
22818         RETURN NEW; -- and we're done
22819     END IF;
22820
22821     IF TG_OP = 'UPDATE' THEN -- re-ingest?
22822         PERFORM * FROM config.internal_flag WHERE name = 'ingest.reingest.force_on_same_marc' AND enabled;
22823
22824         IF NOT FOUND AND OLD.marc = NEW.marc THEN -- don't do anything if the MARC didn't change
22825             RETURN NEW;
22826         END IF;
22827
22828         -- Unless there's a setting stopping us, propagate these updates to any linked bib records
22829         PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_auto_update' AND enabled;
22830
22831         IF NOT FOUND THEN
22832             PERFORM authority.propagate_changes(NEW.id);
22833         END IF;
22834         
22835         DELETE FROM authority.simple_heading WHERE record = NEW.id;
22836         DELETE FROM authority.authority_linking WHERE source = NEW.id;
22837     END IF;
22838
22839     INSERT INTO authority.authority_linking (source, target, field)
22840         SELECT source, target, field FROM authority.calculate_authority_linking(
22841             NEW.id, NEW.control_set, NEW.marc::XML
22842         );
22843
22844     FOR ashs IN SELECT * FROM authority.simple_heading_set(NEW.marc) LOOP
22845
22846         INSERT INTO authority.simple_heading (record,atag,value,sort_value,thesaurus)
22847             VALUES (ashs.record, ashs.atag, ashs.value, ashs.sort_value, ashs.thesaurus);
22848             ash_id := CURRVAL('authority.simple_heading_id_seq'::REGCLASS);
22849
22850         SELECT INTO mbe_row * FROM metabib.browse_entry
22851             WHERE value = ashs.value AND sort_value = ashs.sort_value;
22852
22853         IF FOUND THEN
22854             mbe_id := mbe_row.id;
22855         ELSE
22856             INSERT INTO metabib.browse_entry
22857                 ( value, sort_value ) VALUES
22858                 ( ashs.value, ashs.sort_value );
22859
22860             mbe_id := CURRVAL('metabib.browse_entry_id_seq'::REGCLASS);
22861         END IF;
22862
22863         INSERT INTO metabib.browse_entry_simple_heading_map (entry,simple_heading) VALUES (mbe_id,ash_id);
22864
22865     END LOOP;
22866
22867     -- Flatten and insert the afr data
22868     PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_full_rec' AND enabled;
22869     IF NOT FOUND THEN
22870         PERFORM authority.reingest_authority_full_rec(NEW.id);
22871         PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_rec_descriptor' AND enabled;
22872         IF NOT FOUND THEN
22873             PERFORM authority.reingest_authority_rec_descriptor(NEW.id);
22874         END IF;
22875     END IF;
22876
22877     RETURN NEW;
22878 END;
22879 $func$ LANGUAGE PLPGSQL;
22880
22881 DROP FUNCTION IF EXISTS authority.atag_search_heading_refs(TEXT, TEXT, INT, INT);
22882 DROP FUNCTION IF EXISTS authority.btag_search_heading_refs(TEXT, TEXT, INT, INT);
22883 DROP FUNCTION IF EXISTS authority.axis_search_heading_refs(TEXT, TEXT, INT, INT);
22884 DROP FUNCTION IF EXISTS authority.atag_search_heading(TEXT, TEXT, INT, INT);
22885 DROP FUNCTION IF EXISTS authority.btag_search_heading(TEXT, TEXT, INT, INT);
22886 DROP FUNCTION IF EXISTS authority.axis_search_heading(TEXT, TEXT, INT, INT);
22887 DROP FUNCTION IF EXISTS authority.simple_heading_search_heading(INT[], TEXT, INT, INT);
22888 DROP FUNCTION IF EXISTS authority.atag_search_rank_refs(TEXT, TEXT, INT, INT);
22889 DROP FUNCTION IF EXISTS authority.btag_search_rank_refs(TEXT, TEXT, INT, INT);
22890 DROP FUNCTION IF EXISTS authority.axis_search_rank_refs(TEXT, TEXT, INT, INT);
22891 DROP FUNCTION IF EXISTS authority.atag_search_rank(TEXT, TEXT, INT, INT);
22892 DROP FUNCTION IF EXISTS authority.btag_search_rank(TEXT, TEXT, INT, INT);
22893 DROP FUNCTION IF EXISTS authority.axis_search_rank(TEXT, TEXT, INT, INT);
22894 DROP FUNCTION IF EXISTS authority.simple_heading_search_rank(INT[], TEXT, INT, INT);
22895 DROP FUNCTION IF EXISTS authority.atag_browse_top_refs(TEXT, TEXT, INT, INT);
22896 DROP FUNCTION IF EXISTS authority.btag_browse_top_refs(TEXT, TEXT, INT, INT);
22897 DROP FUNCTION IF EXISTS authority.axis_browse_top_refs(TEXT, TEXT, INT, INT);
22898 DROP FUNCTION IF EXISTS authority.atag_browse_top(TEXT, TEXT, INT, INT);
22899 DROP FUNCTION IF EXISTS authority.btag_browse_top(TEXT, TEXT, INT, INT);
22900 DROP FUNCTION IF EXISTS authority.axis_browse_top(TEXT, TEXT, INT, INT);
22901 DROP FUNCTION IF EXISTS authority.simple_heading_browse_top(INT[], TEXT, INT, INT);
22902 DROP FUNCTION IF EXISTS authority.atag_browse_center_refs(TEXT, TEXT, INT, INT);
22903 DROP FUNCTION IF EXISTS authority.btag_browse_center_refs(TEXT, TEXT, INT, INT);
22904 DROP FUNCTION IF EXISTS authority.axis_browse_center_refs(TEXT, TEXT, INT, INT);
22905 DROP FUNCTION IF EXISTS authority.atag_browse_center(TEXT, TEXT, INT, INT);
22906 DROP FUNCTION IF EXISTS authority.btag_browse_center(TEXT, TEXT, INT, INT);
22907 DROP FUNCTION IF EXISTS authority.axis_browse_center(TEXT, TEXT, INT, INT);
22908 DROP FUNCTION IF EXISTS authority.simple_heading_browse_center(INT[], TEXT, INT, INT);
22909 DROP FUNCTION IF EXISTS authority.simple_heading_find_pivot(INT[], TEXT);
22910
22911 -- Support function used to find the pivot for alpha-heading-browse style searching
22912 CREATE OR REPLACE FUNCTION authority.simple_heading_find_pivot( a INT[], q TEXT, thesauruses TEXT DEFAULT '' ) RETURNS TEXT AS $$
22913 DECLARE
22914     sort_value_row  RECORD;
22915     value_row       RECORD;
22916     t_term          TEXT;
22917 BEGIN
22918
22919     t_term := public.naco_normalize(q);
22920
22921     SELECT  CASE WHEN ash.sort_value LIKE t_term || '%' THEN 1 ELSE 0 END
22922                 + CASE WHEN ash.value LIKE t_term || '%' THEN 1 ELSE 0 END AS rank,
22923             ash.sort_value
22924     INTO  sort_value_row
22925     FROM  authority.simple_heading ash
22926     WHERE ash.atag = ANY (a)
22927             AND ash.sort_value >= t_term
22928             AND CASE thesauruses
22929                 WHEN '' THEN TRUE
22930                 ELSE ash.thesaurus = ANY(regexp_split_to_array(thesauruses, ','))
22931                 END
22932     ORDER BY rank DESC, ash.sort_value
22933     LIMIT 1;
22934
22935     SELECT  CASE WHEN ash.sort_value LIKE t_term || '%' THEN 1 ELSE 0 END
22936                 + CASE WHEN ash.value LIKE t_term || '%' THEN 1 ELSE 0 END AS rank,
22937             ash.sort_value
22938     INTO  value_row
22939     FROM  authority.simple_heading ash
22940     WHERE ash.atag = ANY (a)
22941             AND ash.value >= t_term
22942             AND CASE thesauruses
22943                 WHEN '' THEN TRUE
22944                 ELSE ash.thesaurus = ANY(regexp_split_to_array(thesauruses, ','))
22945                 END
22946     ORDER BY rank DESC, ash.sort_value
22947     LIMIT 1;
22948
22949     IF value_row.rank > sort_value_row.rank THEN
22950         RETURN value_row.sort_value;
22951     ELSE
22952         RETURN sort_value_row.sort_value;
22953     END IF;
22954 END;
22955 $$ LANGUAGE PLPGSQL;
22956
22957 CREATE OR REPLACE FUNCTION authority.simple_heading_browse_center( atag_list INT[], q TEXT, page INT DEFAULT 0, pagesize INT DEFAULT 9, thesauruses TEXT DEFAULT '' ) RETURNS SETOF BIGINT AS $$
22958 DECLARE
22959     pivot_sort_value    TEXT;
22960     boffset             INT DEFAULT 0;
22961     aoffset             INT DEFAULT 0;
22962     blimit              INT DEFAULT 0;
22963     alimit              INT DEFAULT 0;
22964 BEGIN
22965
22966     pivot_sort_value := authority.simple_heading_find_pivot(atag_list,q,thesauruses);
22967
22968     IF page = 0 THEN
22969         blimit := pagesize / 2;
22970         alimit := blimit;
22971
22972         IF pagesize % 2 <> 0 THEN
22973             alimit := alimit + 1;
22974         END IF;
22975     ELSE
22976         blimit := pagesize;
22977         alimit := blimit;
22978
22979         boffset := pagesize / 2;
22980         aoffset := boffset;
22981
22982         IF pagesize % 2 <> 0 THEN
22983             boffset := boffset + 1;
22984         END IF;
22985     END IF;
22986
22987     IF page <= 0 THEN
22988         -- "bottom" half of the browse results
22989         RETURN QUERY
22990             SELECT id FROM (
22991                 SELECT  ash.id,
22992                         row_number() over ()
22993                 FROM  authority.simple_heading ash
22994                 WHERE ash.atag = ANY (atag_list)
22995                         AND CASE thesauruses
22996                             WHEN '' THEN TRUE
22997                             ELSE ash.thesaurus = ANY(regexp_split_to_array(thesauruses, ','))
22998                             END
22999                         AND ash.sort_value < pivot_sort_value
23000                 ORDER BY ash.sort_value DESC
23001                 LIMIT blimit
23002                 OFFSET ABS(page) * pagesize - boffset
23003             ) x ORDER BY row_number DESC;
23004     END IF;
23005
23006     IF page >= 0 THEN
23007         -- "bottom" half of the browse results
23008         RETURN QUERY
23009             SELECT  ash.id
23010             FROM  authority.simple_heading ash
23011             WHERE ash.atag = ANY (atag_list)
23012                     AND CASE thesauruses
23013                         WHEN '' THEN TRUE
23014                         ELSE ash.thesaurus = ANY(regexp_split_to_array(thesauruses, ','))
23015                         END
23016                     AND ash.sort_value >= pivot_sort_value
23017             ORDER BY ash.sort_value
23018             LIMIT alimit
23019             OFFSET ABS(page) * pagesize - aoffset;
23020     END IF;
23021 END;
23022 $$ LANGUAGE PLPGSQL ROWS 10;
23023
23024 CREATE OR REPLACE FUNCTION authority.axis_browse_center( a TEXT, q TEXT, page INT DEFAULT 0, pagesize INT DEFAULT 9, thesauruses TEXT DEFAULT '' ) RETURNS SETOF BIGINT AS $$
23025     SELECT * FROM authority.simple_heading_browse_center(authority.axis_authority_tags($1), $2, $3, $4, $5)
23026 $$ LANGUAGE SQL ROWS 10;
23027
23028 CREATE OR REPLACE FUNCTION authority.btag_browse_center( a TEXT, q TEXT, page INT DEFAULT 0, pagesize INT DEFAULT 9, thesauruses TEXT DEFAULT '' ) RETURNS SETOF BIGINT AS $$
23029     SELECT * FROM authority.simple_heading_browse_center(authority.btag_authority_tags($1), $2, $3, $4, $5)
23030 $$ LANGUAGE SQL ROWS 10;
23031
23032 CREATE OR REPLACE FUNCTION authority.atag_browse_center( a TEXT, q TEXT, page INT DEFAULT 0, pagesize INT DEFAULT 9, thesauruses TEXT DEFAULT '' ) RETURNS SETOF BIGINT AS $$
23033     SELECT * FROM authority.simple_heading_browse_center(authority.atag_authority_tags($1), $2, $3, $4, $5)
23034 $$ LANGUAGE SQL ROWS 10;
23035
23036 CREATE OR REPLACE FUNCTION authority.axis_browse_center_refs( a TEXT, q TEXT, page INT DEFAULT 0, pagesize INT DEFAULT 9, thesauruses TEXT DEFAULT '' ) RETURNS SETOF BIGINT AS $$
23037     SELECT * FROM authority.simple_heading_browse_center(authority.axis_authority_tags_refs($1), $2, $3, $4, $5)
23038 $$ LANGUAGE SQL ROWS 10;
23039
23040 CREATE OR REPLACE FUNCTION authority.btag_browse_center_refs( a TEXT, q TEXT, page INT DEFAULT 0, pagesize INT DEFAULT 9, thesauruses TEXT DEFAULT '' ) RETURNS SETOF BIGINT AS $$
23041     SELECT * FROM authority.simple_heading_browse_center(authority.btag_authority_tags_refs($1), $2, $3, $4, $5)
23042 $$ LANGUAGE SQL ROWS 10;
23043
23044 CREATE OR REPLACE FUNCTION authority.atag_browse_center_refs( a TEXT, q TEXT, page INT DEFAULT 0, pagesize INT DEFAULT 9, thesauruses TEXT DEFAULT '' ) RETURNS SETOF BIGINT AS $$
23045     SELECT * FROM authority.simple_heading_browse_center(authority.atag_authority_tags_refs($1), $2, $3, $4, $5)
23046 $$ LANGUAGE SQL ROWS 10;
23047
23048
23049 CREATE OR REPLACE FUNCTION authority.simple_heading_browse_top( atag_list INT[], q TEXT, page INT DEFAULT 0, pagesize INT DEFAULT 10, thesauruses TEXT DEFAULT '' ) RETURNS SETOF BIGINT AS $$
23050 DECLARE
23051     pivot_sort_value    TEXT;
23052 BEGIN
23053
23054     pivot_sort_value := authority.simple_heading_find_pivot(atag_list,q,thesauruses);
23055
23056     IF page < 0 THEN
23057          -- "bottom" half of the browse results
23058         RETURN QUERY
23059             SELECT id FROM (
23060                 SELECT  ash.id,
23061                         row_number() over ()
23062                 FROM  authority.simple_heading ash
23063                 WHERE ash.atag = ANY (atag_list)
23064                         AND CASE thesauruses
23065                             WHEN '' THEN TRUE
23066                             ELSE ash.thesaurus = ANY(regexp_split_to_array(thesauruses, ','))
23067                             END
23068                         AND ash.sort_value < pivot_sort_value
23069                 ORDER BY ash.sort_value DESC
23070                 LIMIT pagesize
23071                 OFFSET (ABS(page) - 1) * pagesize
23072             ) x ORDER BY row_number DESC;
23073     END IF;
23074
23075     IF page >= 0 THEN
23076          -- "bottom" half of the browse results
23077         RETURN QUERY
23078             SELECT  ash.id
23079             FROM  authority.simple_heading ash
23080             WHERE ash.atag = ANY (atag_list)
23081                 AND CASE thesauruses
23082                     WHEN '' THEN TRUE
23083                     ELSE ash.thesaurus = ANY(regexp_split_to_array(thesauruses, ','))
23084                     END
23085                     AND ash.sort_value >= pivot_sort_value
23086             ORDER BY ash.sort_value
23087             LIMIT pagesize
23088             OFFSET ABS(page) * pagesize ;
23089     END IF;
23090 END;
23091 $$ LANGUAGE PLPGSQL ROWS 10;
23092
23093 CREATE OR REPLACE FUNCTION authority.axis_browse_top( a TEXT, q TEXT, page INT DEFAULT 0, pagesize INT DEFAULT 10, thesauruses TEXT DEFAULT '' ) RETURNS SETOF BIGINT AS $$
23094     SELECT * FROM authority.simple_heading_browse_top(authority.axis_authority_tags($1), $2, $3, $4, $5)
23095 $$ LANGUAGE SQL ROWS 10;
23096
23097 CREATE OR REPLACE FUNCTION authority.btag_browse_top( a TEXT, q TEXT, page INT DEFAULT 0, pagesize INT DEFAULT 10, thesauruses TEXT DEFAULT '' ) RETURNS SETOF BIGINT AS $$
23098     SELECT * FROM authority.simple_heading_browse_top(authority.btag_authority_tags($1), $2, $3, $4, $5)
23099 $$ LANGUAGE SQL ROWS 10;
23100
23101 CREATE OR REPLACE FUNCTION authority.atag_browse_top( a TEXT, q TEXT, page INT DEFAULT 0, pagesize INT DEFAULT 10, thesauruses TEXT DEFAULT '' ) RETURNS SETOF BIGINT AS $$
23102     SELECT * FROM authority.simple_heading_browse_top(authority.atag_authority_tags($1), $2, $3, $4, $5)
23103 $$ LANGUAGE SQL ROWS 10;
23104
23105 CREATE OR REPLACE FUNCTION authority.axis_browse_top_refs( a TEXT, q TEXT, page INT DEFAULT 0, pagesize INT DEFAULT 10, thesauruses TEXT DEFAULT '' ) RETURNS SETOF BIGINT AS $$
23106     SELECT * FROM authority.simple_heading_browse_top(authority.axis_authority_tags_refs($1), $2, $3, $4, $5)
23107 $$ LANGUAGE SQL ROWS 10;
23108
23109 CREATE OR REPLACE FUNCTION authority.btag_browse_top_refs( a TEXT, q TEXT, page INT DEFAULT 0, pagesize INT DEFAULT 10, thesauruses TEXT DEFAULT '' ) RETURNS SETOF BIGINT AS $$
23110     SELECT * FROM authority.simple_heading_browse_top(authority.btag_authority_tags_refs($1), $2, $3, $4, $5)
23111 $$ LANGUAGE SQL ROWS 10;
23112
23113 CREATE OR REPLACE FUNCTION authority.atag_browse_top_refs( a TEXT, q TEXT, page INT DEFAULT 0, pagesize INT DEFAULT 10, thesauruses TEXT DEFAULT '' ) RETURNS SETOF BIGINT AS $$
23114     SELECT * FROM authority.simple_heading_browse_top(authority.atag_authority_tags_refs($1), $2, $3, $4, $5)
23115 $$ LANGUAGE SQL ROWS 10;
23116
23117
23118 CREATE OR REPLACE FUNCTION authority.simple_heading_search_rank( atag_list INT[], q TEXT, page INT DEFAULT 0, pagesize INT DEFAULT 10, thesauruses TEXT DEFAULT '' ) RETURNS SETOF BIGINT AS $$
23119     SELECT  ash.id
23120       FROM  authority.simple_heading ash,
23121             public.naco_normalize($2) t(term),
23122             plainto_tsquery('keyword'::regconfig,$2) ptsq(term)
23123       WHERE ash.atag = ANY ($1)
23124             AND ash.index_vector @@ ptsq.term
23125             AND CASE $5
23126                 WHEN '' THEN TRUE
23127                 ELSE ash.thesaurus = ANY(regexp_split_to_array($5, ','))
23128                 END
23129       ORDER BY ts_rank_cd(ash.index_vector,ptsq.term,14)::numeric
23130                     + CASE WHEN ash.sort_value LIKE t.term || '%' THEN 2 ELSE 0 END
23131                     + CASE WHEN ash.value LIKE t.term || '%' THEN 1 ELSE 0 END DESC
23132       LIMIT $4
23133       OFFSET $4 * $3;
23134 $$ LANGUAGE SQL ROWS 10;
23135
23136 CREATE OR REPLACE FUNCTION authority.axis_search_rank( a TEXT, q TEXT, page INT DEFAULT 0, pagesize INT DEFAULT 10, thesauruses TEXT DEFAULT '' ) RETURNS SETOF BIGINT AS $$
23137     SELECT * FROM authority.simple_heading_search_rank(authority.axis_authority_tags($1), $2, $3, $4, $5)
23138 $$ LANGUAGE SQL ROWS 10;
23139
23140 CREATE OR REPLACE FUNCTION authority.btag_search_rank( a TEXT, q TEXT, page INT DEFAULT 0, pagesize INT DEFAULT 10, thesauruses TEXT DEFAULT '' ) RETURNS SETOF BIGINT AS $$
23141     SELECT * FROM authority.simple_heading_search_rank(authority.btag_authority_tags($1), $2, $3, $4, $5)
23142 $$ LANGUAGE SQL ROWS 10;
23143
23144 CREATE OR REPLACE FUNCTION authority.atag_search_rank( a TEXT, q TEXT, page INT DEFAULT 0, pagesize INT DEFAULT 10, thesauruses TEXT DEFAULT '' ) RETURNS SETOF BIGINT AS $$
23145     SELECT * FROM authority.simple_heading_search_rank(authority.atag_authority_tags($1), $2, $3, $4, $5)
23146 $$ LANGUAGE SQL ROWS 10;
23147
23148 CREATE OR REPLACE FUNCTION authority.axis_search_rank_refs( a TEXT, q TEXT, page INT DEFAULT 0, pagesize INT DEFAULT 10, thesauruses TEXT DEFAULT '' ) RETURNS SETOF BIGINT AS $$
23149     SELECT * FROM authority.simple_heading_search_rank(authority.axis_authority_tags_refs($1), $2, $3, $4, $5)
23150 $$ LANGUAGE SQL ROWS 10;
23151
23152 CREATE OR REPLACE FUNCTION authority.btag_search_rank_refs( a TEXT, q TEXT, page INT DEFAULT 0, pagesize INT DEFAULT 10, thesauruses TEXT DEFAULT '' ) RETURNS SETOF BIGINT AS $$
23153     SELECT * FROM authority.simple_heading_search_rank(authority.btag_authority_tags_refs($1), $2, $3, $4, $5)
23154 $$ LANGUAGE SQL ROWS 10;
23155
23156 CREATE OR REPLACE FUNCTION authority.atag_search_rank_refs( a TEXT, q TEXT, page INT DEFAULT 0, pagesize INT DEFAULT 10, thesauruses TEXT DEFAULT '' ) RETURNS SETOF BIGINT AS $$
23157     SELECT * FROM authority.simple_heading_search_rank(authority.atag_authority_tags_refs($1), $2, $3, $4, $5)
23158 $$ LANGUAGE SQL ROWS 10;
23159
23160
23161 CREATE OR REPLACE FUNCTION authority.simple_heading_search_heading( atag_list INT[], q TEXT, page INT DEFAULT 0, pagesize INT DEFAULT 10, thesauruses TEXT DEFAULT '' ) RETURNS SETOF BIGINT AS $$
23162     SELECT  ash.id
23163       FROM  authority.simple_heading ash,
23164             public.naco_normalize($2) t(term),
23165             plainto_tsquery('keyword'::regconfig,$2) ptsq(term)
23166       WHERE ash.atag = ANY ($1)
23167             AND ash.index_vector @@ ptsq.term
23168             AND CASE $5
23169                 WHEN '' THEN TRUE
23170                 ELSE ash.thesaurus = ANY(regexp_split_to_array($5, ','))
23171                 END
23172       ORDER BY ash.sort_value
23173       LIMIT $4
23174       OFFSET $4 * $3;
23175 $$ LANGUAGE SQL ROWS 10;
23176
23177 CREATE OR REPLACE FUNCTION authority.axis_search_heading( a TEXT, q TEXT, page INT DEFAULT 0, pagesize INT DEFAULT 10, thesauruses TEXT DEFAULT '' ) RETURNS SETOF BIGINT AS $$
23178     SELECT * FROM authority.simple_heading_search_heading(authority.axis_authority_tags($1), $2, $3, $4, $5)
23179 $$ LANGUAGE SQL ROWS 10;
23180
23181 CREATE OR REPLACE FUNCTION authority.btag_search_heading( a TEXT, q TEXT, page INT DEFAULT 0, pagesize INT DEFAULT 10, thesauruses TEXT DEFAULT '' ) RETURNS SETOF BIGINT AS $$
23182     SELECT * FROM authority.simple_heading_search_heading(authority.btag_authority_tags($1), $2, $3, $4, $5)
23183 $$ LANGUAGE SQL ROWS 10;
23184
23185 CREATE OR REPLACE FUNCTION authority.atag_search_heading( a TEXT, q TEXT, page INT DEFAULT 0, pagesize INT DEFAULT 10, thesauruses TEXT DEFAULT '' ) RETURNS SETOF BIGINT AS $$
23186     SELECT * FROM authority.simple_heading_search_heading(authority.atag_authority_tags($1), $2, $3, $4, $5)
23187 $$ LANGUAGE SQL ROWS 10;
23188
23189 CREATE OR REPLACE FUNCTION authority.axis_search_heading_refs( a TEXT, q TEXT, page INT DEFAULT 0, pagesize INT DEFAULT 10, thesauruses TEXT DEFAULT '' ) RETURNS SETOF BIGINT AS $$
23190     SELECT * FROM authority.simple_heading_search_heading(authority.axis_authority_tags_refs($1), $2, $3, $4, $5)
23191 $$ LANGUAGE SQL ROWS 10;
23192
23193 CREATE OR REPLACE FUNCTION authority.btag_search_heading_refs( a TEXT, q TEXT, page INT DEFAULT 0, pagesize INT DEFAULT 10, thesauruses TEXT DEFAULT '' ) RETURNS SETOF BIGINT AS $$
23194     SELECT * FROM authority.simple_heading_search_heading(authority.btag_authority_tags_refs($1), $2, $3, $4, $5)
23195 $$ LANGUAGE SQL ROWS 10;
23196
23197 CREATE OR REPLACE FUNCTION authority.atag_search_heading_refs( a TEXT, q TEXT, page INT DEFAULT 0, pagesize INT DEFAULT 10, thesauruses TEXT DEFAULT '' ) RETURNS SETOF BIGINT AS $$
23198     SELECT * FROM authority.simple_heading_search_heading(authority.atag_authority_tags_refs($1), $2, $3, $4, $5)
23199 $$ LANGUAGE SQL ROWS 10;
23200
23201
23202 \qecho
23203 \qecho Updating the thesaurus codes in authority.simple_heading;
23204 \qecho This may take a while in databases with many authority records.
23205 \qecho
23206 UPDATE authority.simple_heading a
23207 SET thesaurus = authority.extract_thesaurus(b.marc)
23208 FROM authority.record_entry b
23209 WHERE a.record = b.id;
23210
23211
23212 SELECT evergreen.upgrade_deps_block_check('0943', :eg_version);
23213
23214 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Type', 'ldr', 'AUT', 6, 1, 'z');
23215 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GeoDiv', '008', 'AUT', 6, 1, ' ');
23216 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Roman', '008', 'AUT', 7, 1, ' ');
23217 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('CatLang', '008', 'AUT', 8, 1, ' ');
23218 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Kind', '008', 'AUT', 9, 1, ' ');
23219 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Rules', '008', 'AUT', 10, 1, ' ');
23220 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Subj', '008', 'AUT', 11, 1, ' ');
23221 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Series', '008', 'AUT', 12, 1, ' ');
23222 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('SerNum', '008', 'AUT', 13, 1, ' ');
23223 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('NameUse', '008', 'AUT', 14, 1, ' ');
23224 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('SubjUse', '008', 'AUT', 15, 1, ' ');
23225 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('SerUse', '008', 'AUT', 16, 1, ' ');
23226 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('TypeSubd', '008', 'AUT', 17, 1, ' ');
23227 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('GovtAgn', '008', 'AUT', 28, 1, ' ');
23228 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('RefStatus', '008', 'AUT', 29, 1, ' ');
23229 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('UpdStatus', '008', 'AUT', 31, 1, ' ');
23230 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Name', '008', 'AUT', 32, 1, ' ');
23231 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Status', '008', 'AUT', 33, 1, ' ');
23232 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('ModRec', '008', 'AUT', 38, 1, ' ');
23233 INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type,start_pos, length, default_val) VALUES ('Source', '008', 'AUT', 39, 1, ' ');
23234
23235
23236 SELECT evergreen.upgrade_deps_block_check('0944', :eg_version);
23237
23238 INSERT INTO permission.perm_list (id, code, description)
23239     VALUES (
23240         563,
23241         'ADJUST_BILLS',
23242         oils_i18n_gettext(
23243             563,
23244             'Allow a user to adjust a bill (generally to zero)',
23245             'ppl',
23246             'description'
23247         )
23248     );
23249
23250 COMMIT;
23251