TODO:inherit?
730
match
0
when
i2=2
addLink
resourceType
aboutAlias
_:work
$n
about
_:title
addProperty
punctuationChars
,
addLink
resourceType
$a
about
_:title
property
$6
property
Exempel: -
MARC
{
  "740": {
    "ind1": " ",
    "ind2": "2",
    "subfields": [
      {
        "a": "Economics library selections"
      },
      {
        "n": "Series 1,"
      },
      {
        "p": "New books in economics"
      }
    ]
  }
}
Normalized MARC:
{
  "740": {
    "ind1": "0",
    "ind2": "2",
    "subfields": [
      {
        "a": "Economics library selections"
      },
      {
        "n": "Series 1"
      },
      {
        "p": "New books in economics"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "hasPart": [
      {
        "@type": "Work",
        "hasTitle": [
          {
            "@type": "Title",
            "mainTitle": "Economics library selections",
            "partName": [
              "New books in economics"
            ],
            "partNumber": [
              "Series 1"
            ]
          }
        ]
      }
    ]
  }
}
Exempel: -
MARC
{
  "740": {
    "ind1": "3",
    "ind2": " ",
    "subfields": [
      {
        "a": "En hjälpande hand"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "relationship": [
      {
        "@type": "Relationship",
        "entity": {
          "@type": "Work",
          "hasTitle": [
            {
              "@type": "Title",
              "mainTitle": "En hjälpande hand",
              "marc:nonfilingChars": "3"
            }
          ]
        }
      }
    ]
  }
}