dcterms:title leaf node


URI

http://purl.org/dc/terms/title

Label

Dataset - title

Description

This property contains a name (title) given to the Dataset. This property can be repeated for parallel language versions of the name. - This property contains a name given to the Distribution. This property can be repeated for parallel language versions of the description.

Usage

DOMAINPROPERTYRANGE
dcat:Dataset , dcat:Distribution dcterms:title rdfs:Literal

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/> .

dcterms:title a owl:DatatypeProperty ;
    rdfs:label "Dataset - title"@en,
        "Distribution - title"@en ;
    dcterms:identifier "dct:title" ;
    vann:usageNote "Mandatory property. This property contains a name given to the Dataset. This property can be repeated for parallel language versions of the name."@en,
        "Optional property. This property contains a name given to the Distribution. This property can be repeated for parallel language versions of the description."@en ;
    rdfs:comment "This property contains a name (title) given to the Dataset. This property can be repeated for parallel language versions of the name."@en,
        "This property contains a name given to the Distribution. This property can be repeated for parallel language versions of the description."@en ;
    rdfs:domain dcat:Dataset,
        dcat:Distribution ;
    rdfs:isDefinedBy <http://dublincore.org/documents/dcmi-terms/#terms-title> ;
    rdfs:range rdfs:Literal .