Re: Body Description vs Title (RE: Textual Note example)

Can you simply attach a dc:title property to either the Annotation or
the Body resource?

eg:

_:anno a oa:Annotation ;
  oa:hasBody _:body1 ;
  oa:hasTarget <some-uri> ;
  dc:title "Title of the Annotation" .

or:

_:anno a oa:Annotation ;
  oa:hasBody _:body1 ;
  oa:hasTarget <some-uri> .

_:body1 a cnt:ContentAsText ;
  cnt:chars "Here is the content of the body" ;
  dc:title "Title for the Body" .


Rob

On Tue, Oct 16, 2012 at 12:23 AM, Vladimir Alexiev
<vladimir.alexiev@ontotext.com> wrote:
> Another example in the same vein: the ResearchSpace project has a need for Bookmarks with both Description *and* Title
> (the latter is initailly copied from the bookmarked item, if it has something that can be recognized as a Title).
> The current spec http://openannotation.org/spec/core/#InlineBody using ContentAsText allows only one string.
>
> ContentAsText has the benefit that it can represent various opaque data structures (e.g. SVG).
> But that is also a disadvantage, since it steers away from established RDF structures.
>
>
>
>

Received on Tuesday, 16 October 2012 14:44:20 UTC