oa:#annotatedAt leaf node


URI

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

Label

annotatedAt

Description

The time at which the Annotation was created.

There SHOULD be exactly 1 oa:annotatedAt property per Annotation, and MUST NOT be more than 1. The datetime MUST be expressed in the xsd:dateTime format, and SHOULD have a timezone specified.

Usage

DOMAINPROPERTYRANGE
oa:#Annotation oa:#annotatedAt 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:annotatedAt a owl:DatatypeProperty ;
    rdfs:label "annotatedAt"@en ;
    rdfs:comment """The time at which the Annotation was created. 

There SHOULD be exactly 1 oa:annotatedAt property per Annotation, and MUST NOT be more than 1. The datetime MUST be expressed in the xsd:dateTime format, and SHOULD have a timezone specified."""@en ;
    rdfs:domain oa:Annotation ;
    rdfs:isDefinedBy oa: ;
    rdfs:range xsd:dateTimeStamp .