core:modifiedTime leaf node


URI

https://unifiedcyberontology.org/ontology/uco/core#modifiedTime

Label

modifiedTime

Description

Specifies the time that this particular version of the object was modified. The object creator can use the time it deems most appropriate as the time this version of the object was modified. The value of the modified property for a given object version MUST be later than or equal to the value of the created property. Object creators MUST update the modified property when creating a new version of an object. The modified timestamp MUST be precise to the nearest millisecond (exactly three digits after the decimal place in seconds).

Usage

DOMAINPROPERTYRANGE
core:UcoObject core:modifiedTime xs:dateTime

Implementation

@prefix default1: <https://unifiedcyberontology.org/ontology/uco/core#> .
@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#> .

default1:modifiedTime a owl:DatatypeProperty ;
    rdfs:label "modifiedTime"@en ;
    rdfs:comment "Specifies the time that this particular version of the object was modified. The object creator can use the time it deems most appropriate as the time this version of the object was modified. The value of the modified property for a given object version MUST be later than or equal to the value of the created property. Object creators MUST update the modified property when creating a new version of an object. The modified timestamp MUST be precise to the nearest millisecond (exactly three digits after the decimal place in seconds)."@en-us ;
    rdfs:domain default1:UcoObject ;
    rdfs:range xsd:dateTime .