addLink
$6
property
$a
about
_:topic
Exempel: -
MARC
{
  "651": {
    "ind1": " ",
    "ind2": "4",
    "subfields": [
      {
        "a": "Förenta staterna"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "instanceOf": {
      "@type": "Text",
      "subject": [
        {
          "@type": "Geographic",
          "prefLabel": "Förenta staterna"
        }
      ]
    }
  }
}
Exempel: Convert without any ind1 defined
MARC
{
  "651": {
    "ind2": "4",
    "subfields": [
      {
        "a": "Sverige"
      }
    ]
  }
}
Normalized MARC:
{
  "651": {
    "ind1": " ",
    "ind2": "4",
    "subfields": [
      {
        "a": "Sverige"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "instanceOf": {
      "@type": "Text",
      "subject": [
        {
          "@type": "Geographic",
          "prefLabel": "Sverige"
        }
      ]
    }
  }
}
Exempel: -
MARC
{
  "651": {
    "ind1": "1",
    "ind2": "4",
    "subfields": [
      {
        "a": "Förenta staterna"
      }
    ]
  }
}
Normalized MARC:
{
  "651": {
    "ind1": " ",
    "ind2": "4",
    "subfields": [
      {
        "a": "Förenta staterna"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "instanceOf": {
      "@type": "Text",
      "subject": [
        {
          "@type": "Geographic",
          "prefLabel": "Förenta staterna"
        }
      ]
    }
  }
}
Exempel: -
MARC
{
  "651": {
    "ind1": " ",
    "ind2": "7",
    "subfields": [
      {
        "a": "Sydafrika"
      },
      {
        "z": "Västra Kapprovinsen"
      },
      {
        "2": "sao"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "instanceOf": {
      "@type": "Text",
      "subject": [
        {
          "@type": "ComplexSubject",
          "@id": "https://id.kb.se/term/sao/Sydafrika--V%C3%A4stra%20Kapprovinsen",
          "inScheme": {
            "@id": "https://id.kb.se/term/sao",
            "@type": "ConceptScheme",
            "code": "sao"
          },
          "prefLabel": "Sydafrika--Västra Kapprovinsen",
          "termComponentList": [
            {
              "@type": "Geographic",
              "prefLabel": "Sydafrika"
            },
            {
              "@type": "GeographicSubdivision",
              "prefLabel": "Västra Kapprovinsen"
            }
          ]
        }
      ]
    }
  }
}
Exempel: -
MARC
{
  "651": {
    "ind1": " ",
    "ind2": "0",
    "subfields": [
      {
        "a": "Aix-en-Provence (France)"
      },
      {
        "x": "Social life and customs"
      },
      {
        "v": "Early works to 1800"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "instanceOf": {
      "@type": "Text",
      "subject": [
        {
          "@type": "ComplexSubject",
          "@id": "http://id.loc.gov/authorities/label/Aix-en-Provence%20%28France%29--Social%20life%20and%20customs--Early%20works%20to%201800",
          "prefLabel": "Aix-en-Provence (France)--Social life and customs--Early works to 1800",
          "inScheme": {
            "@id": "https://id.kb.se/term/lcsh",
            "@type": "ConceptScheme",
            "code": "lcsh"
          },
          "termComponentList": [
            {
              "@type": "Geographic",
              "prefLabel": "Aix-en-Provence (France)"
            },
            {
              "@type": "TopicSubdivision",
              "prefLabel": "Social life and customs"
            },
            {
              "@type": "GenreSubdivision",
              "prefLabel": "Early works to 1800"
            }
          ]
        }
      ]
    }
  }
}