:dateLastUpdated leaf node


URI

http://purl.org/spar/fabio/dateLastUpdated

Label

date last updated

Description

The date on which a particular endeavour, such as an ontology, was last updated.

Inherits from

Usage

DOMAINPROPERTYRANGE
owl:Thing (inferred) :dateLastUpdated xsd:dateTime

Implementation

@prefix : <http://purl.org/spar/fabio/> .
@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#> .

:dateLastUpdated a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "date last updated"@en ;
    rdfs:comment "The date on which a particular endeavour, such as an ontology, was last updated."@en ;
    rdfs:range xsd:dateTime ;
    rdfs:subPropertyOf dcterms:date .