http://www.w3.org/ns/dcat#downloadURL
The URL of the downloadable file in a given format. E.g., CSV file or RDF file. The format is indicated by the distribution's dcterms:format and/or dcat:mediaType
| DOMAIN | PROPERTY | RANGE |
|---|---|---|
| dcat:Distribution | dcat:downloadURL | owl:Thing (inferred) |
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
dcat:downloadURL a owl:ObjectProperty ;
rdfs:label "downloadURL" ;
rdfs:domain dcat:Distribution ;
rdfs:isDefinedBy dcat: ;
skos:definition "The URL of the downloadable file in a given format. E.g., CSV file or RDF file. The format is indicated by the distribution's dcterms:format and/or dcat:mediaType"@en ;
skos:preLabel "downloadURL" ;
skos:scopeNote "dcat:downloadURL SHOULD be used for the URL at which this distribution is available directly, typically through a HTTP Get request."@en .