$a
property
$b
addProperty
{ "@id": "https://id.kb.se/vocab/marc:textualAssistiveFeatures" }
$c
addProperty
{ "@id": "https://id.kb.se/vocab/marc:visualAssistiveFeatures" }
$d
addProperty
{ "@id": "https://id.kb.se/vocab/marc:auditoryAssistiveFeatures" }
$e
addProperty
{ "@id": "https://id.kb.se/vocab/marc:tactileAssistiveFeatures" }
$2
link
resourceType
property
supplementary
true
$3
supplementary
true
$6
ignored
true
NOTE:LC
ignore
Exempel: -
MARC
{
  "341": {
    "ind1": "0",
    "ind2": " ",
    "subfields": [
      {
        "a": "auditory"
      },
      {
        "b": "captions"
      },
      {
        "2": "[code for accessibility feature]"
      }
    ]
  }
}
Normalized MARC:
{
  "341": {
    "ind1": " ",
    "ind2": " ",
    "subfields": [
      {
        "a": "auditory"
      },
      {
        "b": "captions"
      },
      {
        "2": "[code for accessibility feature]"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "instanceOf": {
      "@type": "Text",
      "contentAccessibility": [
        {
          "@type": "ContentAccessibility",
          "label": "auditory",
          "marc:textualAssistiveFeatures": [
            "captions"
          ],
          "source": {
            "@type": "Source",
            "code": "[code for accessibility feature]"
          }
        }
      ]
    }
  }
}