dcat:contactPoint leaf node


URI

http://www.w3.org/ns/dcat#contactPoint

Label

Dataset - contact point

Description

This property contains contact information that can be used for sending comments about the Dataset.

Usage

DOMAINPROPERTYRANGE
dcat:Dataset dcat:contactPoint vcard:Kind

Implementation

@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vcard: <http://www.w3.org/2006/vcard/ns#> .

dcat:contactPoint a owl:ObjectProperty ;
    rdfs:label "Dataset - contact point"@en ;
    dcterms:identifier "dcat:contactPoint" ;
    vann:usageNote "Recommended property.This property contains contact information that can be used for sending comments about the Dataset."@en ;
    rdfs:comment "This property contains contact information that can be used for sending comments about the Dataset."@en ;
    rdfs:domain dcat:Dataset ;
    rdfs:isDefinedBy <https://www.w3.org/TR/vocab-dcat-2/#Property:resource_contact_point> ;
    rdfs:range vcard:Kind .