match
0
when
i1=0
1
when
i1=1
2
when
i1=3
Exempel: -
MARC
{
  "800": {
    "ind1": "1",
    "ind2": " ",
    "subfields": [
      {
        "a": "Sandemo, Margit,"
      },
      {
        "d": "1924-"
      },
      {
        "t": "Sandemo-serien ;"
      },
      {
        "v": "v 4"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "seriesMembership": [
      {
        "@type": "SeriesMembership",
        "seriesEnumeration": "v 4",
        "inSeries": {
          "@type": "Instance",
          "instanceOf": {
            "@type": "Work",
            "contribution": [
              {
                "@type": "PrimaryContribution",
                "agent": {
                  "@type": "Person",
                  "lifeSpan": "1924-",
                  "familyName": "Sandemo",
                  "givenName": "Margit"
                }
              }
            ],
            "hasTitle": [
              {
                "@type": "Title",
                "mainTitle": "Sandemo-serien"
              }
            ]
          }
        }
      }
    ]
  }
}
Exempel: -
MARC
{
  "800": {
    "ind1": "0",
    "ind2": " ",
    "subfields": [
      {
        "a": "Raymond Feist"
      },
      {
        "t": "Demonwar saga."
      },
      {
        "l": "Svenska ;"
      },
      {
        "v": "v 2"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "seriesMembership": [
      {
        "@type": "SeriesMembership",
        "seriesEnumeration": "v 2",
        "inSeries": {
          "@type": "Instance",
          "instanceOf": {
            "@type": "Work",
            "contribution": [
              {
                "@type": "PrimaryContribution",
                "agent": {
                  "@type": "Person",
                  "name": "Raymond Feist"
                }
              }
            ],
            "language": {
              "@type": "Language",
              "label": "Svenska"
            },
            "hasTitle": [
              {
                "@type": "Title",
                "mainTitle": "Demonwar saga."
              }
            ]
          }
        }
      }
    ]
  }
}
Exempel: -
MARC
{
  "800": {
    "ind1": "1",
    "ind2": " ",
    "subfields": [
      {
        "a": "Sousa, John Philip,"
      },
      {
        "d": "1854-1932"
      },
      {
        "t": "Marches,"
      },
      {
        "m": "band."
      },
      {
        "k": "Selections (Sousa American bicentennial collection);"
      },
      {
        "v": "v.1."
      }
    ]
  }
}
Normalized MARC:
{
  "800": {
    "ind1": "1",
    "ind2": " ",
    "subfields": [
      {
        "a": "Sousa, John Philip,"
      },
      {
        "d": "1854-1932"
      },
      {
        "t": "Marches,"
      },
      {
        "m": "band."
      },
      {
        "k": "Selections (Sousa American bicentennial collection) ;"
      },
      {
        "v": "v.1."
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "seriesMembership": [
      {
        "@type": "SeriesMembership",
        "seriesEnumeration": "v.1.",
        "inSeries": {
          "@type": "Instance",
          "instanceOf": {
            "@type": "Work",
            "contribution": [
              {
                "@type": "PrimaryContribution",
                "agent": {
                  "@type": "Person",
                  "familyName": "Sousa",
                  "givenName": "John Philip",
                  "lifeSpan": "1854-1932"
                }
              }
            ],
            "hasTitle": [
              {
                "@type": "Title",
                "mainTitle": "Marches",
                "marc:formSubheading": [
                  "Selections (Sousa American bicentennial collection)"
                ]
              }
            ],
            "musicMedium": [
              {
                "@type": "MusicMedium",
                "label": "band."
              }
            ]
          }
        }
      }
    ]
  }
}
Exempel: -
MARC
{
  "800": {
    "ind1": "3",
    "ind2": " ",
    "subfields": [
      {
        "a": "Family X"
      },
      {
        "t": "A title"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "seriesMembership": [
      {
        "@type": "SeriesMembership",
        "inSeries": {
          "@type": "Instance",
          "instanceOf": {
            "@type": "Work",
            "contribution": [
              {
                "@type": "PrimaryContribution",
                "agent": {
                  "@type": "Family",
                  "name": "Family X"
                }
              }
            ],
            "hasTitle": [
              {
                "@type": "Title",
                "mainTitle": "A title"
              }
            ]
          }
        }
      }
    ]
  }
}