# -*- N3 -*- @prefix owl: . @prefix xs: . @prefix c: . @prefix rdf: . @prefix rdfs: . @prefix foaf: . # What about bio: http://vocab.org/bio/0.1/ # Or contacts: http://www.w3.org/2000/10/swap/pim/contact a owl:Ontology; rdfs:comment "Norm's ontology for his address book." . # ------------------------------------------------------------ # A contact in an address book c:Contact a owl:Class; rdfs:subClassOf [ a owl:Restriction; owl:cardinality "1"^^xs:nonNegativeInteger; owl:onProperty c:lastModified ] . # Timestamp of address book entry c:lastModified a owl:DatatypeProperty; rdfs:domain c:Contact; rdfs:range xs:dateTime . # Category in address book c:category a owl:DatatypeProperty; rdfs:domain c:Contact . # A middle name (other name properties come from FOAF) c:middleName a owl:DatatypeProperty . # Company and title c:associatedName a owl:DatatypeProperty . c:associatedTitle a owl:DatatypeProperty . # Labels c:label a owl:DatatypeProperty . # Notes c:notes a owl:DatatypeProperty .