
Data model (ontology) for Data Basket
RS-893
Basket Data Model
Overview
We try to reuse established ontologies as much as possible. We considered using the latest version of Open Annotation (OA) as a basis, but gave up on this idea.In order to have a simple and coherent model, Data Basket uses the same basis as Data+Image Annotation: Open Annotation Collaboration (OAC). Still, we use some approaches from OA, eg ore:Aggregation.
We map entities from the Data Basket Spec 3.5 to the following:
Entity | Description | Mapped to |
Basket | List of Bookmarks, owned by a particular user | ore:Aggregation |
Bookmark | Pointer to an Item, made by particular user, with optional description | oac:Annotation |
Target Item | RS URI or web URL or pure text, (in some cases) having Preview, short URL, creator | see Item Types |
- Jana: why do we need a Basket?
- Vlado1: To distinguish the bookmarks of one user from those of another
- Jana: I rather imagined it denormalized with owning user being just a property of the bookmark. Having a basket is not a problem of course - just that we never actually deal with this object and we need some additional effort for maintaining it.
- Vlado1: To distinguish the bookmarks of one user from those of another
- Jana: if Bookmark's type is oac:Annotation, how can we distinguish from other annotations, eg forum posts?
- Vlado1: I think it can be distinguished by the fact that it's in a Basket. We never search for "all annotations", we search for annotations related to something (an Object, a Basket...)
If we need a specific type then I'll add one. In fact OA has such: oax:Bookmark (but they oscillate between using types and using a separate field called oa:hasMotivation)- Jana: We need to double check this won't break the existing Annotation API. I suggest someone reads through all SPARQL queries related to annotations.
- Vlado1: I think it can be distinguished by the fact that it's in a Basket. We never search for "all annotations", we search for annotations related to something (an Object, a Basket...)
Prefixes
We use the following prefixes:
Pref | URI | Get from URL | Local file |
crm | http://erlangen-crm.org/current/ | http://erlangen-crm.org/current/ | ecrm_current.owl |
dcterms | http://purl.org/dc/terms/ | no need | |
foaf | http://xmlns.com/foaf/0.1/ | foaf.ttl | |
oac | http://www.openannotation.org/ns/ | oac.rdf | |
ore | http://www.openarchives.org/ore/terms/ | no need | |
rdf | http://www.w3.org/1999/02/22-rdf-syntax-ns# | no need | |
rso | http://www.researchspace.org/ontology/ | RS internal | rso.ttl |
Basket
A Basket is a bag of Bookmarks (represented as ore:Aggregation), owned by a particular user. Fields:
Field | Property |
Owner | dcterms:creator |
Bookmarks | ore:aggregates |
Processing:
- A basket is created when the first bookmark is being added (on demand)
- A basket is never deleted, even on action Clear All
Basket Example
<http://www.researchspace.org/basket/1> a ore:Aggregation; dcterms:creator "username2"; ore:aggregates <http://www.researchspace.org/bookmark/3>, <http://www.researchspace.org/bookmark/4>.
- For now users are represented with a Nuxeo username, not with URI
- TODO Jana: Can the given URI patterns be implemented?
Item Types
Target Items can have one of the following types.
- Vlado1: It's important that we use the normal rdf:type property, since the type is attached to the item (target node) and not to the bookmark through a customproperty
Type Name | Type | Icon | Comments |
Data Annotation | rso:DataAnnotation | ![]() |
see Annotation with OAC and Reification New subclass of oac:Annotation that allows the Basket code to recognize more easily the item type. ![]() |
Forum | ![]() |
Not in RS3.5 | |
Image | crm:E38_Image | ![]() |
![]() ![]() |
Image Annotation | rso:ImageAnnotation | ![]() |
see Image Annotation Design#Example. New subclass of oac:Annotation: see comment of Data Annotation |
Object | rso:FC70_Thing | ![]() |
This class is set by a rule in FR Implementation |
Object Field | rdf:Statement | ![]() |
see Annotation with OAC and Reification. When an AP is added to Basket, this Statement is created, same as making annotation or a link to AP |
Search | rso:Search | ![]() |
new class. It has one field P3_has_note storing the textual representation of the search |
Text Snippet | (none) | ![]() |
Does not have item URI, therefore no type. Its title and content (rich-text description) are saved in Bookmark's body ![]() |
Web Link | foaf:Document | ![]() |
New class with no fields. ![]() |
Re Search:
- Vlado: should the rso:Search node be created when the Search is put in history, or only when it's put in basket?
- Jana: History is currently stored in Nuxeo
- Vlado1: I understand, but I thought we'd be storing the history same as the bookmarks? The question is who & when will create the node
- Jana: We be better store history in RDF indeed using the same data model. Still, it should be distinguishable from bookmarks as we need them separately in UI. (We may use a second basket for the user - a history one). I think we should use rso:Search for storing queries from history as well as saved searches (when we implement these).
Bookmark
Each bookmark resides in a basket and points to a target item (URL). Fields:
UI Field | Property (path) | Applicability and Notes |
rdf:type | oac:Annotation (fixed value). Distinguished from other Annotations by residing in a Basket | |
Type | oac:hasTarget/rdf:type | All except Text Snippet. See Item Types |
Preview | rso:hasTargetPreview | Image/Image Annotation: RS image URL. Web Link: URL from Web Preview service |
Created by | oac:hasBody/dcterms:creator | |
Created on | oac:hasBody/dcterms:created | |
Title | oac:hasBody/rso:P3_has_title | Plain text. Copied from Item and shortened to 30 chars |
Notes | oac:hasBody/rso:P3_has_description | Rich text. No default value |
URL (Item) | oac:hasTarget | All except Text Snippet |
Short URL | rso:hasTargetShortURL | From URL Shortening service |
Item created by | oac:hasTarget/dcterms:creator | Only for Data/Image Annotation |
Item created on | oac:hasTarget/dcterms:created | Only for Data/Image Annotation |
Notes:
- Applicability describes for which item types that field is applicable, and gives extra notes
- The following fields shown on Data Basket UI design don't really exist: Sent by, Tags, Last updated
Processing:
- oac:hasBody/dcterms:creator and created are set from the current user and datetime when the bookmark is created.
They are preserved if the bookmark is copied to another basket. - oac:hasTarget/dcterms:creator and created are present only for 2 item types. They alraedy exist, they are not added when the bookmark is created.
Web Link Example
<http://www.researchspace.org/bookmark/3> a oac:Annotation; oac:hasTarget <http://www.wikipedia.org>; rso:hasTargetShortURL <http://goo.gl/KA4Ll>; rso:hasTargetPreview <http://api.webthumbnail.org?width=512&height=384&format=png&browser=firefox&url=http://www.wikipedia.org>; oac:hasBody <http://www.researchspace.org/bookmark/3/body>. <http://www.wikipedia.org> a foaf:Document. ##Note1: creating the Bookmark inserts this statement <http://www.researchspace.org/bookmark/3/body> a oac:Body; dcterms:creator "username2"; dcterms:created "2012-10-08T12:34:56"^^xsd:dateTime; rso:P3_has_title "Wikipedia"; rso:P3_has_description "Wikipedia is a world-wide collaboratively-created encyclopedia".
Web Link Illustration
In the illustrations below, a red square indicates a pre-existing statement. All others are created when a bookmark is created.

Image Annotation Example
See Image Annotation Design#Example (we present only the relevant part of the image annotation's data)
@base <http://www.researchspace.org/> . <DT219363.tif/annot/1> a oac:Annotation; oac:hasBody <DT219363.tif/annot/1/body>; oac:hasTarget <DT219363.tif/annot/1/target>. <DT219363.tif/annot/1/target> a oac:ConstrainedTarget; oac:constrains <DT219363.tif#xywh=1000,900,250,250>. <DT219363.tif#xywh=1000,900,250,250> dcterms:isPartOf <DT219363.tif>. <DT219363.tif> a crm:E38_Image. ##Note2: RKD doesn't yet have this, BM has it <DT219363.tif/annot/1/body> a oac:Body; dcterms:creator "username1"; dcterms:created "2002-03-15T12:34:56"^^xsd:dateTime. <bookmark/4> a oac:Annotation; oac:hasTarget <DT219363.tif/annot/1>; rso:hasTargetShortURL <http://goo.gl/RdPAb>; rso:hasTargetPreview <DT219363.tif>; oac:hasBody <bookmark/4/body>. <bookmark/4/body> a oac:Body; dcterms:creator "username2"; dcterms:created "2012-10-08T12:34:56"^^xsd:dateTime; rso:P3_has_title "The nose is large and wrinkled"; # copied from the Image Annotation rso:P3_has_description "Some equally silly description".
Notes:
- We omit http://www.researchspace.org/ from the URLs by using @base.
- The hasTargetPreview URL should be resolvable! It's given above as <DT219363.tif>, but an appropriate thumbnail-size IIPserver URL should be used instead
- dcterms:creator&created from <DT219363.tif/annot/1/body> are displayed in the Bookmark, although they are not stored as part of the bookmark
Image Annotation Illustration
- The illustration below shows "DT219363:tif" instead of "DT219363.tif" because of limitations in plantuml (treats "." as a package name separator)
- It's made with plantuml.jar standalone because of bug in the macro:
jira: Couldnt find an application link with the name {0}.
Discussion
Dominic:
- The specification is written specific according to existing tools. However, the way that the data basket works should be generic for existing and new tools to come.
0 The production version of ResearchSpace will require an API that means that all tools that adhere to it can be accessed and inetgrated with the databasket tool. This means that there must be a consistent type of URI / URL with tool parameter so that tools can be launched and placed in the appropriate state. - These links should be ones that could be used as a normal web link in a browser (RESTful) so that the links could be used outside the databasket using a simple browser address box.
- To this end the specification should also have a technical specification outlining the way in which the databasket would interact with the ResearchSpace environment
Vlado:
- I agree that bookmarking should be more in the style of using "browser address box". However, our URIs are currently not resolvable, see RS URLs and URIs.
Adding a new item type ("tool") to the basket is a matter of adding it to the table above, and to frontend handling code (different types have somewhat different handling behavior). - For full extensibility the Basket should be able to figure out the item's type from the item URI alone. That is the case above, except for Web Link (for which we need to add a type statement upon adding to basket).
- I've used "a foaf:Document" above (that's the range of foaf:homePage)
- OA recommends using "a dcmitype:Text; dc:format "text/html" which I don't find very nice (and may change)