Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagenone
titlen-triples
<??? URI WITH NETID ???> <http://vivo.cornell.edu/individual/individual24416> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person>
Code Block
languagenone
titleTurtle
@prefix foaf:    <http://xmlns.com/foaf/0.1> .

<??? URI WITH NETID ???><http://vivo.cornell.edu/individual/individual24416> a foaf:Person .

QUESTIONS:

  • What URI do we use for a user?  Does NETID make the URI unique?  Use VIVO URI.. see below.
  • Do we want to keep any other foaf properties beyond setting the type to foaf person?  Consensus:  None extra needed in our triplestore.
  • It was suggested that we use VIVO URIs for faculty and staff.  Doesn't work for students.

...

Code Block
languagenone
titlen-triples
<http://localhost:3000/virtualcollection/changeme:155> <http://www.w3.org/2000/01/rdf-schema#label> "My Virtual Collection" .
<http://localhost:3000/virtualcollection/changeme:155> <http://www.w3.org/2000/01/rdf-schema#comment> "These are resources I am gathering together for personal use." .
<http://localhost:3000/virtualcollection/changeme:155> <http://purl.org/dc/elements/1.1/creator> <??? URI WITH NETID ???> <http://vivo.cornell.edu/individual/individual24416> .
Code Block
languagenone
titleTurtle
@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dct:      <http://purl.org/dc/terms> .
 
<http://localhost:3000/virtualcollection/changeme:155>
  rdfs:label    "My Virtual Collection" ;
  rdfs:comment  "These are resources I am gathering together for personal use." ;
  dct:creator    <??? URI WITH NETID ???><http://vivo.cornell.edu/individual/individual24416> .

NOTE:  Potential alternatives...  Waiting for ontology group to weigh in and tell me which to use.

...