Versions Compared

Key

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

...

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 Typesdcmitype
http://purl.org/dc/dcmitype
specificationRequired by OA
Contentcnt
http://www.w3.org/2011/content#
specificationRequired by OA
Collectionsco
http://purl.org/co
specification 
Open Annotationoa
http://www.w3.org/ns/oa
specification 

 

Virtual Collections

Virtual Collection's owner

...

Friend of a Friendfoaf
http://xmlns.com/foaf/0.1
specification 

 

Virtual Collections

Virtual Collection's owner

Code Block
languagenone
titlen-triples
<??? URI WITH NETID ???> <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 ???> a foaf:Person .

QUESTIONS:

  • What URI do we use for a user?  Does NETID make the URI unique?
  • Do we want to keep any other foaf properties beyond setting the type to foaf person?

Virtual Collection's metadata

...

Code Block
languagenone
titlen-triples
<http://localhost:3000/virtualcollection/changeme:155> <rdfs:label><http://www.w3.org/2000/01/rdf-schema#label> "My Virtual Collection" .
<http://localhost:3000/virtualcollection/changeme:155> <rdfs:comment><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> <dc:<http://purl.org/dc/elements/1.1/creator> <??? TODOURI DEFINE FOAF PERSON AND USE URI HERE WITH NETID ???> .
Code Block
languagenone
titleTurtle
@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dc:      <http://purl.org/dc/elements/1.1/> .
 
<http://localhost:3000/virtualcollection/changeme:155>
  rdfs:label    "My Virtual Collection" ;
  rdfs:comment  "These are resources I am gathering together for personal use." ;
  dc:creator    ??? TODO DEFINE FOAF PERSON AND USE URI HERE ??? .

...