$a
punctuationChars
/
$3
resourceType
property
NOTE
Qualified with related property to avoid collision when put directly on top-level resource!
$6
NOTE
Qualified with field to avoid collision when put directly on top-level resource!
NOTE:record-count
2
$8
NOTE
Qualified with field to avoid collision when put directly on top-level resource!
NOTE:record-count
0
Exempel: -
MARC
{
  "250": {
    "ind1": " ",
    "ind2": " ",
    "subfields": [
      {
        "a": "New ed."
      },
      {
        "b": "2. pr."
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "editionStatement": "New ed.",
    "editionStatementRemainder": "2. pr."
  }
}
Exempel: -
MARC
{
  "250": {
    "ind1": " ",
    "ind2": " ",
    "subfields": [
      {
        "a": "New ed. /"
      }
    ]
  }
}
Normalized MARC:
{
  "250": {
    "ind1": " ",
    "ind2": " ",
    "subfields": [
      {
        "a": "New ed."
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "editionStatement": "New ed."
  }
}
Exempel: Repeated 250: added to list and for now only the first value will be exported
MARC
[
  {
    "250": {
      "ind1": " ",
      "ind2": " ",
      "subfields": [
        {
          "a": "New"
        }
      ]
    }
  },
  {
    "250": {
      "ind1": " ",
      "ind2": " ",
      "subfields": [
        {
          "a": "Newer"
        }
      ]
    }
  }
]
Normalized MARC:
{
  "250": {
    "ind1": " ",
    "ind2": " ",
    "subfields": [
      {
        "a": "New"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "editionStatement": [
      "New",
      "Newer"
    ]
  }
}