Versions Compared

Key

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

...

  • dc:creator is being used to identify the "owner" of the virtual collection.  Should the owner relationship be more explicit?  See Access Thoughts below for more info on what it means to be an owner.

 

Virtual Collection's list of items

...

Code Block
languagenone
titleTurtle
@prefix rdf:      <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix dcterms:  <http://purl.org/dc/terms> .
@prefix dcmitype: <http://purl.org/dc/dcmitype> .
@prefix cnt:      <http://www.w3.org/2011/content#> .
@prefix oa:       <http://www.w3.org/ns/oa> .
 
<http://localhost:3000/virtualcollection/changeme:155/item/changeme:159/comment/changeme:93> a oa:Annotation ;
  oa:hasTarget <http://localhost:3000/virtualcollection/item/changeme:156> ;
  oa:hasBody <http://localhost:3000/annotations/bodies/3652730_changeme:93> ;
  oa:motivatedBy oa:Comments .

<http://localhost:3000/virtualcollection/changeme:155/item/changeme:159/comment/changeme:93/body> a dcmitype:Text ;
  cnt:chars      "This is my favorite book." ;
  dcterms:format "text/plain" .

 

...

URI Generation Thoughts

QUESTIONS: about URI generation... 

  • URIs are generated URI for the annotation and annotation body are generated following and need to be unique
    • owner – use netid to make unique
    • virtual collection (co:List and co:ListItems)
    • comment (oa:Annotation and annotation body)
  • Stanford Demo of annotations
    • URIs used the pid of annotation stored in Fedora by Hydra to generate a unique URI
    .
    • Currently shows structure used by Hydra implementation using pid assigned from Hydra UI used to create the annotation which was used for the initial annotation demo at Stanford.  This may not apply going forward.
    • Actual structure of URI is TBA
    • Would this URI be the same as the URL that would allow access to the comment via the webWill something similar be available for use to generate URIs for virtual collections, items, and comments?
    • Original demo at Stanford included a see also property for the annotation.  The see also link was the URL to the visual representation on a webpage.
      • Do we want something similar?
    These same questions apply to virtual collections.
  • What are common methods for generating URIs?

 

...

Access Thoughts

QUESTIONS:

...