klms:extraKeyValue leaf node


URI

http://stelar-project.eu/klms#extraKeyValue

Label

Distribution - extraKeyValue

Description

This property links a Distribution with one or more extra key/value pairs. - This property links a Dataset with one or more extra key/value pairs.

Usage

DOMAINPROPERTYRANGE
dcat:Distribution , dcat:Dataset klms:extraKeyValue klms:KeyValuePair

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

:extraKeyValue a owl:ObjectProperty ;
    rdfs:label "Dataset - extraKeyValue"@en,
        "Distribution - extraKeyValue"@en ;
    dcterms:identifier "klms:extraKeyValue" ;
    vann:usageNote "Optional property. This property links a Dataset with one or more extra key/value pairs."@en,
        "Optional property. This property links a Distribution with one or more extra key/value pairs."@en ;
    rdfs:comment "This property links a Dataset with one or more extra key/value pairs."@en,
        "This property links a Distribution with one or more extra key/value pairs."@en ;
    rdfs:domain dcat:Dataset,
        dcat:Distribution ;
    rdfs:range :KeyValuePair .