-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnarrativeExam.owl
1002 lines (789 loc) · 35.3 KB
/
narrativeExam.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
@prefix : <http://www.semanticweb.org/narrativeExam#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dctypes: <http://purl.org/dc/dcmitype/> .
@base <http://www.semanticweb.org/narrativeExam> .
<http://www.semanticweb.org/narrativeExam> rdf:type owl:Ontology ;
rdfs:comment "Ontology expressing the application domain related to narratives for the Semantic Web exam."@en .
#################################################################
# Object Properties
#################################################################
### http://www.semanticweb.org/narrativeExam#composedOf
:composedOf rdf:type owl:ObjectProperty ;
owl:inverseOf :isPartOf ;
rdfs:domain :Narrative ;
rdfs:range :Event ;
rdfs:comment "composedOf relates a Narrative to the Event it contains."@en ;
rdfs:label "composedOf"@en .
### http://www.semanticweb.org/narrativeExam#createdBy
:createdBy rdf:type owl:ObjectProperty ;
owl:inverseOf :creates ;
rdfs:domain :Narrative ;
rdfs:range :Narrator ;
rdfs:comment "createdBy relates a Narrative to the Narrator which creates it."@en ;
rdfs:label "createdBy"@en .
### http://www.semanticweb.org/narrativeExam#creates
:creates rdf:type owl:ObjectProperty ;
rdfs:domain :Narrator ;
rdfs:range :Narrative ;
rdfs:comment "creates relates a Narrator to the Narrative he/she developed."@en ;
rdfs:label "creates"@en .
### http://www.semanticweb.org/narrativeExam#givesContractTo
:givesContractTo rdf:type owl:ObjectProperty ;
owl:inverseOf :hasContractWith ;
rdfs:domain :Publisher ;
rdfs:range :Narrator ;
rdfs:comment "givesContractTo relates a Publisher to the Narrator employed."@en ;
rdfs:label "givesContractTo"@en .
### http://www.semanticweb.org/narrativeExam#hasCharacter
:hasCharacter rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasPartecipant ;
owl:inverseOf :isCharacterOf ;
rdfs:domain :Event ;
rdfs:range :Character ;
rdfs:comment "hasCharacter relates an Event to the Character which is member of the Event."@en ;
rdfs:label "hasCharacter"@en .
### http://www.semanticweb.org/narrativeExam#hasContractWith
:hasContractWith rdf:type owl:ObjectProperty ;
rdfs:domain :Narrator ;
rdfs:range :Publisher ;
owl:propertyChainAxiom ( :creates
:reportedBy
:hasPublisher
) ;
rdfs:comment "hasContractWith relates a Narrator to the Publisher which gives him the contract."@en ;
rdfs:label "hasContractWith"@en .
### http://www.semanticweb.org/narrativeExam#hasNarrator
:hasNarrator rdf:type owl:ObjectProperty ;
rdfs:domain :Book ;
rdfs:range :Narrator ;
owl:propertyChainAxiom ( :reports
:createdBy
) ;
rdfs:comment "hasNarrator relates a Book with its Narrator"@en ;
rdfs:label "hasNarrator"@en .
### http://www.semanticweb.org/narrativeExam#hasObject
:hasObject rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasPartecipant ;
owl:inverseOf :isObjectOf ;
rdfs:domain :Event ;
rdfs:range :Object ;
rdfs:comment "hasObject relates an Event to the Object which is part of the Event."@en ;
rdfs:label "hasObject"@en .
### http://www.semanticweb.org/narrativeExam#hasPartecipant
:hasPartecipant rdf:type owl:ObjectProperty ;
owl:inverseOf :isPartecipantOf ;
rdfs:domain :Event ;
rdfs:range :Partecipant ;
rdfs:comment "hasPartecipant relates an Event to the Partecipant which is member of the Event."@en ;
rdfs:label "hasPartecipant"@en .
### http://www.semanticweb.org/narrativeExam#hasPublisher
:hasPublisher rdf:type owl:ObjectProperty ;
owl:inverseOf :publishes ;
rdf:type owl:FunctionalProperty ;
rdfs:domain :Book ;
rdfs:range :Publisher ;
rdfs:comment "hasPublisher relates a Book to the Publisher which publishes said Book."@en ;
rdfs:label "hasPublisher"@en .
### http://www.semanticweb.org/narrativeExam#isCharacterOf
:isCharacterOf rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :isPartecipantOf ;
rdfs:domain :Character ;
rdfs:range :Event ;
rdfs:comment "isCharacterOf relates a Character to the Event he/she partecipates in."@en ;
rdfs:label "isCharacterOf"@en .
### http://www.semanticweb.org/narrativeExam#isObjectOf
:isObjectOf rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :isPartecipantOf ;
rdfs:domain :Object ;
rdfs:range :Event ;
rdfs:comment "isObjectOf relates an Object to the Event it partecipates in."@en ;
rdfs:label "isObjectOf"@en .
### http://www.semanticweb.org/narrativeExam#isPartOf
:isPartOf rdf:type owl:ObjectProperty ;
rdfs:domain :Event ;
rdfs:range :Narrative ;
rdfs:comment "isPartOf relates an Event to the Narrative it is part of."@en ;
rdfs:label "isPartOf"@en .
### http://www.semanticweb.org/narrativeExam#isPartecipantOf
:isPartecipantOf rdf:type owl:ObjectProperty ;
rdfs:domain :Partecipant ;
rdfs:range :Event ;
rdfs:comment "isPartecipantOf relates a Partecipant to the Event he/she/it partecipates in."@en ;
rdfs:label "isPartecipantOf"@en .
### http://www.semanticweb.org/narrativeExam#isPlaceOf
:isPlaceOf rdf:type owl:ObjectProperty ;
owl:inverseOf :occursIn ;
rdf:type owl:InverseFunctionalProperty ;
rdfs:domain dctypes:Location ;
rdfs:range :Event ;
rdfs:comment "isPlaceOf relates a Location to the Event in which the Event takes place."@en ;
rdfs:label "isPlaceOf"@en .
### http://www.semanticweb.org/narrativeExam#occursIn
:occursIn rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :Event ;
rdfs:range dctypes:Location ;
rdfs:comment "occursIn relates an Event to the Location in which the Event takes place."@en ;
rdfs:label "occursIn"@en .
### http://www.semanticweb.org/narrativeExam#publishes
:publishes rdf:type owl:ObjectProperty ,
owl:InverseFunctionalProperty ;
rdfs:domain :Publisher ;
rdfs:range :Book ;
rdfs:comment "publishes relates a Publisher to the Book it publishes."@en ;
rdfs:label "publishes"@en .
### http://www.semanticweb.org/narrativeExam#reportedBy
:reportedBy rdf:type owl:ObjectProperty ;
owl:inverseOf :reports ;
rdfs:domain :Narrative ;
rdfs:range :Book ;
rdfs:comment "reportedBy relates a Narrative to the Book which contains said Narrative."@en ;
rdfs:label "reportedBy"@en .
### http://www.semanticweb.org/narrativeExam#reports
:reports rdf:type owl:ObjectProperty ;
rdfs:domain :Book ;
rdfs:range :Narrative ;
rdfs:comment "reports relates a Book to the Narrative it contains."@en ;
rdfs:label "reports"@en .
### http://www.semanticweb.org/narrativeExam#sellsBookIn
:sellsBookIn rdf:type owl:ObjectProperty ;
owl:inverseOf :sellsBookOf ;
rdfs:domain :Publisher ;
rdfs:range :BookShop ;
rdfs:comment "sellsBookIn relates a Publisher with the BookShop in which it sells its Books."@en ;
rdfs:label "sellsBookIn"@en .
### http://www.semanticweb.org/narrativeExam#sellsBookOf
:sellsBookOf rdf:type owl:ObjectProperty ;
rdfs:domain :BookShop ;
rdfs:range :Publisher ;
rdfs:comment "sellsBookOf relates a BookShop to the Publisher of which Books it sells."@en ;
rdfs:label "sellsBookOf"@en .
#################################################################
# Data properties
#################################################################
### http://www.semanticweb.org/narrativeExam#hasBeginning
:hasBeginning rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :hasTimeDelimiter ;
rdf:type owl:FunctionalProperty ;
rdfs:domain :Event ;
rdfs:range xsd:dateTime ;
rdfs:comment "hasBeginning relates Event with its datetime of beginning."@en ;
rdfs:label "hasBeginning"@en .
### http://www.semanticweb.org/narrativeExam#hasData
:hasData rdf:type owl:DatatypeProperty ;
rdfs:range xsd:string ;
rdfs:comment "hasData relates a subject with its textual name or other textual information on it."@en ;
rdfs:label "hasData"@en .
### http://www.semanticweb.org/narrativeExam#hasEnding
:hasEnding rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :hasTimeDelimiter ;
rdf:type owl:FunctionalProperty ;
rdfs:domain :Event ;
rdfs:range xsd:dateTime ;
rdfs:comment "hasEnding relates Event with its datetime of ending."@en ;
rdfs:label "hasEnding"@en .
### http://www.semanticweb.org/narrativeExam#hasID
:hasID rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :Publisher ;
rdfs:range xsd:positiveInteger ;
rdfs:comment "hasID relates Publisher with its identifying code."@en ;
rdfs:label "hasID"@en .
### http://www.semanticweb.org/narrativeExam#hasISBN
:hasISBN rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :hasData ;
rdf:type owl:FunctionalProperty ;
rdfs:domain :Book ;
rdfs:range xsd:string ;
owl:propertyDisjointWith :hasTitle ;
rdfs:comment "hasISBN relates Book with its ISBN code."@en ;
rdfs:label "hasISBN"@en .
### http://www.semanticweb.org/narrativeExam#hasName
:hasName rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :hasData ;
rdfs:range xsd:string ;
rdfs:comment "hasName relates a subject with its name."@en ;
rdfs:label "hasName"@en .
### http://www.semanticweb.org/narrativeExam#hasPrice
:hasPrice rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :Book ;
rdfs:range xsd:positiveInteger ;
rdfs:comment "hasPrice relates a Book with its price."@en ;
rdfs:label "hasPrice"@en .
### http://www.semanticweb.org/narrativeExam#hasTimeDelimiter
:hasTimeDelimiter rdf:type owl:DatatypeProperty ;
rdfs:domain :Event ;
rdfs:range xsd:dateTime ;
rdfs:comment "hasTimeDelimiter relates Event with its time delimiting datetime."@en ;
rdfs:label "hasTimeDelimiter"@en .
### http://www.semanticweb.org/narrativeExam#hasTitle
:hasTitle rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :hasData ;
rdfs:domain :Book ;
rdfs:range xsd:string ;
rdfs:comment "hasTitle relates Book with its title."@en ;
rdfs:label "hasTitle"@en .
#################################################################
# Classes
#################################################################
### http://purl.org/dc/dcmitype/Location
dctypes:Location rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty :hasName ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:string
] ;
rdfs:comment "A spatial region or named place."@en ;
rdfs:label "Location"@en .
### http://purl.org/dc/dcmitype/Text
dctypes:Text rdf:type owl:Class ;
rdfs:comment "A resource consisting primarily of words for reading."@en ;
rdfs:label "Text"@en .
### http://www.semanticweb.org/narrativeExam#Book
:Book rdf:type owl:Class ;
rdfs:subClassOf dctypes:Text ,
[ rdf:type owl:Restriction ;
owl:onProperty :reports ;
owl:someValuesFrom :Narrative
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasPublisher ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass :Publisher
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasISBN ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:string
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasPrice ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:positiveInteger
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasTitle ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:string
] ;
owl:hasKey ( :hasISBN
) ;
rdfs:comment "A Book is a sequence of one or more Narratives."@en ;
rdfs:label "Book"@en .
### http://www.semanticweb.org/narrativeExam#BookShop
:BookShop rdf:type owl:Class ;
rdfs:comment "A BookShop is a place where Books are sold."@en ;
rdfs:label "BookShop"@en .
### http://www.semanticweb.org/narrativeExam#Character
:Character rdf:type owl:Class ;
rdfs:subClassOf :Partecipant ;
owl:disjointWith :Object ;
rdfs:comment "A Character is an alive Participant."@en ;
rdfs:label "Character"@en .
### http://www.semanticweb.org/narrativeExam#Event
:Event rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty :hasPartecipant ;
owl:someValuesFrom :Partecipant
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :occursIn ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass dctypes:Location
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasBeginning ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:dateTime
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasEnding ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:dateTime
] ;
rdfs:comment "Event is part of a Narrative and occurs in a Location. It is time restricted between a beginning time and an ending time. It has at least a Character or Object Partecipant."@en ;
rdfs:label "Event"@en .
### http://www.semanticweb.org/narrativeExam#FictionalLocation
:FictionalLocation rdf:type owl:Class ;
rdfs:subClassOf dctypes:Location ;
owl:disjointWith :RealLocation ;
rdfs:comment "A Location existing in the fictional world of a Narrative."@en ;
rdfs:label "FictionalLocation"@en .
### http://www.semanticweb.org/narrativeExam#Human
:Human rdf:type owl:Class ;
rdfs:subClassOf :Character ;
owl:disjointWith :NonHuman ;
rdfs:comment "A Character belonging to the Human species."@en ;
rdfs:label "Human"@en .
### http://www.semanticweb.org/narrativeExam#Narrative
:Narrative rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty :composedOf ;
owl:someValuesFrom :Event
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :createdBy ;
owl:someValuesFrom :Narrator
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :composedOf ;
owl:allValuesFrom :Event
] ;
rdfs:comment "A Narrative is a composition of one or more Events and is developed by one or more Narrators."@en ;
rdfs:label "Narrative"@en .
### http://www.semanticweb.org/narrativeExam#Narrator
:Narrator rdf:type owl:Class ;
rdfs:subClassOf foaf:Person ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasContractWith ;
owl:someValuesFrom :Publisher
] ;
rdfs:comment "Narrator is a person who develops narratives."@en ;
rdfs:label "Narrator"@en .
### http://www.semanticweb.org/narrativeExam#NonHuman
:NonHuman rdf:type owl:Class ;
rdfs:subClassOf :Character ;
rdfs:comment "A character not belonging to the human species, possibly belonging to a fictional species."@en ;
rdfs:label "NonHuman"@en .
### http://www.semanticweb.org/narrativeExam#Object
:Object rdf:type owl:Class ;
rdfs:subClassOf :Partecipant ;
rdfs:comment "Object is an inanimate partecipant."@en ;
rdfs:label "Object"@en .
### http://www.semanticweb.org/narrativeExam#Partecipant
:Partecipant rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty :hasName ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:string
] ;
rdfs:comment "Partecipant is someone or something that takes part in an Event."@en ;
rdfs:label "Partecipant"@en .
### http://www.semanticweb.org/narrativeExam#Publisher
:Publisher rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty :publishes ;
owl:minQualifiedCardinality "2"^^xsd:nonNegativeInteger ;
owl:onClass :Book
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :sellsBookIn ;
owl:minQualifiedCardinality "2"^^xsd:nonNegativeInteger ;
owl:onClass :BookShop
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasID ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:positiveInteger
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasName ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange xsd:string
] ;
owl:hasKey ( :hasID
:hasName
) ;
rdfs:comment "A publisher is an organization which publishes and sells books."@en ;
rdfs:label "Publisher"@en .
### http://www.semanticweb.org/narrativeExam#RealLocation
:RealLocation rdf:type owl:Class ;
rdfs:subClassOf dctypes:Location ;
rdfs:comment "A location existing in the world."@en ;
rdfs:label "RealLocation"@en .
### http://xmlns.com/foaf/0.1/Person
foaf:Person rdf:type owl:Class ;
rdfs:comment "The Person class represents people."@en ;
rdfs:label "Person"@en .
#################################################################
# Individuals
#################################################################
### http://www.semanticweb.org/narrativeExam#book1
:book1 rdf:type owl:NamedIndividual ,
:Book ;
:hasPublisher :publisher2 ;
:reports :narrative1 ,
:narrative8 ;
:hasISBN "978-3-598-21515-5"^^xsd:string ;
:hasPrice "9"^^xsd:positiveInteger ;
:hasTitle "Mein Kraft"^^xsd:string .
### http://www.semanticweb.org/narrativeExam#book2
:book2 rdf:type owl:NamedIndividual ,
:Book ;
:hasPublisher :publisher3 ;
:reports :narrative2 ,
:narrative3 ,
:narrative5 ;
:hasISBN "978-3-598-21533-9"^^xsd:string ;
:hasPrice "13"^^xsd:positiveInteger ;
:hasTitle "Guerra ma poi facciamo Pace"^^xsd:string .
### http://www.semanticweb.org/narrativeExam#book3
:book3 rdf:type owl:NamedIndividual ,
:Book ;
:hasPublisher :publisher3 ;
:reports :narrative4 ,
:narrative6 ;
:hasISBN "978-3-598-21545-2"^^xsd:string ;
:hasPrice "5"^^xsd:positiveInteger ;
:hasTitle "Una Coscienza di Meno"^^xsd:string .
### http://www.semanticweb.org/narrativeExam#book4
:book4 rdf:type owl:NamedIndividual ,
:Book ;
:hasPublisher :publisher2 ;
:reports :narrative7 ;
:hasISBN "978-3-598-21596-4"^^xsd:string ;
:hasPrice "54"^^xsd:positiveInteger ;
:hasTitle "Uno, nessuno e 30elode"^^xsd:string .
### http://www.semanticweb.org/narrativeExam#book5
:book5 rdf:type owl:NamedIndividual ,
:Book ;
:hasPublisher :publisher2 ;
:reports :narrative4 ;
:hasISBN "978-3-598-22345-7"^^xsd:string ;
:hasPrice "3"^^xsd:positiveInteger ;
:hasTitle "1985"^^xsd:string .
### http://www.semanticweb.org/narrativeExam#book6
:book6 rdf:type owl:NamedIndividual ,
:Book ;
:hasPublisher :publisher1 ;
:reports :narrative1 ;
:hasISBN "978-3-598-22345-1"^^xsd:string ;
:hasPrice "7"^^xsd:positiveInteger ;
:hasTitle "Don Chisciotte fa la mancia"^^xsd:string .
### http://www.semanticweb.org/narrativeExam#bookShop1
:bookShop1 rdf:type owl:NamedIndividual ,
:BookShop ;
:sellsBookOf :publisher1 .
### http://www.semanticweb.org/narrativeExam#bookShop2
:bookShop2 rdf:type owl:NamedIndividual ,
:BookShop .
### http://www.semanticweb.org/narrativeExam#bookShop3
:bookShop3 rdf:type owl:NamedIndividual ,
:BookShop .
### http://www.semanticweb.org/narrativeExam#bookShop4
:bookShop4 rdf:type owl:NamedIndividual ,
:BookShop .
### http://www.semanticweb.org/narrativeExam#char1
:char1 rdf:type owl:NamedIndividual ,
:Human ;
:isCharacterOf :event01 ;
:hasName "human1"^^xsd:string .
### http://www.semanticweb.org/narrativeExam#char2
:char2 rdf:type owl:NamedIndividual ,
:Human ;
:hasName "human2"^^xsd:string .
### http://www.semanticweb.org/narrativeExam#char3
:char3 rdf:type owl:NamedIndividual ,
:Human ;
:hasName "human3"^^xsd:string .
### http://www.semanticweb.org/narrativeExam#char4
:char4 rdf:type owl:NamedIndividual ,
:Human ;
:hasName "human4"^^xsd:string .
### http://www.semanticweb.org/narrativeExam#char5
:char5 rdf:type owl:NamedIndividual ,
:NonHuman ;
:hasName "non_human1"^^xsd:string .
### http://www.semanticweb.org/narrativeExam#char6
:char6 rdf:type owl:NamedIndividual ,
:NonHuman ;
:hasName "non_human2"^^xsd:string .
### http://www.semanticweb.org/narrativeExam#char7
:char7 rdf:type owl:NamedIndividual ,
:NonHuman ;
:hasName "non_human3"^^xsd:string .
### http://www.semanticweb.org/narrativeExam#event01
:event01 rdf:type owl:NamedIndividual ,
:Event ;
:hasCharacter :char1 ;
:hasObject :obj3 ;
:occursIn :real1 ;
:hasBeginning "2001-10-26T21:32:52"^^xsd:dateTime ;
:hasEnding "2001-11-30T21:32:52"^^xsd:dateTime .
### http://www.semanticweb.org/narrativeExam#event02
:event02 rdf:type owl:NamedIndividual ,
:Event ;
:hasCharacter :char2 ,
:char3 ,
:char4 ;
:hasObject :obj5 ;
:occursIn :real2 ;
:hasBeginning "1945-10-26T00:00:00"^^xsd:dateTime ;
:hasEnding "1945-10-31T00:00:00"^^xsd:dateTime .
### http://www.semanticweb.org/narrativeExam#event03
:event03 rdf:type owl:NamedIndividual ,
:Event ;
:hasCharacter :char3 ,
:char4 ,
:char7 ;
:hasObject :obj2 ,
:obj4 ;
:occursIn :real3 ;
:hasBeginning "1970-10-26T21:14:00"^^xsd:dateTime ;
:hasEnding "1979-11-30T10:32:51"^^xsd:dateTime .
### http://www.semanticweb.org/narrativeExam#event04
:event04 rdf:type owl:NamedIndividual ,
:Event ;
:hasCharacter :char5 ,
:char6 ;
:hasObject :obj1 ,
:obj4 ;
:occursIn :real1 ;
:hasBeginning "1492-10-12T09:14:00"^^xsd:dateTime ;
:hasEnding "1493-01-12T09:14:00"^^xsd:dateTime .
### http://www.semanticweb.org/narrativeExam#event05
:event05 rdf:type owl:NamedIndividual ,
:Event ;
:hasCharacter :char1 ,
:char2 ,
:char3 ,
:char4 ;
:hasObject :obj1 ,
:obj3 ;
:occursIn :fictional1 ;
:hasBeginning "1610-01-12T09:13:00"^^xsd:dateTime ;
:hasEnding "1610-04-16T09:17:00"^^xsd:dateTime .
### http://www.semanticweb.org/narrativeExam#event06
:event06 rdf:type owl:NamedIndividual ,
:Event ;
:hasCharacter :char4 ,
:char6 ;
:occursIn :fictional2 ;
:hasBeginning "1776-07-04T00:00:00"^^xsd:dateTime ;
:hasEnding "1776-07-04T23:59:59"^^xsd:dateTime .
### http://www.semanticweb.org/narrativeExam#event07
:event07 rdf:type owl:NamedIndividual ,
:Event ;
:hasObject :obj2 ;
:occursIn :fictional3 ;
:hasBeginning "1998-08-03T00:00:00"^^xsd:dateTime ;
:hasEnding "1999-01-25T23:59:59"^^xsd:dateTime .
### http://www.semanticweb.org/narrativeExam#event08
:event08 rdf:type owl:NamedIndividual ,
:Event ;
:hasCharacter :char1 ,
:char5 ,
:char6 ,
:char7 ;
:hasObject :obj2 ,
:obj3 ,
:obj4 ;
:occursIn :fictional1 ;
:hasBeginning "3000-05-09T00:00:00"^^xsd:dateTime ;
:hasEnding "3000-06-25T00:00:00"^^xsd:dateTime .
### http://www.semanticweb.org/narrativeExam#event09
:event09 rdf:type owl:NamedIndividual ,
:Event ;
:hasCharacter :char1 ;
:hasObject :obj4 ;
:occursIn :real2 ;
:hasBeginning "0000-01-01T00:00:00"^^xsd:dateTime ;
:hasEnding "0033-01-01T00:00:00"^^xsd:dateTime .
### http://www.semanticweb.org/narrativeExam#event10
:event10 rdf:type owl:NamedIndividual ,
:Event ;
:hasCharacter :char1 ,
:char2 ,
:char3 ,
:char4 ,
:char5 ,
:char6 ,
:char7 ;
:hasObject :obj1 ,
:obj2 ,
:obj3 ,
:obj4 ,
:obj5 ;
:isPartOf :narrative1 ;
:occursIn :real1 ;
:hasBeginning "0476-01-01T00:00:00"^^xsd:dateTime ;
:hasEnding "0476-01-01T00:00:01"^^xsd:dateTime .
### http://www.semanticweb.org/narrativeExam#fictional1
:fictional1 rdf:type owl:NamedIndividual ,
:FictionalLocation ;
:hasName "Hogwarts"^^xsd:string .
### http://www.semanticweb.org/narrativeExam#fictional2
:fictional2 rdf:type owl:NamedIndividual ,
:FictionalLocation ;
:hasName "Narnia"^^xsd:string .
### http://www.semanticweb.org/narrativeExam#fictional3
:fictional3 rdf:type owl:NamedIndividual ,
:FictionalLocation ;
:hasName "Middle Earth"^^xsd:string .
### http://www.semanticweb.org/narrativeExam#narrative1
:narrative1 rdf:type owl:NamedIndividual ,
:Narrative ;
:composedOf :event06 ,
:event10 ;
:createdBy :narrator1 ;
:reportedBy :book1 .
### http://www.semanticweb.org/narrativeExam#narrative2
:narrative2 rdf:type owl:NamedIndividual ,
:Narrative ;
:composedOf :event01 ,
:event02 ;
:createdBy :narrator4 ,
:narrator5 .
### http://www.semanticweb.org/narrativeExam#narrative3
:narrative3 rdf:type owl:NamedIndividual ,
:Narrative ;
:composedOf :event06 ,
:event07 ,
:event08 ;
:createdBy :narrator3 .
### http://www.semanticweb.org/narrativeExam#narrative4
:narrative4 rdf:type owl:NamedIndividual ,
:Narrative ;
:composedOf :event02 ,
:event03 ,
:event04 ,
:event05 ;
:createdBy :narrator5 .
### http://www.semanticweb.org/narrativeExam#narrative5
:narrative5 rdf:type owl:NamedIndividual ,
:Narrative ;
:composedOf :event06 ,
:event07 ,
:event08 ,
:event09 ;
:createdBy :narrator1 .
### http://www.semanticweb.org/narrativeExam#narrative6
:narrative6 rdf:type owl:NamedIndividual ,
:Narrative ;
:composedOf :event03 ,
:event06 ;
:createdBy :narrator2 .
### http://www.semanticweb.org/narrativeExam#narrative7
:narrative7 rdf:type owl:NamedIndividual ,
:Narrative ;
:composedOf :event02 ;
:createdBy :narrator2 ,
:narrator4 .
### http://www.semanticweb.org/narrativeExam#narrative8
:narrative8 rdf:type owl:NamedIndividual ,
:Narrative ;
:composedOf :event09 ,
:event10 ;
:createdBy :narrator3 .
### http://www.semanticweb.org/narrativeExam#narrator1
:narrator1 rdf:type owl:NamedIndividual ,
:Narrator ;
:creates :narrative1 ;
:hasContractWith :publisher1 .
### http://www.semanticweb.org/narrativeExam#narrator2
:narrator2 rdf:type owl:NamedIndividual ,
:Narrator ;
:hasContractWith :publisher3 .
### http://www.semanticweb.org/narrativeExam#narrator3
:narrator3 rdf:type owl:NamedIndividual ,
:Narrator ;
:hasContractWith :publisher1 .
### http://www.semanticweb.org/narrativeExam#narrator4
:narrator4 rdf:type owl:NamedIndividual ,
:Narrator ;
:hasContractWith :publisher2 .
### http://www.semanticweb.org/narrativeExam#narrator5
:narrator5 rdf:type owl:NamedIndividual ,
:Narrator .
### http://www.semanticweb.org/narrativeExam#obj1
:obj1 rdf:type owl:NamedIndividual ,
:Object ;
:hasName "object1"^^xsd:string .
### http://www.semanticweb.org/narrativeExam#obj2
:obj2 rdf:type owl:NamedIndividual ,
:Object ;
:isObjectOf :event03 ;
:hasName "object2"^^xsd:string .
### http://www.semanticweb.org/narrativeExam#obj3
:obj3 rdf:type owl:NamedIndividual ,
:Object ;
:hasName "object3"^^xsd:string .
### http://www.semanticweb.org/narrativeExam#obj4
:obj4 rdf:type owl:NamedIndividual ,
:Object ;
:hasName "object4"^^xsd:string .
### http://www.semanticweb.org/narrativeExam#obj5
:obj5 rdf:type owl:NamedIndividual ,
:Object ;
:hasName "object5"^^xsd:string .
### http://www.semanticweb.org/narrativeExam#publisher1
:publisher1 rdf:type owl:NamedIndividual ,
:Publisher ;
:givesContractTo :narrator1 ;
:publishes :book6 ;
:sellsBookIn :bookShop1 ,
:bookShop2 ,
:bookShop3 ;
:hasID "19"^^xsd:positiveInteger ;
:hasName "Penguin Random House"^^xsd:string .
### http://www.semanticweb.org/narrativeExam#publisher2
:publisher2 rdf:type owl:NamedIndividual ,
:Publisher ;
:publishes :book1 ,
:book4 ,
:book5 ;
:sellsBookIn :bookShop2 ,
:bookShop3 ,
:bookShop4 ;
:hasID "57"^^xsd:positiveInteger ;
:hasName "HarperCollins"^^xsd:string .
### http://www.semanticweb.org/narrativeExam#publisher3
:publisher3 rdf:type owl:NamedIndividual ,
:Publisher ;
:publishes :book2 ,
:book3 ;
:sellsBookIn :bookShop1 ,
:bookShop2 ,
:bookShop3 ,
:bookShop4 ;
:hasID "5001"^^xsd:positiveInteger ;
:hasName "Macmillan Publishers"^^xsd:string .
### http://www.semanticweb.org/narrativeExam#real1
:real1 rdf:type owl:NamedIndividual ,
:RealLocation ;
:isPlaceOf :event10 ;
:hasName "England"^^xsd:string .
### http://www.semanticweb.org/narrativeExam#real2
:real2 rdf:type owl:NamedIndividual ,
:RealLocation ;
:hasName "Germany"^^xsd:string .
### http://www.semanticweb.org/narrativeExam#real3
:real3 rdf:type owl:NamedIndividual ,
:RealLocation ;
:hasName "Dublin"^^xsd:string .
#################################################################
# General axioms
#################################################################
[ rdf:type owl:AllDisjointClasses ;
owl:members ( dctypes:Location
dctypes:Text
:BookShop
:Event
:Narrative
:Partecipant
:Publisher
foaf:Person
)
] .
[ rdf:type owl:AllDifferent ;
owl:distinctMembers ( :book1
:book2
:book3
:book4
:book5
:book6
)
] .
[ rdf:type owl:AllDifferent ;
owl:distinctMembers ( :publisher1
:publisher2
:publisher3
)
] .