TODO
LC converts to Item enitity, implications?
i1
marcDefault
tokenMap
0
true
$a
property
$b
ignored
true
NOTE:LC
$b - Jurisdiction (NR) nac
$c
$d
property
$e
resourceType
property
$f
property
$h
$n
addProperty
$o
addLink
resourceType
property
$3
$5
resourceType
property
NOTE:local
Används ej
Exempel: With indicator 1 set to 0
MARC
{
  "541": {
    "ind1": "0",
    "ind2": " ",
    "subfields": [
      {
        "a": "Foo"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "marc:hasImmediateSourceOfAcquisitionNote": [
      {
        "@type": "marc:ImmediateSourceOfAcquisitionNote",
        "label": "Foo",
        "marc:isPrivate": true
      }
    ]
  }
}
Exempel: With indicator 1 set to blank
MARC
{
  "541": {
    "ind1": " ",
    "ind2": " ",
    "subfields": [
      {
        "a": "Foo"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "marc:hasImmediateSourceOfAcquisitionNote": [
      {
        "@type": "marc:ImmediateSourceOfAcquisitionNote",
        "label": "Foo"
      }
    ]
  }
}
Exempel: With indicator 1 set to 1
MARC
{
  "541": {
    "ind1": "1",
    "ind2": " ",
    "subfields": [
      {
        "a": "Foo"
      }
    ]
  }
}
Normalized MARC:
{
  "541": {
    "ind1": " ",
    "ind2": " ",
    "subfields": [
      {
        "a": "Foo"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "marc:hasImmediateSourceOfAcquisitionNote": [
      {
        "@type": "marc:ImmediateSourceOfAcquisitionNote",
        "label": "Foo"
      }
    ]
  }
}