i1
tokenMap
sequenceStatus
marcDefault
match
0
when
i2=0
addLink
resourceType
1
when
i2=1
addLink
resourceType
2
when
i2=2
addLink
resourceType
3
when
i2=3
addLink
resourceType
4
when
i2=4
addLink
resourceType
TODO
TODO
Only $c? There *might* be other facts; drop those?
$a
$b
$c
punctuationChars
,;
embedded
true
repeatable
true
$6
property
$3
resourceType
property
trailingPunctuation
:
Exempel: -
MARC
[
  {
    "264": {
      "ind1": " ",
      "ind2": "1",
      "subfields": [
        {
          "a": "Stockholm :"
        },
        {
          "b": "Bonnier,"
        },
        {
          "c": "1996"
        }
      ]
    }
  },
  {
    "264": {
      "ind1": " ",
      "ind2": "3",
      "subfields": [
        {
          "a": "Finland"
        }
      ]
    }
  }
]
JSON-LD
{
  "mainEntity": {
    "publication": [
      {
        "@type": "Publication",
        "place": {
          "@type": "Place",
          "label": "Stockholm"
        },
        "agent": {
          "@type": "Agent",
          "label": "Bonnier"
        },
        "year": "1996"
      }
    ],
    "manufacture": [
      {
        "@type": "Manufacture",
        "place": {
          "@type": "Place",
          "label": "Finland"
        }
      }
    ]
  }
}
Exempel: -
MARC
[
  {
    "264": {
      "ind1": " ",
      "ind2": "1",
      "subfields": [
        {
          "a": "Stockholm"
        },
        {
          "b": "Bonnier"
        },
        {
          "c": "1996"
        },
        {
          "a": "Stockholm"
        },
        {
          "b": "Wolters Kluwer"
        }
      ]
    }
  },
  {
    "264": {
      "ind1": " ",
      "ind2": "4",
      "subfields": [
        {
          "a": "Hoboken, New Jersey"
        },
        {
          "b": "Wiley,"
        },
        {
          "c": "[2012]"
        }
      ]
    }
  }
]
Normalized MARC:
[
  {
    "264": {
      "ind1": " ",
      "ind2": "1",
      "subfields": [
        {
          "a": "Stockholm :"
        },
        {
          "b": "Bonnier ;"
        },
        {
          "a": "Stockholm :"
        },
        {
          "b": "Wolters Kluwer,"
        },
        {
          "c": "1996"
        }
      ]
    }
  },
  {
    "264": {
      "ind1": " ",
      "ind2": "4",
      "subfields": [
        {
          "a": "Hoboken, New Jersey :"
        },
        {
          "b": "Wiley,"
        },
        {
          "c": "[2012]"
        }
      ]
    }
  }
]
JSON-LD
{
  "mainEntity": {
    "copyright": [
      {
        "@type": "Copyright",
        "place": {
          "@type": "Place",
          "label": "Hoboken, New Jersey"
        },
        "agent": {
          "@type": "Agent",
          "label": "Wiley"
        },
        "date": "[2012]"
      }
    ],
    "publication": [
      {
        "@type": "Publication",
        "hasPart": [
          {
            "@type": "Publication",
            "place": {
              "@type": "Place",
              "label": "Stockholm"
            },
            "agent": {
              "@type": "Agent",
              "label": "Bonnier"
            }
          },
          {
            "@type": "Publication",
            "place": {
              "@type": "Place",
              "label": "Stockholm"
            },
            "agent": {
              "@type": "Agent",
              "label": "Wolters Kluwer"
            }
          }
        ],
        "year": "1996"
      }
    ]
  }
}