NOTE:LC
Also create statement: I - provisionActivityStatement - literal ($abd -- concatenate with blank -- add semicolon between subfields if no other punctuation -- keep order in field)
$a
aboutNew
_:prodPart
addLink
resourceType
property
leadingPunctuation
:
punctuationChars
.,
$b
aboutAltNew
_:prodPart
addLink
resourceType
property
leadingPunctuation
:
$d
about
_:production
addProperty
leadingPunctuation
,
punctuationChars
.,;
$e
about
_:manufacture
addLink
resourceType
property
punctuationChars
.,;
$f
about
_:production
addLink
resourceType
property
leadingPunctuation
;
$6
property
Exempel: Simple
MARC
[
  {
    "261": {
      "ind1": " ",
      "ind2": " ",
      "subfields": [
        {
          "a": "Coronet Films,"
        },
        {
          "d": "1967."
        }
      ]
    }
  }
]
Normalized MARC:
[
  {
    "264": {
      "ind1": " ",
      "ind2": "0",
      "subfields": [
        {
          "b": "Coronet Films,"
        },
        {
          "c": "1967"
        }
      ]
    }
  }
]
JSON-LD
{
  "mainEntity": {
    "production": [
      {
        "@type": "Production",
        "agent": [
          {
            "@type": "Agent",
            "label": "Coronet Films"
          }
        ],
        "date": [
          "1967"
        ]
      }
    ]
  }
}
Exempel: With manufacturer
MARC
[
  {
    "261": {
      "ind1": " ",
      "ind2": " ",
      "subfields": [
        {
          "a": "Boulton-Hawker Films"
        },
        {
          "f": "Hadley, Eng"
        },
        {
          "e": "Made by D.C. Chipperfield."
        },
        {
          "d": "1971"
        }
      ]
    }
  }
]
Normalized MARC:
[
  {
    "264": {
      "ind1": " ",
      "ind2": "0",
      "subfields": [
        {
          "a": "Hadley, Eng :"
        },
        {
          "b": "Boulton-Hawker Films,"
        },
        {
          "c": "1971"
        }
      ]
    }
  },
  {
    "264": {
      "ind1": " ",
      "ind2": "3",
      "subfields": [
        {
          "b": "Made by D.C. Chipperfield"
        }
      ]
    }
  }
]
JSON-LD
{
  "mainEntity": {
    "manufacture": [
      {
        "@type": "Manufacture",
        "agent": [
          {
            "@type": "Agent",
            "label": "Made by D.C. Chipperfield"
          }
        ]
      }
    ],
    "production": [
      {
        "@type": "Production",
        "date": [
          "1971"
        ],
        "agent": [
          {
            "@type": "Agent",
            "label": "Boulton-Hawker Films"
          }
        ],
        "place": [
          {
            "@type": "Place",
            "label": "Hadley, Eng"
          }
        ]
      }
    ]
  }
}