Release 6 : Inconsistency in Publisher contact point: dcat:contactPoint used instead of cv:contactPoint in TTL example
While reviewing the HealthDCAT-AP specification examples, I noticed an inconsistency in the Turtle example for the publisher contact information in release 6:
In the example below, the publisher uses dcat:contactPoint to reference a cv:ContactPoint resource:
@prefix dct: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix healthdcatap: <http://healthdataportal.eu/ns/health#> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix vcard: <http://www.w3.org/2006/vcard/ns#> .
@prefix cv: <http://data.europa.eu/m8g/> .
@prefix time: <http://www.w3.org/2006/time#> .
<https://fair.healthdata.be/dataset/d43a158e-7d13-4660-bbc3-9d3f8d5501e5>
a dcat:Dataset ;
dct:publisher [
a foaf:Agent;
dct:description "Publisher Note description"@en;
dct:type <http://13.81.34.152:1101/resource/authority/publisher-type/public-health-registry>;
foaf:name "Germany Publisher";
dcat:contactPoint <internalURI:contactPointPublisher>
] .
<internalURI:contactPointPublisher> a cv:ContactPoint ;
cv:email <mailto:publisher-contact@example.com> ;
cv:contactPage <https://www.publisher.com/contact> ;
cv:telephone "+32 257 25757" ;
cv:openingHours ex:oh ;
cv:specialOpeningHoursSpecification ex:sohs .
A cv:ContactPoint is normally linked using cv:contactPoint, not dcat:contactPoint like showed in custodian or hdab examples :
@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
] .
ex:cp a cv:ContactPoint ;
cv:email "info@kadaster.nl" ;
cv:contactPage <https://www.kadaster.nl/contact> ;
cv:telephone "+32 257 25757" ;
cv:openingHours ex:oh ;
cv:specialOpeningHoursSpecification ex:sohs .