dcterms:modified leaf node


URI

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

Label

Dataset - update/ modification date

Description

This property contains the most recent date on which the Distribution was changed or modified. - This property contains the most recent date on which the Dataset was changed or modified.

Usage

DOMAINPROPERTYRANGE
dcat:Dataset , dcat:Distribution dcterms:modified xsd:dateTime

Implementation

@prefix dcat: <http://www.w3.org/ns/dcat#> .
@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 vann: <http://purl.org/vocab/vann/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

dcterms:modified a owl:DatatypeProperty ;
    rdfs:label "Dataset - update/ modification date"@en,
        "Distribution - update/modification date"@en ;
    dcterms:identifier "dct:modified" ;
    vann:usageNote "Optional property. This property contains the most recent date on which the Dataset was changed or modified."@en,
        "Optional property. This property contains the most recent date on which the Distribution was changed or modified."@en ;
    rdfs:comment "This property contains the most recent date on which the Dataset was changed or modified."@en,
        "This property contains the most recent date on which the Distribution was changed or modified."@en ;
    rdfs:domain dcat:Dataset,
        dcat:Distribution ;
    rdfs:isDefinedBy <http://dublincore.org/documents/dcmi-terms/#terms-modified> ;
    rdfs:range xsd:dateTime .