match
0
when
i1=1
match
0
when
$b
1
when
$b
i1
marcDefault
2
Exempel: -
MARC
{
  "810": {
    "ind1": "2",
    "ind2": " ",
    "subfields": [
      {
        "a": "German Institute of Global and Area Studies <Hamburg>,"
      },
      {
        "t": "GIGA working papers"
      },
      {
        "v": "v 40"
      }
    ]
  }
}
Normalized MARC:
{
  "810": {
    "ind1": "2",
    "ind2": " ",
    "subfields": [
      {
        "a": "German Institute of Global and Area Studies <Hamburg>"
      },
      {
        "t": "GIGA working papers ;"
      },
      {
        "v": "v 40"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "seriesMembership": [
      {
        "@type": "SeriesMembership",
        "seriesEnumeration": "v 40",
        "inSeries": {
          "@type": "Instance",
          "instanceOf": {
            "@type": "Work",
            "contribution": [
              {
                "@type": "PrimaryContribution",
                "agent": {
                  "@type": "Organization",
                  "name": "German Institute of Global and Area Studies <Hamburg>"
                }
              }
            ],
            "hasTitle": [
              {
                "@type": "Title",
                "mainTitle": "GIGA working papers"
              }
            ]
          }
        }
      }
    ]
  }
}
Exempel: -
MARC
{
  "810": {
    "ind1": "1",
    "ind2": " ",
    "subfields": [
      {
        "a": "Buenos Aires (Argentina)."
      },
      {
        "b": "Universidad nacional."
      },
      {
        "b": "Instituto de Literatura Española."
      },
      {
        "t": "Bibliografías criticas ;"
      },
      {
        "v": "1"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "seriesMembership": [
      {
        "@type": "SeriesMembership",
        "seriesEnumeration": "1",
        "inSeries": {
          "@type": "Instance",
          "instanceOf": {
            "@type": "Work",
            "contribution": [
              {
                "@type": "PrimaryContribution",
                "agent": {
                  "@type": "Jurisdiction",
                  "marc:subordinateUnit": [
                    "Universidad nacional.",
                    "Instituto de Literatura Española."
                  ],
                  "isPartOf": {
                    "@type": "Jurisdiction",
                    "name": "Buenos Aires (Argentina)."
                  }
                }
              }
            ],
            "hasTitle": [
              {
                "@type": "Title",
                "mainTitle": "Bibliografías criticas"
              }
            ]
          }
        }
      }
    ]
  }
}
Exempel: -
MARC
{
  "810": {
    "ind1": "2",
    "ind2": " ",
    "subfields": [
      {
        "a": "Harvard University."
      },
      {
        "b": "Bureau of Business Research."
      },
      {
        "t": "Bulletin ;"
      },
      {
        "v": "no. 20."
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "seriesMembership": [
      {
        "@type": "SeriesMembership",
        "seriesEnumeration": "no. 20.",
        "inSeries": {
          "@type": "Instance",
          "instanceOf": {
            "@type": "Work",
            "contribution": [
              {
                "@type": "PrimaryContribution",
                "agent": {
                  "@type": "Organization",
                  "marc:subordinateUnit": [
                    "Bureau of Business Research."
                  ],
                  "isPartOf": {
                    "@type": "Organization",
                    "name": "Harvard University."
                  }
                }
              }
            ],
            "hasTitle": [
              {
                "@type": "Title",
                "mainTitle": "Bulletin"
              }
            ]
          }
        }
      }
    ]
  }
}
Exempel: -
MARC
{
  "810": {
    "ind1": "0",
    "ind2": " ",
    "subfields": [
      {
        "a": "Stadtbibliothek."
      },
      {
        "c": "Königsberg"
      },
      {
        "t": "Mitteilungen aus der Stadtbibliothek Königsberg"
      },
      {
        "v": "4/5."
      }
    ]
  }
}
Normalized MARC:
{
  "810": {
    "ind1": "2",
    "ind2": " ",
    "subfields": [
      {
        "a": "Stadtbibliothek."
      },
      {
        "c": "Königsberg"
      },
      {
        "t": "Mitteilungen aus der Stadtbibliothek Königsberg ;"
      },
      {
        "v": "4/5."
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "seriesMembership": [
      {
        "@type": "SeriesMembership",
        "seriesEnumeration": "4/5.",
        "inSeries": {
          "@type": "Instance",
          "instanceOf": {
            "@type": "Work",
            "contribution": [
              {
                "@type": "PrimaryContribution",
                "agent": {
                  "@type": "Organization",
                  "name": "Stadtbibliothek.",
                  "place": [
                    {
                      "@type": "Place",
                      "label": "Königsberg"
                    }
                  ]
                }
              }
            ],
            "hasTitle": [
              {
                "@type": "Title",
                "mainTitle": "Mitteilungen aus der Stadtbibliothek Königsberg"
              }
            ]
          }
        }
      }
    ]
  }
}