Changes between Version 2 and Version 3 of VLO-Taskforce/Relations


Ignore:
Timestamp:
01/22/14 14:24:52 (10 years ago)
Author:
fankhauser@ids-mannheim.de
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • VLO-Taskforce/Relations

    v2 v3  
    11== VLO Facets ==
    22== Relationships ==
     3Currently, the CLARIN-D Centers use different means to represent relationships between resources.
     4In the following, some of these representations are analyzed.
     5
     6=== HZSK ===
     7 
     8HZSK represents all resources of a corpus in one CMDI record. Thus, the target of a relationship
     9(<ResourceRef>) has always type (ResourceType) Resource. The individual resources are further specified
     10in the component part of the CMDI record by refering to the <ResourceProxy> via its id attribute.
     11
     12Example:
     13
     14http://virt-fedora.multilingua.uni-hamburg.de/drupal/fedora/repository/cmdi:demo/cmdi/metadata.xml
     15
     16{{{
     17<ResourceProxy id="ACDIMB865D8-D9BA-7F9B-E652-D00D960850B4">
     18  <ResourceType mimetype="text/xml">Resource</ResourceType>
     19  <ResourceRef>http://hdl.handle.net/11858/00-248C-0000-000E-0181-F</ResourceRef>
     20</ResourceProxy>
     21...
     22<HZSKTranscription ComponentId="clarin.eu:cr1:c_1345561703658" ref="ID8392DD18-04C3-9DC7-A7F5-2FA8A3639EA4">
     23  <Name>Rudi Völler Wutausbruch</Name>
     24  <TranscriptionConvention>HIAT (simplified)</TranscriptionConvention>
     25  ...
     26</HZSKTranscription>
     27}}}
     28
     29=== BAS ===
     30
     31BAS represents the resources of a corpus by several CMDI records, and employs a variety of approaches to represent relationships:
     32
     33a. The relationship between the CMDI record for a corpus and its parts is specified explicitly in one direction by means of CMDI's built-in <isPartOf> element.
     34b. Relationships with a target of type Resource are further specified in the component part of the CMDI record by referring to the <ResourceProxy> via its id attribute
     35c. Relationships between individual components, such as from <media-file> to <media-session-actor> are represented by referring to the target's id attribute as well.
     36
     37Example:
     38
     39https://clarin.phonetik.uni-muenchen.de/BASRepository/Public/Corpora/ZIPTEL/ZIPTEL.2.cmdi.xml
     40
     41<ResourceProxy id="c_0000000001">
     42  <ResourceType mimetype="text/xml">Metadata</ResourceType>
     43  <ResourceRef>https://clarin.phonetik.uni-muenchen.de/BASRepository/Public/Corpora/ZIPTEL/0001.2.cmdi.xml</ResourceRef>
     44</ResourceProxy>
     45
     46http://catalog.clarin.eu/oai-harvester/cmdi-providers/harvested/results/cmdi/Bayerisches_Archiv_f_r_Sprachsignale/oai_BAS_repo_Corpora_ZIPTEL_0001.xml
     47or
     48https://clarin.phonetik.uni-muenchen.de/BASRepository/Public/Corpora/ZIPTEL/0001.2.cmdi.xml
     49
     50<ResourceProxy id="r_0000000001">
     51  <ResourceType mimetype="audio/raw">Resource</ResourceType>
     52  <ResourceRef>https://clarin.phonetik.uni-muenchen.de/BASRepository/Corpora/ZIPTEL/0001/z10001z2.dea</ResourceRef>
     53</ResourceProxy>
     54...
     55<IsPartOfList>
     56   <IsPartOf>https://clarin.phonetik.uni-muenchen.de/BASRepository/Public/Corpora/ZIPTEL/ZIPTEL.2.cmdi.xml</IsPartOf>
     57</IsPartOfList>
     58...
     59<media-file actor-ref="s_0000000001" ref="r_0000000001">
     60  <Type>audio</Type><Quality>3</Quality>
     61  <RecordingConditions>un-supervised answering of a question prompted via telephone</RecordingConditions>
     62...
     63</media-file>
     64...
     65<media-session-actor id="s_0000000001">
     66  <Role>question answering</Role>
     67  <Name>unspecified</Name>
     68  <FullName>unspecified</FullName>
     69  <Code>0001</Code>
     70  ...
     71</media-session-actor>
     72
     73=== IDS-Mannheim ===
     74
     75IDS-Mannheim represents resources by several CMDI records, and employs a variety of approaches to
     76represent relationships:
     77
     78a. The first version of the historical newspaper corpus MKHZ represents relationships by <ResourceProxy> as well as OLAC-Dcmi-Terms elements such as <hasPart>, were both point to a PID (see for example http://repos.ids-mannheim.de/fedora/objects/clarind-ids:mkhz.000000/datastreams/CMDI/content)
     79b. The second version of the historical newspaper corpus represents relationships by <ResourceProxy> and further specifies the semantics (and anchor text) of the relationship in the component part of the relationship (see for example http://repos.ids-mannheim.de/fedora/objects/clarin-ids:mkhz1.00000/datastreams/CMDI/content)
     80c. Relationships in the corpora of spoken language are represented by ResourceProxy's only, and partOf relationships are further specified by means of CMDI's built-in <IsPartOf> element (see for example http://repos.ids-mannheim.de/fedora/objects/clarin-ids:folk.FOLK_S_00248.cmdi/datastreams/CMDI/content)
     81
    382== Example Profiles ==
    483== Background Information ==