resourceType
aboutAlias
_:contribution
$6
property
$0
about
_:agent
addProperty
Exempel: -
MARC
{
  "100": {
    "ind1": "1",
    "ind2": " ",
    "subfields": [
      {
        "a": "Jansson, Tove,"
      },
      {
        "d": "1914-2001"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "instanceOf": {
      "@type": "Text",
      "contribution": [
        {
          "@type": "PrimaryContribution",
          "agent": {
            "@type": "Person",
            "familyName": "Jansson",
            "givenName": "Tove",
            "lifeSpan": "1914-2001"
          }
        }
      ]
    }
  }
}
Exempel: -
MARC
{
  "100": {
    "ind1": "0",
    "ind2": " ",
    "subfields": [
      {
        "a": "Dr. X."
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "instanceOf": {
      "@type": "Text",
      "contribution": [
        {
          "@type": "PrimaryContribution",
          "agent": {
            "@type": "Person",
            "name": "Dr. X."
          }
        }
      ]
    }
  }
}
Exempel: -
MARC
{
  "100": {
    "ind1": "0",
    "ind2": " ",
    "subfields": [
      {
        "a": "Haakon"
      },
      {
        "b": "IV Haakonsson, "
      },
      {
        "c": "King of Norway, "
      },
      {
        "d": "1204-1263, "
      },
      {
        "e": "author."
      },
      {
        "4": "aut"
      }
    ]
  }
}
Normalized MARC:
{
  "100": {
    "ind1": "0",
    "ind2": " ",
    "subfields": [
      {
        "a": "Haakon"
      },
      {
        "b": "IV Haakonsson,"
      },
      {
        "c": "King of Norway,"
      },
      {
        "d": "1204-1263"
      },
      {
        "e": "author."
      },
      {
        "4": "aut"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "instanceOf": {
      "@type": "Text",
      "contribution": [
        {
          "@type": "PrimaryContribution",
          "agent": {
            "@type": "Person",
            "marc:numeration": "IV Haakonsson",
            "marc:titlesAndOtherWordsAssociatedWithAName": [
              "King of Norway"
            ],
            "name": "Haakon",
            "lifeSpan": "1204-1263"
          },
          "role": [
            {
              "@type": "Role",
              "label": "author."
            },
            {
              "@type": "Role",
              "@id": "https://id.kb.se/relator/aut",
              "code": "aut"
            }
          ]
        }
      ]
    }
  }
}
Exempel: -
MARC
{
  "100": {
    "ind1": "3",
    "ind2": " ",
    "subfields": [
      {
        "a": "Bexelius"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "instanceOf": {
      "@type": "Text",
      "contribution": [
        {
          "@type": "PrimaryContribution",
          "agent": {
            "@type": "Family",
            "name": "Bexelius"
          }
        }
      ]
    }
  }
}
Exempel: -
MARC
{
  "100": {
    "ind1": "1",
    "ind2": " ",
    "subfields": [
      {
        "a": "Andersson, Lars"
      },
      {
        "c": "arkeolog"
      },
      {
        "d": "1961-"
      }
    ]
  }
}
Normalized MARC:
{
  "100": {
    "ind1": "1",
    "ind2": " ",
    "subfields": [
      {
        "a": "Andersson, Lars,"
      },
      {
        "c": "arkeolog,"
      },
      {
        "d": "1961-"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "instanceOf": {
      "@type": "Text",
      "contribution": [
        {
          "@type": "PrimaryContribution",
          "agent": {
            "@type": "Person",
            "familyName": "Andersson",
            "givenName": "Lars",
            "lifeSpan": "1961-",
            "marc:titlesAndOtherWordsAssociatedWithAName": [
              "arkeolog"
            ]
          }
        }
      ]
    }
  }
}
Exempel: -
MARC
{
  "100": {
    "ind1": "0",
    "ind2": " ",
    "subfields": [
      {
        "a": "Andersson,"
      },
      {
        "c": "arkeolog,"
      },
      {
        "d": "1961-"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "instanceOf": {
      "@type": "Text",
      "contribution": [
        {
          "@type": "PrimaryContribution",
          "agent": {
            "@type": "Person",
            "name": "Andersson",
            "lifeSpan": "1961-",
            "marc:titlesAndOtherWordsAssociatedWithAName": [
              "arkeolog"
            ]
          }
        }
      ]
    }
  }
}
Exempel: -
MARC
{
  "100": {
    "ind1": "1",
    "ind2": " ",
    "subfields": [
      {
        "a": "Wetherell, Elizabeth"
      },
      {
        "g": "pseud. för Susan Warner."
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "instanceOf": {
      "@type": "Text",
      "contribution": [
        {
          "@type": "PrimaryContribution",
          "agent": {
            "@type": "Person",
            "comment": [
              "pseud. för Susan Warner."
            ],
            "familyName": "Wetherell",
            "givenName": "Elizabeth"
          }
        }
      ]
    }
  }
}