$6
about
_:title
property
$a
about
_:title
property
punctuationChars
.,=;
required
true
$d
about
_:work
$0
about
_:work
addProperty
Exempel: -
MARC
{
  "830": {
    "ind1": " ",
    "ind2": "0",
    "subfields": [
      {
        "a": "Europarecht (Munich, germany)"
      },
      {
        "p": "Beiheft ;"
      },
      {
        "v": "2002/1"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "seriesMembership": [
      {
        "@type": "SeriesMembership",
        "seriesEnumeration": "2002/1",
        "inSeries": {
          "@type": "Instance",
          "instanceOf": {
            "@type": "Work",
            "hasTitle": [
              {
                "@type": "Title",
                "mainTitle": "Europarecht (Munich, germany)",
                "partName": [
                  "Beiheft"
                ]
              }
            ]
          }
        }
      }
    ]
  }
}
Exempel: -
MARC
{
  "830": {
    "ind1": " ",
    "ind2": "0",
    "subfields": [
      {
        "a": "Archiv für Papyrusforschung und verwandte Gebiete."
      },
      {
        "p": "Ergänzungsband."
      },
      {
        "p": "Kleine Reihe ;"
      },
      {
        "v": "5."
      }
    ]
  }
}
Normalized MARC:
{
  "830": {
    "ind1": " ",
    "ind2": "0",
    "subfields": [
      {
        "a": "Archiv für Papyrusforschung und verwandte Gebiete"
      },
      {
        "p": "Ergänzungsband."
      },
      {
        "p": "Kleine Reihe ;"
      },
      {
        "v": "5."
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "seriesMembership": [
      {
        "@type": "SeriesMembership",
        "seriesEnumeration": "5.",
        "inSeries": {
          "@type": "Instance",
          "instanceOf": {
            "@type": "Work",
            "hasTitle": [
              {
                "@type": "Title",
                "mainTitle": "Archiv für Papyrusforschung und verwandte Gebiete",
                "partName": [
                  "Ergänzungsband.",
                  "Kleine Reihe"
                ]
              }
            ]
          }
        }
      }
    ]
  }
}
Exempel: -
MARC
{
  "830": {
    "ind1": " ",
    "ind2": "4",
    "subfields": [
      {
        "a": "Studies on the texts of the desert of Judah,"
      },
      {
        "v": "101"
      },
      {
        "x": "0169-9962"
      }
    ]
  }
}
Normalized MARC:
{
  "830": {
    "ind1": " ",
    "ind2": "4",
    "subfields": [
      {
        "a": "Studies on the texts of the desert of Judah,"
      },
      {
        "x": "0169-9962 ;"
      },
      {
        "v": "101"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "seriesMembership": [
      {
        "@type": "SeriesMembership",
        "seriesEnumeration": "101",
        "inSeries": {
          "@type": "Instance",
          "identifiedBy": [
            {
              "@type": "ISSN",
              "value": "0169-9962"
            }
          ],
          "instanceOf": {
            "@type": "Work",
            "hasTitle": [
              {
                "@type": "Title",
                "mainTitle": "Studies on the texts of the desert of Judah",
                "marc:nonfilingChars": "4"
              }
            ]
          }
        }
      }
    ]
  }
}
Exempel: -
MARC
{
  "830": {
    "ind1": " ",
    "ind2": " ",
    "subfields": [
      {
        "a": "Migrationsstudier."
      },
      {
        "n": "B"
      },
      {
        "x": "0358-0083 ;"
      },
      {
        "v": "5."
      }
    ]
  }
}
Normalized MARC:
{
  "830": {
    "ind1": " ",
    "ind2": "0",
    "subfields": [
      {
        "a": "Migrationsstudier,"
      },
      {
        "n": "B,"
      },
      {
        "x": "0358-0083 ;"
      },
      {
        "v": "5."
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "seriesMembership": [
      {
        "@type": "SeriesMembership",
        "seriesEnumeration": "5.",
        "inSeries": {
          "@type": "Instance",
          "identifiedBy": [
            {
              "@type": "ISSN",
              "value": "0358-0083"
            }
          ],
          "instanceOf": {
            "@type": "Work",
            "hasTitle": [
              {
                "@type": "Title",
                "mainTitle": "Migrationsstudier",
                "partNumber": [
                  "B"
                ]
              }
            ]
          }
        }
      }
    ]
  }
}