semantic-kraus / lk-data

Legal-Kraus XML/TEI data to RDF
https://semantic-kraus.github.io/lk-data/
MIT License
0 stars 0 forks source link

legal files: quotes from Die Fackel #77

Closed BOberreither closed 1 year ago

BOberreither commented 1 year ago

quote[starts-with(@source, "https://fackel")]

Currently, there are already a lot of text passages and segments built from these note elements:

<https://sk.acdh.oeaw.ac.at/D_000068-044-000/segment/245> a ns1:INT16_Segment ;
        rdfs:label "Text segment from: 68.44 Schriftsatz in Sachen Kraus ./. Kerr (Alfred Kerr an das Amtsgericht Charlottenburg, G.Z. B.2 27)"@en ;
        schema:pagination "S. 18" ;
        ns1:R16_incorporates <https://sk.acdh.oeaw.ac.at/D_000068-044-000/passage/245> ;
        ns1:R41_has_location "S. 18",
            "https://id.acdh.oeaw.ac.at/legalkraus/D_000068-044-000.xml" ;
        ns1:R44_has_wording "Wie der deutsche Gott Bomben auf Nürnberg regnen liess, so lügen und fälschen sie wie eh und je. Wie ihre Generalstabsberichte so ihre Darstellungen von einem Vortrag …"@und .

[…]

<https://sk.acdh.oeaw.ac.at/D_000068-044-000/passage/245> a ns1:INT1_TextPassage ;
        rdfs:label "Text passage from: 68.44 Schriftsatz in Sachen Kraus ./. Kerr (Alfred Kerr an das Amtsgericht Charlottenburg, G.Z. B.2 27)"@en ;
        ns1:R44_has_wording "Wie der deutsche Gott Bomben auf Nürnberg regnen liess, so lügen und fälschen sie wie eh und je. Wie ihre Generalstabsberichte so ihre Darstellungen von einem Vortrag …"@und .

Three new statements:

Now we need to

One statement each.

First, the Text Passage:

<https://sk.acdh.oeaw.ac.at/text10713/passage/D_000068-044-000/[n]> a ns1:INT1_TextPassage ;
        rdfs:label "Text passage from: Vorlesungen"@en ;
       ns1:R10_is_Text_Passage_of <https://sk.acdh.oeaw.ac.at/text10713> .

Now, the Segment:

<https://sk.acdh.oeaw.ac.at/text10713/segment/D_000068-044-000/[n]> a ns1:INT16_Segment ;
        rdfs:label "Text segment from: Vorlesungen"@en ;
        schema:pagination "S. 21" ;
        ns1:R16_incorporates <https://sk.acdh.oeaw.ac.at/text10713/passage/D_000068-044-000/[n]> ;
        ns1:R41_has_location "S. 21",
            "https://fackel.oeaw.ac.at/f/546,021" ;
        ns1:R25_is_segment_of <https://sk.acdh.oeaw.ac.at/issue546/published-expression> .

Finally, the intertextual relation:

(This time, the legal files quote the fackel texts.)

<https://sk.acdh.oeaw.ac.at/text10713/relation/D_000068-044-000/[n]> a ns1:INT3_IntertextualRelationship ;
        rdfs:label "Intertextual relation"@en ;
        ns1:R12_has_referred_to_entity <https://sk.acdh.oeaw.ac.at/text10713/passage/D_000068-044-000/[n]> ;
        ns1:R13_has_referring_entity <https://sk.acdh.oeaw.ac.at/D_000068-044-000/passage/245> .

Voila!

EDIT: Bold stuff

BOberreither commented 1 year ago

@linxOD updated description

BOberreither commented 1 year ago

@linxOD I think this statement:

         <https://sk.acdh.oeaw.ac.at/D_000068-044-000/relation/text10713> a ns1:INT3_IntertextualRelationship ;
        rdfs:label "Intertextual relation"@en ;
        ns1:R12_has_referred_to_entity <https://sk.acdh.oeaw.ac.at/text10713> ;
        ns1:R13_has_referring_entity <https://sk.acdh.oeaw.ac.at/D_000068-044-000/passage/288> .

is a result of this issue; or is it

    <https://sk.acdh.oeaw.ac.at/text10713/relation/D_000068-044-000/text10713> a ns1:INT3_IntertextualRelationship ;
        rdfs:label "Intertextual relation"@en ;
        ns1:R12_has_referred_to_entity <https://sk.acdh.oeaw.ac.at/text10713/passage/D_000068-044-000/text10713> ;
        ns1:R13_has_referring_entity <https://sk.acdh.oeaw.ac.at/D_000068-044-000/passage/text10713> .

?