:hasDeadline leaf node


URI

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

Label

has deadline

Description

A date by which something has to be done.

Inherits from

Usage

DOMAINPROPERTYRANGE
owl:Thing (inferred) :hasDeadline 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#> .

:hasDeadline a owl:DatatypeProperty ;
    rdfs:label "has deadline"@en ;
    rdfs:comment "A date by which something has to be done."@en ;
    rdfs:range xsd:dateTime ;
    rdfs:subPropertyOf dcterms:date .