http://ontology.eil.utoronto.ca/icontact.owl#hasDate
Specifies the opening and closing times for a specific date. For example, used to provide times for a holiday which deviates from the norm.
DOMAIN | PROPERTY | RANGE |
---|---|---|
owl:Thing (inferred) | ic:hasDate | xsd:dateTime |
@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 .