dcterms:created leaf node


URI

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

Label

User - creation date

Description

This property contains the date of formal creation of the Organization. - This property contains the date this User was created.

Usage

DOMAINPROPERTYRANGE
klms:Organization , klms:User dcterms:created 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#> .

dcterms:created a owl:DatatypeProperty ;
    rdfs:label "Organization - creation date"@en,
        "User - creation date"@en ;
    dcterms:identifier "dct:created" ;
    vann:usageNote "Recommended property. This property contains the date of formal creation of the Organization."@en,
        "Recommended property. This property contains the date this User was created."@en ;
    rdfs:comment "This property contains the date of formal creation of the Organization."@en,
        "This property contains the date this User was created."@en ;
    rdfs:domain :Organization,
        :User ;
    rdfs:isDefinedBy <http://dublincore.org/documents/dcmi-terms/#terms-created> ;
    rdfs:range xsd:dateTime .