addLink
resourceType
embedded
true
i1
ignored
true
marcDefault
1
i2
property
overwrite
true
TODO:if _
use $i
tokenMap
0
TitlePortion
1
ParallelTitle
2
DistinctiveTitle
4
CoverTitle
5
AddedTitlePageTitle
6
CaptionTitle
7
RunningTitle
8
SpineTitle
VariantTitle
marcDefault
$i
Exempel: -
MARC
{
  "246": {
    "ind1": "1",
    "ind2": "6",
    "subfields": [
      {
        "a": "Newspaper index"
      },
      {
        "f": "January 1982-"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "hasTitle": [
      {
        "@type": "CaptionTitle",
        "mainTitle": "Newspaper index",
        "coverage": "January 1982-"
      }
    ]
  }
}
Exempel: -
MARC
{
  "246": {
    "ind1": "0",
    "ind2": " ",
    "subfields": [
      {
        "i": "At head of title:"
      },
      {
        "a": "Science and public affairs"
      },
      {
        "f": "January 1970-April 1974"
      }
    ]
  }
}
Normalized MARC:
{
  "246": {
    "ind1": "1",
    "ind2": " ",
    "subfields": [
      {
        "i": "At head of title:"
      },
      {
        "a": "Science and public affairs"
      },
      {
        "f": "January 1970-April 1974"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "hasTitle": [
      {
        "@type": "VariantTitle",
        "typeNote": "At head of title:",
        "mainTitle": "Science and public affairs",
        "coverage": "January 1970-April 1974"
      }
    ]
  }
}
Exempel: -
MARC
{
  "246": {
    "ind1": " ",
    "ind2": "3",
    "subfields": [
      {
        "a": "Science and public affairs"
      }
    ]
  }
}
Normalized MARC:
{
  "246": {
    "ind1": "1",
    "ind2": " ",
    "subfields": [
      {
        "a": "Science and public affairs"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "hasTitle": [
      {
        "@type": "VariantTitle",
        "mainTitle": "Science and public affairs"
      }
    ]
  }
}