klms:lastActive leaf node


URI

http://stelar-project.eu/klms#lastActive

Label

User - lastActive

Description

This property contains the date/time when the User was last logged in the Catalog.

Usage

DOMAINPROPERTYRANGE
klms:User klms:lastActive xsd:dateTime

Implementation

@prefix : <http://stelar-project.eu/klms#> .
@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#> .

:lastActive a owl:DatatypeProperty ;
    rdfs:label "User - lastActive"@en ;
    dcterms:identifier "klms:lastActive" ;
    vann:usageNote "Recommended property. This property contains the date/time when the User was last logged in the Catalog."@en ;
    rdfs:comment "This property contains the date/time when the User was last logged in the Catalog."@en ;
    rdfs:domain :User ;
    rdfs:range xsd:dateTime .