metadata-qa-api icon indicating copy to clipboard operation
metadata-qa-api copied to clipboard

implement different language tag parsing for JSON

Open pkiraly opened this issue 1 year ago • 0 comments

There are at least two types of language tagging Europeana uses:

implicit

"dcCreator": {
  "nl": [
    "Stichting Xeno-canto voor Natuurgeluiden"
  ]
}

explicit

"dcCreator": [
  {
    "@lang": "nl",
    "#value": "Stichting Xeno-canto voor Natuurgeluiden"
  }
]

We should provide a value how to interpret the data: – asLanguageTagged: implicitasLanguageTagged: explicit

pkiraly avatar Aug 23 '24 17:08 pkiraly