ic:AddressType leaf node


URI

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

Label

Address Type

Description

Different type for home, office, cottage, etc.

Superclasses (1)

Usage

Instances of ic:AddressType can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
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

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 rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

ic:AddressType a owl:Class ;
    rdfs:label "Address Type"@en ;
    dcterms:description "Different type for home, office, cottage, etc."@en ;
    rdfs:subClassOf ic:iContactThing ;
    owl:equivalentClass [ a owl:Class ;
            owl:oneOf ( ic:Cottage ic:Home ic:Work ) ] .