NOTE:local
ANVÄNDS NORMALT EJ I BIBLIOGRAFISK POST
NOTE:LC
nac
TODO
$a: Identifying Markings not item Condition, hold inherits bib
NOTE
$e: number of copies in marc not inventoryLevel, less of a semantic variant but see test #2
embedded
true
$a
$c
$d
$e
addProperty
$3
Exempel: copy and version identification details
MARC
{
  "562": {
    "ind1": " ",
    "ind2": " ",
    "subfields": [
      {
        "a": "Annotations"
      },
      {
        "b": "Copy 1"
      },
      {
        "8": "grp-1"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "marc:hasCopyAndVersionIdentificationNote": [
      {
        "@type": "marc:CopyAndVersionIdentificationNote",
        "marc:itemCondition": [
          "Annotations"
        ],
        "marc:copyIdentification": [
          "Copy 1"
        ],
        "marc:groupid": "grp-1"
      }
    ]
  }
}
Exempel: description used to distinguish one copy of the described materials from other copies
MARC
{
  "562": {
    "ind1": " ",
    "ind2": " ",
    "subfields": [
      {
        "e": "3 copies kept"
      },
      {
        "b": "Labelled as president's desk copy, board of directors' working file copy, and public release copy."
      }
    ]
  }
}
Normalized MARC:
{
  "562": {
    "ind1": " ",
    "ind2": " ",
    "subfields": [
      {
        "b": "Labelled as president's desk copy, board of directors' working file copy, and public release copy."
      },
      {
        "e": "3 copies kept"
      }
    ]
  }
}
JSON-LD
{
  "mainEntity": {
    "marc:hasCopyAndVersionIdentificationNote": [
      {
        "@type": "marc:CopyAndVersionIdentificationNote",
        "marc:inventoryLevel": [
          "3 copies kept"
        ],
        "marc:copyIdentification": [
          "Labelled as president's desk copy, board of directors' working file copy, and public release copy."
        ]
      }
    ]
  }
}