http://purl.org/spar/fabio/hasAccessDate
The date on which a particular digital item, such as a PDF or an HTML file, has been accessed by somebody.
DOMAIN | PROPERTY | RANGE |
---|---|---|
:Item | :hasAccessDate | xsd:dateTime |
@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 .