Versions Compared

Key

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

...

Virtual Collection's collaborators

Note: The collaborators are represented by their group as dc:contributor in the Virtual Collection's metadata.

Expand
Code Block
languagenone
titlen-triples
<http://localhost:3000/individual/fg355> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Agent> .

<http://localhost:3000/individual/fg355> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Group> .


<http://vivo.cornell.edu/individual/individual24416> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://vivo.cornell.edu/individual/individual24416> <http://xmlns.com/foaf/0.1/member> <http://localhost:3000/individual/fg355> .
<http://vivo.cornell.edu/individual/rjv23> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://vivo.cornell.edu/individual/rjv23> <http://xmlns.com/foaf/0.1/member> <http://localhost:3000/individual/fg355> .
<http://vivo.cornell.edu/individual/EleanorRayle> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .
<http://vivo.cornell.edu/individual/EleanorRayle> <http://xmlns.com/foaf/0.1/member> <http://localhost:3000/individual/fg355> .
Code Block
languagenone
titleTurtle
@prefix foaf:    <http://xmlns.com/foaf/0.1> .

<http://localhost:3000/individual/fg355> a foaf:Agent, foaf:Group .

<http://vivo.cornell.edu/individual/individual24416> a foaf:Person ;
  foaf:member <http://localhost:3000/individual/fg355> .
<http://vivo.cornell.edu/individual/rjv23> a foaf:Person ;
  foaf:member <http://localhost:3000/individual/fg355> .
<http://vivo.cornell.edu/individual/EleanorRayle> a foaf:Person ;
  foaf:member <http://localhost:3000/individual/fg355> . 

 

Virtual Collection's metadata

 Same as for Use Case 1.1 plus triples representing collaborators.

 

Expand
titleExpand to see n-triples...
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> <http://vivo.cornell.edu/individual/individual24416> .

NOTE:

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>
  dct:title        "My Virtual Collection" ;
  dct:description  "These are resources I am gathering together for personal use." ;
  dc:creator       <http://vivo.cornell.edu/individual/individual24416> .

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