added more person rel example
authorMichael Hausenblas http://sw-app.org/mic.xhtml#i
Sun, 29 Jan 2012 15:32:23 +0000
changeset 40 435f4188e29b
parent 39 a5b1db334c50
child 41 b0388b1bc735
added more person rel example
people/index.html
--- a/people/index.html	Sun Jan 29 13:10:07 2012 +0000
+++ b/people/index.html	Sun Jan 29 15:32:23 2012 +0000
@@ -32,8 +32,6 @@
 </p>
 </section>
 
-<p class="editorsnote"><a href="https://www.w3.org/2011/gld/track/issues/17">ISSUE-17</a></p>
-
 <section class='informative'>
 <h2 id="intro">Introduction</h2>
 <p>In many cases, <dfn title="Data from datastores such as RDBs or spreadsheets that acts as a source for the Linked Data publishing process.">source data</dfn> contains data about people. We will use the following plain text example throughout the document to demonstrate the usage of terms:</p>
@@ -75,18 +73,32 @@
 <section>
 <h3 id="relations-to-contact-info">Relating a person to a contact information</h3>
 <p>In order to relate a person to a contact information, such as typically found on a business card, 1. the contact information MUST be represented using <a href="http://www.w3.org/TR/vcard-rdf/" title="Representing vCard Objects in RDF">vCard</a>, and 2. the link type used between a person and a contact information MUST be <code><a href="#gldp-terms-card">gldp:card</a></code>.</p>
-<p class="editorsnote">@@TODO: define a term that relates a person to a vCard object, based on the semantics of <code><a href="http://open.vocab.org/docs/businessCard" title="ov:businessCard, a property in the OpenVocab RDF schema">ov:businessCard</a></code>.</p>
+<pre class='example'>
+ @prefix gldp: &lt;http://www.w3.org/ns/people#&gt; .
+ @prefix : &lt;http://colcids.com/person/&gt; .
+	
+ :42 a foaf:Person ;
+     gldp:card :42#bc .
+
+ :42#bc a v:VCard ;
+        v:fn "Jane Doe" ;
+        ...
+</pre>
 <p class="editorsnote"><a href="https://www.w3.org/2011/gld/track/issues/22">ISSUE-22</a></p>
+<p class="editorsnote"><a href="https://www.w3.org/2011/gld/track/issues/24">ISSUE-24</a></p>
 </section>
 
 <section>
-<h3 id="relations-to-people">Relating a person to other people</h3>
+<h3 id="relations-to-people">Relating a person to another person</h3>
 <p>In order to relate a person to another person one MUST use the <a href="http://xmlns.com/foaf/spec/" title="FOAF Vocabulary Specification">FOAF Vocabulary Specification</a>:</p>
 <ul>
 	<li>To state that one person knows another person, <code><a href="http://xmlns.com/foaf/spec/#term_knows" title="FOAF Vocabulary Specification">foaf:knows</a></code> MUST be used.</li>
 	<li>To state other relationships between people, the <a href="http://vocab.org/relationship/" title="RELATIONSHIP: A vocabulary for describing relationships between people">RELATIONSHIP vocabulary</a> SHOULD be used.</li>
-	
 </ul>
+<pre class='example'>
+ &lt;http://colcids.com/person/42&gt; foaf:knows &lt;http://opendataguru.net/me&gt; .
+</pre>
+
 <div class="practice">
 	<p><span id="sample-practice" class="practicelab">Trusting people's relationships</span></p>
 	<p class="practicedesc">A <code>foaf:knows</code> only establishes an unidirectional claim that someone knows someone else. The relation SHOULD only be considered to be of a mutual nature if the other person sets a <code>foaf:knows</code> relation as well. <a href="http://redcatco.com/blog/communication/foaf-building-networks-with-a-friend-of-a-friend/" title="FOAF &#8211; Building Networks With a Friend of a Friend | redcatco blog">Read more ...</a></p>
@@ -96,6 +108,15 @@
 <section>
 <h3 id="relations-to-org">Relating a person to an organization</h3>
 <p>In order to relate a person to an organization one MUST use the <a href="http://www.w3.org/ns/org#">Organization Ontology</a>.</p>
+<pre class='example'>
+ &lt;http://colcids.com/company&gt; a org:FormalOrganization .
+
+ &lt;http://colcids.com/person/42&gt; a foaf:Person .
+
+ _:bn123 a org:Membership ;
+         org:organization &lt;http://colcids.com/company&gt; ;
+         org:member &lt;http://colcids.com/person/42&gt; .
+</pre>
 <p class="editorsnote"><a href="https://www.w3.org/2011/gld/track/issues/19">ISSUE-19</a></p>
 </section>