fallbackEntity
?work
resourceType
i1
marcDefault
NOTE:LC
nac
tokenMap
0
marc:Subject
1
marc:Review
2
marc:ScopeAndContent
3
marc:Abstract
4
marc:ContentAdvice
8
marc:NoDisplayConstantGenerated
$a
property
$u
addLink
resourceType
addProperty
$2
$3
$6
property
Exempel: -
MARC
{
  "520": {
    "ind1": "2",
    "ind2": " ",
    "subfields": [
      {
        "u": "http://example.org/thing-page"
      },
      {
        "u": "http://example.org/another-thing-page"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "@type": "Instance",
    "summary": [
      {
        "@type": "Summary",
        "marc:summaryType": "marc:ScopeAndContent",
        "source": [
          {
            "@type": "Source",
            "uri": [
              "http://example.org/thing-page"
            ]
          },
          {
            "@type": "Source",
            "uri": [
              "http://example.org/another-thing-page"
            ]
          }
        ]
      }
    ]
  }
}
Exempel: -
MARC
{
  "520": {
    "ind1": " ",
    "ind2": " ",
    "subfields": [
      {
        "a": "Dom är tillbaka och den här gången är det full fart från början till slut."
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "@type": "Instance",
    "summary": [
      {
        "@type": "Summary",
        "label": "Dom är tillbaka och den här gången är det full fart från början till slut."
      }
    ]
  }
}
Exempel: -
Normalized MARC:
{
  "520": {
    "ind1": " ",
    "ind2": " ",
    "subfields": [
      {
        "a": "An illustrated collection of nursery rhymes set to music."
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "instanceOf": {
      "@type": "Text",
      "summary": [
        {
          "@type": "Summary",
          "label": [
            "An illustrated collection of nursery rhymes set to music."
          ]
        }
      ]
    }
  }
}
Exempel: -
Normalized MARC:
[
  {
    "520": {
      "ind1": " ",
      "ind2": " ",
      "subfields": [
        {
          "a": "Sammanfattning Instans"
        }
      ]
    }
  },
  {
    "520": {
      "ind1": " ",
      "ind2": " ",
      "subfields": [
        {
          "a": "Sammanfattning Verk"
        }
      ]
    }
  }
]
JSON-LD
{
  "mainEntity": {
    "summary": [
      {
        "@type": "Summary",
        "label": "Sammanfattning Instans"
      }
    ],
    "instanceOf": {
      "@type": "Text",
      "summary": [
        {
          "@type": "Summary",
          "label": "Sammanfattning Verk"
        }
      ]
    }
  }
}