:hasAccessDate leaf node


URI

http://purl.org/spar/fabio/hasAccessDate

Label

has access date

Description

The date on which a particular digital item, such as a PDF or an HTML file, has been accessed by somebody.

Inherits from

Usage

DOMAINPROPERTYRANGE
:Item :hasAccessDate xsd:dateTime

Implementation

@prefix : <http://purl.org/spar/fabio/> .
@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 xsd: <http://www.w3.org/2001/XMLSchema#> .

:hasAccessDate a owl:DatatypeProperty ;
    rdfs:label "has access date"@en ;
    rdfs:comment "The date on which a particular digital item, such as a PDF or an HTML file, has been accessed by somebody."@en ;
    rdfs:domain :Item ;
    rdfs:range xsd:dateTime ;
    rdfs:subPropertyOf dcterms:date .