Planning | Description | Requirements | UI Mockup | Triples


Table of Contents


Expanding Use Case 1.1

The triples on this page expand the set of triples specified for Use Case 1.1.

Ontologies

The following is a list of all ontologies used by the Triple Examples.

NamePrefixURLDetailsComments
RDF
rdf
http://www.w3.org/1999/02/22-rdf-syntax-ns#
specification 
RDF Schemardfs
http://www.w3.org/2000/01/rdf-schema#
specification 
Dublin Coredc
http://purl.org/dc/elements/1.1/
specification 
Dublin Core Termsdcterms
http://purl.org/dc/terms
specificationRequired by OA
Dublin Core Typesdctype
http://purl.org/dc/dcmitype
specificationRequired by OA
Contentcnt
http://www.w3.org/2011/content#
specificationRequired by OA
OREorehttp://www.openarchives.org/ore/1.0/vocabulary#otherRelationships specificationRecommended as an alternative to the Collections ontology by Rob.  Represents both ordered and unordered items using the Aggregation class.
Collectionsco
http://purl.org/co
specificationCan represent unordered items using the Bag class and ordered items using the List class.
Open Annotationoa
http://www.w3.org/ns/oa
specification 
Friend of a Friendfoaf
http://xmlns.com/foaf/0.1
specificationAlso used by OA

 

Virtual Collections

Virtual Collection's owner

 Same as for Use Case 1.1.

Virtual Collection's collaborators

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

<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> .
@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.

 

<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> .
@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.