Skip to end of banner
Go to start of banner

Update of mapping to adjust punctuation handling for 1xx/7xx contributors R2 2023 Poppy release

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

Update to the default MARC Bib-to-Inventory Instance MAP:

  • todo

Script for updating such mapping:  MODDICORE-355 - Getting issue details... STATUS

Steps:

  1. If library tenant is using default mapping rules with NO changes (no customizations), then call PUT  /mapping-rules/marc-bib/restore endpoint
  2. If library tenant is using default mapping rules, WITH changes (local customization), then follow the next step
    1. Send a GET request to /mapping-rules/marc-bib to retrieve the mapping rules
    2. Under 100, 110, 111, 700, 710, 711, 720 fields update rule for contributor name (section where target = "contributors.name") for the "type" property replace "trim_period, trim" value with "trim_punctuation" value

      sdfdsf
      {
        "target": "contributors.name",
        "description": "Personal Name",
        "applyRulesOnConcatenatedData": true,
        "subfield": [
          "a",
          "b",
          "c",
          "d",
          "f",
          "g",
          "j",
          "k",
          "l",
          "n",
          "p",
          "q",
          "t",
          "u"
        ],
        "rules": [
          {
            "conditions": [
              {
                "type": "trim_punctuation"
              }
            ]
          }
        ]
      }
      
      




  • No labels