As first aid, here is a copy of FOAF that used to be bundled with TopBraid until I removed it two years ago since most people seem to have moved to schema.org for these tasks. Put it anywhere into your TBC workspace (or do project upload into EDG if you have a remote server).

Holger



On 22/08/2018 11:45 AM, Rob Atkinson wrote:
Hi

using TBC 6 it is failing to load the FOAF ontology from the web at:

http://xmlns.com/foaf/0.1/

this delivers RDF/XML using

curl -i -X GET -H "Accept: text/turtle, application/rdf+xml" http://xmlns.com/foaf/0.1/

- so perhaps TBC is only asking for turtle, which doesnt seem to be supported?

I cant find docs of what TBC is trying to do with conneg, so resorting to list.

(NB Was suprised FOAF isnt cached inside TBC like a lot of other common ontologies - and I may need to be reminded of how to make local cache get used vs web original - as the import process doesnt make it transparent and I've forgotten where to look, but vaguely remember some way to use a local resource instead of a web one in EDG config)



--
You received this message because you are subscribed to the Google Groups "TopBraid Suite Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected] <mailto:[email protected]>.
For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to the Google Groups "TopBraid 
Suite Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.
# baseURI: http://xmlns.com/foaf/0.1/
# imports: http://purl.org/dc/elements/1.1/
# imports: http://www.w3.org/2003/01/geo/wgs84_pos
# prefix: foaf

@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@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#> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix wot: <http://xmlns.com/wot/0.1/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

dc:date
  rdf:type owl:AnnotationProperty ;
.
dc:description
  rdf:type owl:AnnotationProperty ;
.
dc:title
  rdf:type owl:AnnotationProperty ;
.
<http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing>
  rdf:type owl:Class ;
.
vs:term_status
  rdf:type owl:AnnotationProperty ;
.
foaf:
  rdf:type owl:Ontology ;
  dc:date "$Date: 2007-06-16 23:18:26 $" ;
  dc:description "The Friend of a Friend (FOAF) RDF vocabulary, described using 
W3C RDF Schema and the Web Ontology Language." ;
  dc:title "Friend of a Friend (FOAF) vocabulary" ;
  rdfs:comment """This is a modified version of the official FOAF 
specification, optimized for editing tools such as TopBraid.
Changes include:
- removed { ?p rdf:type rdf:Property }  on properties that are also 
owl:DatatypeProperty etc
- removed { ?p rdfs:domain owl:Thing }  to prevent these properties from 
showing up on all forms
- removed { ?p rdfs:range owl:Thing }  especially for inverse properties for 
the same reason
- removed subclass relationships into external ontologies such as wordnet to 
keep the class tree flat

Edited 2008-02-07 by Holger Knublauch""" ;
  owl:imports dc: ;
  owl:imports <http://www.w3.org/2003/01/geo/wgs84_pos> ;
.
foaf:Agent
  rdf:type owl:Class ;
  rdfs:comment "An agent (eg. person, group, software or physical artifact)." ;
  rdfs:label "Agent" ;
  owl:disjointWith foaf:Document ;
  vs:term_status "stable" ;
.
foaf:Document
  rdf:type owl:Class ;
  rdfs:comment "A document." ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "Document" ;
  owl:disjointWith foaf:Organization ;
  owl:disjointWith foaf:Person ;
  owl:disjointWith foaf:Project ;
  vs:term_status "testing" ;
.
foaf:Group
  rdf:type owl:Class ;
  rdfs:comment "A class of Agents." ;
  rdfs:label "Group" ;
  rdfs:subClassOf foaf:Agent ;
  vs:term_status "stable" ;
.
foaf:Image
  rdf:type owl:Class ;
  rdfs:comment "An image." ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "Image" ;
  vs:term_status "testing" ;
.
foaf:OnlineAccount
  rdf:type owl:Class ;
  rdfs:comment "An online account." ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "Online Account" ;
  rdfs:subClassOf owl:Thing ;
  vs:term_status "unstable" ;
.
foaf:OnlineChatAccount
  rdf:type owl:Class ;
  rdfs:comment "An online chat account." ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "Online Chat Account" ;
  rdfs:subClassOf foaf:OnlineAccount ;
  vs:term_status "unstable" ;
.
foaf:OnlineEcommerceAccount
  rdf:type owl:Class ;
  rdfs:comment "An online e-commerce account." ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "Online E-commerce Account" ;
  rdfs:subClassOf foaf:OnlineAccount ;
  vs:term_status "unstable" ;
.
foaf:OnlineGamingAccount
  rdf:type owl:Class ;
  rdfs:comment "An online gaming account." ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "Online Gaming Account" ;
  rdfs:subClassOf foaf:OnlineAccount ;
  vs:term_status "unstable" ;
.
foaf:Organization
  rdf:type owl:Class ;
  rdfs:comment "An organization." ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "Organization" ;
  rdfs:subClassOf foaf:Agent ;
  owl:disjointWith foaf:Document ;
  owl:disjointWith foaf:Person ;
  vs:term_status "stable" ;
.
foaf:Person
  rdf:type owl:Class ;
  rdfs:comment "A person." ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "Person" ;
  rdfs:subClassOf <http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing> ;
  rdfs:subClassOf foaf:Agent ;
  owl:disjointWith foaf:Document ;
  owl:disjointWith foaf:Organization ;
  owl:disjointWith foaf:Project ;
  vs:term_status "stable" ;
.
foaf:PersonalProfileDocument
  rdf:type owl:Class ;
  rdfs:comment "A personal profile RDF document." ;
  rdfs:label "PersonalProfileDocument" ;
  rdfs:subClassOf foaf:Document ;
  vs:term_status "testing" ;
.
foaf:Project
  rdf:type owl:Class ;
  rdfs:comment "A project (a collective endeavour of some kind)." ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "Project" ;
  owl:disjointWith foaf:Document ;
  owl:disjointWith foaf:Person ;
  vs:term_status "unstable" ;
.
foaf:accountName
  rdf:type owl:DatatypeProperty ;
  rdfs:comment "Indicates the name (identifier) associated with this online 
account." ;
  rdfs:domain foaf:OnlineAccount ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "account name" ;
  rdfs:range rdfs:Literal ;
  vs:term_status "unstable" ;
.
foaf:accountServiceHomepage
  rdf:type owl:ObjectProperty ;
  rdfs:comment "Indicates a homepage of the service provide for this online 
account." ;
  rdfs:domain foaf:OnlineAccount ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "account service homepage" ;
  rdfs:range foaf:Document ;
  vs:term_status "unstable" ;
.
foaf:aimChatID
  rdf:type owl:DatatypeProperty ;
  rdf:type owl:InverseFunctionalProperty ;
  rdfs:comment "An AIM chat ID" ;
  rdfs:domain foaf:Agent ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "AIM chat ID" ;
  rdfs:range rdfs:Literal ;
  rdfs:subPropertyOf foaf:nick ;
  vs:term_status "testing" ;
.
foaf:based_near
  rdf:type owl:ObjectProperty ;
  rdfs:comment "A location that something is based near, for some broadly human 
notion of near." ;
  rdfs:domain <http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing> ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "based near" ;
  rdfs:range <http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing> ;
  vs:term_status "unstable" ;
.
foaf:birthday
  rdf:type owl:DatatypeProperty ;
  rdf:type owl:FunctionalProperty ;
  rdfs:comment "The birthday of this Agent, represented in mm-dd string form, 
eg. '12-31'." ;
  rdfs:domain foaf:Agent ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "birthday" ;
  rdfs:range xsd:date ;
  vs:term_status "unstable" ;
.
foaf:currentProject
  rdf:type owl:ObjectProperty ;
  rdfs:comment "A current project this person works on." ;
  rdfs:domain foaf:Person ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "current project" ;
  vs:term_status "testing" ;
.
foaf:depiction
  rdf:type owl:ObjectProperty ;
  rdfs:comment "A depiction of some thing." ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "depiction" ;
  rdfs:range foaf:Image ;
  owl:inverseOf foaf:depicts ;
  vs:term_status "testing" ;
.
foaf:depicts
  rdf:type owl:ObjectProperty ;
  rdfs:comment "A thing depicted in this representation." ;
  rdfs:domain foaf:Image ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "depicts" ;
  owl:inverseOf foaf:depiction ;
  vs:term_status "testing" ;
.
foaf:dnaChecksum
  rdf:type owl:DatatypeProperty ;
  rdfs:comment "A checksum for the DNA of some thing. Joke." ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "DNA checksum" ;
  rdfs:range rdfs:Literal ;
  vs:term_status "unstable" ;
.
foaf:family_name
  rdf:type owl:DatatypeProperty ;
  rdfs:comment "The family_name of some person." ;
  rdfs:domain foaf:Person ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "family_name" ;
  rdfs:range rdfs:Literal ;
  vs:term_status "testing" ;
.
foaf:firstName
  rdf:type owl:DatatypeProperty ;
  rdfs:comment "The first name of a person." ;
  rdfs:domain foaf:Person ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "firstName" ;
  rdfs:range rdfs:Literal ;
  vs:term_status "testing" ;
.
foaf:fundedBy
  rdf:type owl:ObjectProperty ;
  rdfs:comment "An organization funding a project or person." ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "funded by" ;
  vs:term_status "unstable" ;
.
foaf:geekcode
  rdf:type owl:DatatypeProperty ;
  rdfs:comment "A textual geekcode for this person, see 
http://www.geekcode.com/geek.html"; ;
  rdfs:domain foaf:Person ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "geekcode" ;
  rdfs:range rdfs:Literal ;
  vs:term_status "testing" ;
.
foaf:gender
  rdf:type owl:DatatypeProperty ;
  rdf:type owl:FunctionalProperty ;
  rdfs:comment "The gender of this Agent (typically but not necessarily 'male' 
or 'female')." ;
  rdfs:domain foaf:Agent ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "gender" ;
  rdfs:range [
      rdf:type owl:DataRange ;
      owl:oneOf (
          "male"
          "female"
        ) ;
    ] ;
  vs:term_status "testing" ;
.
foaf:givenname
  rdf:type owl:DatatypeProperty ;
  rdfs:comment "The given name of some person." ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "Given name" ;
  vs:term_status "testing" ;
.
foaf:holdsAccount
  rdf:type owl:ObjectProperty ;
  rdfs:comment "Indicates an account held by this agent." ;
  rdfs:domain foaf:Agent ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "holds account" ;
  rdfs:range foaf:OnlineAccount ;
  vs:term_status "unstable" ;
.
foaf:homepage
  rdf:type owl:InverseFunctionalProperty ;
  rdf:type owl:ObjectProperty ;
  rdfs:comment "A homepage for some thing." ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "homepage" ;
  rdfs:range foaf:Document ;
  rdfs:subPropertyOf foaf:isPrimaryTopicOf ;
  rdfs:subPropertyOf foaf:page ;
  vs:term_status "stable" ;
.
foaf:icqChatID
  rdf:type owl:DatatypeProperty ;
  rdf:type owl:InverseFunctionalProperty ;
  rdfs:comment "An ICQ chat ID" ;
  rdfs:domain foaf:Agent ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "ICQ chat ID" ;
  rdfs:range rdfs:Literal ;
  rdfs:subPropertyOf foaf:nick ;
  vs:term_status "testing" ;
.
foaf:img
  rdf:type owl:ObjectProperty ;
  rdfs:comment "An image that can be used to represent some thing (ie. those 
depictions which are particularly representative of something, eg. one's photo 
on a homepage)." ;
  rdfs:domain foaf:Person ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "image" ;
  rdfs:range foaf:Image ;
  rdfs:subPropertyOf foaf:depiction ;
  vs:term_status "testing" ;
.
foaf:interest
  rdf:type owl:ObjectProperty ;
  rdfs:comment "A page about a topic of interest to this person." ;
  rdfs:domain foaf:Person ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "interest" ;
  rdfs:range foaf:Document ;
  vs:term_status "testing" ;
.
foaf:isPrimaryTopicOf
  rdf:type owl:InverseFunctionalProperty ;
  rdf:type owl:ObjectProperty ;
  rdfs:comment "A document that this thing is the primary topic of." ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "is primary topic of" ;
  rdfs:range foaf:Document ;
  rdfs:subPropertyOf foaf:page ;
  owl:inverseOf foaf:primaryTopic ;
  vs:term_status "testing" ;
.
foaf:jabberID
  rdf:type owl:DatatypeProperty ;
  rdf:type owl:InverseFunctionalProperty ;
  rdfs:comment "A jabber ID for something." ;
  rdfs:domain foaf:Agent ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "jabber ID" ;
  rdfs:range rdfs:Literal ;
  vs:term_status "testing" ;
.
foaf:knows
  rdf:type owl:ObjectProperty ;
  rdfs:comment "A person known by this person (indicating some level of 
reciprocated interaction between the parties)." ;
  rdfs:domain foaf:Person ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "knows" ;
  rdfs:range foaf:Person ;
  vs:term_status "testing" ;
.
foaf:logo
  rdf:type owl:ObjectProperty ;
  rdfs:comment "A logo representing some thing." ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "logo" ;
  vs:term_status "testing" ;
.
foaf:made
  rdf:type owl:ObjectProperty ;
  rdfs:comment "Something that was made by this agent." ;
  rdfs:domain foaf:Agent ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "made" ;
  owl:inverseOf foaf:maker ;
  vs:term_status "stable" ;
.
foaf:maker
  rdf:type owl:ObjectProperty ;
  rdfs:comment "An agent that  made this thing." ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "maker" ;
  rdfs:range foaf:Agent ;
  owl:inverseOf foaf:made ;
  vs:term_status "stable" ;
.
foaf:mbox
  rdf:type owl:InverseFunctionalProperty ;
  rdf:type owl:ObjectProperty ;
  rdfs:comment "A  personal mailbox, ie. an Internet mailbox associated with 
exactly one owner, the first owner of this mailbox. This is a 'static inverse 
functional property', in that  there is (across time and change) at most one 
individual that ever has any particular value for foaf:mbox." ;
  rdfs:domain foaf:Agent ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "personal mailbox" ;
  vs:term_status "stable" ;
.
foaf:mbox_sha1sum
  rdf:type owl:DatatypeProperty ;
  rdf:type owl:InverseFunctionalProperty ;
  rdfs:comment "The sha1sum of the URI of an Internet mailbox associated with 
exactly one owner, the  first owner of the mailbox." ;
  rdfs:domain foaf:Agent ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "sha1sum of a personal mailbox URI name" ;
  rdfs:range rdfs:Literal ;
  vs:term_status "testing" ;
.
foaf:member
  rdf:type owl:ObjectProperty ;
  rdfs:comment "Indicates a member of a Group" ;
  rdfs:domain foaf:Group ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "member" ;
  rdfs:range foaf:Agent ;
  vs:term_status "stable" ;
.
foaf:membershipClass
  rdf:type rdf:Property ;
  rdf:type owl:AnnotationProperty ;
  rdfs:comment "Indicates the class of individuals that are a member of a 
Group" ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "membershipClass" ;
  vs:term_status "unstable" ;
.
foaf:msnChatID
  rdf:type owl:DatatypeProperty ;
  rdf:type owl:InverseFunctionalProperty ;
  rdfs:comment "An MSN chat ID" ;
  rdfs:domain foaf:Agent ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "MSN chat ID" ;
  rdfs:range rdfs:Literal ;
  rdfs:subPropertyOf foaf:nick ;
  vs:term_status "testing" ;
.
foaf:myersBriggs
  rdf:type owl:ObjectProperty ;
  rdfs:comment "A Myers Briggs (MBTI) personality classification." ;
  rdfs:domain foaf:Person ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "myersBriggs" ;
  rdfs:range rdfs:Literal ;
  vs:term_status "testing" ;
.
foaf:name
  rdf:type rdf:Property ;
  rdf:type owl:DatatypeProperty ;
  rdfs:comment "A name for some thing." ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "name" ;
  rdfs:range rdfs:Literal ;
  rdfs:subPropertyOf rdfs:label ;
  vs:term_status "testing" ;
.
foaf:nick
  rdf:type owl:DatatypeProperty ;
  rdfs:comment "A short informal nickname characterising an agent (includes 
login identifiers, IRC and other chat nicknames)." ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "nickname" ;
  vs:term_status "testing" ;
.
foaf:openid
  rdf:type owl:InverseFunctionalProperty ;
  rdf:type owl:ObjectProperty ;
  rdfs:comment "An OpenID  for an Agent." ;
  rdfs:domain foaf:Agent ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "openid" ;
  rdfs:range foaf:Document ;
  rdfs:subPropertyOf foaf:isPrimaryTopicOf ;
  vs:term_status "unstable" ;
.
foaf:page
  rdf:type owl:ObjectProperty ;
  rdfs:comment "A page or document about this thing." ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "page" ;
  rdfs:range foaf:Document ;
  owl:inverseOf foaf:topic ;
  vs:term_status "testing" ;
.
foaf:pastProject
  rdf:type owl:ObjectProperty ;
  rdfs:comment "A project this person has previously worked on." ;
  rdfs:domain foaf:Person ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "past project" ;
  vs:term_status "testing" ;
.
foaf:phone
  rdf:type owl:ObjectProperty ;
  rdfs:comment "A phone,  specified using fully qualified tel: URI scheme 
(refs: http://www.w3.org/Addressing/schemes.html#tel)." ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "phone" ;
  vs:term_status "testing" ;
.
foaf:plan
  rdf:type owl:DatatypeProperty ;
  rdfs:comment "A .plan comment, in the tradition of finger and '.plan' files." 
;
  rdfs:domain foaf:Person ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "plan" ;
  rdfs:range rdfs:Literal ;
  vs:term_status "testing" ;
.
foaf:primaryTopic
  rdf:type owl:FunctionalProperty ;
  rdf:type owl:ObjectProperty ;
  rdfs:comment "The primary topic of some page or document." ;
  rdfs:domain foaf:Document ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "primary topic" ;
  owl:inverseOf foaf:isPrimaryTopicOf ;
  vs:term_status "testing" ;
.
foaf:publications
  rdf:type owl:ObjectProperty ;
  rdfs:comment "A link to the publications of this person." ;
  rdfs:domain foaf:Person ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "publications" ;
  rdfs:range foaf:Document ;
  vs:term_status "unstable" ;
.
foaf:schoolHomepage
  rdf:type owl:ObjectProperty ;
  rdfs:comment "A homepage of a school attended by the person." ;
  rdfs:domain foaf:Person ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "schoolHomepage" ;
  rdfs:range foaf:Document ;
  vs:term_status "testing" ;
.
foaf:sha1
  rdf:type owl:DatatypeProperty ;
  rdfs:comment "A sha1sum hash, in hex." ;
  rdfs:domain foaf:Document ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "sha1sum (hex)" ;
  vs:term_status "unstable" ;
.
foaf:surname
  rdf:type owl:DatatypeProperty ;
  rdfs:comment "The surname of some person." ;
  rdfs:domain foaf:Person ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "Surname" ;
  rdfs:range rdfs:Literal ;
  vs:term_status "testing" ;
.
foaf:theme
  rdf:type owl:ObjectProperty ;
  rdfs:comment "A theme." ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "theme" ;
  vs:term_status "unstable" ;
.
foaf:thumbnail
  rdf:type owl:ObjectProperty ;
  rdfs:comment "A derived thumbnail image." ;
  rdfs:domain foaf:Image ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "thumbnail" ;
  rdfs:range foaf:Image ;
  vs:term_status "testing" ;
.
foaf:tipjar
  rdf:type owl:ObjectProperty ;
  rdfs:comment "A tipjar document for this agent, describing means for payment 
and reward." ;
  rdfs:domain foaf:Agent ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "tipjar" ;
  rdfs:range foaf:Document ;
  rdfs:subPropertyOf foaf:page ;
  vs:term_status "testing" ;
.
foaf:title
  rdf:type owl:DatatypeProperty ;
  rdfs:comment "Title (Mr, Mrs, Ms, Dr. etc)" ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "title" ;
  vs:term_status "testing" ;
.
foaf:topic
  rdf:type owl:ObjectProperty ;
  rdfs:comment "A topic of some page or document." ;
  rdfs:domain foaf:Document ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "topic" ;
  owl:inverseOf foaf:page ;
  vs:term_status "testing" ;
.
foaf:topic_interest
  rdf:type owl:ObjectProperty ;
  rdfs:comment "A thing of interest to this person." ;
  rdfs:domain foaf:Person ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "interest_topic" ;
  vs:term_status "testing" ;
.
foaf:weblog
  rdf:type owl:InverseFunctionalProperty ;
  rdf:type owl:ObjectProperty ;
  rdfs:comment "A weblog of some thing (whether person, group, company etc.)." ;
  rdfs:domain foaf:Agent ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "weblog" ;
  rdfs:range foaf:Document ;
  rdfs:subPropertyOf foaf:page ;
  vs:term_status "testing" ;
.
foaf:workInfoHomepage
  rdf:type owl:ObjectProperty ;
  rdfs:comment "A work info homepage of some person; a page about their work 
for some organization." ;
  rdfs:domain foaf:Person ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "work info homepage" ;
  rdfs:range foaf:Document ;
  vs:term_status "testing" ;
.
foaf:workplaceHomepage
  rdf:type owl:ObjectProperty ;
  rdfs:comment "A workplace homepage of some person; the homepage of an 
organization they work for." ;
  rdfs:domain foaf:Person ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "workplace homepage" ;
  rdfs:range foaf:Document ;
  vs:term_status "testing" ;
.
foaf:yahooChatID
  rdf:type owl:DatatypeProperty ;
  rdf:type owl:InverseFunctionalProperty ;
  rdfs:comment "A Yahoo chat ID" ;
  rdfs:domain foaf:Agent ;
  rdfs:isDefinedBy foaf: ;
  rdfs:label "Yahoo chat ID" ;
  rdfs:range rdfs:Literal ;
  rdfs:subPropertyOf foaf:nick ;
  vs:term_status "testing" ;
.
wot:assurance
  rdf:type owl:AnnotationProperty ;
.
wot:src_assurance
  rdf:type owl:AnnotationProperty ;
.

Reply via email to