dcat:accessURL leaf node


URI

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

Label

accessURL

Description

A URL of the resource that gives access to a distribution of the dataset. E.g., landing page, feed, SPARQL endpoint.

Usage

DOMAINPROPERTYRANGE
dcat:Distribution dcat:accessURL owl:Thing (inferred)

Implementation

@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:accessURL a owl:ObjectProperty ;
    rdfs:label "accessURL" ;
    rdfs:domain dcat:Distribution ;
    rdfs:isDefinedBy dcat: ;
    skos:definition "A URL of the resource that gives access to a distribution of the dataset. E.g., landing page, feed, SPARQL endpoint."@en ;
    skos:prefLabel "accessURL" ;
    skos:scopeNote "dcat:accessURL SHOULD be used for the URL of a service or location that can provide access to this distribution, typically through a Web form, query or API call."@en .