dcat:accessURL leaf node


URI

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

Label

Distribution - access URL

Description

This property contains a URL that gives access to a Distribution of the Dataset. The resource at the access URL may contain information about how to get the Dataset.

Usage

DOMAINPROPERTYRANGE
dcat:Distribution dcat:accessURL 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:accessURL a owl:DatatypeProperty ;
    rdfs:label "Distribution - access URL"@en ;
    dcterms:identifier "dcat:accessURL" ;
    vann:usageNote "Mandatory property.  This property contains a URL that gives access to a Distribution of the Dataset. The resource at the access URL may contain information about how to get the Dataset. "@en ;
    rdfs:comment "This property contains a URL that gives access to a Distribution of the Dataset. The resource at the access URL may contain information about how to get the Dataset."@en ;
    rdfs:domain dcat:Distribution ;
    rdfs:isDefinedBy <https://www.w3.org/TR/vocab-dcat-2/#Property:distribution_access_url> ;
    rdfs:range rdfs:Resource .