Versionen im Vergleich

Schlüssel

  • Diese Zeile wurde hinzugefügt.
  • Diese Zeile wurde entfernt.
  • Formatierung wurde geändert.
Kommentar: Erste Version OA-Bsp. ergänzt.

...

An annotation is considered to be a set of connected resources, typically including a body and target, and conveys that the body is related to the target. The exact nature of this relationship changes according to the intention of the annotation, but most frequently conveys that the body is somehow "about" the target. Other possible relationships include that the body is an identifier for the target, provides a representation of the target, or classifies the target in some way.

Beispiel: 

Codeblock
@prefix <http://www.w3.org/ns/oa#> .
@prefix dc: <ttp://purl.org/dc/elements/1.1/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .

<annotation>
   a oa:Annotation ;
   oa:hasTarget <bibliograpicresource> ;
   oa:hasBody <body> .

<body>
   a skos:Concept ;

   skos:notation "12345" ;
   ... .