http://ontology.eil.utoronto.ca/icontact.owl#HoursOfOperation
HoursOfOperation class provides the ability to define when the contact "opens" and "closes". Used for businesses.
Instances of ic:HoursOfOperation can have the following properties:
PROPERTY | TYPE | DESCRIPTION | RANGE |
---|---|---|---|
From class owl:Thing | |||
adms:relatedDocumentation | owl:AnnotationProperty | owl:Thing | |
cc:license | owl:AnnotationProperty | owl:Thing | |
dcterms:creator | owl:AnnotationProperty | owl:Thing | |
dcterms:description | owl:AnnotationProperty | owl:Thing | |
dcterms:modified | owl:AnnotationProperty | owl:Thing | |
dcterms:title | owl:AnnotationProperty | owl:Thing | |
ic:OperatingProperty | owl:ObjectProperty | Properties that define the hours of operation of the contact. | owl:Thing |
ic:addressDataProperty | owl:DatatypeProperty | owl:Thing | |
ic:dayofWeek | owl:ObjectProperty | Specifies the day of the week, e.g., Monday, that the times apply to. This is the default for that day and can be overidden by the "hasDate" property. | ic:DaysOfWeek |
ic:hasAddress | owl:ObjectProperty | hasAddress links any class to the Address class. | ic:Address |
ic:hasAddressType | owl:ObjectProperty | ic:AddressType | |
ic:hasAreaCode | owl:DatatypeProperty | owl:Thing | |
ic:hasBuilding | owl:DatatypeProperty | The building where the address is located. Often used in countries like England, India and Japan. | owl:Thing |
ic:hasCity | owl:ObjectProperty | has City | owl:Thing |
ic:hasCitySection | owl:DatatypeProperty | The section of the city where the address is located. Often used in countries like England, India and Japan. | owl:Thing |
ic:hasClosingTime | owl:DatatypeProperty | xsd:dateTime | |
ic:hasContactDataProperty | owl:DatatypeProperty | owl:Thing | |
ic:hasCountry | owl:ObjectProperty | owl:Thing | |
ic:hasCountryCode | owl:DatatypeProperty | owl:Thing | |
ic:hasDate | owl:DatatypeProperty | Specifies the opening and closing times for a specific date. For example, used to provide times for a holiday which deviates from the norm. | xsd:dateTime |
ic:hasEmail | owl:DatatypeProperty | owl:Thing | |
ic:hasGeoCoordinates | owl:ObjectProperty | owl:Thing | |
ic:hasLocation | owl:DatatypeProperty | Closet street intersection for the organization. | xsd:string |
ic:hasOpeningTime | owl:DatatypeProperty | xsd:dateTime | |
ic:hasOperatingHours | owl:ObjectProperty | ic:HoursOfOperation | |
ic:hasPersonalEmail | owl:DatatypeProperty | owl:Thing | |
ic:hasPhoneNumber | owl:DatatypeProperty | owl:Thing | |
ic:hasPhoneType | owl:ObjectProperty | ic:PhoneType | |
ic:hasPostalBox | owl:DatatypeProperty | An address can have a postal box associated with it. | owl:Thing |
ic:hasPostalCode | owl:DatatypeProperty | owl:Thing | |
ic:hasState | owl:ObjectProperty | owl:Thing | |
ic:hasStreet | owl:DatatypeProperty | owl:Thing | |
ic:hasStreetNumber | owl:DatatypeProperty | owl:Thing | |
ic:hasTelephone | owl:ObjectProperty | owl:Thing | |
ic:hasUnitNumber | owl:DatatypeProperty | owl:Thing | |
ic:hasWebSite | owl:DatatypeProperty | xsd:string | |
ic:hasWorkEmail | owl:DatatypeProperty | owl:Thing | |
ic:icontactProperty | owl:ObjectProperty | owl:Thing | |
ic:operatingDataProperty | owl:DatatypeProperty | owl:Thing | |
ic:telephoneDataProperty | owl:DatatypeProperty | owl:Thing | |
vann:preferredNamespacePrefix | owl:AnnotationProperty | owl:Thing | |
vann:preferredNamespaceUri | owl:AnnotationProperty | owl:Thing | |
wgs84:lat | owl:DatatypeProperty | xsd:decimal | |
wgs84:long | owl:DatatypeProperty | xsd:decimal |
@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:HoursOfOperation a owl:Class ;
dcterms:description "HoursOfOperation class provides the ability to define when the contact \"opens\" and \"closes\". Used for businesses."@en ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom ic:DaysOfWeek ;
owl:onProperty ic:dayofWeek ],
[ a owl:Restriction ;
owl:onDataRange xsd:time ;
owl:onProperty ic:hasClosingTime ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ],
[ a owl:Restriction ;
owl:onDataRange xsd:time ;
owl:onProperty ic:hasOpeningTime ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ],
ic:iContactThing .