dcterms:description leaf node


URI

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

Label

Distribution - description

Description

This property contains a free-text description of the User. This property can be repeated for parallel language versions of the description. - This property contains a free-text description of the Organization. This property can be repeated for parallel language versions of the description. - This property can be repeated for parallel language versions of the description. - This property contains a free-text account of the Dataset. This property can be repeated for parallel language versions of the description.

Usage

DOMAINPROPERTYRANGE
klms:Organization , dcat:Distribution , dcat:Dataset , klms:User dcterms:description rdfs:Literal

Implementation

@prefix : <http://stelar-project.eu/klms#> .
@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:description a owl:DatatypeProperty ;
    rdfs:label "Dataset - description"@en,
        "Distribution - description"@en,
        "Organization - description"@en,
        "User - description"@en ;
    dcterms:identifier "dct:description" ;
    vann:usageNote "Mandatory property. This property contains a free-text account of the Dataset. This property can be repeated for parallel language versions of the description."@en,
        "Recommended property. This property contains a free-text account of the Distribution. This property can be repeated for parallel language versions of the description."@en,
        "Recommended property. This property contains a free-text description of the Organization. This property can be repeated for parallel language versions of the description."@en,
        "Recommended property. This property contains a free-text description of the User. This property can be repeated for parallel language versions of the description."@en ;
    rdfs:comment "This property can be repeated for parallel language versions of the description."@en,
        "This property contains a free-text account of the Dataset. This property can be repeated for parallel language versions of the description."@en,
        "This property contains a free-text description of the Organization. This property can be repeated for parallel language versions of the description."@en,
        "This property contains a free-text description of the User. This property can be repeated for parallel language versions of the description."@en ;
    rdfs:domain :Organization,
        :User,
        dcat:Dataset,
        dcat:Distribution ;
    rdfs:isDefinedBy <http://dublincore.org/documents/dcmi-terms/#terms-description> ;
    rdfs:range rdfs:Literal .