dcterms:dateAccepted leaf node


URI

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

Label

has acceptance date

Description

The date of acceptance of an entity. Examples of entities to which a Date Accepted may be relevant are a thesis (accepted by a university examination board) or an article (accepted by a journal editor).

Inherits from

Usage

DOMAINPROPERTYRANGE
owl:Thing (inferred) dcterms:dateAccepted 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:dateAccepted a owl:DatatypeProperty ;
    rdfs:label "has acceptance date"@en ;
    rdfs:comment "The date of acceptance of an entity. Examples of entities to which a Date Accepted may be relevant are a thesis (accepted by a university examination board) or an article (accepted by a journal editor)."@en ;
    rdfs:range xsd:dateTime ;
    rdfs:subPropertyOf dcterms:date .