dcterms:modified leaf node


URI

http://purl.org/dc/terms/modified

Label

has modification date

Description

The date on which an entity has been modified.

Inherits from

Usage

DOMAINPROPERTYRANGE
owl:Thing (inferred) dcterms:modified xsd:dateTime

Implementation

@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#> .

dcterms:modified a owl:DatatypeProperty ;
    rdfs:label "has modification date"@en ;
    rdfs:comment "The date on which an entity has been modified."@en ;
    rdfs:range xsd:dateTime ;
    rdfs:subPropertyOf dcterms:date .