dcterms:language leaf node


URI

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

Label

Distribution - language

Description

This property refers to a language used in the Distribution. - This property refers to a language of the Dataset. This property can be repeated if there are multiple languages in the Dataset.

Usage

DOMAINPROPERTYRANGE
dcat:Distribution , dcat:Dataset dcterms:language dcterms:LinguisticSystem

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:language a owl:ObjectProperty ;
    rdfs:label "Dataset - language"@en,
        "Distribution - language"@en ;
    dcterms:identifier "dct:language" ;
    vann:usageNote "Optional property. This property refers to a language of the Dataset. This property can be repeated if there are multiple languages in the Dataset."@en,
        "Optional property. This property refers to a language used in the Distribution. This property can be repeated if the metadata is provided in multiple languages."@en ;
    rdfs:comment "This property refers to a language of the Dataset. This property can be repeated if there are multiple languages in the Dataset."@en,
        "This property refers to a language used in the Distribution."@en ;
    rdfs:domain dcat:Dataset,
        dcat:Distribution ;
    rdfs:isDefinedBy <http://dublincore.org/documents/dcmi-terms/#terms-language> ;
    rdfs:range dcterms:LinguisticSystem .