addLink
resourceType
$a
addLink
resourceType
property
leadingPunctuation
;
$b
addLink
resourceType
property
leadingPunctuation
:
$c
addProperty
leadingPunctuation
,
punctuationChars
.,;
$k
$l
$6
Exempel: -
MARC
[
  {
    "262": {
      "ind1": " ",
      "ind2": " ",
      "subfields": [
        {
          "a": "plats"
        },
        {
          "b": "agent"
        },
        {
          "c": "datum"
        }
      ]
    }
  }
]
Normalized MARC:
[
  {
    "264": {
      "ind1": " ",
      "ind2": "1",
      "subfields": [
        {
          "a": "plats :"
        },
        {
          "b": "agent,"
        },
        {
          "c": "datum"
        }
      ]
    }
  }
]
JSON-LD
{
  "mainEntity": {
    "publication": [
      {
        "@type": "Publication",
        "place": [
          {
            "@type": "Place",
            "label": "plats"
          }
        ],
        "agent": [
          {
            "@type": "Agent",
            "label": "agent"
          }
        ],
        "date": [
          "datum"
        ]
      }
    ]
  }
}