match
0
when
$t & i1=2 & i2=2
1
when
$t & i2=2
2
when
$t
$j
about
_:contribution
addLink
resourceType
property
3
resourceType
aboutAlias
_:contribution
i1
marcDefault
2
$6
property
Exempel: -
MARC
{
  "711": {
    "ind1": "2",
    "ind2": " ",
    "subfields": [
      {
        "a": "Mostly Mozart Festival."
      },
      {
        "e": "Orchestra."
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "instanceOf": {
      "@type": "Text",
      "contribution": [
        {
          "@type": "Contribution",
          "agent": {
            "@type": "Meeting",
            "name": "Mostly Mozart Festival.",
            "marc:subordinateUnit": [
              "Orchestra."
            ]
          }
        }
      ]
    }
  }
}
Exempel: -
MARC
{
  "711": {
    "ind1": "2",
    "ind2": " ",
    "subfields": [
      {
        "a": "Olympic Games."
      },
      {
        "n": "21st :"
      },
      {
        "d": "1976:"
      },
      {
        "c": "Montréal, Québec)."
      },
      {
        "e": "Organizing Committee."
      },
      {
        "e": "Arts and Culture Program."
      },
      {
        "e": "Visual Arts Section."
      },
      {
        "j": "author."
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "instanceOf": {
      "@type": "Text",
      "contribution": [
        {
          "@type": "Contribution",
          "agent": {
            "@type": "Meeting",
            "name": "Olympic Games.",
            "place": [
              {
                "@type": "Place",
                "label": "Montréal, Québec)."
              }
            ],
            "marc:numeration": [
              "21st :"
            ],
            "date": [
              "1976:"
            ],
            "marc:subordinateUnit": [
              "Organizing Committee.",
              "Arts and Culture Program.",
              "Visual Arts Section."
            ]
          },
          "role": [
            {
              "@type": "Role",
              "label": "author."
            }
          ]
        }
      ]
    }
  }
}
Exempel: -
MARC
{
  "711": {
    "ind1": "2",
    "ind2": "2",
    "subfields": [
      {
        "a": "Vatican Council"
      },
      {
        "n": "(2nd :"
      },
      {
        "d": "1962-1965 :"
      },
      {
        "c": "Basilica di San Pietro in Vaticano)."
      },
      {
        "t": "Constitutio pastoralis de ecclesia in mundo huius temporis."
      },
      {
        "x": "1111-1111"
      }
    ]
  }
}
Normalized MARC:
{
  "711": {
    "ind1": "2",
    "ind2": "2",
    "subfields": [
      {
        "a": "Vatican Council"
      },
      {
        "n": "(2nd :"
      },
      {
        "d": "1962-1965 :"
      },
      {
        "c": "Basilica di San Pietro in Vaticano)."
      },
      {
        "t": "Constitutio pastoralis de ecclesia in mundo huius temporis."
      },
      {
        "x": "1111-1111"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "instanceOf": {
      "@type": "Text",
      "hasPart": [
        {
          "@type": "Work",
          "hasTitle": [
            {
              "@type": "Title",
              "mainTitle": "Constitutio pastoralis de ecclesia in mundo huius temporis."
            }
          ],
          "identifiedBy": [
            {
              "@type": "ISSN",
              "value": "1111-1111"
            }
          ],
          "contribution": [
            {
              "@type": "PrimaryContribution",
              "agent": {
                "@type": "Meeting",
                "name": "Vatican Council",
                "place": [
                  {
                    "@type": "Place",
                    "label": "Basilica di San Pietro in Vaticano)."
                  }
                ],
                "marc:numeration": [
                  "(2nd :"
                ],
                "date": [
                  "1962-1965 :"
                ]
              }
            }
          ]
        }
      ]
    }
  }
}
Exempel: -
MARC
{
  "711": {
    "ind1": "2",
    "ind2": " ",
    "subfields": [
      {
        "a": "Westminster Assembly,"
      },
      {
        "n": "10"
      },
      {
        "t": "Larger catechism."
      },
      {
        "x": "2222-2222"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "instanceOf": {
      "@type": "Text",
      "relationship": [
        {
          "@type": "Relationship",
          "entity": {
            "@type": "Work",
            "hasTitle": [
              {
                "@type": "Title",
                "mainTitle": "Larger catechism."
              }
            ],
            "identifiedBy": [
              {
                "@type": "ISSN",
                "value": "2222-2222"
              }
            ],
            "contribution": [
              {
                "@type": "PrimaryContribution",
                "agent": {
                  "@type": "Meeting",
                  "name": "Westminster Assembly",
                  "marc:numeration": [
                    "10"
                  ]
                }
              }
            ]
          }
        }
      ]
    }
  }
}