FOAF (software)

From Wikipedia, the free encyclopedia

FOAF (Friend of a Friend) is a 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 SHA1 checksums of their E-mail addresses, a Jabber ID, or a URI to the homepage or weblog of the person).

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

Contents

[edit] 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>
    <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>

[edit] IRC

  • Chat with experts on FOAF

[edit] See also

[edit] External links