$a
about
_:event
punctuationChars
:
NOTE
Talks about the subject but need to be kept together with the Activity for now since in MARC it is repeatable and *could* talk about the object depending on praxis.
NOTE:LC
I - carrier - Carrier - rdfs:label
$b
about
_:event
addLink
resourceType
property
punctuationChars
:
$c
about
_:event
addLink
resourceType
property
infer
true
punctuationChars
,
$d
about
_:event
property
$e
ignoreOnRevert
true
addLink
resourceType
property
NOTE:marc-repeatable
false
NOTE
should be part of the subject
NOTE:record-count
342
$f
ignoreOnRevert
true
resourceType
property
$m
ignoreOnRevert
true
addLink
resourceType
property
NOTE:record-count
4
$n
ignoreOnRevert
true
about
_:event
addLink
resourceType
property
NOTE:LC
I - note - Note - rdfs:label
NOTE:record-count
741721
$3
ignoreOnRevert
true
resourceType
property
$5
ignoreOnRevert
true
resourceType
property
$7
ignoreOnRevert
true
NOTE:LC
ignore
NOTE
contain important year?
Exempel: Reproduction
MARC
{
  "533": {
    "ind1": " ",
    "ind2": " ",
    "subfields": [
      {
        "a": "Digitalt faksimil och elektronisk text"
      },
      {
        "c": "Litteraturbanken"
      },
      {
        "d": "2010"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "production": [
      {
        "@type": "Reproduction",
        "typeNote": "Digitalt faksimil och elektronisk text",
        "date": "2010",
        "agent": [
          {
            "@type": "Agent",
            "label": "Litteraturbanken"
          }
        ]
      }
    ]
  }
}
Exempel: Digital reproduction
Normalized MARC:
{
  "533": {
    "ind1": " ",
    "ind2": " ",
    "subfields": [
      {
        "b": "Stockholm"
      },
      {
        "c": "Kungliga biblioteket"
      },
      {
        "d": "2019"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "production": [
      {
        "@type": "DigitalReproduction",
        "place": [
          {
            "@type": "Place",
            "label": "Stockholm"
          }
        ],
        "date": "2019",
        "agent": [
          {
            "@type": "Agent",
            "label": "Kungliga biblioteket"
          }
        ]
      }
    ]
  }
}
Exempel: Should ignore specific properties on revert - Example from tb444ns50lj3j6h
MARC
[
  {
    "490": {
      "ind1": "1",
      "ind2": " ",
      "subfields": [
        {
          "a": "Early English books online"
        }
      ]
    }
  },
  {
    "533": {
      "ind1": " ",
      "ind2": " ",
      "subfields": [
        {
          "a": "Electronic reproduction."
        },
        {
          "b": "Ann Arbor, Mich."
        },
        {
          "c": "UMI"
        },
        {
          "d": "1999-"
        },
        {
          "f": "(Early English books online)"
        },
        {
          "n": "Digital version of: (Early English books, 1475-1640 ; 589:02)"
        },
        {
          "7": "s1999 miun s"
        }
      ]
    }
  }
]
Normalized MARC:
[
  {
    "490": {
      "ind1": "1",
      "ind2": " ",
      "subfields": [
        {
          "a": "Early English books online"
        }
      ]
    }
  },
  {
    "533": {
      "ind1": " ",
      "ind2": " ",
      "subfields": [
        {
          "a": "Electronic reproduction."
        },
        {
          "b": "Ann Arbor, Mich."
        },
        {
          "c": "UMI"
        },
        {
          "d": "1999-"
        }
      ]
    }
  }
]
JSON-LD
{
  "mainEntity": {
    "marc:fixedLengthDataElementsOfReproduction": "s1999 miun s",
    "production": [
      {
        "@type": "Reproduction",
        "agent": [
          {
            "@type": "Agent",
            "label": "UMI"
          }
        ],
        "date": "1999-",
        "hasNote": [
          {
            "@type": "Note",
            "label": "Digital version of: (Early English books, 1475-1640 ; 589:02)"
          }
        ],
        "place": [
          {
            "@type": "Place",
            "label": "Ann Arbor, Mich."
          }
        ],
        "typeNote": "Electronic reproduction."
      }
    ],
    "seriesMembership": [
      {
        "@type": "SeriesMembership",
        "marc:seriesTracingPolicy": "1",
        "seriesStatement": [
          "Early English books online"
        ]
      },
      {
        "@type": "SeriesMembership",
        "seriesStatement": "(Early English books online)"
      }
    ]
  }
}