foaf's scope and extending it

I am working with a lot of data related to the U.S. legal system. One part
is biographical information on federal judges (example:
http://air.fjc.gov/servlet/tGetInfo?jid=938). I am confused about whether
FOAF is useful for expressing this data. My initial look into FOAF turned me
off because it seemed mostly geared toward social networking. However, I
haven't found anything more appropriate and I am trying not to reinvent the
wheel, as my main focus is on court documents not judge biographies.

1. Does anyone know of a use of FOAF for historical figures or other uses
outside of the typical social networking use?

2. My second approach was to use FOAF with some extentions to get closer to
what I needed, but I have had trouble finding a solid schema for marking up
biographical/resume-like info. Although some of these seem to exist (e.g.,
DOAC at http://ramonantonio.net/doac/), they look like they have been
updatedr gained much acceptance. Any suggestions?

3. If I wanted to add a single identifier, such as "race" (see below) to the
FOAF elements is it better to try to get FOAF to add it to their set or
would it be better to create a custom schema for that single element?

4. I used the bio vocabulary to allow the markup of specific birth and death
dates, but it would seem that <bio:place> element would be more useful if I
replaced that with a more specific geography-based vocabulary. Is it better
to always use the most robust or detailed rdf tags or is it better to limit
the amount of customization or mixing of different rdf schemas?

------Sample code below -------

<?xml version="1.0"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
   xmlns:foaf="http://xmlns.com/foaf/0.1/"
   xmlns:jud="http://www.opengavel.com/rdf/jud/0.1/"
   xmlns:bio="http://purl.org/vocab/bio/0.1/"
   xmlns:doac="http://ramonantonio.net/doac/0.1/">

<foaf:Person rdf:ID="charles-sherman-haight-jr">

   <foaf:name>Charles Sherman Haight, Jr.</foaf:name>
   <foaf:firstName>Charles</foaf:firstName>
   <foaf:surname>Haight</foaf:surname>
   <foaf:gender>male</foaf:gender>
   <race>white</race>
   <foaf:title>Judge</foaf:title>

   <bio:event>
      <bio:Birth>
         <bio:date>1930-09-23</bio:date>
         <bio:place>New York, NY, USA</bio:place>
       </bio:Birth>
   </bio:event>

   <jud:event>
      <jud:nomination>
         <jud:court rdf:resource="
http://www.opengavel.com/ont/federaldistrictcourts.rdf#sdny"/>
         <jud:seat rdf:resource="
http://www.opengavel.com/rdf/federaljudges.rdf"/>
         <jud:nominatedBy rdf:resource="
http://www.opengavel.com/rdf/presidents.rdf#gerald-ford"/>
         <jud:nominationDate>1976-03-02</jud:nominationDate>
         <jud:confirmationDate>1976-03-26</jud:confirmationDate>
         <jud:comissionDate>1976-03-29</jud:comissionDate>
         <jud:seniorStatusDate>1995-09-23</jud:seniorStatusDate>
      </jud:nomination>
   </jud:event>

   <doac:education>
      <doac:Degree>
         <doac:title>B.A.</doac:title>
         <doac:organization>Yale University</doac:organization>
         <doac:end-date>1952------</doac:end-date>
      </doac:Degree>
   </doac:education>

   <doac:education>
      <doac:Degree>
         <doac:title>L.L.M.</doac:title>
         <doac:organization>Yale Law School</doac:organization>
         <doac:end-date>1955------</doac:end-date>
      </doac:Degree>
   </doac:education>

   <experience>
      <employment>
         <title>trial attorney</title>
         <organization>U.S. Department of Justice</organization>
         <start-date>1955------</start-date>
         <end-date>1957------</end-date>
      </employment>
   </experience>

   <experience>
      <employment>
         <organization>private practice</organization>
         <place>New York, NY, USA</place>
         <start-date>1957------</start-date>
         <end-date>1976------</end-date>
      </employment>
   </experience>

</foaf:Person>
</rdf:RDF>

Received on Tuesday, 19 December 2006 21:26:27 UTC