Jump to content

FOAF: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
m "semantically meaningful" is tautologous
Timbl (talk | contribs)
Adjust to approach FOAF from the social networking point of view. Add option of using a URI to identify a friend. Add URI #JW for the person in the example.
Line 1: Line 1:
'''FOAF''' ('''[[Friend of a friend|Friend of a Friend]]''') is a project for machine-readable modelling of homepage-like profiles and [[social network]]s. Founded by [[Libby Miller]] and [[Dan Brickley (computer scientist)|Dan Brickley]], at the heart is a schema for defining relationships between people, and various attributes such as name, gender, and interests. To enable linking, each record includes unique identifiers for each friend (such as [[SHA1]] checksums of their [[E-mail address]]es, a [[Jabber]] ID, or a [[Uniform Resource Identifier|URI]] to the homepage or weblog of the person).
'''FOAF''' ('''[[Friend of a friend|Friend of a Friend]]''') is an open [[social network]]. Any web site, such as a personal home page or social networking commuity site, can use FOAF to connect bteween people across sites, mking an open global web of people.
A FOAF page is a machine-readable personal profile.
The FOAF project for machine-readable modelling of homepage-like profiles and [[social network]]s. Founded by [[Libby Miller]] and [[Dan Brickley (computer scientist)|Dan Brickley]], at the heart is a schema for defining relationships between people, and various attributes such as name, gender, and interests. To enable linking, each record includes unique identifiers for each friend (such as a personal RDF identifier [[Uniform Resource Identifier|URI]], [[SHA1]] checksums of their [[E-mail address]]es, a [[Jabber]] ID, or a URI of the homepage or weblog of the person).


Based on [[Resource Description Framework|RDF]], defined using [[Web Ontology Language|OWL]] and by design easily extended, it allows meaningful data sharing between varied computing environments.
Based on [[Resource Description Framework|RDF]], defined using [[Web Ontology Language|OWL]] and by design easily extended, it allows meaningful data sharing between varied computing environments.
Line 9: Line 13:
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
<foaf:Person>
<foaf:Person rdf:about="#JW">
<foaf:name>Jimmy Wales</foaf:name>
<foaf:name>Jimmy Wales</foaf:name>
<foaf:mbox rdf:resource="mailto:jwales@bomis.com" />
<foaf:mbox rdf:resource="mailto:jwales@bomis.com" />

Revision as of 16:07, 30 June 2007

FOAF (Friend of a Friend) is an open social network. Any web site, such as a personal home page or social networking commuity site, can use FOAF to connect bteween people across sites, mking an open global web of people.

A FOAF page is a machine-readable personal profile.

The FOAF project for machine-readable modelling of homepage-like profiles and social networks. Founded by Libby Miller and Dan Brickley, at the heart is a schema for defining relationships between people, and various attributes such as name, gender, and interests. To enable linking, each record includes unique identifiers for each friend (such as a personal RDF identifier URI, SHA1 checksums of their E-mail addresses, a Jabber ID, or a URI of the homepage or weblog of the person).

Based on RDF, defined using OWL and by design easily extended, it allows meaningful data sharing between varied computing environments.

Example

<rdf:RDF
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:foaf="http://xmlns.com/foaf/0.1/"
  xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
  <foaf:Person rdf:about="#JW">
    <foaf:name>Jimmy Wales</foaf:name>
    <foaf:mbox rdf:resource="mailto:jwales@bomis.com" />
    <foaf:homepage rdf:resource="http://www.jimmywales.com/" />
    <foaf:nick>Jimbo</foaf:nick>
    <foaf:depiction rdf:resource="http://www.jimmywales.com/aus_img_small.jpg" />
    <foaf:interest>
      <rdf:Description rdf:about="http://www.wikimedia.org" rdfs:label="Wikipedia" />
    </foaf:interest>
    <foaf:knows>
      <foaf:Person>
        <foaf:name>Angela Beesley</foaf:name> <!-- Wikimedia Board of Trustees -->
      </foaf:Person>
    </foaf:knows>
  </foaf:Person>
</rdf:RDF>

IRC

  • Chat with experts on FOAF

See also