ic:hasDate leaf node


URI

http://ontology.eil.utoronto.ca/icontact.owl#hasDate

Label

has Date

Description

Specifies the opening and closing times for a specific date. For example, used to provide times for a holiday which deviates from the norm.

Usage

DOMAINPROPERTYRANGE
owl:Thing (inferred) ic:hasDate xsd:dateTime

Implementation

@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix ic: <http://ontology.eil.utoronto.ca/icontact.owl#> .
@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#> .

ic:hasDate a owl:DatatypeProperty ;
    rdfs:label "has Date"@en ;
    dcterms:description "Specifies the opening and closing times for a specific date.  For example, used to provide times for a holiday which deviates from the norm."@en ;
    rdfs:range xsd:dateTime ;
    rdfs:subPropertyOf ic:operatingDataProperty .