match
0
when
i2=2
addLink
resourceType
aboutAlias
_:work
$i
addLink
resourceType
property
$x
resourceType
property
punctuationChars
.,=;
NOTE:marc-repeatable
false
addLink
resourceType
$6
property
$i
addLink
resourceType
property
$a
about
_:title
property
$d
about
_:work
$0
about
_:work
addProperty
Exempel: -
MARC
{
  "730": {
    "ind1": " ",
    "ind2": " ",
    "subfields": [
      {
        "a": "Abyss (Motion picture : 1989)"
      },
      {
        "i": "Novelization of (work)"
      }
    ]
  }
}
Normalized MARC:
{
  "730": {
    "ind1": "0",
    "ind2": " ",
    "subfields": [
      {
        "i": "Novelization of (work)"
      },
      {
        "a": "Abyss (Motion picture : 1989)"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "instanceOf": {
      "@type": "Text",
      "relationship": [
        {
          "@type": "Relationship",
          "entity": {
            "@type": "Work",
            "hasTitle": [
              {
                "@type": "Title",
                "mainTitle": "Abyss (Motion picture : 1989)"
              }
            ]
          },
          "relation": [
            {
              "@type": "Relation",
              "label": "Novelization of (work)"
            }
          ]
        }
      ]
    }
  }
}
Exempel: -
MARC
{
  "730": {
    "ind1": "0",
    "ind2": " ",
    "subfields": [
      {
        "a": "Macaroons and biscuits."
      },
      {
        "l": "Svenska."
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "instanceOf": {
      "@type": "Text",
      "relationship": [
        {
          "@type": "Relationship",
          "entity": {
            "@type": "Work",
            "hasTitle": [
              {
                "@type": "Title",
                "mainTitle": "Macaroons and biscuits."
              }
            ],
            "language": {
              "@type": "Language",
              "label": "Svenska."
            }
          }
        }
      ]
    }
  }
}
Exempel: -
MARC
{
  "730": {
    "ind1": "0",
    "ind2": " ",
    "subfields": [
      {
        "a": "Noter med relation"
      },
      {
        "o": "arr."
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "instanceOf": {
      "@type": "Text",
      "relationship": [
        {
          "@type": "Relationship",
          "entity": {
            "@type": "Work",
            "hasTitle": [
              {
                "@type": "Title",
                "mainTitle": "Noter med relation"
              }
            ],
            "marc:arrangedStatementForMusic": "arr."
          }
        }
      ]
    }
  }
}
Exempel: -
MARC
{
  "730": {
    "ind1": "0",
    "ind2": "2",
    "subfields": [
      {
        "a": "Noter med del"
      },
      {
        "o": "arr."
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "instanceOf": {
      "@type": "Text",
      "hasPart": [
        {
          "@type": "Work",
          "hasTitle": [
            {
              "@type": "Title",
              "mainTitle": "Noter med del"
            }
          ],
          "marc:arrangedStatementForMusic": "arr."
        }
      ]
    }
  }
}
Exempel: -
MARC
{
  "730": {
    "ind1": "3",
    "ind2": "2",
    "subfields": [
      {
        "i": "Container of (work):"
      },
      {
        "a": "Gigue,"
      },
      {
        "m": "harpsichord,"
      },
      {
        "n": "GraunWV D:XVIII:11,"
      },
      {
        "r": "B♭ minor"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "instanceOf": {
      "@type": "Text",
      "hasPart": [
        {
          "@type": "Work",
          "hasTitle": [
            {
              "@type": "Title",
              "mainTitle": "Gigue",
              "partNumber": [
                "GraunWV D:XVIII:11"
              ],
              "marc:nonfilingChars": "3"
            }
          ],
          "musicMedium": [
            {
              "@type": "MusicMedium",
              "label": "harpsichord"
            }
          ],
          "musicKey": "B♭ minor",
          "marc:relatedAs": [
            {
              "@type": "Relation",
              "label": "Container of (work):"
            }
          ]
        }
      ]
    }
  }
}