resourceType
aboutAlias
_:contribution
i1
marcDefault
2
FIXME
Change subfield order in specs. Bug in orderedAndGroupedSubfields
TODO:$j
$6
property
$n
about
_:agent
addProperty
punctuationChars
,
$0
about
_:agent
addProperty
Exempel: -
MARC
{
  "111": {
    "ind1": "1",
    "ind2": " ",
    "subfields": [
      {
        "a": "Paris"
      },
      {
        "q": "Peace Conference"
      },
      {
        "d": "1919"
      },
      {
        "g": "Projected, not held"
      }
    ]
  }
}
Normalized MARC:
{
  "111": {
    "ind1": "2",
    "ind2": " ",
    "subfields": [
      {
        "a": "Paris"
      },
      {
        "q": "Peace Conference"
      },
      {
        "d": "1919"
      },
      {
        "g": "Projected, not held"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "instanceOf": {
      "@type": "Text",
      "contribution": [
        {
          "@type": "PrimaryContribution",
          "agent": {
            "@type": "Meeting",
            "name": "Paris",
            "additionalName": "Peace Conference",
            "date": [
              "1919"
            ],
            "comment": [
              "Projected, not held"
            ]
          }
        }
      ]
    }
  }
}
Exempel: -
MARC
{
  "111": {
    "ind1": "2",
    "ind2": " ",
    "subfields": [
      {
        "a": "World Peace Conference"
      },
      {
        "n": "1st"
      },
      {
        "d": "1959"
      },
      {
        "e": "Delegation from Sweden"
      },
      {
        "c": "Paris, France"
      }
    ]
  }
}
Normalized MARC:
{
  "111": {
    "ind1": "2",
    "ind2": " ",
    "subfields": [
      {
        "a": "World Peace Conference"
      },
      {
        "n": "1st"
      },
      {
        "d": "1959"
      },
      {
        "c": "Paris, France"
      },
      {
        "e": "Delegation from Sweden"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "instanceOf": {
      "@type": "Text",
      "contribution": [
        {
          "@type": "PrimaryContribution",
          "agent": {
            "@type": "Meeting",
            "date": [
              "1959"
            ],
            "name": "World Peace Conference",
            "marc:numeration": [
              "1st"
            ],
            "place": [
              {
                "@type": "Place",
                "label": "Paris, France"
              }
            ],
            "marc:subordinateUnit": [
              "Delegation from Sweden"
            ]
          }
        }
      ]
    }
  }
}
Exempel: -
MARC
{
  "111": {
    "ind1": "2",
    "ind2": " ",
    "subfields": [
      {
        "a": "Conference on Occupational Health Issues Affecting Secretarial and Clerical Personnel"
      },
      {
        "d": "1981"
      },
      {
        "e": "2nd"
      },
      {
        "c": "Cincinatti, Ohio"
      },
      {
        "j": "author"
      },
      {
        "4": "aut"
      }
    ]
  }
}
Normalized MARC:
{
  "111": {
    "ind1": "2",
    "ind2": " ",
    "subfields": [
      {
        "a": "Conference on Occupational Health Issues Affecting Secretarial and Clerical Personnel"
      },
      {
        "d": "1981"
      },
      {
        "c": "Cincinatti, Ohio"
      },
      {
        "e": "2nd"
      },
      {
        "j": "author"
      },
      {
        "4": "aut"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "instanceOf": {
      "@type": "Text",
      "contribution": [
        {
          "@type": "PrimaryContribution",
          "agent": {
            "@type": "Meeting",
            "date": [
              "1981"
            ],
            "name": "Conference on Occupational Health Issues Affecting Secretarial and Clerical Personnel",
            "marc:subordinateUnit": [
              "2nd"
            ],
            "place": [
              {
                "@type": "Place",
                "label": "Cincinatti, Ohio"
              }
            ]
          },
          "role": [
            {
              "@type": "Role",
              "label": "author"
            },
            {
              "@type": "Role",
              "@id": "https://id.kb.se/relator/aut",
              "code": "aut"
            }
          ]
        }
      ]
    }
  }
}