embedded
true
addLink
resourceType
fallbackEntity
?thing
i1
marcDefault
tokenMap
0
marc:ReadingGradeLevel
1
marc:InterestAgeLevel
2
marc:InterestGradeLevel
3
marc:SpecialAudienceCharacteristics
4
marc:MotivationInterestLevel
8
marc:NoDisplayConstantGenerated
$a
property
$b
link
resourceType
property
$3
$6
property
Exempel: Instance With blank indicator 1
Normalized MARC:
{
  "521": {
    "ind1": " ",
    "ind2": " ",
    "subfields": [
      {
        "a": "foo bar"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "instanceOf": {
      "@type": "Text"
    },
    "intendedAudience": [
      {
        "@type": "IntendedAudience",
        "label": "foo bar"
      }
    ]
  }
}
Exempel: Work With blank indicator 1
MARC
{
  "521": {
    "ind1": " ",
    "ind2": " ",
    "subfields": [
      {
        "a": "foo bar"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "instanceOf": {
      "@type": "Text",
      "intendedAudience": [
        {
          "@type": "IntendedAudience",
          "label": "foo bar"
        }
      ]
    }
  }
}
Exempel: With indicator 1 set to 0
MARC
{
  "521": {
    "ind1": "0",
    "ind2": " ",
    "subfields": [
      {
        "a": "Baz"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "instanceOf": {
      "@type": "Text",
      "intendedAudience": [
        {
          "@type": "IntendedAudience",
          "label": "Baz",
          "marc:audienceType": "marc:ReadingGradeLevel"
        }
      ]
    }
  }
}