dcterms:issued


URI

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

Label

has issue date

Description

Date of formal issuance of a resource (e.g. a publication or a patent).

Inherits from

Usage

DOMAINPROPERTYRANGE
owl:Thing (inferred) dcterms:issued xsd:dateTime

Implementation

@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#> .

dcterms:issued a owl:DatatypeProperty ;
    rdfs:label "has issue date"@en ;
    rdfs:comment "Date of formal issuance of a resource (e.g. a publication or a patent)."@en ;
    rdfs:range xsd:dateTime ;
    rdfs:subPropertyOf dcterms:date .