:hasEmbargoDate leaf node


URI

http://purl.org/spar/fabio/hasEmbargoDate

Label

has embargo date

Description

The date before which an entity should not be published, or before which a press release should not be reported on. For open-access journal articles, the embargo date is the date before which availability of the open-access version of the article is restricted by the publisher, following subscription-access availability of the published work. The duration of the embargo period can be specified by fabio:hasEmbargoDuration.

Inherits from

Usage

DOMAINPROPERTYRANGE
owl:Thing (inferred) :hasEmbargoDate xsd:dateTime

Implementation

@prefix : <http://purl.org/spar/fabio/> .
@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#> .

:hasEmbargoDate a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "has embargo date"@en ;
    rdfs:comment "The date before which an entity should not be published, or before which a press release should not be reported on.  For open-access journal articles, the embargo date is the date before which availability of the open-access version of the article is restricted by the publisher, following subscription-access availability of the published work.  The duration of the embargo period can be specified by fabio:hasEmbargoDuration."@en ;
    rdfs:range xsd:dateTime ;
    rdfs:subPropertyOf dcterms:date .