-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathINTRO_beta202408.owl
2014 lines (1329 loc) · 106 KB
/
INTRO_beta202408.owl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<rdf:RDF xmlns="https://w3id.org/lso/intro/beta202408#" xml:base="https://w3id.org/lso/intro/beta202408" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:crm="http://www.cidoc-crm.org/cidoc-crm/" xmlns:lrm="http://iflastandards.info/ns/lrm/lrmoo/"
xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:vann="http://purl.org/vocab/vann/" xmlns:voaf="http://purl.org/vocommons/voaf#" xmlns:frbroo="https://cidoc-crm.org/frbroo/sites/default/files/FRBR2.4-draft.rdfs#">
<owl:Ontology rdf:about="https://w3id.org/lso/intro/beta202408">
<cc:licence rdf:resource="https://creativecommons.org/licenses/by/4.0/"/>
<lrm:R76_is_derivative_of rdf:resource="https://w3id.org/lso/intro/beta202304"/>
<dc:creator rdf:resource="https://d-nb.info/gnd/1036708799"/>
<dc:creator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Bernhard Oberreither</dc:creator>
<dc:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2018-04-01</dc:issued>
<dc:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2024-08-01</dc:modified>
<dc:rights>This ontology is distributed under the creative commons attribution 4.0 international licence (CC-BY 4.0): https://creativecommons.org/licenses/by/4.0/</dc:rights>
<dc:title xml:lang="en">INTRO – the intertextual, interpictorial, and intermedial relations ontology</dc:title>
<vann:preferredNamespacePrefix>intro</vann:preferredNamespacePrefix>
<vann:preferredNamespaceURI>https://w3id.org/lso/intro/beta202408#</vann:preferredNamespaceURI>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">INTRO is an ontology for the fields of literary studies, art studies and intermediality studies for the representation of intertextual, interpictorial, and intermedial relations. It enables the presentation and categorization of diverse features of both textual and pictorial origin and their linking. Its subject area includes the scholarly discourse on these texts/images, interrelations, and features, insofar as research results are also understood as texts with features and relations. (For more information, see "Description").</rdfs:comment>
<dc:description>INTRO is an ontology for the fields of literary studies, art studies and intermediality studies for the representation of intertextual, interpictorial, and intermedial relations. It enables the presentation and categorization of diverse features of both textual and pictorial origin and their linking. Its subject area includes the scholarly discourse on these texts/images, interrelations, and features, insofar as research results are also understood as texts with features and relations.
The notions of 'text' and 'image' in this ontology are largely derived from their use in the ontologies INTRO is an extension of. For definitions, see the passages in the documentations of CIDOC crm resp. LRM on the relevant classes (these being CIDOC crm's E73 Information Object, and E90 Symbolic Object resp. LRM's F1 Work, F2 Expression, F3 Manifestation). Depending on the theoretical framework, the notion of 'text' can be understood very broadly: It can include images, it can cover large corpora of texts otherwise understood as distinct entities. INTRO makes use of these possibilities in the regard of including the notion of 'Architexts' as introduced by Gérard Genette as sets of texts (and in this case images) seen as a unit (by reference to certain features, timeframes, semantic features etc., see INT6 Architext).
One differentiation INTRO is built on is the one between a 'passage' and a 'segment'. These two concepts are parallel to LRM's F2 Expression/CIDOC CRM's E36 Visual Item on the one hand and LRM's F3 Manifestation on the other hand, in the way that the former (Expression/Visual Item, Passage) embody a more abstract concept of the text/image and of its parts, while the latter (Manifestation, Segment) refer to the form a text/an image and its parts take when they are manifested in a specific way or version, e.g. at the stage of a certain published edition. Examples include a passage from Goethe's "Faust", Act V, vs. a passage from Act V. of a specific edition of Goethe's "Faust". Only the latter one is a citable entity in the sense that it has a place and a date of publication, a publisher, and a page number attached to it; the former can be manifested in many of the latter.
These differentiations suffice for an outside view of expressions / manifestations and their parts. When confronted with expression form and contents and the like – here combined in the notion of 'feature' –, another level comes into play. A basic orientation can be obtained from Edmund Husserl's notion of image, respectively his separation of the image ("Bild") from its carrier ("Bildding") and its content ("Bildsujet") as discussed in "Phantasie und Bildbewusstsein" (1904/1905; parallel and clarified nomenclature can be found e.g. in Wolfram Pichler's and Ralph Ubl's "Bildtheorie zur Einführung", 2014, where the three notions are called – my translation – image vehicle, image object, and image referent; for further examples of this trias in image theory and semiotics, see Simon 2009, p. 41). While Husserl's carrier combines the F4 Item and the F3 Manifestation of an image (which, with regard to paintings, can easily fall together – as painting is, now following Nelson Goodman, an 'autographic' art) and the image itself corresponds to the F2 Expression resp. CIDOC CRM's E36 Visual Item, all the features an image can actualize belong in his third category ("Bildsujet"). This third category – the question of what is 'in' an image or text, what can be 'seen on' resp. 'read out' of it, etc. – is provided by the interaction of two classes of INTRO: The INT4 Feature and the INT2 Actualization of Feature. The 'feature' is the more abstract concept separate from the specific text/image. One and the same feature (e.g. chiaroscuro painting, a hero character, a plotline, etc.) can be identified in multiple texts/images, while the specific actualization of the feature is bound to the respective text/image. An image can have one or many carriers, and many images can refer to the same real-life entity. (Rooting a single image in different versions of, e.g., a work of art, or in a series of works of art however touches upon a grey area between the terms "image" and "sujet").
This trias of an expression's manifestation, the expression itself, and its 'contents' (as features) is again expanded by the question of referentiality. Ralf Simon (2009, p. 48f.) introduces a fourth instance to the original trias, differentiating between the carrier, the image, the image object and the referent, the latter two dividing what was formerly one entity referred to as, e. g., sujet. This states a difference between a (usually:) semantic feature) and a possible, but not necessary reference to an external entity. This modelling is inside INTRO's scope: The ontology makes use of a very basic notion of referentiality with regard to images as well as texts: Actualized features can themselves actualize the feature of being a reference to a real-world entity, by chaining an INT18 Reference entity to, e. g., an INT9 Semantic Feature. Note that this construction offers a quite simple answer to the question if the reference to a fictitious entity - e.g. a unicorn - is possible resp. a reference at all: The unicorn is, in this case, a semantic feature.)
Throughout the ontology, the term 'relation' is to be understood in the broadest sense. The ontology instantiates relations between (textual, pictorial) entities or features thereof; while it does not pose any restrictions on the notion of 'relation', it provides subclasses for expressing the medial aspect (intertextual, interpictorial, intermedial) as well as classes for further specification. The ontology also provides the opportunity to link these specifications (as well as many other of its concepts) to the scholarly discourse they are the subject of.
This way, INTRO covers a large portion of scholarly practice; some of the subclasses of INT9 Semantic Feature in combination with object properties linking these features also allow - to some degree - for the reconstruction of the argumentative structure of, e.g., research papers (as they allow for the reconstruction of the contents of literary works).
References:
Trond Aalberg, Pat Riva, Maja Žumer (2024, maintainers), LRMOO. Object-oriented definition and mapping from the IFLA Library Reference Model. Version 1.0. URL: https://cidoc-crm.org/lrmoo/sites/default/files/LRMoo_V1.0.pdf
Chryssoula Bekiari et al. (eds., 2024), Definition of the CIDOC Conceptual Reference Model. Version 7.1.3. URL: https://cidoc-crm.org/sites/default/files/cidoc_crm_version_7.1.3.pdf
Nelson Goodman (1976), Languages of Art: An Approach to a Theory of Symbols. 2nd edition. Indianapolis: Hackett Publishing Company.
Edmund Husserl (1980 [1904/1905]), Phantasie und Bildbewusstsein. In: Eduard Marbach (ed.), Phantasie, Bildbewusstsein, Erinnerung. Zur Phänomenologie der anschaulichen Vergegenwärtigungen. Texte aus dem Nachlass (1898-1925). Den Haag, Boston u. London: Martinus Nijhoff (= Husserliana. Gesammelte Werke, Vol. 23), pp. 1-169.
Wolfram Pichler, Ralph Ubl (2014), Bildtheorie zur Einführung. Hamburg: Junius.
Ralf Simon (2009), Der poetische Text als Bildkritik. München: Wilhelm Fink.
</dc:description>
<rdfs:comment>INTRO on GitHub: https://github.com/BOberreither/INTRO</rdfs:comment>
<rdfs:comment>Special Thanks to: Ingo Börner, Laura Untner</rdfs:comment>
<rdfs:label xml:lang="en">INTRO</rdfs:label>
<owl:priorVersion rdf:resource="https://w3id.org/lso/intro/beta202304"/>
<owl:versionInfo rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BETA 202408 - Subclasses are subject to refinement and addition; provisional state indicated by "INT"-IRIs/Labels without number.</owl:versionInfo>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://creativecommons.org/ns#licence -->
<owl:AnnotationProperty rdf:about="http://creativecommons.org/ns#licence"/>
<!-- http://iflastandards.info/ns/lrm/lrmoo/R76_is_derivative_of -->
<owl:AnnotationProperty rdf:about="http://iflastandards.info/ns/lrm/lrmoo/R76_is_derivative_of"/>
<!-- http://purl.org/dc/elements/1.1/creator -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/creator"/>
<!-- http://purl.org/dc/elements/1.1/date -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/date"/>
<!-- http://purl.org/dc/elements/1.1/description -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/description"/>
<!-- http://purl.org/dc/elements/1.1/issued -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/issued"/>
<!-- http://purl.org/dc/elements/1.1/modified -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/modified"/>
<!-- http://purl.org/dc/elements/1.1/rights -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/rights"/>
<!-- http://purl.org/dc/elements/1.1/title -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/title"/>
<!-- http://purl.org/vocab/vann/preferredNamespacePrefix -->
<owl:AnnotationProperty rdf:about="http://purl.org/vocab/vann/preferredNamespacePrefix"/>
<!-- http://purl.org/vocab/vann/preferredNamespaceURI -->
<owl:AnnotationProperty rdf:about="http://purl.org/vocab/vann/preferredNamespaceURI"/>
<!-- http://www.w3.org/2004/02/skos/core#broadMatch -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#broadMatch"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Datatypes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://www.w3.org/2001/XMLSchema#date -->
<rdfs:Datatype rdf:about="http://www.w3.org/2001/XMLSchema#date"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.org/dc/terms/hasPart -->
<owl:ObjectProperty rdf:about="http://purl.org/dc/terms/hasPart"/>
<!-- http://purl.org/dc/terms/isPartOf -->
<owl:ObjectProperty rdf:about="http://purl.org/dc/terms/isPartOf"/>
<!-- http://purl.org/dc/terms/relation -->
<owl:ObjectProperty rdf:about="http://purl.org/dc/terms/relation"/>
<!-- http://www.cidoc-crm.org/cidoc-crm/P2_has_type -->
<owl:ObjectProperty rdf:about="http://www.cidoc-crm.org/cidoc-crm/P2_has_type"/>
<!-- http://www.cidoc-crm.org/cidoc-crm/P2i_is_type_of -->
<owl:ObjectProperty rdf:about="http://www.cidoc-crm.org/cidoc-crm/P2i_is_type_of"/>
<!-- http://www.cidoc-crm.org/cidoc-crm/P67_refers_to -->
<owl:ObjectProperty rdf:about="http://www.cidoc-crm.org/cidoc-crm/P67_refers_to"/>
<!-- http://www.cidoc-crm.org/cidoc-crm/P67i_is_referred_to_by -->
<owl:ObjectProperty rdf:about="http://www.cidoc-crm.org/cidoc-crm/P67i_is_referred_to_by"/>
<!-- https://w3id.org/lso/intro/beta202408#R10_hasPassage -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R10_hasPassage">
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R10i_isPassageOf"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT1_Passage"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="https://w3id.org/lso/intro/beta202408#INT1_Passage"/>
<rdfs:comment xml:lang="en">Links a text or an image – usually: a work or an expression – to an INT1 Passage from that text or image, e.g. a book to a passage on page three of this book, or a painting to an area on this paining.</rdfs:comment>
<rdfs:label xml:lang="en">R10 has passage</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R10i_isPassageOf -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R10i_isPassageOf">
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R10_hasPassage"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:domain rdf:resource="https://w3id.org/lso/intro/beta202408#INT1_Passage"/>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT1_Passage"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<rdfs:label xml:lang="en">R10i is passage of</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R12_hasReferredToEntity -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R12_hasReferredToEntity">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/lso/intro/beta202408#R24_hasRelatedEntity"/>
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R12i_isReferredToEntity"/>
<rdfs:domain rdf:resource="https://w3id.org/lso/intro/beta202408#INT3_Interrelation"/>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://iflastandards.info/ns/lrm/lrmoo/F1_Work"/>
<rdf:Description rdf:about="http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT1_Passage"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT2_ActualizationOfFeature"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT6_Architext"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<rdfs:comment xml:lang="en">Links an INT3 Interrelation to the entity referred to in the relationship (a text or image on any ontological level or a feature actualized in the text resp. image in question).</rdfs:comment>
<rdfs:label xml:lang="en">R12 has referred to entity</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R12i_isReferredToEntity -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R12i_isReferredToEntity">
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R12_hasReferredToEntity"/>
<rdfs:subPropertyOf rdf:resource="https://w3id.org/lso/intro/beta202408#R24i_isRelatedEntity"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://iflastandards.info/ns/lrm/lrmoo/F1_Work"/>
<rdf:Description rdf:about="http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT1_Passage"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT2_ActualizationOfFeature"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT6_Architext"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="https://w3id.org/lso/intro/beta202408#INT3_Interrelation"/>
<rdfs:label xml:lang="en">R12i is referred to entity</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R13_hasReferringEntity -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R13_hasReferringEntity">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/lso/intro/beta202408#R24_hasRelatedEntity"/>
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R13i_isReferringEntity"/>
<rdfs:domain rdf:resource="https://w3id.org/lso/intro/beta202408#INT3_Interrelation"/>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://iflastandards.info/ns/lrm/lrmoo/F1_Work"/>
<rdf:Description rdf:about="http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT1_Passage"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT2_ActualizationOfFeature"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT6_Architext"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<rdfs:comment xml:lang="en">Links an INT3 Interrelation to a referring entity (a text or image on any ontological level or a feature actualized in the text resp. image in question).</rdfs:comment>
<rdfs:label xml:lang="en">R13 has referring entity</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R13i_isReferringEntity -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R13i_isReferringEntity">
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R13_hasReferringEntity"/>
<rdfs:subPropertyOf rdf:resource="https://w3id.org/lso/intro/beta202408#R24i_isRelatedEntity"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://iflastandards.info/ns/lrm/lrmoo/F1_Work"/>
<rdf:Description rdf:about="http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT1_Passage"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT2_ActualizationOfFeature"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT6_Architext"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="https://w3id.org/lso/intro/beta202408#INT3_Interrelation"/>
<rdfs:label xml:lang="en">R13i is referring entity</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R16_incorporates -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R16_incorporates">
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R16i_isIncorporatedIn"/>
<rdfs:domain rdf:resource="https://w3id.org/lso/intro/beta202408#INT16_Segment"/>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT1_Passage"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<rdfs:comment xml:lang="en">Links an INT16 Segment to the text or image on any ontological level (passage, expression, work) it incorporates.</rdfs:comment>
<rdfs:label xml:lang="en">R16 incorporates</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R16i_isIncorporatedIn -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R16i_isIncorporatedIn">
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R16_incorporates"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT1_Passage"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="https://w3id.org/lso/intro/beta202408#INT16_Segment"/>
<rdfs:label xml:lang="en">R16i is incorporated in</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R17_actualizesFeature -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R17_actualizesFeature">
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R17i_featureActualizedIn"/>
<rdfs:domain rdf:resource="https://w3id.org/lso/intro/beta202408#INT2_ActualizationOfFeature"/>
<rdfs:range rdf:resource="https://w3id.org/lso/intro/beta202408#INT4_Feature"/>
<rdfs:comment xml:lang="en">Links the specific INT2 Actualization of Feature to the (abstract concept of the) feature it actualizes, an INT4 Feature.</rdfs:comment>
<rdfs:label xml:lang="en">R17 actualizes feature</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R17i_featureActualizedIn -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R17i_featureActualizedIn">
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R17_actualizesFeature"/>
<rdfs:domain rdf:resource="https://w3id.org/lso/intro/beta202408#INT4_Feature"/>
<rdfs:range rdf:resource="https://w3id.org/lso/intro/beta202408#INT2_ActualizationOfFeature"/>
<rdfs:label xml:lang="en">R17i feature actualized in</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R18_showsActualization -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R18_showsActualization">
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R18i_actualizationFoundOn"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://iflastandards.info/ns/lrm/lrmoo/F1_Work"/>
<rdf:Description rdf:about="http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT1_Passage"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT2_ActualizationOfFeature"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT6_Architext"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="https://w3id.org/lso/intro/beta202408#INT2_ActualizationOfFeature"/>
<rdfs:comment xml:lang="en">Links a text or an image (on any ontological level) or an INT2 Actualization of Feature to an INT2 Actualization of Feature found on it. (Actualizations found on actualizations - this occurs in cases where, e.g., the actualization of the feature INT Individual Character can be read as the actualization of the feature INT Character Type or INT18 Reference.)</rdfs:comment>
<rdfs:label xml:lang="en">R18 shows actualization</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R18i_actualizationFoundOn -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R18i_actualizationFoundOn">
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R18_showsActualization"/>
<rdfs:domain rdf:resource="https://w3id.org/lso/intro/beta202408#INT2_ActualizationOfFeature"/>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://iflastandards.info/ns/lrm/lrmoo/F1_Work"/>
<rdf:Description rdf:about="http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT1_Passage"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT2_ActualizationOfFeature"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT6_Architext"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<rdfs:label xml:lang="en">R18i actualization found on</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R19_hasType -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R19_hasType">
<rdfs:subPropertyOf rdf:resource="http://www.cidoc-crm.org/cidoc-crm/P2_has_type"/>
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R19i_isTypeOf"/>
<rdfs:domain rdf:resource="https://w3id.org/lso/intro/beta202408#INT3_Interrelation"/>
<rdfs:range rdf:resource="https://w3id.org/lso/intro/beta202408#INT11_TypeOfInterrelation"/>
<rdfs:comment xml:lang="en">Links an INT3 Interrelation to its INT11 Type of Interrelation.</rdfs:comment>
<rdfs:label xml:lang="en">R19 has type</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R19i_isTypeOf -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R19i_isTypeOf">
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R19_hasType"/>
<rdfs:subPropertyOf rdf:resource="http://www.cidoc-crm.org/cidoc-crm/P2i_is_type_of"/>
<rdfs:domain rdf:resource="https://w3id.org/lso/intro/beta202408#INT11_TypeOfInterrelation"/>
<rdfs:range rdf:resource="https://w3id.org/lso/intro/beta202408#INT3_Interrelation"/>
<rdfs:label xml:lang="en">R19i is type of</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R20_discusses -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R20_discusses">
<rdfs:subPropertyOf rdf:resource="http://www.cidoc-crm.org/cidoc-crm/P67_refers_to"/>
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R20i_isDiscussedIn"/>
<rdfs:domain rdf:resource="https://w3id.org/lso/intro/beta202408#INT_Interpretation"/>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://iflastandards.info/ns/lrm/lrmoo/F1_Work"/>
<rdf:Description rdf:about="http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT6_Architext"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<rdfs:comment xml:lang="en">Links an INT Interpretation to the instance of text or image (on any ontological level) it discusses.</rdfs:comment>
<rdfs:label xml:lang="en">R20 discusses</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R20i_isDiscussedIn -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R20i_isDiscussedIn">
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R20_discusses"/>
<rdfs:subPropertyOf rdf:resource="http://www.cidoc-crm.org/cidoc-crm/P67i_is_referred_to_by"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://iflastandards.info/ns/lrm/lrmoo/F1_Work"/>
<rdf:Description rdf:about="http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT6_Architext"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="https://w3id.org/lso/intro/beta202408#INT_Interpretation"/>
<rdfs:label xml:lang="en">R20i is discussed in</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R21_identifies -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R21_identifies">
<rdfs:subPropertyOf rdf:resource="http://www.cidoc-crm.org/cidoc-crm/P67_refers_to"/>
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R21i_isIdentifiedBy"/>
<rdfs:domain rdf:resource="https://w3id.org/lso/intro/beta202408#INT_Interpretation"/>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT2_ActualizationOfFeature"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT3_Interrelation"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<rdfs:comment xml:lang="en">Links an INT Identification or INT Interpretation to the INT3 Interrelation or the INT2 Actualization of Feature it identifies.</rdfs:comment>
<rdfs:label xml:lang="en">R21 identifies</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R21i_isIdentifiedBy -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R21i_isIdentifiedBy">
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R21_identifies"/>
<rdfs:subPropertyOf rdf:resource="http://www.cidoc-crm.org/cidoc-crm/P67i_is_referred_to_by"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT2_ActualizationOfFeature"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT3_Interrelation"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="https://w3id.org/lso/intro/beta202408#INT_Interpretation"/>
<rdfs:label xml:lang="en">R21i is identified by</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R22_providesSimilarityForRelation -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R22_providesSimilarityForRelation">
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R22i_relationIsBasedOnSimilarity"/>
<rdfs:domain rdf:resource="https://w3id.org/lso/intro/beta202408#INT4_Feature"/>
<rdfs:range rdf:resource="https://w3id.org/lso/intro/beta202408#INT3_Interrelation"/>
<rdfs:comment xml:lang="en">Links an INT4 Feature to an INT3 Interrelation it provides the similarity for, the similarity being necessary for the detection of the INT3 Interrelation. States that an INT3 Interrelation is based on a similarity, i.e. the actualization of the same INT4 Feature in two different texts/images.</rdfs:comment>
<rdfs:label xml:lang="en">R22 provides similarity for relation</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R22i_relationIsBasedOnSimilarity -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R22i_relationIsBasedOnSimilarity">
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R22_providesSimilarityForRelation"/>
<rdfs:domain rdf:resource="https://w3id.org/lso/intro/beta202408#INT3_Interrelation"/>
<rdfs:range rdf:resource="https://w3id.org/lso/intro/beta202408#INT4_Feature"/>
<rdfs:label xml:lang="en">R22i relation is based on similarity</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R23_providesSupportFor -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R23_providesSupportFor">
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R23i_supportProvidedBy"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://iflastandards.info/ns/lrm/lrmoo/F1_Work"/>
<rdf:Description rdf:about="http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT1_Passage"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT2_ActualizationOfFeature"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT6_Architext"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT2_ActualizationOfFeature"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT3_Interrelation"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT4_Feature"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<rdfs:comment xml:lang="en">Relates a source (a text on any ontological level or an actualization of a feature on said source) to the outcome of a receptional or interpretative act (an INT2 Actualization of Feature, an INT4 Feature like an INT Interpretation, an INT3 Interrelation) to support it.</rdfs:comment>
<rdfs:label xml:lang="en">R23 provides support for</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R23i_supportProvidedBy -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R23i_supportProvidedBy">
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R23_providesSupportFor"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT2_ActualizationOfFeature"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT3_Interrelation"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT4_Feature"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://iflastandards.info/ns/lrm/lrmoo/F1_Work"/>
<rdf:Description rdf:about="http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT1_Passage"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT2_ActualizationOfFeature"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT6_Architext"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<rdfs:label xml:lang="en">R23i support provided by</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R24_hasRelatedEntity -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R24_hasRelatedEntity">
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R24i_isRelatedEntity"/>
<rdfs:domain rdf:resource="https://w3id.org/lso/intro/beta202408#INT3_Interrelation"/>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://iflastandards.info/ns/lrm/lrmoo/F1_Work"/>
<rdf:Description rdf:about="http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT1_Passage"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT2_ActualizationOfFeature"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT6_Architext"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<rdfs:comment xml:lang="en">Links any INT3 Interrelation to a text or image (on any ontological level) or INT2 Actualization of Feature that is part of the INT3 Interrelation. The skos:broadMatch states that this property is a more specific version of oa:hasTarget in the sense that the INT3 Interrelation can be seen as an annotation, the texts/images linked by this relationship as their targets.</rdfs:comment>
<rdfs:label xml:lang="en">R24 has related entity</rdfs:label>
<skos:broadMatch rdf:resource="http://www.w3.org/ns/oa#hasTarget"/>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R24i_isRelatedEntity -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R24i_isRelatedEntity">
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R24_hasRelatedEntity"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://iflastandards.info/ns/lrm/lrmoo/F1_Work"/>
<rdf:Description rdf:about="http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT1_Passage"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT2_ActualizationOfFeature"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT6_Architext"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="https://w3id.org/lso/intro/beta202408#INT3_Interrelation"/>
<rdfs:label xml:lang="en">R24i is related entity</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R25_hasSegment -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R25_hasSegment">
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R25i_isSegmentOf"/>
<rdfs:domain rdf:resource="http://iflastandards.info/ns/lrm/lrmoo/F3_Manifestation"/>
<rdfs:range rdf:resource="https://w3id.org/lso/intro/beta202408#INT16_Segment"/>
<rdfs:comment xml:lang="en">Links a F3 Manifestation to an INT16 Segment it contains (the segment in turn R16 incorporates an INT1 Passage or an F2 Expression).</rdfs:comment>
<rdfs:label xml:lang="en">R25 has segment</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R25i_isSegmentOf -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R25i_isSegmentOf">
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R25_hasSegment"/>
<rdfs:domain rdf:resource="https://w3id.org/lso/intro/beta202408#INT16_Segment"/>
<rdfs:range rdf:resource="http://iflastandards.info/ns/lrm/lrmoo/F3_Manifestation"/>
<rdfs:label xml:lang="en">R25i is segment of</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R3_constellates -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R3_constellates">
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R3i_isConstellatedBy"/>
<rdfs:domain rdf:resource="https://w3id.org/lso/intro/beta202408#INT_Constellation"/>
<rdfs:range rdf:resource="https://w3id.org/lso/intro/beta202408#INT2_ActualizationOfFeature"/>
<rdfs:comment xml:lang="en">Links an INT Constellation to the elements (INT2 Actualizations of Feature) that together form that INT Constellation.</rdfs:comment>
<rdfs:label xml:lang="en">R3 constellates</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R3i_isConstellatedBy -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R3i_isConstellatedBy">
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R3_constellates"/>
<rdfs:domain rdf:resource="https://w3id.org/lso/intro/beta202408#INT2_ActualizationOfFeature"/>
<rdfs:range rdf:resource="https://w3id.org/lso/intro/beta202408#INT_Constellation"/>
<rdfs:label xml:lang="en">R3i is constellated by</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R4_defines -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R4_defines">
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R4i_isDefinedIn"/>
<rdfs:domain rdf:resource="https://w3id.org/lso/intro/beta202408#INT2_ActualizationOfFeature"/>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT11_TypeOfInterrelation"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT4_Feature"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT6_Architext"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<rdfs:comment xml:lang="en">Relates an actualization (usually: of the semantic feature 'INT Definition') to an INT11 Type of Interrelation, to INT4 Features, or to INT6 Architexts and thereby links e.g. a feature of text passage – e.g. a definition in Foucault's writings – to a concept - e.g. 'discourse'.</rdfs:comment>
<rdfs:label xml:lang="en">R4 defines</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R4i_isDefinedIn -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R4i_isDefinedIn">
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R4_defines"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT11_TypeOfInterrelation"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT4_Feature"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT6_Architext"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="https://w3id.org/lso/intro/beta202408#INT2_ActualizationOfFeature"/>
<rdfs:label xml:lang="en">R4i is defined in</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R8_hasOpinionObject -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R8_hasOpinionObject">
<rdfs:subPropertyOf rdf:resource="http://www.cidoc-crm.org/cidoc-crm/P67_refers_to"/>
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R8i_isOpinionObjectOf"/>
<rdfs:domain rdf:resource="https://w3id.org/lso/intro/beta202408#INT_Opinion"/>
<rdfs:range rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:comment xml:lang="en">Links an INT Opinion to its object - for example an opinion with the theme fashion (to make it an opinion about fashion).</rdfs:comment>
<rdfs:label xml:lang="en">R8 has opinion object</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R8i_isOpinionObjectOf -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R8i_isOpinionObjectOf">
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R8_hasOpinionObject"/>
<rdfs:subPropertyOf rdf:resource="http://www.cidoc-crm.org/cidoc-crm/P67i_is_referred_to_by"/>
<rdfs:domain rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:range rdf:resource="https://w3id.org/lso/intro/beta202408#INT_Opinion"/>
<rdfs:label xml:lang="en">R8i is opinion object of</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R9_hasSubsequentActualization -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R9_hasSubsequentActualization">
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R9i_hasPrecedingActualization"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:domain rdf:resource="https://w3id.org/lso/intro/beta202408#INT2_ActualizationOfFeature"/>
<rdfs:range rdf:resource="https://w3id.org/lso/intro/beta202408#INT2_ActualizationOfFeature"/>
<rdfs:comment xml:lang="en">Links an INT2 Actualization of Feature to another INT4 following it (logically or chronologically); this object property was mostly designed for the representation of the structure of research papers, where one definition, interpretation, etc., follows another.</rdfs:comment>
<rdfs:label xml:lang="en">R9 has subsequent actualization</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R9i_hasPrecedingFeature -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R9i_hasPrecedingActualization">
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R9_hasSubsequentActualization"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:domain rdf:resource="https://w3id.org/lso/intro/beta202408#INT2_ActualizationOfFeature"/>
<rdfs:range rdf:resource="https://w3id.org/lso/intro/beta202408#INT2_ActualizationOfFeature"/>
<rdfs:label xml:lang="en">R9i has preceding actualization</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R30_hasTextPassage -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R30_hasTextPassage">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/lso/intro/beta202408#R10_hasPassage"/>
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R30i_isTextPassageOf"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT1_Passage"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="https://w3id.org/lso/intro/beta202408#INT21_TextPassage"/>
<rdfs:label xml:lang="en">R30 has text passage</rdfs:label>
<rdfs:comment xml:lang="en">Links (usually, exceptions are easily conceivable) a text, like a work or an expression, to an INT21 Text Passage from that text, e.g. a book to a passage on page three of this book.</rdfs:comment>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R30i_isTextPassageOf -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R30i_isTextPassageOf">
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R30_hasTextPassage"/>
<rdfs:subPropertyOf rdf:resource="https://w3id.org/lso/intro/beta202408#R10i_isPassageOf"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:domain rdf:resource="https://w3id.org/lso/intro/beta202408#INT21_TextPassage"/>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT1_Passage"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<rdfs:label xml:lang="en">R30i is text passage of</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R31_hasImageArea -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R31_hasImageArea">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/lso/intro/beta202408#R10_hasPassage"/>
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R31i_isImageAreaOf"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT1_Passage"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="https://w3id.org/lso/intro/beta202408#INT22_ImageArea"/>
<rdfs:label xml:lang="en">R31 has image area</rdfs:label>
<rdfs:comment xml:lang="en">Links (usually, eceptions are easily conceivable) an image, like a work or an expression, to an INT22 Image Area from that image, e.g. a painting to an area on this paining.</rdfs:comment>
</owl:ObjectProperty>
<!-- https://w3id.org/lso/intro/beta202408#R31i_isImageAreaOf -->
<owl:ObjectProperty rdf:about="https://w3id.org/lso/intro/beta202408#R31i_isImageAreaOf">
<owl:inverseOf rdf:resource="https://w3id.org/lso/intro/beta202408#R31_hasImageArea"/>
<rdfs:subPropertyOf rdf:resource="https://w3id.org/lso/intro/beta202408#R10i_isPassageOf"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:domain rdf:resource="https://w3id.org/lso/intro/beta202408#INT22_ImageArea"/>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT1_Passage"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<rdfs:label xml:lang="en">R31i is image area of</rdfs:label>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Data properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- https://w3id.org/lso/intro/beta202408#R40_hasBibliographicalData -->
<owl:DatatypeProperty rdf:about="https://w3id.org/lso/intro/beta202408#R40_hasBibliographicalData">
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://iflastandards.info/ns/lrm/lrmoo/F1_Work"/>
<rdf:Description rdf:about="http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">Links a text or image (work, expression, ...) to its bibliographical data, represented as a data string. (A shortcut for the actual modelling of bibliographical data.)</rdfs:comment>
<rdfs:label xml:lang="en">R40 has bibliographical data</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/lso/intro/beta202408#R41_hasLocation -->
<owl:DatatypeProperty rdf:about="https://w3id.org/lso/intro/beta202408#R41_hasLocation">
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT16_Segment"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT1_Passage"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">Defines the location of an INT16 Segment in e.g. a F3 Manifestation, e.g. by giving page or paragraph numbers. Can be replaced by oa:hasSelector to specify the location utilizing the multiple options provided by the Web Annotation Ontology
(https://www.w3.org/TR/annotation-vocab/#web-annotation-ontology).</rdfs:comment>
<rdfs:label xml:lang="en">R41 has location</rdfs:label>
<skos:broadMatch rdf:resource="http://www.w3.org/ns/oa#hasSelector"/>
</owl:DatatypeProperty>
<!-- https://w3id.org/lso/intro/beta202408#R42_hasParaphraseOrDefinition -->
<owl:DatatypeProperty rdf:about="https://w3id.org/lso/intro/beta202408#R42_hasParaphraseOrDefinition">
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">Links pretty much everything to a data string providing a definition for it. (A shortcut for modelling the definition as an INT2 Actualization of Feature.)</rdfs:comment>
<rdfs:label xml:lang="en">R42 has paraphrase or definition</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/lso/intro/beta202408#R43_hasSpecification -->
<owl:DatatypeProperty rdf:about="https://w3id.org/lso/intro/beta202408#R43_hasSpecification">
<rdfs:domain rdf:resource="https://w3id.org/lso/intro/beta202408#INT4_Feature"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">Links a feature to a data string defining or describing it more closely.</rdfs:comment>
<rdfs:label xml:lang="en">R43 has specification</rdfs:label>
</owl:DatatypeProperty>
<!-- https://w3id.org/lso/intro/beta202408#R44_hasWording -->
<owl:DatatypeProperty rdf:about="https://w3id.org/lso/intro/beta202408#R44_hasWording">
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT16_Segment"/>
<rdf:Description rdf:about="https://w3id.org/lso/intro/beta202408#INT1_Passage"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:comment xml:lang="en">Links an INT21 Text Passage or an INT16 Segment to a data string providing its exact wording.</rdfs:comment>
<rdfs:label xml:lang="en">R44 has wording</rdfs:label>
</owl:DatatypeProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://iflastandards.info/ns/lrm/lrmoo/F1_Work -->
<owl:Class rdf:about="http://iflastandards.info/ns/lrm/lrmoo/F1_Work"/>
<!-- http://iflastandards.info/ns/lrm/lrmoo/F2_Expression -->
<owl:Class rdf:about="http://iflastandards.info/ns/lrm/lrmoo/F2_Expression">
<rdfs:subClassOf rdf:resource="http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object"/>
</owl:Class>
<!-- http://iflastandards.info/ns/lrm/lrmoo/F3_Manifestation -->
<owl:Class rdf:about="http://iflastandards.info/ns/lrm/lrmoo/F3_Manifestation">
<rdfs:subClassOf rdf:resource="http://www.cidoc-crm.org/cidoc-crm/E73_Information_Object"/>
</owl:Class>
<!-- http://purl.org/vocommons/voaf#Vocabulary -->
<owl:Class rdf:about="http://purl.org/vocommons/voaf#Vocabulary"/>