<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://www.jenitennison.com/blog" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>genealogy</title>
 <link>http://www.jenitennison.com/blog/taxonomy/term/34</link>
 <description>The taxonomy view with a depth of 0.</description>
 <language>en</language>
<item>
 <title>Metadata about RDF triples: reification and Linked Data</title>
 <link>http://www.jenitennison.com/blog/node/85</link>
 <description>&lt;p&gt;Those of you who have been following this blog will know that I&amp;#8217;ve been thinking recently about &lt;a href=&quot;http://www.jenitennison.com/blog/node/67#comment-4512&quot; title=&quot;Jeni&#039;s Musings: Web 2.0 project: RDF and uncertainty&quot;&gt;how to handle uncertainty related to RDF triples&lt;/a&gt; (specifically in the context of a genealogical web app). Certainty isn&amp;#8217;t the only kind of metadata-about-triples that you&amp;#8217;d want to keep in an app like this. We need to know things like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;who made the statement&lt;/li&gt;
&lt;li&gt;when the statement was made&lt;/li&gt;
&lt;li&gt;what evidence that led to the statement being made&lt;/li&gt;
&lt;li&gt;licensing information about the reuse of the statement&lt;/li&gt;
&lt;li&gt;(if we go with the rating idea) what ratings the statement has been given&lt;/li&gt;
&lt;li&gt;(if we allow editing of statements) what changes have been made to the statement over time&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;and so on. In short, all the metadata that you&amp;#8217;d want to associate with &lt;em&gt;resources&lt;/em&gt; you&amp;#8217;d also want to associate with &lt;em&gt;statements&lt;/em&gt;.&lt;/p&gt;

&lt;!--break--&gt;

&lt;p&gt;I&amp;#8217;d anticipated using &lt;a href=&quot;http://www.w3.org/TR/rdf-primer/#reification&quot; title=&quot;W3C: RDF Primer: Reification&quot;&gt;reification&lt;/a&gt; to associate metadata with statements. Something like this&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;&amp;lt;rdf:Statement rdf:about=&quot;#statement1&quot;&amp;gt;
  &amp;lt;rdf:subject rdf:resource=&quot;/people/CharlesDarwin&quot; /&amp;gt;
  &amp;lt;rdf:predicate rdf:resource=&quot;/ontology/event-roles/passenger&quot; /&amp;gt;
  &amp;lt;rdf:object rdf:resource=&quot;/events/BeagleVoyage&quot; /&amp;gt;
  &amp;lt;dc:creator rdf:resource=&quot;/users/JeniT&quot; /&amp;gt;
  &amp;lt;dc:date rdf:datatype=&quot;xsd:date&quot;&amp;gt;2008-04-11&amp;lt;/dc:date&amp;gt;
  &amp;lt;g:certainty rdf:datatype=&quot;xsd:decimal&quot;&amp;gt;1.0&amp;lt;/g:certainty&amp;gt;
  ...
&amp;lt;/rdf:Statement&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;or &lt;a href=&quot;http://www.w3.org/TR/2004/REC-rdf-syntax-grammar-20040210/#section-Syntax-reifying&quot; title=&quot;W3C: RDF/XML Syntax Specification: Reifying Statements: rdf:ID&quot;&gt;using &lt;code&gt;rdf:ID&lt;/code&gt;&lt;/a&gt;, although this does limit the URI of our statements to hash-URIs:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;&amp;lt;rdf:Description about=&quot;/people/CharlesDarwin&quot;&amp;gt;
  &amp;lt;r:passenger rdf:ID=&quot;#statement1&quot; rdf:resource=&quot;/events/BeagleVoyage&quot; /&amp;gt; 
&amp;lt;/rdf:Description&amp;gt;
&amp;lt;rdf:Description about=&quot;#statement1&quot;&amp;gt;
  &amp;lt;dc:creator rdf:resource=&quot;/users/JeniT&quot; /&amp;gt;
  &amp;lt;dc:date rdf:datatype=&quot;xsd:date&quot;&amp;gt;2008-04-11&amp;lt;/dc:date&amp;gt;
  &amp;lt;g:certainty rdf:datatype=&quot;xsd:decimal&quot;&amp;gt;1.0&amp;lt;/g:certainty&amp;gt;
&amp;lt;/rdf:Description&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;(Please feel free to correct my RDF, RDF-folks!)&lt;/p&gt;

&lt;p&gt;We can embed this information into our web pages using RDFa:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;&amp;lt;div about=&quot;#statement1&quot; instanceof=&quot;rdf:Statement&quot;&amp;gt;
  &amp;lt;p class=&quot;statement&quot;&amp;gt;
    &amp;lt;a rel=&quot;rdf:subject&quot; href=&quot;/people/CharlesDarwin&quot;&amp;gt;
      Charles Darwin
    &amp;lt;/a&amp;gt;
    was a
    &amp;lt;a rel=&quot;rdf:predicate&quot; href=&quot;/ontologies/event-roles/passenger&quot;&amp;gt;
      passenger
    &amp;lt;/a&amp;gt;
    on the
    &amp;lt;a rel=&quot;rdf:object&quot; href=&quot;/events/BeagleVoyage&quot;&amp;gt;
      &amp;lt;span about=&quot;/people/CharlesDarwin&quot; 
            rel=&quot;r:passenger&quot; 
            resource=&quot;/events/BeagleVoyage&quot;&amp;gt;
        Beagle Voyage
      &amp;lt;/span&amp;gt;
    &amp;lt;/a&amp;gt;
  &amp;lt;/p&amp;gt;
  &amp;lt;dl class=&quot;metadata&quot;&amp;gt;
    &amp;lt;dt&amp;gt;Author:&amp;lt;/dt&amp;gt;
    &amp;lt;dd&amp;gt;
      &amp;lt;a rel=&quot;dc:creator&quot; href=&quot;/users/JeniT&quot;&amp;gt;
        Jeni Tennison
      &amp;lt;/a&amp;gt;
    &amp;lt;/dd&amp;gt;
    &amp;lt;dt&amp;gt;Date:&amp;lt;/dt&amp;gt;
    &amp;lt;dd property=&quot;dc:date&quot; datatype=&quot;xsd:date&quot; 
        content=&quot;2008-04-11&quot;&amp;gt;
      11 Apr, 2008
    &amp;lt;/dd&amp;gt;
    &amp;lt;dt&amp;gt;Certainty:&amp;lt;/dt&amp;gt;
    &amp;lt;dd property=&quot;b:certainty&quot; datatype=&quot;xsd:decimal&quot;
        content=&quot;1.0&quot;&amp;gt;
      &amp;lt;img src=&quot;stars5.gif&quot; alt=&quot;five stars&quot; /&amp;gt;
    &amp;lt;/dd&amp;gt;
  &amp;lt;/dl&amp;gt;
&amp;lt;/div&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Note that I&amp;#8217;ve incorporated both the reified statement and the statement itself into the RDFa. If I&amp;#8217;m correct in my mental parsing of RDFa, I think this leads to the set of triples from the RDF/XML in the above examples plus the triple:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;&amp;lt;/people/CharlesDarwin&amp;gt; r:passenger &amp;lt;/events/BeagleVoyage&amp;gt; .
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;But then the other day, I was reading the tutorial &lt;a href=&quot;http://www4.wiwiss.fu-berlin.de/bizer/pub/LinkedDataTutorial/&quot; title=&quot;How to publish Linked Data on the Web&quot;&gt;How to publish Linked Data on the Web&lt;/a&gt;, which says&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;We discourage the use of RDF reification as the semantics of reification are unclear and as reified statements are rather cumbersome to query with the SPARQL query language. Metadata can be attached to the information resource instead, as explained in Section 5.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Jumping to Section 5, I find&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;&lt;strong&gt;Metadata:&lt;/strong&gt; The representation should contain any metadata you want to attach to your published data, such as a URI identifying the author and licensing information. These should be recorded as RDF descriptions of the information resource that describes a non-information resource; that is, the subject of the RDF triples should be the URI of the information resource. Attaching meta-information to that information resource, rather than attaching it to the described resource itself or to specific RDF statements about the resource (as with RDF reification) plays nicely together with using Named Graphs and the SPARQL query language in Linked Data client applications&amp;#8230;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;There are some examples of what this looks like within the tutorial. The first is an &amp;#8220;&lt;strong&gt;authoritative description&lt;/strong&gt;&amp;#8221; found at &lt;code&gt;http://dbpedia.org/data/Alec_Empire&lt;/code&gt; after a 303 redirection from &lt;code&gt;http://dbpedia.org/resource/Alec_Empire&lt;/code&gt;.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;# Metadata and Licensing Information
&amp;lt;http://dbpedia.org/data/Alec_Empire&amp;gt;
    rdfs:label &quot;RDF description of Alec Empire&quot; ;
    rdf:type foaf:Document ;
    dc:publisher &amp;lt;http://dbpedia.org/resource/DBpedia&amp;gt; ;
    dc:date &quot;2007-07-13&quot;^^xsd:date ;
    dc:rights &amp;lt;http://en.wikipedia.org/wiki/WP:GFDL&amp;gt; .

# The description
&amp;lt;http://dbpedia.org/resource/Alec_Empire&amp;gt; 
    foaf:name &quot;Empire, Alec&quot; ;
    rdf:type foaf:Person ;
    rdf:type &amp;lt;http://dbpedia.org/class/yago/musician&amp;gt; ;
    rdfs:comment
        &quot;Alec Empire (born May 2, 1972) is a German musician who is ...&quot;@en ;
    rdfs:comment
        &quot;Alec Empire (eigentlich Alexander Wilke) ist ein deutscher Musiker. ...&quot;@de ;
    dbpedia:genre &amp;lt;http://dbpedia.org/resource/Techno&amp;gt; ;
    dbpedia:associatedActs 
      &amp;lt;http://dbpedia.org/resource/Atari_Teenage_Riot&amp;gt; ;
    foaf:page &amp;lt;http://en.wikipedia.org/wiki/Alec_Empire&amp;gt; ;
    foaf:page &amp;lt;http://dbpedia.org/page/Alec_Empire&amp;gt; ; 
    rdfs:isDefinedBy &amp;lt;http://dbpedia.org/data/Alec_Empire&amp;gt; ;
    owl:sameAs &amp;lt;http://zitgist.com/music/artist/d71ba53b-23b0-4870-a429-cce6f345763b&amp;gt; .
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;The second is a &lt;strong&gt;non-authoritative description&lt;/strong&gt; found at &lt;code&gt;http://sites.wiwiss.fu-berlin.de/suhl/bizer/pub/LinkedDataTutorial/ChrisAboutRichard&lt;/code&gt;:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;# Metadata and Licensing Information
&amp;lt;&amp;gt;
    rdf:type foaf:Document ;
    dc:author &amp;lt;http://www.bizer.de#chris&amp;gt; ;
    dc:date &quot;2007-07-13&quot;^^xsd:date ;
    cc:license &amp;lt;http://web.resource.org/cc/PublicDomain&amp;gt; .

# The description
&amp;lt;http://richard.cyganiak.de/foaf.rdf#cygri&amp;gt; 
    foaf:name &quot;Richard Cyganiak&quot; ;
    foaf:topic_interest &amp;lt;http://dbpedia.org/resource/Category:Databases&amp;gt; ;
    foaf:topic_interest &amp;lt;http://dbpedia.org/resource/MacBook_Pro&amp;gt; ;
    rdfs:isDefinedBy &amp;lt;http://richard.cyganiak.de/foaf.rdf&amp;gt; ;
    rdf:seeAlso &amp;lt;&amp;gt; .
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Note that &lt;code&gt;rdfs:isDefinedBy&lt;/code&gt; does not necessarily point to the data you get when you retrieve the resource, but to an (presumably there can be more than one) authoritative description of the resource. It&amp;#8217;s also associated with a particular &lt;em&gt;resource&lt;/em&gt; rather than a particular &lt;em&gt;statement&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;To know which metadata applies to a particular statement, an application must know where it got the statement from. In effect, a statement here has &lt;em&gt;four&lt;/em&gt; parts: subject, property, object and location (with the possibility that multiple statements with the same subject, property and object might have different locations and therefore different metadata). This is similar to assigning an ID to a statement, as with &lt;code&gt;rdf:ID&lt;/code&gt;, but restricts the statement&amp;#8217;s identifier to being the location where it was found.&lt;/p&gt;

&lt;p&gt;So what does that mean for the genealogical web app? Well, in the app we&amp;#8217;re going to find any given statement by a particular user quoted on lots of pages. I was intending to RDFa them all but that would mean lots of duplicate statements from different locations, potentially bloating applications that were harvesting the data.&lt;/p&gt;

&lt;p&gt;I can&amp;#8217;t work out whether I like or loathe the Linked Data concept of associating metadata with the document in which you find triples. In some ways it seems very natural &amp;#8212; look for information about a resource at the URI for the resouce &amp;#8212; but the metadata mechanisms restrict where you can place statements on the web (or at least assign semantics to their location which aren&amp;#8217;t necessarily intended), and that seems like a Bad Thing. On the other hand, perhaps I&amp;#8217;m just being overly influenced by the desire to use RDFa, which does lead one to want to mark up data wherever it appears.&lt;/p&gt;

&lt;p&gt;I&amp;#8217;d welcome any advice.&lt;/p&gt;
</description>
 <comments>http://www.jenitennison.com/blog/node/85#comments</comments>
 <category domain="http://www.jenitennison.com/blog/taxonomy/term/34">genealogy</category>
 <category domain="http://www.jenitennison.com/blog/taxonomy/term/31">rdf</category>
 <pubDate>Fri, 11 Apr 2008 21:59:07 +0100</pubDate>
 <dc:creator>Jeni</dc:creator>
 <guid isPermaLink="false">85 at http://www.jenitennison.com/blog</guid>
</item>
<item>
 <title>Web 2.0 project: privacy in genealogy</title>
 <link>http://www.jenitennison.com/blog/node/69</link>
 <description>&lt;p&gt;There were a couple of comments on my previous post about &lt;a href=&quot;http://www.jenitennison.com/blog/node/67&quot; title=&quot;Jeni&#039;s Musings: Web 2.0 project: RDF and uncertainty&quot;&gt;RDF and uncertainty in our Web 2.0 genealogy project&lt;/a&gt; concerning the problems of privacy in a genealogy app. My ideas about this aren&amp;#8217;t fully thought-through, let alone implemented, but I thought I&amp;#8217;d share them anyway.&lt;/p&gt;

&lt;p&gt;First, the things we could restrict access to are:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;sources of information (eg birth records)&lt;/li&gt;
&lt;li&gt;personas (eg Charles Darwin) and assertions about them&lt;/li&gt;
&lt;li&gt;events (eg the Beagle Voyage) and assertions about them&lt;/li&gt;
&lt;li&gt;groups (eg the Royal Society) and assertions about them&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;There are different kinds of things you might do to the resources:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;who can know it &lt;em&gt;exists&lt;/em&gt;?&lt;/li&gt;
&lt;li&gt;who can &lt;em&gt;read&lt;/em&gt; it?&lt;/li&gt;
&lt;li&gt;who can &lt;em&gt;change&lt;/em&gt; it?&lt;/li&gt;
&lt;li&gt;who can &lt;em&gt;delete&lt;/em&gt; it?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;and different levels of access for each of those things:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;global (public)&lt;/li&gt;
&lt;li&gt;group (restricted)&lt;/li&gt;
&lt;li&gt;user (private)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I imagine that at any point, a user will have a default set of permissions in play. For example, they might be generating information that anyone can know exists and can read, but only a restricted set of people can change, and only the user themselves can delete.&lt;/p&gt;

&lt;h2&gt;Searchability&lt;/h2&gt;

&lt;p&gt;I&amp;#8217;m going to side-track for a second here to explain why I&amp;#8217;ve separated out &amp;#8220;knowing something exists&amp;#8221; from &amp;#8220;readable&amp;#8221;.&lt;/p&gt;

&lt;p&gt;Our genealogy application is evidence-based, which means that to say that someone exists you must have a source for that information, be it a birth certificate or a picture or the transcription of an interview. The &lt;em&gt;persona&lt;/em&gt; that you believe to exist on the basis of one source may or may not be the same persona that you believe to exist on the basis of a different source. A separate step is required to link the two personas together.&lt;/p&gt;

&lt;p&gt;The intention is that our application will help you link personas (and events, groups and anything else that might be quoted in more than one piece of evidence) together through searching through other personas (etc) to find those that are similar. They might have similar names, but most of the evidence for similarity will come from similar assertions having been made about them.&lt;/p&gt;

&lt;p&gt;Now say that I have some evidence about Charles Darwin and enter it into the system, and you similarly have some evidence about Charles Darwin that you enter into the system. We both create &amp;#8220;Charles Darwin&amp;#8221; personas based on our evidence. I&amp;#8217;d like it to be the case that, even if we don&amp;#8217;t want the information we&amp;#8217;ve captured about Charles Darwin to be readable by others, we can still make it searchable so that others can find out we&amp;#8217;re working on that person too so that (after some interpersonal negotiation) the two sets of information can be brought together.&lt;/p&gt;

&lt;p&gt;So the &amp;#8220;who can know it exists?&amp;#8221; access is about making your information searchable, even if the details aren&amp;#8217;t readable.&lt;/p&gt;

&lt;h2&gt;Default access&lt;/h2&gt;

&lt;p&gt;As I understand it, in genealogy circles it would be bad form to make any information about living people publicly available. Some would argue that any information that is currently publicly available (on the web, or even off it, in electoral rolls, phone books, wherever) is fair game: if it&amp;#8217;s already &amp;#8220;out there&amp;#8221; then you can use it. But I don&amp;#8217;t agree with that. There&amp;#8217;s a big difference between there being multiple disparate, human-readable sources of information about an individual &amp;#8220;out there somewhere&amp;#8221; and providing a single aggregated public source for all this data in a computer-readable format. In short, I agree with Jeff &amp;#8220;Coding Horror&amp;#8221; Atwood&amp;#8217;s recent post on privacy in which he characterises &lt;a href=&quot;http://www.codinghorror.com/blog/archives/001027.html&quot; title=&quot;Coding Horror: An Inalienable Right to Privacy&quot;&gt;privacy as an inalienable right&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Also, some people make money from doing genealogical research, and it would be short-sighted to prevent people from using the application if they simply wanted to keep what they were doing private for their own reasons.&lt;/p&gt;

&lt;p&gt;So there must be a setting such that information can be kept entirely private, to the extent that only the person who constructed it knows that it exists.&lt;/p&gt;

&lt;p&gt;On the other hand, many of the benefits of Web 2.0 applications come from integrating your own material with other people&amp;#8217;s. Genealogy is a good example of this, because there&amp;#8217;s a distinct thrill in hooking into other people&amp;#8217;s research and discovering other branches of the family.&lt;/p&gt;

&lt;p&gt;So there must be a setting such that information can be made globally available to all and sundry, even to the extent of others changing and deleting it.&lt;/p&gt;

&lt;p&gt;I think the default has to be that the information you enter is completely private. I&amp;#8217;d like to encourage people to share their information, but I think that the way to do that is through social mechanisms (eg the more useful information you share, the more kudos you get) rather than technological ones.&lt;/p&gt;

&lt;h2&gt;User Groups&lt;/h2&gt;

&lt;p&gt;Public and private access aside, there&amp;#8217;s a huge middle ground of access that&amp;#8217;s somehow restricted to a subset of users. I don&amp;#8217;t think I&amp;#8217;m being particularly radical if I say that the current state of the art of social software access control isn&amp;#8217;t great, that the &amp;#8220;restricted&amp;#8221; subset is usually to &amp;#8220;my friends&amp;#8221;, but people don&amp;#8217;t have one social circle: they operate in different spheres, and have a different set of friends/colleagues in each.&lt;/p&gt;

&lt;p&gt;The same is true in our genealogy app. A given user might be working (collaboratively) on several projects, with different teams. For example, I might work on a family tree with my mother for her side of the family and my father for his, with no need for either of them to be aware of the other (unless they overlap, in which case &amp;#8220;searchability&amp;#8221; comes into play).&lt;/p&gt;

&lt;p&gt;So I think it makes sense to use the familiar notion from *nix of &amp;#8220;user groups&amp;#8221;, and assign each item (sources/people/events/groups) to one or more user groups. User groups will probably mostly arise from those working on particular projects, but could be more arbitrary. I&amp;#8217;m thinking:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;moderated (by-invitation) and open (by-subscription) user groups&lt;/li&gt;
&lt;li&gt;private, public and restricted permissions on the user groups&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The other thing I was considering here was having a notion of &amp;#8220;degrees of separation&amp;#8221;. If I entered details about our daughters into a family tree, I might be happy for immediate family, and their immediate family, to see them: a separation of two. I don&amp;#8217;t know whether this kind of network-based user group would be useful or a pain to manage, or even implementable; it&amp;#8217;s just an idea I had.&lt;/p&gt;
</description>
 <comments>http://www.jenitennison.com/blog/node/69#comments</comments>
 <category domain="http://www.jenitennison.com/blog/taxonomy/term/34">genealogy</category>
 <category domain="http://www.jenitennison.com/blog/taxonomy/term/12">web</category>
 <pubDate>Thu, 17 Jan 2008 21:48:58 +0000</pubDate>
 <dc:creator>Jeni</dc:creator>
 <guid isPermaLink="false">69 at http://www.jenitennison.com/blog</guid>
</item>
<item>
 <title>Web 2.0 project: RDF and uncertainty</title>
 <link>http://www.jenitennison.com/blog/node/67</link>
 <description>&lt;p&gt;I&amp;#8217;ve been thinking a bit recently about how to deal with certainty in our Genealogical Web 2.0 application. We&amp;#8217;ve come round to using an RDF model to represent what the Gentech data model calls &amp;#8220;assertions&amp;#8221;; assertions such as &amp;#8220;Charles Darwin was a passenger on the Beagle Voyage&amp;#8221; are represented as an RDF Statement in which (a resource representing) &amp;#8220;Charles Darwin&amp;#8221; is the subject, (a resource representing) &amp;#8220;Beagle Voyage&amp;#8221; is the object, and &amp;#8220;was a passenger on&amp;#8221; is the predicate/property.&lt;/p&gt;

&lt;p&gt;All the statements in the genealogical application should be based on some source of information, either an external piece of evidence (such as a marriage certificate) or by combining existing statements. Either way, there&amp;#8217;s certain metadata that we want to store about it, such as&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;who created the statement&lt;/li&gt;
&lt;li&gt;when it was made&lt;/li&gt;
&lt;li&gt;the date(s) when the statement was true&lt;/li&gt;
&lt;li&gt;the certainty in the statement&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The certainty factor is interesting. For statements based directly on evidence, there are three factors that come into play:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;the reliability of the evidence itself; for example, a marriage certificate is more reliable than a diary entry for a wedding&lt;/li&gt;
&lt;li&gt;the certainty the user has in drawing their conclusion based on the evidence; for example,  you would be more certain in the statement that the groom named on a marriage certificate is a man than in the statement that the witness named on a marriage certificate is a friend of the groom&lt;/li&gt;
&lt;li&gt;the reliability of the user who has made the statement: an expert in family history is likely to draw more accurate conclusions than someone who has only just started&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;So now the question is how to assess these factors. The usual Web 2.0 method is to use ratings. We could get users to rate each other to provide the third score. We could then get users to rate the reliability of particular pieces of evidence, modify that score based on the users&amp;#8217; reliability, and aggregate those scores.&lt;/p&gt;

&lt;p&gt;The final certainty of the statement would be a combination of this score for evidence reliability and ratings from multiple users, again weighted according to the users&amp;#8217; reliability.&lt;/p&gt;
</description>
 <comments>http://www.jenitennison.com/blog/node/67#comments</comments>
 <category domain="http://www.jenitennison.com/blog/taxonomy/term/34">genealogy</category>
 <category domain="http://www.jenitennison.com/blog/taxonomy/term/31">rdf</category>
 <pubDate>Fri, 21 Dec 2007 22:03:51 +0000</pubDate>
 <dc:creator>Jeni</dc:creator>
 <guid isPermaLink="false">67 at http://www.jenitennison.com/blog</guid>
</item>
</channel>
</rss>
