dcat:downloadURL leaf node


URI

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

Label

Distribution - download URL

Description

This property contains a URL that is direct link to a downloadable file in a given format.

Usage

DOMAINPROPERTYRANGE
dcat:Distribution dcat:downloadURL rdfs:Resource

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

dcat:downloadURL a owl:ObjectProperty ;
    rdfs:label "Distribution - download URL"@en ;
    dcterms:identifier "dcat:downloadURL" ;
    vann:usageNote "Optional property. This property contains a URL that is direct link to a downloadable file in a given format."@en ;
    rdfs:comment "This property contains a URL that is direct link to a downloadable file in a given format."@en ;
    rdfs:domain dcat:Distribution ;
    rdfs:isDefinedBy <https://www.w3.org/TR/vocab-dcat-2/#Property:distribution_download_url> ;
    rdfs:range rdfs:Resource .