Skip to content

Commit

Permalink
Implementing MARC Update No. 31, December 2020 #103
Browse files Browse the repository at this point in the history
  • Loading branch information
pkiraly committed Oct 23, 2023
1 parent 5f7554b commit 8e033e0
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,12 @@ private void initialize() {
"i", "Technical specifications of medium", "R",
"j", "Generation", "R",
"k", "Layout", "R",
"l", "Binding", "R",
"m", "Book format", "R",
"n", "Font size", "R",
"o", "Polarity", "R",
"p", "Illustrative content", "R",
"q", "Reduction ratio designator", "R",
"0", "Authority record control number or standard number", "R",
"1", "Real World Object URI", "R",
"2", "Source", "NR",
Expand Down Expand Up @@ -122,6 +125,9 @@ private void initialize() {
getSubfield("k")
.setMqTag("layout");

getSubfield("l")
.setMqTag("binding");

getSubfield("m")
.setMqTag("bookFormat");

Expand All @@ -131,6 +137,12 @@ private void initialize() {
getSubfield("o")
.setMqTag("polarity");

getSubfield("p")
.setMqTag("illustrativeContent");

getSubfield("q")
.setMqTag("reductionRatio");

getSubfield("0")
.setMqTag("authorityRecordControlNumber")
.setContentParser(RecordControlNumberParser.getInstance());
Expand Down

0 comments on commit 8e033e0

Please sign in to comment.