forked from dpicca/ontologies
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodel.ttl
More file actions
999 lines (773 loc) · 40.7 KB
/
model.ttl
File metadata and controls
999 lines (773 loc) · 40.7 KB
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
@prefix : <http://literary_characters_psycological_profiles.owl#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix emo: <http://arsemotica.di.unito.it/ontology#> .
@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 swrl: <http://www.w3.org/2003/11/swrl#> .
@prefix swrlb: <http://www.w3.org/2003/11/swrlb#> .
@prefix emoart: <http://arsemotica.di.unito.it/artifacts#> .
@prefix ma-ont: <http://www.w3.org/ns/ma-ont#> .
@base <http://github.com/dpicca/ontologies/literary_characters_psychologica_profiles.owl> .
<http://github.com/dpicca/ontologies/literary_characters_psychologica_profiles.owl> rdf:type owl:Ontology ;
owl:versionIRI <https://raw.githubusercontent.com/modellingDH/character-profiling/main/model.ttl> ;
owl:imports <http://lemon-model.net/lemon> ,
ma-ont: ,
foaf: ;
dc:creator <http://orcid.org/0000-0002-1740-519X> ,
<http://orcid.org/0000-0002-8323-8764> ,
<http://orcid.org/0000-0003-2014-0855> ;
dc:title "Characters Profiles Ontology (CPO)" ;
rdfs:comment "Literary Characters Profile Ontology aligned with FOAF, Lemon and the ArsEmotica Ontology. In this release, the classes concerning the emotion are also linked to DBpedia according to the Linked Data framework." .
#################################################################
# Annotation properties
#################################################################
### http://purl.org/dc/elements/1.1/creator
dc:creator rdf:type owl:AnnotationProperty .
### http://www.w3.org/2002/07/owl#hasValue
owl:hasValue rdf:type owl:AnnotationProperty .
#################################################################
# Object Properties
#################################################################
### http://arsemotica.di.unito.it/artifacts#hasEmotion
emoart:hasEmotion rdf:type owl:ObjectProperty ;
owl:inverseOf emo:EmotionGeneratedByMedia ;
rdfs:range emo:Emotion .
### http://arsemotica.di.unito.it/ontology#EmotionGeneratedByMedia
emo:EmotionGeneratedByMedia rdf:type owl:ObjectProperty .
### http://arsemotica.di.unito.it/ontology#ExpressOppositeEmotion
emo:ExpressOppositeEmotion rdf:type owl:ObjectProperty ,
owl:SymmetricProperty .
### http://arsemotica.di.unito.it/ontology#direct_reference
emo:direct_reference rdf:type owl:ObjectProperty .
### http://arsemotica.di.unito.it/ontology#hasEmotionalWord
emo:hasEmotionalWord rdf:type owl:ObjectProperty ;
rdfs:range emo:Word .
### http://arsemotica.di.unito.it/ontology#hasOpposite
emo:hasOpposite rdf:type owl:ObjectProperty ,
owl:AsymmetricProperty ,
owl:IrreflexiveProperty ;
rdfs:domain emo:BasicEmotion ;
rdfs:range emo:BasicEmotion .
### http://arsemotica.di.unito.it/ontology#hasSibling
emo:hasSibling rdf:type owl:ObjectProperty ,
owl:AsymmetricProperty ,
owl:IrreflexiveProperty ;
rdfs:domain emo:BasicEmotion ;
rdfs:range emo:BasicEmotion .
### http://arsemotica.di.unito.it/ontology#isComposedOf
emo:isComposedOf rdf:type owl:ObjectProperty ,
owl:AsymmetricProperty ,
owl:IrreflexiveProperty ;
rdfs:domain emo:ComplexEmotion ;
rdfs:range emo:BasicEmotion .
### http://arsemotica.di.unito.it/ontology#operateNear
emo:operateNear rdf:type owl:ObjectProperty .
### http://literary_characters_psycological_profiles.owl#denotes_emotion
:denotes_emotion rdf:type owl:ObjectProperty ;
rdfs:domain emo:Word ;
rdfs:range emo:Emotion .
### http://literary_characters_psycological_profiles.owl#described_by_word
:described_by_word rdf:type owl:ObjectProperty ;
rdfs:domain ma-ont:Agent ;
rdfs:range <http://lemon-model.net/lemon#Word> .
### http://literary_characters_psycological_profiles.owl#has_Personality
:has_Personality rdf:type owl:ObjectProperty ;
rdfs:domain :Narrative_Roles ,
ma-ont:Agent ;
rdfs:range :Personality_Profiles .
### http://www.w3.org/ns/ma-ont#hasCreator
ma-ont:hasCreator rdf:type owl:ObjectProperty .
#################################################################
# Data properties
#################################################################
### http://arsemotica.di.unito.it/ontology#hasScore
emo:hasScore rdf:type owl:DatatypeProperty ;
rdfs:domain emo:BasicEmotion ;
rdfs:range xsd:double .
### http://www.w3.org/ns/ma-ont#title
ma-ont:title rdf:type owl:DatatypeProperty .
#################################################################
# Classes
#################################################################
### http://arsemotica.di.unito.it/ontology#Acceptance
emo:Acceptance rdf:type owl:Class ;
rdfs:subClassOf emo:Trust ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasScore ;
owl:hasValue "1.0"^^xsd:double
] .
### http://arsemotica.di.unito.it/ontology#Admiration
emo:Admiration rdf:type owl:Class ;
rdfs:subClassOf emo:Trust ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasScore ;
owl:hasValue "3.0"^^xsd:double
] .
### http://arsemotica.di.unito.it/ontology#Aggressiveness
emo:Aggressiveness rdf:type owl:Class ;
rdfs:subClassOf emo:ComplexEmotion ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:isComposedOf ;
owl:someValuesFrom emo:Anger
] ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:isComposedOf ;
owl:someValuesFrom emo:Anticipation
] .
### http://arsemotica.di.unito.it/ontology#Amazement
emo:Amazement rdf:type owl:Class ;
rdfs:subClassOf emo:Surprise ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasScore ;
owl:hasValue "3.0"^^xsd:double
] .
### http://arsemotica.di.unito.it/ontology#Anger
emo:Anger rdf:type owl:Class ;
rdfs:subClassOf emo:BasicEmotion ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasOpposite ;
owl:allValuesFrom emo:Terror
] ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasSibling ;
owl:allValuesFrom [ rdf:type owl:Class ;
owl:unionOf ( emo:Anticipation
emo:Disgust
)
]
] ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasScore ;
owl:hasValue "2.0"^^xsd:double
] .
### http://arsemotica.di.unito.it/ontology#Annoyance
emo:Annoyance rdf:type owl:Class ;
rdfs:subClassOf emo:Anger ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasScore ;
owl:hasValue "1.0"^^xsd:double
] .
### http://arsemotica.di.unito.it/ontology#Anticipation
emo:Anticipation rdf:type owl:Class ;
rdfs:subClassOf emo:BasicEmotion ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasOpposite ;
owl:allValuesFrom emo:Surprise
] ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasSibling ;
owl:allValuesFrom [ rdf:type owl:Class ;
owl:unionOf ( emo:Anger
emo:Joy
)
]
] ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasScore ;
owl:hasValue "2.0"^^xsd:double
] .
### http://arsemotica.di.unito.it/ontology#Apprehension
emo:Apprehension rdf:type owl:Class ;
rdfs:subClassOf emo:Terror ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasScore ;
owl:hasValue "1.0"^^xsd:double
] .
### http://arsemotica.di.unito.it/ontology#Awe
emo:Awe rdf:type owl:Class ;
rdfs:subClassOf emo:ComplexEmotion ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:isComposedOf ;
owl:someValuesFrom emo:Surprise
] ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:isComposedOf ;
owl:someValuesFrom emo:Terror
] .
### http://arsemotica.di.unito.it/ontology#BasicEmotion
emo:BasicEmotion rdf:type owl:Class ;
rdfs:subClassOf emo:Emotion ;
owl:disjointWith emo:ComplexEmotion .
### http://arsemotica.di.unito.it/ontology#Boredom
emo:Boredom rdf:type owl:Class ;
rdfs:subClassOf emo:Disgust ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasScore ;
owl:hasValue "1.0"^^xsd:double
] .
### http://arsemotica.di.unito.it/ontology#ComplexEmotion
emo:ComplexEmotion rdf:type owl:Class ;
rdfs:subClassOf emo:Emotion .
### http://arsemotica.di.unito.it/ontology#Contempt
emo:Contempt rdf:type owl:Class ;
rdfs:subClassOf emo:ComplexEmotion ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:isComposedOf ;
owl:someValuesFrom emo:Anger
] ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:isComposedOf ;
owl:someValuesFrom emo:Disgust
] .
### http://arsemotica.di.unito.it/ontology#Disapproval
emo:Disapproval rdf:type owl:Class ;
rdfs:subClassOf emo:ComplexEmotion ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:isComposedOf ;
owl:someValuesFrom emo:Sadness
] ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:isComposedOf ;
owl:someValuesFrom emo:Surprise
] .
### http://arsemotica.di.unito.it/ontology#Disgust
emo:Disgust rdf:type owl:Class ;
rdfs:subClassOf emo:BasicEmotion ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasOpposite ;
owl:allValuesFrom emo:Trust
] ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasSibling ;
owl:allValuesFrom [ rdf:type owl:Class ;
owl:unionOf ( emo:Anger
emo:Sadness
)
]
] ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasScore ;
owl:hasValue "2.0"^^xsd:double
] .
### http://arsemotica.di.unito.it/ontology#Distraction
emo:Distraction rdf:type owl:Class ;
rdfs:subClassOf emo:Surprise ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasScore ;
owl:hasValue "1.0"^^xsd:double
] .
### http://arsemotica.di.unito.it/ontology#Ecstacy
emo:Ecstacy rdf:type owl:Class ;
rdfs:subClassOf emo:Joy ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasScore ;
owl:hasValue "3.0"^^xsd:double
] .
### http://arsemotica.di.unito.it/ontology#Emotion
emo:Emotion rdf:type owl:Class .
### http://arsemotica.di.unito.it/ontology#Fear
emo:Fear rdf:type owl:Class ;
rdfs:subClassOf emo:Terror ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasScore ;
owl:hasValue "3.0"^^xsd:double
] .
### http://arsemotica.di.unito.it/ontology#Grief
emo:Grief rdf:type owl:Class ;
rdfs:subClassOf emo:Sadness ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasScore ;
owl:hasValue "3.0"^^xsd:double
] .
### http://arsemotica.di.unito.it/ontology#Interest
emo:Interest rdf:type owl:Class ;
rdfs:subClassOf emo:Anticipation ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasScore ;
owl:hasValue "1.0"^^xsd:double
] .
### http://arsemotica.di.unito.it/ontology#ItalianWord
emo:ItalianWord rdf:type owl:Class ;
rdfs:subClassOf emo:Word .
### http://arsemotica.di.unito.it/ontology#Joy
emo:Joy rdf:type owl:Class ;
rdfs:subClassOf emo:BasicEmotion ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasOpposite ;
owl:allValuesFrom emo:Sadness
] ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasSibling ;
owl:allValuesFrom [ rdf:type owl:Class ;
owl:unionOf ( emo:Anticipation
emo:Trust
)
]
] ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasScore ;
owl:hasValue "2.0"^^xsd:double
] .
### http://arsemotica.di.unito.it/ontology#Lemon_Import
emo:Lemon_Import rdf:type owl:Class .
### http://arsemotica.di.unito.it/ontology#Loathing
emo:Loathing rdf:type owl:Class ;
rdfs:subClassOf emo:Disgust ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasScore ;
owl:hasValue "3.0"^^xsd:double
] .
### http://arsemotica.di.unito.it/ontology#Love
emo:Love rdf:type owl:Class ;
rdfs:subClassOf emo:ComplexEmotion ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:isComposedOf ;
owl:someValuesFrom emo:Joy
] ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:isComposedOf ;
owl:someValuesFrom emo:Trust
] .
### http://arsemotica.di.unito.it/ontology#Optimism
emo:Optimism rdf:type owl:Class ;
rdfs:subClassOf emo:ComplexEmotion ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:isComposedOf ;
owl:someValuesFrom emo:Anticipation
] ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:isComposedOf ;
owl:someValuesFrom emo:Joy
] .
### http://arsemotica.di.unito.it/ontology#Pensiveness
emo:Pensiveness rdf:type owl:Class ;
rdfs:subClassOf emo:Sadness ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasScore ;
owl:hasValue "1.0"^^xsd:double
] .
### http://arsemotica.di.unito.it/ontology#Rage
emo:Rage rdf:type owl:Class ;
rdfs:subClassOf emo:Anger ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasScore ;
owl:hasValue "3.0"^^xsd:double
] .
### http://arsemotica.di.unito.it/ontology#Remorse
emo:Remorse rdf:type owl:Class ;
rdfs:subClassOf emo:ComplexEmotion ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:isComposedOf ;
owl:someValuesFrom emo:Disgust
] ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:isComposedOf ;
owl:someValuesFrom emo:Sadness
] .
### http://arsemotica.di.unito.it/ontology#Sadness
emo:Sadness rdf:type owl:Class ;
rdfs:subClassOf emo:BasicEmotion ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasOpposite ;
owl:allValuesFrom emo:Joy
] ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasSibling ;
owl:allValuesFrom [ rdf:type owl:Class ;
owl:unionOf ( emo:Disgust
emo:Surprise
)
]
] ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasScore ;
owl:hasValue "2.0"^^xsd:double
] .
### http://arsemotica.di.unito.it/ontology#Serenity
emo:Serenity rdf:type owl:Class ;
rdfs:subClassOf emo:Joy ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasScore ;
owl:hasValue "1.0"^^xsd:double
] .
### http://arsemotica.di.unito.it/ontology#Submission
emo:Submission rdf:type owl:Class ;
rdfs:subClassOf emo:ComplexEmotion ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:isComposedOf ;
owl:someValuesFrom emo:Terror
] ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:isComposedOf ;
owl:someValuesFrom emo:Trust
] .
### http://arsemotica.di.unito.it/ontology#Surprise
emo:Surprise rdf:type owl:Class ;
rdfs:subClassOf emo:BasicEmotion ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasOpposite ;
owl:allValuesFrom emo:Anticipation
] ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasSibling ;
owl:allValuesFrom [ rdf:type owl:Class ;
owl:unionOf ( emo:Sadness
emo:Terror
)
]
] ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasScore ;
owl:hasValue "2.0"^^xsd:double
] .
### http://arsemotica.di.unito.it/ontology#Terror
emo:Terror rdf:type owl:Class ;
rdfs:subClassOf emo:BasicEmotion ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasOpposite ;
owl:allValuesFrom emo:Anger
] ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasSibling ;
owl:allValuesFrom [ rdf:type owl:Class ;
owl:unionOf ( emo:Surprise
emo:Trust
)
]
] ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasScore ;
owl:hasValue "2.0"^^xsd:double
] .
### http://arsemotica.di.unito.it/ontology#Trust
emo:Trust rdf:type owl:Class ;
rdfs:subClassOf emo:BasicEmotion ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasOpposite ;
owl:allValuesFrom emo:Disgust
] ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasSibling ;
owl:allValuesFrom [ rdf:type owl:Class ;
owl:unionOf ( emo:Joy
emo:Terror
)
]
] ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasScore ;
owl:hasValue "2.0"^^xsd:double
] .
### http://arsemotica.di.unito.it/ontology#Vigilance
emo:Vigilance rdf:type owl:Class ;
rdfs:subClassOf emo:Anticipation ,
[ rdf:type owl:Restriction ;
owl:onProperty emo:hasScore ;
owl:hasValue "3.0"^^xsd:double
] .
### http://arsemotica.di.unito.it/ontology#Word
emo:Word rdf:type owl:Class .
### http://arsemotica.di.unito.it/ontology#Wordnet_Sense
emo:Wordnet_Sense rdf:type owl:Class ;
rdfs:subClassOf <http://lemon-model.net/lemon#LexicalSense> .
### http://lemon-model.net/lemon#generates
<http://lemon-model.net/lemon#generates> rdfs:subClassOf emo:Lemon_Import .
### http://literary_characters_psycological_profiles.owl#Agreeablness
:Agreeablness rdf:type owl:Class ;
rdfs:subClassOf :Personality_Profiles .
### http://literary_characters_psycological_profiles.owl#Antagonistic
:Antagonistic rdf:type owl:Class ;
rdfs:subClassOf :Agreeablness ;
owl:disjointWith :Compassionate .
### http://literary_characters_psycological_profiles.owl#Antagonistic_Words
:Antagonistic_Words rdf:type owl:Class ;
rdfs:subClassOf emo:Word .
### http://literary_characters_psycological_profiles.owl#AntiHero
:AntiHero rdf:type owl:Class ;
rdfs:subClassOf :Narrative_Roles ,
[ rdf:type owl:Restriction ;
owl:onProperty :has_Personality ;
owl:someValuesFrom [ owl:intersectionOf ( :Antagonistic
[ rdf:type owl:Class ;
owl:unionOf ( :Introvert
:Nervous
:OpenMinded
)
]
) ;
rdf:type owl:Class
]
] .
### http://literary_characters_psycological_profiles.owl#Careless
:Careless rdf:type owl:Class ;
rdfs:subClassOf :Conscientiousness ;
owl:disjointWith :Organized .
### http://literary_characters_psycological_profiles.owl#Carelessness_Denoting_Words
:Carelessness_Denoting_Words rdf:type owl:Class ;
rdfs:subClassOf emo:Word .
### http://literary_characters_psycological_profiles.owl#Cautious
:Cautious rdf:type owl:Class ;
rdfs:subClassOf :Openness .
### http://literary_characters_psycological_profiles.owl#Cautiousness_denoting_Words
:Cautiousness_denoting_Words rdf:type owl:Class ;
rdfs:subClassOf emo:Word .
### http://literary_characters_psycological_profiles.owl#Compassion_denoting_Words
:Compassion_denoting_Words rdf:type owl:Class ;
rdfs:subClassOf emo:Word .
### http://literary_characters_psycological_profiles.owl#Compassionate
:Compassionate rdf:type owl:Class ;
rdfs:subClassOf :Agreeablness .
### http://literary_characters_psycological_profiles.owl#Conscientiousness
:Conscientiousness rdf:type owl:Class ;
rdfs:subClassOf :Personality_Profiles .
### http://literary_characters_psycological_profiles.owl#Extraversion
:Extraversion rdf:type owl:Class ;
rdfs:subClassOf :Personality_Profiles .
### http://literary_characters_psycological_profiles.owl#Extroversion_denoting_Words
:Extroversion_denoting_Words rdf:type owl:Class ;
rdfs:subClassOf emo:Word .
### http://literary_characters_psycological_profiles.owl#Extrovert
:Extrovert rdf:type owl:Class ;
rdfs:subClassOf :Extraversion ;
owl:disjointWith :Introvert .
### http://literary_characters_psycological_profiles.owl#Hero
:Hero rdf:type owl:Class ;
rdfs:subClassOf :Narrative_Roles ,
[ rdf:type owl:Restriction ;
owl:onProperty :has_Personality ;
owl:someValuesFrom [ owl:intersectionOf ( :Compassionate
[ owl:intersectionOf ( :Extrovert
:OpenMinded
:Organized
:Safeguarding
) ;
rdf:type owl:Class
]
) ;
rdf:type owl:Class
]
] ;
owl:disjointWith :Villain .
### http://literary_characters_psycological_profiles.owl#Introversion_denoting_Word
:Introversion_denoting_Word rdf:type owl:Class ;
rdfs:subClassOf emo:Word .
### http://literary_characters_psycological_profiles.owl#Introvert
:Introvert rdf:type owl:Class ;
rdfs:subClassOf :Extraversion .
### http://literary_characters_psycological_profiles.owl#Narrative_Roles
:Narrative_Roles rdf:type owl:Class ;
owl:disjointWith :Personality_Profiles .
### http://literary_characters_psycological_profiles.owl#Nervous
:Nervous rdf:type owl:Class ;
rdfs:subClassOf :Neuroticism ;
owl:disjointWith :Safeguarding .
### http://literary_characters_psycological_profiles.owl#Nervousness_denoting_Words
:Nervousness_denoting_Words rdf:type owl:Class ;
rdfs:subClassOf emo:Word .
### http://literary_characters_psycological_profiles.owl#Neuroticism
:Neuroticism rdf:type owl:Class ;
rdfs:subClassOf :Personality_Profiles .
### http://literary_characters_psycological_profiles.owl#OpenMinded
:OpenMinded rdf:type owl:Class ;
rdfs:subClassOf :Openness .
### http://literary_characters_psycological_profiles.owl#OpenMindedness_denoting_Words
:OpenMindedness_denoting_Words rdf:type owl:Class ;
rdfs:subClassOf emo:Word .
### http://literary_characters_psycological_profiles.owl#Openness
:Openness rdf:type owl:Class ;
rdfs:subClassOf :Personality_Profiles .
### http://literary_characters_psycological_profiles.owl#Organized
:Organized rdf:type owl:Class ;
rdfs:subClassOf :Conscientiousness .
### http://literary_characters_psycological_profiles.owl#Organized_Words
:Organized_Words rdf:type owl:Class ;
rdfs:subClassOf emo:Word .
### http://literary_characters_psycological_profiles.owl#Personality_Profiles
:Personality_Profiles rdf:type owl:Class .
### http://literary_characters_psycological_profiles.owl#Safeguard_denoting_Words
:Safeguard_denoting_Words rdf:type owl:Class ;
rdfs:subClassOf emo:Word .
### http://literary_characters_psycological_profiles.owl#Safeguarding
:Safeguarding rdf:type owl:Class ;
rdfs:subClassOf :Neuroticism .
### http://literary_characters_psycological_profiles.owl#Villain
:Villain rdf:type owl:Class ;
rdfs:subClassOf :Narrative_Roles ,
[ rdf:type owl:Restriction ;
owl:onProperty :has_Personality ;
owl:someValuesFrom [ owl:intersectionOf ( :Antagonistic
[ owl:intersectionOf ( :Careless
:Cautious
:Nervous
) ;
rdf:type owl:Class
]
) ;
rdf:type owl:Class
]
] .
### http://org.semanticweb.owlapi/error#Error1
<http://org.semanticweb.owlapi/error#Error1> rdf:type owl:Class ;
rdfs:subClassOf emo:Lemon_Import .
### http://org.semanticweb.owlapi/error#Error2
<http://org.semanticweb.owlapi/error#Error2> rdf:type owl:Class ;
rdfs:subClassOf emo:Lemon_Import .
### http://purl.org/dc/terms/Agent
<http://purl.org/dc/terms/Agent> owl:equivalentClass ma-ont:Agent .
### http://www.w3.org/ns/ma-ont#Agent
ma-ont:Agent rdf:type owl:Class .
#################################################################
# Individuals
#################################################################
### http://arsemotica.di.unito.it/artifacts#Anger
emoart:Anger rdf:type owl:NamedIndividual ;
owl:sameAs <http://dbpedia.org/page/Anger> ;
emo:hasOpposite emoart:Love .
### http://arsemotica.di.unito.it/artifacts#Love
emoart:Love rdf:type owl:NamedIndividual ;
owl:sameAs <http://dbpedia.org/page/Love> .
### http://arsemotica.di.unito.it/ontology#AkiraZakamoto
emo:AkiraZakamoto rdf:type owl:NamedIndividual ;
emo:operateNear <http://dbpedia.org/page/Turin> .
### http://arsemotica.di.unito.it/ontology#preoccupato
emo:preoccupato rdf:type owl:NamedIndividual ,
:Nervousness_denoting_Words .
### http://arsemotica.di.unito.it/ontology#vergogna
emo:vergogna rdf:type owl:NamedIndividual ,
:Introversion_denoting_Word .
### http://dbpedia.org/page/Anger
<http://dbpedia.org/page/Anger> rdf:type owl:NamedIndividual .
### http://dbpedia.org/page/Love
<http://dbpedia.org/page/Love> rdf:type owl:NamedIndividual .
### http://dbpedia.org/page/Turin
<http://dbpedia.org/page/Turin> rdf:type owl:NamedIndividual .
### http://literary_characters_psycological_profiles.owl#Antagonism
:Antagonism rdf:type owl:NamedIndividual ,
:Antagonistic .
### http://literary_characters_psycological_profiles.owl#Nervous_Personality
:Nervous_Personality rdf:type owl:NamedIndividual ,
:Nervous .
[ owl:hasValue "2.0"^^xsd:double
] .
[ owl:hasValue "2.0"^^xsd:double
] .
#################################################################
# Annotations
#################################################################
<http://dbpedia.org/page/Terror> rdfs:comment "http://dbpedia.org/page/Terror" .
#################################################################
# General axioms
#################################################################
[ rdf:type owl:AllDisjointClasses ;
owl:members ( emo:Aggressiveness
emo:Awe
emo:Contempt
emo:Disapproval
emo:Love
emo:Optimism
emo:Remorse
emo:Submission
)
] .
[ rdf:type owl:AllDisjointClasses ;
owl:members ( emo:Anger
emo:Anticipation
emo:Disgust
emo:Joy
emo:Sadness
emo:Surprise
emo:Terror
emo:Trust
)
] .
#################################################################
# Rules
#################################################################
<urn:swrl#x> rdf:type swrl:Variable .
<urn:swrl#z> rdf:type swrl:Variable .
<urn:swrl#Introvert> rdf:type swrl:Variable .
[ rdf:type swrl:Imp ;
swrl:body [ rdf:type swrl:AtomList ;
rdf:first [ rdf:type swrl:ClassAtom ;
swrl:classPredicate ma-ont:Agent ;
swrl:argument1 <urn:swrl#x>
] ;
rdf:rest [ rdf:type swrl:AtomList ;
rdf:first [ rdf:type swrl:IndividualPropertyAtom ;
swrl:propertyPredicate :described_by_word ;
swrl:argument1 <urn:swrl#x> ;
swrl:argument2 <urn:swrl#z>
] ;
rdf:rest [ rdf:type swrl:AtomList ;
rdf:first [ rdf:type swrl:ClassAtom ;
swrl:classPredicate :Antagonistic_Words ;
swrl:argument1 <urn:swrl#z>
] ;
rdf:rest rdf:nil
]
]
] ;
swrl:head [ rdf:type swrl:AtomList ;
rdf:first [ rdf:type swrl:IndividualPropertyAtom ;
swrl:propertyPredicate :has_Personality ;
swrl:argument1 <urn:swrl#x> ;
swrl:argument2 :Antagonism
] ;
rdf:rest rdf:nil
]
] .
[ rdf:type swrl:Imp ;
swrl:body [ rdf:type swrl:AtomList ;
rdf:first [ rdf:type swrl:ClassAtom ;
swrl:classPredicate ma-ont:Agent ;
swrl:argument1 <urn:swrl#x>
] ;
rdf:rest [ rdf:type swrl:AtomList ;
rdf:first [ rdf:type swrl:IndividualPropertyAtom ;
swrl:propertyPredicate :described_by_word ;
swrl:argument1 <urn:swrl#x> ;
swrl:argument2 <urn:swrl#z>
] ;
rdf:rest [ rdf:type swrl:AtomList ;
rdf:first [ rdf:type swrl:ClassAtom ;
swrl:classPredicate :Introversion_denoting_Word ;
swrl:argument1 <urn:swrl#z>
] ;
rdf:rest rdf:nil
]
]
] ;
swrl:head [ rdf:type swrl:AtomList ;
rdf:first [ rdf:type swrl:IndividualPropertyAtom ;
swrl:propertyPredicate :has_Personality ;
swrl:argument1 <urn:swrl#x> ;
swrl:argument2 <urn:swrl#Introvert>
] ;
rdf:rest rdf:nil
]
] .
[ rdf:type swrl:Imp ;
swrl:body [ rdf:type swrl:AtomList ;
rdf:first [ rdf:type swrl:ClassAtom ;
swrl:classPredicate ma-ont:Agent ;
swrl:argument1 <urn:swrl#x>
] ;
rdf:rest [ rdf:type swrl:AtomList ;
rdf:first [ rdf:type swrl:IndividualPropertyAtom ;
swrl:propertyPredicate :described_by_word ;
swrl:argument1 <urn:swrl#x> ;
swrl:argument2 <urn:swrl#z>
] ;
rdf:rest [ rdf:type swrl:AtomList ;
rdf:first [ rdf:type swrl:ClassAtom ;
swrl:classPredicate :Nervousness_denoting_Words ;
swrl:argument1 <urn:swrl#z>
] ;
rdf:rest rdf:nil
]
]
] ;
swrl:head [ rdf:type swrl:AtomList ;
rdf:first [ rdf:type swrl:IndividualPropertyAtom ;
swrl:propertyPredicate :has_Personality ;
swrl:argument1 <urn:swrl#x> ;
swrl:argument2 :Nervous_Personality
] ;
rdf:rest rdf:nil
]
] .
### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi