PointingFromPersonToGroup
There is some debate in how to point from a Person to a Group (FoafGroups).
There seem to be two broad modes of thought:
* Link the person to the group with a new property in a FoafExtension. * Create a group within the FOAF file, with a see-also to the FOAF file containing the full description.
There's presently an issue ticket assigned to this: MemberVocabIssue.
The first is obvious; a brief note on the second-
The second works something like this:
<rdf:RDF ...>
<foaf:Person rdf:nodeId="me">
<foaf:name>YOUR NAME HERE</foaf:name>
...
...
(YOUR FOAF INFORMATION)
...
...
</foaf:Person>
<foaf:Group>
<foaf:name>NAME OF GROUP YOU BELONG TO</foaf:name>
<rdfs:seeAlso rdf:resource="URL OF FOAF FILE FOR GROUP"/>
<foaf:member>
(SOME WAY OF SAYING, "ME, IDENTIFIED IN THE NODEID ABOVE")
</foaf:member>
</foaf:Group>
</rdf:RDF>