ic:PhoneNumber


URI

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

Label

Phone Number

Description

PhoneNumber is another core class. It is divided into country code, and phone number.

Superclasses (1)

Usage

Instances of ic:PhoneNumber 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 rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

ic:PhoneNumber a owl:Class ;
    rdfs:label "Phone Number"@en ;
    dcterms:description "PhoneNumber is another core class. It is divided into country code, and phone number."@en ;
    rdfs:subClassOf [ a owl:Restriction ;
            owl:onClass ic:PhoneType ;
            owl:onProperty ic:hasPhoneType ;
            owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ],
        [ a owl:Restriction ;
            owl:onDataRange xsd:nonNegativeInteger ;
            owl:onProperty ic:hasAreaCode ;
            owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ],
        [ a owl:Restriction ;
            owl:onDataRange xsd:nonNegativeInteger ;
            owl:onProperty ic:hasCountryCode ;
            owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ],
        [ a owl:Restriction ;
            owl:onDataRange xsd:nonNegativeInteger ;
            owl:onProperty ic:hasPhoneNumber ;
            owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ],
        ic:iContactThing .