-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmo.owl
executable file
·1118 lines (1114 loc) · 41.8 KB
/
mo.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"?>
<Ontology xmlns="http://www.w3.org/2002/07/owl#"
xml:base="http://sbmi.uth.edu/ontology/mo"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
ontologyIRI="http://sbmi.uth.edu/ontology/mo">
<Prefix name="" IRI="http://sbmi.uth.edu/ontology/mo"/>
<Prefix name="dc" IRI="http://purl.org/dc/elements/1.1/"/>
<Prefix name="owl" IRI="http://www.w3.org/2002/07/owl#"/>
<Prefix name="rdf" IRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/>
<Prefix name="xml" IRI="http://www.w3.org/XML/1998/namespace"/>
<Prefix name="xsd" IRI="http://www.w3.org/2001/XMLSchema#"/>
<Prefix name="rdfs" IRI="http://www.w3.org/2000/01/rdf-schema#"/>
<Prefix name="vocabulary" IRI="http://www.example.org/vocabulary#"/>
<Import>http://www.w3.org/2004/02/skos/core</Import>
<Annotation>
<AnnotationProperty abbreviatedIRI="dc:created"/>
<Literal>Tuan Amith, Cui Tao</Literal>
</Annotation>
<Annotation>
<AnnotationProperty abbreviatedIRI="dc:description"/>
<Literal>An ontology for vaccine misinformation based on Misinformation Ontology by Zhou and Zhang (2004, 2007).</Literal>
</Annotation>
<Annotation>
<AnnotationProperty abbreviatedIRI="vocabulary:name"/>
<Literal>Misinformation Ontology by Zhou and Zhang</Literal>
</Annotation>
<Declaration>
<Class IRI="#Ambivalence"/>
</Declaration>
<Declaration>
<Class IRI="#Asynchronous"/>
</Declaration>
<Declaration>
<Class IRI="#Audio"/>
</Declaration>
<Declaration>
<Class IRI="#Baby_Boomers"/>
</Declaration>
<Declaration>
<Class IRI="#Benefiting_Others"/>
</Declaration>
<Declaration>
<Class IRI="#Benefiting_Someone"/>
</Declaration>
<Declaration>
<Class IRI="#Canadian_National_Culture"/>
</Declaration>
<Declaration>
<Class IRI="#Chinese_National_Culture"/>
</Declaration>
<Declaration>
<Class IRI="#Colocated"/>
</Declaration>
<Declaration>
<Class IRI="#Communication_Channel"/>
</Declaration>
<Declaration>
<Class IRI="#Concealment"/>
</Declaration>
<Declaration>
<Class IRI="#Culture"/>
</Declaration>
<Declaration>
<Class IRI="#Distortion"/>
</Declaration>
<Declaration>
<Class IRI="#Distributed"/>
</Declaration>
<Declaration>
<Class IRI="#Distribution_Method"/>
</Declaration>
<Declaration>
<Class IRI="#Ethnic_Culture"/>
</Declaration>
<Declaration>
<Class IRI="#Falsification"/>
</Declaration>
<Declaration>
<Class IRI="#Familiarity"/>
</Declaration>
<Declaration>
<Class IRI="#Female"/>
</Declaration>
<Declaration>
<Class IRI="#G.I._Generation"/>
</Declaration>
<Declaration>
<Class IRI="#Gender"/>
</Declaration>
<Declaration>
<Class IRI="#Generation_X"/>
</Declaration>
<Declaration>
<Class IRI="#Generational_Culture"/>
</Declaration>
<Declaration>
<Class IRI="#High_Familiarity"/>
</Declaration>
<Declaration>
<Class IRI="#High_Recordability"/>
</Declaration>
<Declaration>
<Class IRI="#Human_Being"/>
</Declaration>
<Declaration>
<Class IRI="#Image"/>
</Declaration>
<Declaration>
<Class IRI="#Indication"/>
</Declaration>
<Declaration>
<Class IRI="#Individual_Profile"/>
</Declaration>
<Declaration>
<Class IRI="#Lost_Generation"/>
</Declaration>
<Declaration>
<Class IRI="#Low_Familiarity"/>
</Declaration>
<Declaration>
<Class IRI="#Low_Recordability"/>
</Declaration>
<Declaration>
<Class IRI="#Male"/>
</Declaration>
<Declaration>
<Class IRI="#Malicious_Intent"/>
</Declaration>
<Declaration>
<Class IRI="#Millennials"/>
</Declaration>
<Declaration>
<Class IRI="#Misinformation"/>
</Declaration>
<Declaration>
<Class IRI="#Modality"/>
</Declaration>
<Declaration>
<Class IRI="#Motivation"/>
</Declaration>
<Declaration>
<Class IRI="#National_Culture"/>
</Declaration>
<Declaration>
<Class IRI="#No_Evidence"/>
</Declaration>
<Declaration>
<Class IRI="#NonImmediacy"/>
</Declaration>
<Declaration>
<Class IRI="#Other"/>
</Declaration>
<Declaration>
<Class IRI="#Participants"/>
</Declaration>
<Declaration>
<Class IRI="#Protective_Action"/>
</Declaration>
<Declaration>
<Class IRI="#Receiver"/>
</Declaration>
<Declaration>
<Class IRI="#Recordability"/>
</Declaration>
<Declaration>
<Class IRI="#Response_Latency"/>
</Declaration>
<Declaration>
<Class IRI="#Self-Reference"/>
</Declaration>
<Declaration>
<Class IRI="#Self-interest"/>
</Declaration>
<Declaration>
<Class IRI="#Sender"/>
</Declaration>
<Declaration>
<Class IRI="#Silent_Generation"/>
</Declaration>
<Declaration>
<Class IRI="#Software_Agent"/>
</Declaration>
<Declaration>
<Class IRI="#Subject"/>
</Declaration>
<Declaration>
<Class IRI="#Synchronicity"/>
</Declaration>
<Declaration>
<Class IRI="#Synchronous"/>
</Declaration>
<Declaration>
<Class IRI="#Text"/>
</Declaration>
<Declaration>
<Class IRI="#Transgendered"/>
</Declaration>
<Declaration>
<Class IRI="#Transgendered_female_to_male"/>
</Declaration>
<Declaration>
<Class IRI="#Transgendered_male_to_female"/>
</Declaration>
<Declaration>
<Class IRI="#Video"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#belongsTo"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#hasChannel"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#hasCulture"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#hasDistributionMethod"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#hasFamiliarity"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#hasGender"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#hasIndividualProfile"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#hasMotivation"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#hasReceiver"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#hasRecordability"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#hasSender"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#hasSyncroncity"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#isAbout"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#isInFormOf"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#isIndicated"/>
</Declaration>
<Declaration>
<DataProperty IRI="#hasAge"/>
</Declaration>
<Declaration>
<DataProperty IRI="#hasConfidence"/>
</Declaration>
<Declaration>
<DataProperty IRI="#hasEndTime"/>
</Declaration>
<Declaration>
<DataProperty IRI="#hasNumberOfCues"/>
</Declaration>
<Declaration>
<DataProperty IRI="#hasSize"/>
</Declaration>
<Declaration>
<DataProperty IRI="#hasStartTime"/>
</Declaration>
<Declaration>
<AnnotationProperty abbreviatedIRI="dc:created"/>
</Declaration>
<Declaration>
<AnnotationProperty abbreviatedIRI="dc:description"/>
</Declaration>
<Declaration>
<AnnotationProperty abbreviatedIRI="vocabulary:email"/>
</Declaration>
<Declaration>
<AnnotationProperty abbreviatedIRI="vocabulary:hasSkill"/>
</Declaration>
<Declaration>
<AnnotationProperty abbreviatedIRI="vocabulary:homepage"/>
</Declaration>
<Declaration>
<AnnotationProperty abbreviatedIRI="vocabulary:name"/>
</Declaration>
<SubClassOf>
<Class IRI="#Ambivalence"/>
<Class IRI="#Misinformation"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Asynchronous"/>
<Class IRI="#Synchronicity"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Audio"/>
<Class IRI="#Modality"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Baby_Boomers"/>
<Class IRI="#Generational_Culture"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Benefiting_Others"/>
<Class IRI="#Benefiting_Someone"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Benefiting_Someone"/>
<Class IRI="#Motivation"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Canadian_National_Culture"/>
<Class IRI="#National_Culture"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Chinese_National_Culture"/>
<Class IRI="#National_Culture"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Colocated"/>
<Class IRI="#Distribution_Method"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Communication_Channel"/>
<ObjectSomeValuesFrom>
<ObjectProperty IRI="#hasRecordability"/>
<Class IRI="#Recordability"/>
</ObjectSomeValuesFrom>
</SubClassOf>
<SubClassOf>
<Class IRI="#Communication_Channel"/>
<ObjectSomeValuesFrom>
<ObjectProperty IRI="#isInFormOf"/>
<Class IRI="#Modality"/>
</ObjectSomeValuesFrom>
</SubClassOf>
<SubClassOf>
<Class IRI="#Communication_Channel"/>
<ObjectExactCardinality cardinality="1">
<ObjectProperty IRI="#hasDistributionMethod"/>
<Class IRI="#Distribution_Method"/>
</ObjectExactCardinality>
</SubClassOf>
<SubClassOf>
<Class IRI="#Communication_Channel"/>
<ObjectExactCardinality cardinality="1">
<ObjectProperty IRI="#hasSyncroncity"/>
<Class IRI="#Synchronicity"/>
</ObjectExactCardinality>
</SubClassOf>
<SubClassOf>
<Class IRI="#Concealment"/>
<Class IRI="#Misinformation"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Distortion"/>
<Class IRI="#Misinformation"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Distributed"/>
<Class IRI="#Distribution_Method"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Ethnic_Culture"/>
<Class IRI="#Culture"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Falsification"/>
<Class IRI="#Misinformation"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Female"/>
<Class IRI="#Gender"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#G.I._Generation"/>
<Class IRI="#Generational_Culture"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Generation_X"/>
<Class IRI="#Generational_Culture"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Generational_Culture"/>
<Class IRI="#Culture"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#High_Familiarity"/>
<Class IRI="#Familiarity"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#High_Recordability"/>
<Class IRI="#Recordability"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Human_Being"/>
<Class IRI="#Participants"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Human_Being"/>
<ObjectExactCardinality cardinality="1">
<ObjectProperty IRI="#hasFamiliarity"/>
<Class IRI="#Familiarity"/>
</ObjectExactCardinality>
</SubClassOf>
<SubClassOf>
<Class IRI="#Human_Being"/>
<ObjectExactCardinality cardinality="1">
<ObjectProperty IRI="#hasIndividualProfile"/>
<Class IRI="#Individual_Profile"/>
</ObjectExactCardinality>
</SubClassOf>
<SubClassOf>
<Class IRI="#Image"/>
<Class IRI="#Modality"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Individual_Profile"/>
<ObjectSomeValuesFrom>
<ObjectProperty IRI="#hasCulture"/>
<Class IRI="#Culture"/>
</ObjectSomeValuesFrom>
</SubClassOf>
<SubClassOf>
<Class IRI="#Individual_Profile"/>
<ObjectExactCardinality cardinality="1">
<ObjectProperty IRI="#hasGender"/>
<Class IRI="#Gender"/>
</ObjectExactCardinality>
</SubClassOf>
<SubClassOf>
<Class IRI="#Lost_Generation"/>
<Class IRI="#Generational_Culture"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Low_Familiarity"/>
<Class IRI="#Familiarity"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Low_Recordability"/>
<Class IRI="#Recordability"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Male"/>
<Class IRI="#Gender"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Malicious_Intent"/>
<Class IRI="#Motivation"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Millennials"/>
<Class IRI="#Generational_Culture"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Misinformation"/>
<ObjectSomeValuesFrom>
<ObjectProperty IRI="#hasMotivation"/>
<Class IRI="#Motivation"/>
</ObjectSomeValuesFrom>
</SubClassOf>
<SubClassOf>
<Class IRI="#Misinformation"/>
<ObjectSomeValuesFrom>
<ObjectProperty IRI="#hasReceiver"/>
<Class IRI="#Receiver"/>
</ObjectSomeValuesFrom>
</SubClassOf>
<SubClassOf>
<Class IRI="#Misinformation"/>
<ObjectSomeValuesFrom>
<ObjectProperty IRI="#hasSender"/>
<Class IRI="#Sender"/>
</ObjectSomeValuesFrom>
</SubClassOf>
<SubClassOf>
<Class IRI="#Misinformation"/>
<ObjectSomeValuesFrom>
<ObjectProperty IRI="#isAbout"/>
<Class IRI="#Subject"/>
</ObjectSomeValuesFrom>
</SubClassOf>
<SubClassOf>
<Class IRI="#Misinformation"/>
<ObjectSomeValuesFrom>
<ObjectProperty IRI="#isIndicated"/>
<Class IRI="#Indication"/>
</ObjectSomeValuesFrom>
</SubClassOf>
<SubClassOf>
<Class IRI="#Misinformation"/>
<DataSomeValuesFrom>
<DataProperty IRI="#hasEndTime"/>
<Datatype abbreviatedIRI="xsd:dateTime"/>
</DataSomeValuesFrom>
</SubClassOf>
<SubClassOf>
<Class IRI="#Misinformation"/>
<DataSomeValuesFrom>
<DataProperty IRI="#hasStartTime"/>
<Datatype abbreviatedIRI="xsd:dateTime"/>
</DataSomeValuesFrom>
</SubClassOf>
<SubClassOf>
<Class IRI="#Misinformation"/>
<DataExactCardinality cardinality="1">
<DataProperty IRI="#hasConfidence"/>
<Datatype abbreviatedIRI="xsd:double"/>
</DataExactCardinality>
</SubClassOf>
<SubClassOf>
<Class IRI="#National_Culture"/>
<Class IRI="#Culture"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#No_Evidence"/>
<Class IRI="#Indication"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#No_Evidence"/>
<DataExactCardinality cardinality="0">
<DataProperty IRI="#hasNumberOfCues"/>
<Datatype abbreviatedIRI="xsd:int"/>
</DataExactCardinality>
</SubClassOf>
<SubClassOf>
<Class IRI="#NonImmediacy"/>
<Class IRI="#Indication"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Other"/>
<Class IRI="#Gender"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Participants"/>
<DataSomeValuesFrom>
<DataProperty IRI="#hasSize"/>
<Datatype abbreviatedIRI="xsd:int"/>
</DataSomeValuesFrom>
</SubClassOf>
<SubClassOf>
<Class IRI="#Protective_Action"/>
<Class IRI="#Motivation"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Receiver"/>
<Class IRI="#Participants"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Response_Latency"/>
<Class IRI="#Indication"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Self-Reference"/>
<Class IRI="#Indication"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Self-interest"/>
<Class IRI="#Benefiting_Someone"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Sender"/>
<Class IRI="#Participants"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Silent_Generation"/>
<Class IRI="#Generational_Culture"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Software_Agent"/>
<Class IRI="#Participants"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Synchronous"/>
<Class IRI="#Synchronicity"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Text"/>
<Class IRI="#Modality"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Transgendered"/>
<Class IRI="#Gender"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Transgendered_female_to_male"/>
<Class IRI="#Transgendered"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Transgendered_male_to_female"/>
<Class IRI="#Transgendered"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Video"/>
<Class IRI="#Modality"/>
</SubClassOf>
<DisjointClasses>
<Class IRI="#Ambivalence"/>
<Class IRI="#Concealment"/>
<Class IRI="#Distortion"/>
<Class IRI="#Falsification"/>
</DisjointClasses>
<DisjointClasses>
<Class IRI="#Asynchronous"/>
<Class IRI="#Synchronous"/>
</DisjointClasses>
<DisjointClasses>
<Class IRI="#Colocated"/>
<Class IRI="#Distributed"/>
</DisjointClasses>
<DisjointClasses>
<Class IRI="#Human_Being"/>
<Class IRI="#Software_Agent"/>
</DisjointClasses>
<DisjointClasses>
<Class IRI="#Receiver"/>
<Class IRI="#Sender"/>
</DisjointClasses>
<SubObjectPropertyOf>
<ObjectProperty IRI="#isInFormOf"/>
<ObjectProperty abbreviatedIRI="owl:topObjectProperty"/>
</SubObjectPropertyOf>
<FunctionalObjectProperty>
<ObjectProperty IRI="#isIndicated"/>
</FunctionalObjectProperty>
<AsymmetricObjectProperty>
<ObjectProperty IRI="#hasMotivation"/>
</AsymmetricObjectProperty>
<ObjectPropertyDomain>
<ObjectProperty IRI="#belongsTo"/>
<Class IRI="#Individual_Profile"/>
</ObjectPropertyDomain>
<ObjectPropertyDomain>
<ObjectProperty IRI="#hasChannel"/>
<Class IRI="#Misinformation"/>
</ObjectPropertyDomain>
<ObjectPropertyDomain>
<ObjectProperty IRI="#hasCulture"/>
<Class IRI="#Individual_Profile"/>
</ObjectPropertyDomain>
<ObjectPropertyDomain>
<ObjectProperty IRI="#hasDistributionMethod"/>
<Class IRI="#Communication_Channel"/>
</ObjectPropertyDomain>
<ObjectPropertyDomain>
<ObjectProperty IRI="#hasFamiliarity"/>
<Class IRI="#Human_Being"/>
</ObjectPropertyDomain>
<ObjectPropertyDomain>
<ObjectProperty IRI="#hasGender"/>
<Class IRI="#Individual_Profile"/>
</ObjectPropertyDomain>
<ObjectPropertyDomain>
<ObjectProperty IRI="#hasIndividualProfile"/>
<Class IRI="#Human_Being"/>
</ObjectPropertyDomain>
<ObjectPropertyDomain>
<ObjectProperty IRI="#hasMotivation"/>
<Class IRI="#Misinformation"/>
</ObjectPropertyDomain>
<ObjectPropertyDomain>
<ObjectProperty IRI="#hasReceiver"/>
<Class IRI="#Misinformation"/>
</ObjectPropertyDomain>
<ObjectPropertyDomain>
<ObjectProperty IRI="#hasRecordability"/>
<Class IRI="#Communication_Channel"/>
</ObjectPropertyDomain>
<ObjectPropertyDomain>
<ObjectProperty IRI="#hasSender"/>
<Class IRI="#Misinformation"/>
</ObjectPropertyDomain>
<ObjectPropertyDomain>
<ObjectProperty IRI="#hasSyncroncity"/>
<Class IRI="#Communication_Channel"/>
</ObjectPropertyDomain>
<ObjectPropertyDomain>
<ObjectProperty IRI="#isAbout"/>
<Class IRI="#Misinformation"/>
</ObjectPropertyDomain>
<ObjectPropertyDomain>
<ObjectProperty IRI="#isInFormOf"/>
<Class IRI="#Communication_Channel"/>
</ObjectPropertyDomain>
<ObjectPropertyDomain>
<ObjectProperty IRI="#isIndicated"/>
<Class IRI="#Misinformation"/>
</ObjectPropertyDomain>
<ObjectPropertyRange>
<ObjectProperty IRI="#belongsTo"/>
<Class IRI="#Culture"/>
</ObjectPropertyRange>
<ObjectPropertyRange>
<ObjectProperty IRI="#hasChannel"/>
<Class IRI="#Communication_Channel"/>
</ObjectPropertyRange>
<ObjectPropertyRange>
<ObjectProperty IRI="#hasCulture"/>
<Class IRI="#Culture"/>
</ObjectPropertyRange>
<ObjectPropertyRange>
<ObjectProperty IRI="#hasDistributionMethod"/>
<Class IRI="#Distribution_Method"/>
</ObjectPropertyRange>
<ObjectPropertyRange>
<ObjectProperty IRI="#hasFamiliarity"/>
<Class IRI="#Familiarity"/>
</ObjectPropertyRange>
<ObjectPropertyRange>
<ObjectProperty IRI="#hasGender"/>
<Class IRI="#Gender"/>
</ObjectPropertyRange>
<ObjectPropertyRange>
<ObjectProperty IRI="#hasIndividualProfile"/>
<Class IRI="#Individual_Profile"/>
</ObjectPropertyRange>
<ObjectPropertyRange>
<ObjectProperty IRI="#hasMotivation"/>
<Class IRI="#Motivation"/>
</ObjectPropertyRange>
<ObjectPropertyRange>
<ObjectProperty IRI="#hasReceiver"/>
<Class IRI="#Receiver"/>
</ObjectPropertyRange>
<ObjectPropertyRange>
<ObjectProperty IRI="#hasRecordability"/>
<Class IRI="#Recordability"/>
</ObjectPropertyRange>
<ObjectPropertyRange>
<ObjectProperty IRI="#hasSender"/>
<Class IRI="#Sender"/>
</ObjectPropertyRange>
<ObjectPropertyRange>
<ObjectProperty IRI="#hasSyncroncity"/>
<Class IRI="#Synchronicity"/>
</ObjectPropertyRange>
<ObjectPropertyRange>
<ObjectProperty IRI="#isAbout"/>
<Class IRI="#Subject"/>
</ObjectPropertyRange>
<ObjectPropertyRange>
<ObjectProperty IRI="#isInFormOf"/>
<Class IRI="#Modality"/>
</ObjectPropertyRange>
<ObjectPropertyRange>
<ObjectProperty IRI="#isIndicated"/>
<Class IRI="#Indication"/>
</ObjectPropertyRange>
<FunctionalDataProperty>
<DataProperty IRI="#hasAge"/>
</FunctionalDataProperty>
<FunctionalDataProperty>
<DataProperty IRI="#hasConfidence"/>
</FunctionalDataProperty>
<FunctionalDataProperty>
<DataProperty IRI="#hasNumberOfCues"/>
</FunctionalDataProperty>
<FunctionalDataProperty>
<DataProperty IRI="#hasStartTime"/>
</FunctionalDataProperty>
<DataPropertyDomain>
<DataProperty IRI="#hasAge"/>
<Class IRI="#Human_Being"/>
</DataPropertyDomain>
<DataPropertyDomain>
<DataProperty IRI="#hasConfidence"/>
<Class IRI="#Misinformation"/>
</DataPropertyDomain>
<DataPropertyDomain>
<DataProperty IRI="#hasEndTime"/>
<Class IRI="#Misinformation"/>
</DataPropertyDomain>
<DataPropertyDomain>
<DataProperty IRI="#hasNumberOfCues"/>
<Class IRI="#Indication"/>
</DataPropertyDomain>
<DataPropertyDomain>
<DataProperty IRI="#hasSize"/>
<Class IRI="#Participants"/>
</DataPropertyDomain>
<DataPropertyDomain>
<DataProperty IRI="#hasStartTime"/>
<Class IRI="#Misinformation"/>
</DataPropertyDomain>
<DataPropertyRange>
<DataProperty IRI="#hasAge"/>
<Datatype abbreviatedIRI="owl:real"/>
</DataPropertyRange>
<DataPropertyRange>
<DataProperty IRI="#hasConfidence"/>
<Datatype abbreviatedIRI="xsd:double"/>
</DataPropertyRange>
<DataPropertyRange>
<DataProperty IRI="#hasEndTime"/>
<Datatype abbreviatedIRI="xsd:dateTime"/>
</DataPropertyRange>
<DataPropertyRange>
<DataProperty IRI="#hasNumberOfCues"/>
<Datatype abbreviatedIRI="owl:real"/>
</DataPropertyRange>
<DataPropertyRange>
<DataProperty IRI="#hasSize"/>
<Datatype abbreviatedIRI="xsd:int"/>
</DataPropertyRange>
<DataPropertyRange>
<DataProperty IRI="#hasStartTime"/>
<Datatype abbreviatedIRI="xsd:dateTime"/>
</DataPropertyRange>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="dc:description"/>
<IRI>#Ambivalence</IRI>
<Literal>"leaving a receiver in a state of uncertainty about specific issues" (Zhou and Zhang, 2007)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="dc:description"/>
<IRI>#Asynchronous</IRI>
<Literal>Information is exchanged between sender and receiver nonsimultaneously. In this situataion, time has passed from the time information communicated by the sender is received by receiver.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="dc:description"/>
<IRI>#Audio</IRI>
<Literal>misinformation expressed in audtiory form</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="dc:description"/>
<IRI>#Baby_Boomers</IRI>
<Literal>birth between 1946 to 1964 (Pew Research Center, http://www.pewresearch.org/methodology/demographic-research/definitions/)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="dc:description"/>
<IRI>#Benefiting_Others</IRI>
<Literal>motiviation for communicating misinformation to assist someone or group.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="dc:description"/>
<IRI>#Benefiting_Someone</IRI>
<Literal>a motivation for communicating misinformation due to help an individual(s)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="dc:description"/>
<IRI>#Canadian_National_Culture</IRI>
<Literal>One of the examples provided by Zhou and Zhang. "For example, Chinese children are found to be more likely to accept deception designed to maintain harmonious social relationships, whereas Canadian children are more likely to accept lies designed to promote or protect themselves [31]."</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>#Canadian_National_Culture</IRI>
<Literal>K. Lee, C. A. Cameron, X. Fen, F. Genyue, and J. Board, “Chinese and Canadian children’s evaluations of lying and truth telling: Similarities and differences in the context of pro and antisocial behavior,” Child Develop., vol. 68, no. 5, pp. 924–934, 1997.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="dc:description"/>
<IRI>#Chinese_National_Culture</IRI>
<Literal>One of the examples provided by Zhou and Zhang. "For example, Chinese children are found to be more likely to accept deception designed to maintain harmonious social relationships, whereas Canadian children are more likely to accept lies designed to promote or protect themselves [31]."</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>#Chinese_National_Culture</IRI>
<Literal>K. Lee, C. A. Cameron, X. Fen, F. Genyue, and J. Board, “Chinese and Canadian children’s evaluations of lying and truth telling: Similarities and differences in the context of pro and antisocial behavior,” Child Develop., vol. 68, no. 5, pp. 924–934, 1997.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="dc:description"/>
<IRI>#Colocated</IRI>
<Literal>Information is exchanged when both sender and receiver are physically present</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="dc:description"/>
<IRI>#Communication_Channel</IRI>
<Literal>"The communication channel comes in a variety of forms such as face-to-face communication, phone, e-mail, and public speech. Choosing communication channels is an integral part of the entire course of misinformation transmission." Zhou and Zhang, 2007</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="dc:description"/>
<IRI>#Concealment</IRI>
<Literal>"hiding certain information from reaching consciousness" (Zhou and Zhang, 2007)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="dc:description"/>
<IRI>#Culture</IRI>
<Literal>"he set of values, conventions, or social practices associated with a particular field, activity, or societal characteristic"</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="dc:description"/>
<IRI>#Culture</IRI>
<Literal>"the customary beliefs, social forms, and material traits of a racial, religious, or social group; also : the characteristic features of everyday existence (such as diversions or a way of life) shared by people in a place or time"</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="dc:description"/>
<IRI>#Culture</IRI>
<Literal>"the set of shared attitudes, values, goals, and practices that characterizes an institution or organization"</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="dc:description"/>
<IRI>#Distortion</IRI>
<Literal>"misrepresenting original information to counter consciousness" (Zhou and Zhang, 2007)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="dc:description"/>
<IRI>#Distributed</IRI>
<Literal>information is transmitted by any type of modality from one physical location (by the sender) to another location (to the receiver).</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="dc:description"/>
<IRI>#Distribution_Method</IRI>
<Literal>"representing whether the sender and the receiver are physically located at the same place or are distributed while sending/receiving misinformation" (Zhou and Zhang, 2007)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="dc:description"/>
<IRI>#Ethnic_Culture</IRI>
<Literal>cultural classification based on ethnic identity of the group or individual, e.g. Maori, Irish, Ainu, etc.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="dc:description"/>
<IRI>#Falsification</IRI>
<Literal>"fabricating certain conscious information" (Zhou and Zhang, 2007)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="dc:description"/>
<IRI>#Familiarity</IRI>
<Literal>"The familiarity between a sender and a receiver of misinformation may influence the sender’s choice on what type of misinformation to produce and how to transmit it." (Zhou and Zhang, 2007)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="dc:description"/>
<IRI>#G.I._Generation</IRI>
<Literal>born from 1901 to 1927 (Pew Research Center, http://www.pewresearch.org/methodology/demographic-research/definitions/)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>#Gender</IRI>
<Literal>classification of gender based on SNOMED CT (F-009C8)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="dc:description"/>
<IRI>#Generation_X</IRI>
<Literal>born from 1965 to 1980 (Pew Research Center, http://www.pewresearch.org/methodology/demographic-research/definitions/)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="dc:description"/>
<IRI>#Generational_Culture</IRI>
<Literal>classification of cultural idenitity based on generational birth year.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="dc:description"/>
<IRI>#Human_Being</IRI>
<Literal>homo sapien participant</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="dc:description"/>
<IRI>#Image</IRI>
<Literal>misinformation expresesed as a static image format</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="dc:description"/>
<IRI>#Indication</IRI>
<Literal>"indicators of misinformation" (Zhou and Zhang, 2007)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>#Indication</IRI>
<Literal>Zhou and Zhang have stated that this concept would need further development in the future. "The definition of a class can be enriched with additional ontological information. We would like to leave such extensions for future research." (Zhou and Zhang, 2007)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>#Indication</IRI>
<Literal>aka "cues" of misinformation</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>#Indication</IRI>
<Literal>replace with Provenance ontology</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>#Indication</IRI>
<Literal>supporting information for the Content (misinformation)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="dc:description"/>
<IRI>#Individual_Profile</IRI>
<Literal>"Prior deception research has suggested that some demographic features such as gender (Cody and Hair, 1983), age (Keating and Heltman, 1994), and cultural profile (Zhou and Lutterbie, 2005) of human information senders or receivers have impact on deception." (Zhou and Zhang, 2007)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="dc:description"/>
<IRI>#Lost_Generation</IRI>
<Literal>people born between 1883–1900 (William Strauss and Neil Howe, 1997)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="dc:description"/>
<IRI>#Malicious_Intent</IRI>
<Literal>a motiviation for communicating misinformation to do harm</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="dc:description"/>
<IRI>#Millennials</IRI>
<Literal>born after 1980 (Pew Research Center, http://www.pewresearch.org/methodology/demographic-research/definitions/)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="dc:description"/>
<IRI>#Misinformation</IRI>