Message-ID: <1302120431.99158.1710818534831@prodfluence0> Subject: Exported From Confluence MIME-Version: 1.0 Content-Type: multipart/related; boundary="----=_Part_99157_1354316222.1710818534830" ------=_Part_99157_1354316222.1710818534830 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Content-Location: file:///C:/exported.html Klassifikationsnotationen ohne URIs und Datentypen

Klassifikationsnotationen ohne URIs und Datentypen

Fra= ge

3D"(Frage)"

  • Wie soll die Notation einer Klassifikation in RDF angegeben werden, wen= n
    1. weder ein URI f=C3=BCr die Klassifikationsstelle
    2. noch wom=C3=B6glich ein URI f=C3=BCr die Klassifikation selbst existier= t?

Bestehende Ans=C3=A4tze

Zun=C3=A4chst werden hier zwei existierende Beispiele aufgezeigt, wie ma= n die Frage beantworten kann. Beide L=C3=B6sungen sind sehr =C3=A4hnlich un= d benutzen einen Blank Node.

worl= dcat.org

Beispiel:

In worldcat.org wird eine Mischung aus dem schema.org-Vokabular und SKOS= verwendet:

Relevantes RDF-Snippet:

<htt=
p://www.worldcat.org/oclc/8762580>
schema:about [ a skos:Concept;
            schema:name "R=C3=A9f=C3=A9rence (Philosophie)"@en ],
        [ a schema:Person;
            schema:name "Goodman, Nelson=E2=80=8D"@en ] .

Gesamtes RDF zu der bibliographischen Ressource:

@prefix=
 library: <http://purl.org/library/> .
@prefix madsrdf: <http://www.loc.gov/mads/rdf/v1#> .
@prefix schema: <http://schema.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .

<http://www.worldcat.org/oclc/8762580> a schema:Book;
    library:holdingsCount "316"@en;
    library:oclcnum "8762580"@en;
    library:placeOfPublication [ a schema:Place;
            schema:name "Indianapolis, Ind. :"@en ];
    schema:about [ a skos:Concept;
            schema:name "R=C3=A9f=C3=A9rence (Philosophie)"@en ],
        [ a schema:Person;
            schema:name "Goodman, Nelson=E2=80=8D"@en ],
        [ a skos:Concept;
            schema:name "Reference (Philosophy)"@en;
            madsrdf:isIdentifiedByAuthority <http://id.loc.gov/authoriti=
es/subjects/sh85112185> ],
        <http://dewey.info/class/160/e19/>,
        <http://id.worldcat.org/fast/1092367>,
        <http://viaf.org/viaf/108612138>;
    schema:author <http://viaf.org/viaf/57832271>;
    schema:copyrightYear "1983"@en;
    schema:inLanguage "en"@en;
    schema:isbn "0915145529"@en,
        "0915145537"@en,
        "9780915145522"@en,
        "9780915145539"@en;
    schema:name "With reference to reference"@en;
    schema:numberOfPages "200"@en;
    schema:publisher [ a schema:Organization;
            schema:name "Hackett Pub. Co."@en ] .

<http://dewey.info/class/160/e19/> a skos:Concept;
    skos:inScheme <http://dewey.info/scheme/e19/> .

<http://id.worldcat.org/fast/1092367> a skos:Concept;
    schema:name "Reference (Philosophy)=E2=80=8D"@en .

<http://viaf.org/viaf/108612138> a schema:Person;
    schema:name "Goodman, Nelson, 1906-"@en,
        "Goodman, Nelson."@en;
    madsrdf:isIdentifiedByAuthority <http://id.loc.gov/authorities/names=
/n50037322> .

<http://viaf.org/viaf/57832271> a schema:Person;
    schema:name "Elgin, Catherine Z., 1948-"@en;
    madsrdf:isIdentifiedByAuthority <http://id.loc.gov/authorities/names=
/n82109527> .

schema.org-Erweiterung f=C3=BCr health/med= ical types

Die Erweiterung f=C3=BCr health/medical types in schema.org (Dokumentation in Englisch) wird unter anderem benutzt, um= den medizinischen Code (z.B. MeSH) mit Microdata-Markup anzugeben.

Microdata-Beispiel (von http://schema.org/MedicalGuidelin= e):

<spa=
n itemprop=3D"about" itemscope itemtype=3D"http://schema.org/Drug">
    <span itemprop=3D"name">Metformin</span>
    <span itemprop=3D"code" itemscope
          itemtype=3D"http://schema.org/MedicalCode"
          itemid=3D"http://www.ncbi.nlm.nih.gov/mesh/D02.078.370.141.450"&g=
t;
      <!-- Note: use of itemid is not mandatory, but recommended when an
           external enumeration is available -->
      <meta itemprop=3D"code" content=3D"D02.078.370.141.450"/>
      <meta itemprop=3D"codingSystem" content=3D"MeSH"/>
    </span>

Mehr Beispiele gibt es unter http://schema.org/MedicalCondi= tion und http://schema.org/MedicalScholarlyArticle<= /a>.

Vorsch= lag 1

Angelehnt an die beiden betrachteten Beispiele, k=C3=B6nnten wir folgend= e L=C3=B6sung vorschlagen:

@prefix=
 dct: <http://purl.org/dc/terms/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .

<http://lobid.org/resource/HT002948556>
   dct:subject [
      a skos:Concept ;
      skos:prefLabel "Semantik" ] ,
      [ a skos:Concept ;
        skos:prefLabel "Referenz <Linguistik>" ] . =20
      

Vorschlag 2: Nutzung des Open Annotation Data M= odel

Siehe http://www.openannotation.org/spec/core/, w= o es hei=C3=9Ft (Hervorhebung von Adrian)

An annotation is considered to be a set of connected resources, typicall= y 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 inte= ntion of the annotation, but most frequently conveys that the body is someh= ow "about" the target. Other possible relationships include that th= e body is an identifier for the target, provides a representation = of the target, or classifies the target in some way.

Beispiel:

@prefix=
 oa: <http://www.w3.org/ns/oa#> .
@prefix dc: <http://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:prefLabel "Label" ;
   skos:notation "12345" ;
   ... .
 <=
/pre>
------=_Part_99157_1354316222.1710818534830 Content-Type: image/svg+xml Content-Transfer-Encoding: 7bit Content-Location: file:///C:/910565c891c547f7115a8a90ec8345ae ------=_Part_99157_1354316222.1710818534830--