dcterms:issued leaf node


URI

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

Label

KeyValuePair - issued date

Description

This property contains the date of formal issuance of the KeyValuePair. Typically used to associate timestamps with issued metrics. - This property contains the date of formal issuance (e.g., publication) of the Dataset. - This property contains the date of formal issuance (e.g., publication) of the Distribution.

Usage

DOMAINPROPERTYRANGE
dcat:Distribution , dcat:Dataset , klms:KeyValuePair dcterms:issued xsd:dateTime

Implementation

@prefix : <http://stelar-project.eu/klms#> .
@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:issued a owl:DatatypeProperty ;
    rdfs:label "Dataset - release date"@en,
        "Distribution - release date"@en,
        "KeyValuePair - issued date"@en ;
    dcterms:identifier "dct:issued" ;
    vann:usageNote "Optional property. This property contains the date of formal issuance (e.g., publication) of the Dataset."@en,
        "Optional property. This property contains the date of formal issuance (e.g., publication) of the Distribution."@en,
        "Optional property. This property contains the date of formal issuance of the KeyValuePair."@en ;
    rdfs:comment "This property contains the date of formal issuance (e.g., publication) of the Dataset."@en,
        "This property contains the date of formal issuance (e.g., publication) of the Distribution."@en,
        "This property contains the date of formal issuance of the KeyValuePair. Typically used to associate timestamps with issued metrics."@en ;
    rdfs:domain :KeyValuePair,
        dcat:Dataset,
        dcat:Distribution ;
    rdfs:isDefinedBy <http://dublincore.org/documents/dcmi-terms/#terms-issued> ;
    rdfs:range xsd:dateTime .