oa:#when leaf node


URI

http://www.w3.org/ns/oa#when

Label

when

Description

The timestamp at which the Source resource should be interpreted for the Annotation, typically the time that the Annotation was created.

Usage

DOMAINPROPERTYRANGE
oa:#TimeState oa:#when xsd:dateTimeStamp

Implementation

@prefix oa: <http://www.w3.org/ns/oa#> .
@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#> .

oa:when a owl:DatatypeProperty ;
    rdfs:label "when"@en ;
    rdfs:comment "The timestamp at which the Source resource should be interpreted for the Annotation, typically the time that the Annotation was created."@en ;
    rdfs:domain oa:TimeState ;
    rdfs:isDefinedBy oa: ;
    rdfs:range xsd:dateTimeStamp .