Code development platform for open source projects from the European Union institutions

Release 6: Incorrect use of language tag on foaf:name in custodian example

While reviewing the custodian example in HealthDCAT-AP Release 6, I noticed that the property foaf:name is used with a language-tagged literal (foaf:name "Kadaster"@nl).

Example from the specification: https://healthdataeu.pages.code.europa.eu/healthdcat-ap/releases/release-6/#geodcatapcustodian

@prefix ex:        <http://example.com/> .
@prefix dcat:      <http://www.w3.org/ns/dcat#> .
@prefix geodcatap: <http://data.europa.eu/930/> .
@prefix dct:       <http://purl.org/dc/terms/> .
@prefix foaf:      <http://xmlns.com/foaf/0.1/> .
@prefix cv:        <http://data.europa.eu/m8g/> .
@prefix time:      <http://www.w3.org/2006/time#> .

ex:dataset a dcat:Dataset ;
  geodcatap:custodian [
    a foaf:Agent ;
    foaf:name "Kadaster"@nl ;
    dct:type <http://13.81.34.152:1101/resource/authority/publisher-type/non-gov-org> ;
    cv:contactPoint ex:cp
  ] .

I suggest to remove the language tag from foaf:name in the example, e.g.: foaf:name "Kadaster"