-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwvs.owl
5786 lines (3688 loc) · 356 KB
/
wvs.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.ontologydesignpatterns.org/ont/values/wvs.owl#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix vc: <http://www.ontologydesignpatterns.org/ont/values/valuecore.owl#> .
@prefix dul: <http://www.ontologydesignpatterns.org/ont/dul/DUL.owl> .
@prefix gam: <https://w3id.org/spice/GAM/> .
@prefix occ: <https://w3id.org/spice/SON/OCCEmotion/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix sch: <https://w3id.org/spice/SON/SchwartzValues#> .
@prefix wvs: <http://www.ontologydesignpatterns.org/ont/values/wvs.owl#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix arco: <https://w3id.org/arco/ontology/core/> .
@prefix opla: <http://ontologydesignpatterns.org/opla#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schw: <http://www.ontologydesignpatterns.org/ont/values/schwarzvalues.owl#> .
@prefix script: <https://w3id.org/spice/SON/scripting#> .
@prefix fschema: <https://w3id.org/framester/schema/> .
@base <http://www.ontologydesignpatterns.org/ont/values/wvs.owl> .
<http://www.ontologydesignpatterns.org/ont/values/wvs.owl> rdf:type owl:Ontology ;
owl:imports <http://www.ontologydesignpatterns.org/ont/values/valuecore.owl> ,
<https://w3id.org/spice/SON/SchwartzValues/0.0.2> ,
<https://w3id.org/spice/SON/scripting/0.0.2> ;
owl:versionInfo "0.3 by Aldo Gangemi. Fixed some WVS variables and annotations. Added import of valuecore ontology. Some minor fixes." ,
"0.4 by Stefano De Giorgis. Added alignments with Schwartz and the whole values reasoner + contrastive recommender ." .
#################################################################
# Annotation properties
#################################################################
### http://purl.org/dc/elements/1.1/creator
dc:creator rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/date
dc:date rdf:type owl:AnnotationProperty .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#hasCode
wvs:hasCode rdf:type owl:AnnotationProperty .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#surveyDetail
wvs:surveyDetail rdf:type owl:AnnotationProperty .
### http://www.w3.org/ns/prov#wasAttributedTo
prov:wasAttributedTo rdf:type owl:AnnotationProperty .
### https://w3id.org/spice/SON/SchwartzValues#valueFoundation
sch:valueFoundation rdf:type owl:AnnotationProperty .
#################################################################
# Object Properties
#################################################################
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#against
wvs:against rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity> ;
rdfs:range sch:Value .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#hasEmotionContent
wvs:hasEmotionContent rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity> ;
rdfs:comment "Some Entity has content some Emotion." .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#hasValue
wvs:hasValue rdf:type owl:ObjectProperty ;
owl:inverseOf wvs:isValueOf ;
rdfs:domain <https://w3id.org/spice/SON/scripting/Agent> ;
rdfs:range wvs:Value .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#hasValueContent
wvs:hasValueContent rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity> ;
rdfs:range vc:Value ;
rdfs:comment "Some Entity has content some Value." .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#isValueOf
wvs:isValueOf rdf:type owl:ObjectProperty .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#reprehensibleFor
wvs:reprehensibleFor rdf:type owl:ObjectProperty ;
rdfs:domain vc:Value ;
rdfs:range wvs:Value .
#################################################################
# Classes
#################################################################
### http://www.ontologydesignpatterns.org/ont/dul/DUL.owlSituation
dul:Situation rdf:type owl:Class .
### http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity
<http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Entity> rdf:type owl:Class .
### http://www.ontologydesignpatterns.org/ont/values/schwartzvalues.owl#CulturalValue
<http://www.ontologydesignpatterns.org/ont/values/schwartzvalues.owl#CulturalValue> rdf:type owl:Class ;
rdfs:subClassOf vc:Value .
### http://www.ontologydesignpatterns.org/ont/values/valuecore.owl#SocialScenario
vc:SocialScenario rdf:type owl:Class .
### http://www.ontologydesignpatterns.org/ont/values/valuecore.owl#Value
vc:Value rdf:type owl:Class .
### http://www.ontologydesignpatterns.org/ont/values/valuecore.owl#ValueSituation
vc:ValueSituation rdf:type owl:Class .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#A_high_level_of_economic_growth
wvs:A_high_level_of_economic_growth rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Active-Inactive_membership__Church_or_religious_organization
wvs:Active-Inactive_membership__Church_or_religious_organization rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Active-Inactive_membership__Environmental_organization
wvs:Active-Inactive_membership__Environmental_organization rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Active-Inactive_membership__Labor_union
wvs:Active-Inactive_membership__Labor_union rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Active-Inactive_membership__Political_party
wvs:Active-Inactive_membership__Political_party rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Active-Inactive_membership__Self-help_group_mutual_aid_group
wvs:Active-Inactive_membership__Self-help_group_mutual_aid_group rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Active-Inactive_membership__art_music__educational_organization
wvs:Active-Inactive_membership__art_music__educational_organization rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Active-Inactive_membership__charitable-humanitarian_organization
wvs:Active-Inactive_membership__charitable-humanitarian_organization rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Active-Inactive_membership__consumer_organization
wvs:Active-Inactive_membership__consumer_organization rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Active-Inactive_membership__other_organization
wvs:Active-Inactive_membership__other_organization rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Active-Inactive_membership__professional_organization
wvs:Active-Inactive_membership__professional_organization rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Active-Inactive_membership__sport_or_recreational_org
wvs:Active-Inactive_membership__sport_or_recreational_org rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Active-Inactive_membership__women_s_group
wvs:Active-Inactive_membership__women_s_group rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Age
wvs:Age rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Aim_of_Country
wvs:Aim_of_Country rdf:type owl:Class ;
rdfs:subClassOf <http://www.ontologydesignpatterns.org/ont/values/schwartzvalues.owl#CulturalValue> ;
rdfs:comment """Q152-Q157
Index of Postmaterialism""" ;
rdfs:label "aim of country" .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Aim_of_Respondent
wvs:Aim_of_Respondent rdf:type owl:Class .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Are_you_the_chief_wage_earner_in_your_house_Are_you_the_chief_wage_earner_in_your_house
wvs:Are_you_the_chief_wage_earner_in_your_house_Are_you_the_chief_wage_earner_in_your_house rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Because_of_science_and_technology__there_will_be_more_opportunities_for_the_next_generation
wvs:Because_of_science_and_technology__there_will_be_more_opportunities_for_the_next_generation rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Being_a_housewife_just_as_fulfilling
wvs:Being_a_housewife_just_as_fulfilling rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Believe_in__God
wvs:Believe_in__God rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Believe_in__heaven
wvs:Believe_in__heaven rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Believe_in__hell
wvs:Believe_in__hell rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Believe_in__life_after_death
wvs:Believe_in__life_after_death rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Child_Quality
wvs:Child_Quality rdf:type owl:Class ;
rdfs:subClassOf wvs:Value ;
rdfs:comment "Q7-Q17" ;
rdfs:label "child quality" .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Collect_information_about_anyone_living_in_this_country_without_their_knowledge
wvs:Collect_information_about_anyone_living_in_this_country_without_their_knowledge rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Competition_good_or_harmful
wvs:Competition_good_or_harmful rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Condition_to_avoid
wvs:Condition_to_avoid rdf:type owl:Class ;
rdfs:subClassOf wvs:Happiness_and_Well_being ;
rdfs:comment "Q51-Q56" ;
rdfs:label "condition to avoid" .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__Armed_Forces
wvs:Confidence__Armed_Forces rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__Banks
wvs:Confidence__Banks rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__Charitable_or_humanitarian_organizations
wvs:Confidence__Charitable_or_humanitarian_organizations rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__Churches
wvs:Confidence__Churches rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__Commonwealth_of_Independent_States__CIS
wvs:Confidence__Commonwealth_of_Independent_States__CIS rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__Cooperation_Council_for_the_Arab_states_of_Gulf__GCC
wvs:Confidence__Cooperation_Council_for_the_Arab_states_of_Gulf__GCC rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__Election
wvs:Confidence__Election rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__International_Criminal_Court__ICC
wvs:Confidence__International_Criminal_Court__ICC rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__International_Monetary_Found__IMF
wvs:Confidence__International_Monetary_Found__IMF rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__Justice_System-Courts
wvs:Confidence__Justice_System-Courts rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__Labor_Unions
wvs:Confidence__Labor_Unions rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__Major_Companies
wvs:Confidence__Major_Companies rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__Major_regional_organization__combined_from_country-specific
wvs:Confidence__Major_regional_organization__combined_from_country-specific rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__North_Atlantic_Treaty_Organization__NATO
wvs:Confidence__North_Atlantic_Treaty_Organization__NATO rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__Parliament
wvs:Confidence__Parliament rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__Television
wvs:Confidence__Television rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__The_African_Union__AU
wvs:Confidence__The_African_Union__AU rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__The_Arab_League
wvs:Confidence__The_Arab_League rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__The_Asia-Pacific_Economic_Cooperation__APEC
wvs:Confidence__The_Asia-Pacific_Economic_Cooperation__APEC rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__The_Association_of_South_East_Asian_Nations__ASEAN
wvs:Confidence__The_Association_of_South_East_Asian_Nations__ASEAN rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__The_Civil_Services
wvs:Confidence__The_Civil_Services rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__The_Environmental_Protection_Movement
wvs:Confidence__The_Environmental_Protection_Movement rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__The_European_Union__EU
wvs:Confidence__The_European_Union__EU rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__The_Government
wvs:Confidence__The_Government rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__The_Mercosur
wvs:Confidence__The_Mercosur rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__The_North_American_Free_Trade_Agreement__NAFTA
wvs:Confidence__The_North_American_Free_Trade_Agreement__NAFTA rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__The_Organization_of_American_States__OAE
wvs:Confidence__The_Organization_of_American_States__OAE rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__The_Organization_of_the_Islamic_Cooperation
wvs:Confidence__The_Organization_of_the_Islamic_Cooperation rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__The_Police
wvs:Confidence__The_Police rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__The_Political_Parties
wvs:Confidence__The_Political_Parties rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__The_Press
wvs:Confidence__The_Press rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__The_Shanghai_Cooperation_Organization__SCO
wvs:Confidence__The_Shanghai_Cooperation_Organization__SCO rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__The_South_Asian_Association_for_Regional_Cooperation__SAARC
wvs:Confidence__The_South_Asian_Association_for_Regional_Cooperation__SAARC rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__The_United_Nations__UN
wvs:Confidence__The_United_Nations__UN rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__The_Women_s_Movement
wvs:Confidence__The_Women_s_Movement rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__The_World_Bank__WB
wvs:Confidence__The_World_Bank__WB rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__The_World_Health_Organization__WHO
wvs:Confidence__The_World_Health_Organization__WHO rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__The_World_Trade_Organization__WTO
wvs:Confidence__The_World_Trade_Organization__WTO rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__United_Nations_Development_Programme__UNDP
wvs:Confidence__United_Nations_Development_Programme__UNDP rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Confidence__Universities
wvs:Confidence__Universities rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Corruption
wvs:Corruption rdf:type owl:Class ;
rdfs:subClassOf vc:SocialScenario ;
rdfs:comment """Q112-Q120
Perception of corruption""" ;
rdfs:label "corruption" .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Country_of_birth__Father_of_the_respondent_In_which_country_was_your_father_born
wvs:Country_of_birth__Father_of_the_respondent_In_which_country_was_your_father_born rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Country_of_birth__Mother_of_the_respondent_In_which_country_was_your_mother_born
wvs:Country_of_birth__Mother_of_the_respondent_In_which_country_was_your_mother_born rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Country_of_birth__Respondent_In_which_country_were_you_born
wvs:Country_of_birth__Respondent_In_which_country_were_you_born rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Degree_of_agreement__Nowadays_one_often_has_trouble_deciding_which_moral_rules_are_the_right_ones_to_follow
wvs:Degree_of_agreement__Nowadays_one_often_has_trouble_deciding_which_moral_rules_are_the_right_ones_to_follow rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Degree_of_agreement__On_the_whole__women_are_less_corrupt_than_men
wvs:Degree_of_agreement__On_the_whole__women_are_less_corrupt_than_men rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Democracy__Civil_rights_protect_people_s_liberty_against_oppression
wvs:Democracy__Civil_rights_protect_people_s_liberty_against_oppression rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Democracy__Governments_tax_the_rich_and_subsidize_the_poor
wvs:Democracy__Governments_tax_the_rich_and_subsidize_the_poor rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Democracy__People_choose_their_leaders_in_free_elections
wvs:Democracy__People_choose_their_leaders_in_free_elections rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Democracy__People_obey_their_rulers
wvs:Democracy__People_obey_their_rulers rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Democracy__People_receive_state_aid_for_unemployment
wvs:Democracy__People_receive_state_aid_for_unemployment rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Democracy__Religious_authorities_interpret_the_laws
wvs:Democracy__Religious_authorities_interpret_the_laws rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Democracy__The_army_takes_over_when_government_is_incompetent
wvs:Democracy__The_army_takes_over_when_government_is_incompetent rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Democracy__The_state_makes_people_s_incomes_equal
wvs:Democracy__The_state_makes_people_s_incomes_equal rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Democracy__Women_have_the_same_rights_as_men
wvs:Democracy__Women_have_the_same_rights_as_men rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Demographic_Situation
wvs:Demographic_Situation rdf:type owl:Class ;
rdfs:subClassOf dul:Situation ;
rdfs:comment """Q260-Q274
Demographic Variables""" ;
rdfs:label "demographic situation" .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Do_you_live_with_your_parents
wvs:Do_you_live_with_your_parents rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Duty_towards_society_to_have_children
wvs:Duty_towards_society_to_have_children rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Economic_Cooperation_Organization
wvs:Economic_Cooperation_Organization rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Economic_Value
wvs:Economic_Value rdf:type owl:Class ;
rdfs:subClassOf vc:Value ;
dc:date "2021-03-06T14:08:11Z"^^xsd:dateTime ;
rdfs:comment "Q106-Q111" ;
rdfs:label "economic value" .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Education_level__recoded
wvs:Education_level__recoded rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Employment_status
wvs:Employment_status rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Employment_status_-_Respondent_s_Spouse_Is_your_spouse_employed
wvs:Employment_status_-_Respondent_s_Spouse_Is_your_spouse_employed rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Ethical_Value
wvs:Ethical_Value rdf:type owl:Class ;
rdfs:subClassOf <http://www.ontologydesignpatterns.org/ont/values/schwartzvalues.owl#CulturalValue> ;
rdfs:comment "Q176-Q198" ;
rdfs:label "ethical value" .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Family_savings_during_past_year_During_the_past_year__did_your_family
wvs:Family_savings_during_past_year_During_the_past_year__did_your_family rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Father_immigrant
wvs:Father_immigrant rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Feel_close_to_the_world
wvs:Feel_close_to_the_world rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Feel_close_to_your_continent
wvs:Feel_close_to_your_continent rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Feel_close_to_your_country
wvs:Feel_close_to_your_country rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Feel_close_to_your_district_region
wvs:Feel_close_to_your_district_region rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Feel_close_to_your_village_town_or_city
wvs:Feel_close_to_your_village_town_or_city rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Feeling_of_happiness
wvs:Feeling_of_happiness rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Felt_unsafe_from_crime_in_your_own_home
wvs:Felt_unsafe_from_crime_in_your_own_home rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Fighting_rising_prices
wvs:Fighting_rising_prices rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Freedom_and_Equality_-_Which_more_important
wvs:Freedom_and_Equality_-_Which_more_important rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Freedom_and_security_-_Which_more_important
wvs:Freedom_and_security_-_Which_more_important rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Frequency_in_your_neighborhood__Alcohol_consumed_in_the_streets
wvs:Frequency_in_your_neighborhood__Alcohol_consumed_in_the_streets rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Frequency_in_your_neighborhood__Drug_sale_in_streets
wvs:Frequency_in_your_neighborhood__Drug_sale_in_streets rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Frequency_in_your_neighborhood__Racist_behavior
wvs:Frequency_in_your_neighborhood__Racist_behavior rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Frequency_in_your_neighborhood__Robberies
wvs:Frequency_in_your_neighborhood__Robberies rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Frequency_in_your_neighborhood__Sexual_harassment
wvs:Frequency_in_your_neighborhood__Sexual_harassment rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Frequency_in_your_neighborhood__Street_violence_and_fights
wvs:Frequency_in_your_neighborhood__Street_violence_and_fights rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Frequency_ordinary_people_pay_a_bribe__give_a_gift_or_do_a_favor_to_local_officials-service_providers_in_order_to_get_services
wvs:Frequency_ordinary_people_pay_a_bribe__give_a_gift_or_do_a_favor_to_local_officials-service_providers_in_order_to_get_services rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Future_Change
wvs:Future_Change rdf:type owl:Class ;
rdfs:subClassOf wvs:Value ;
rdfs:comment "Q42-Q45" .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Future_changes__Greater_respect_for_authority
wvs:Future_changes__Greater_respect_for_authority rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Future_changes__Less_importance_placed_on_work
wvs:Future_changes__Less_importance_placed_on_work rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Future_changes__More_emphasis_on_technology
wvs:Future_changes__More_emphasis_on_technology rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Giving_people_more_say_in_important_government_decisions
wvs:Giving_people_more_say_in_important_government_decisions rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Gone_without_a_cash_income
wvs:Gone_without_a_cash_income rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Gone_without_a_safe_shelter_over_your_head
wvs:Gone_without_a_safe_shelter_over_your_head rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Gone_without_enough_food_to_eat
wvs:Gone_without_enough_food_to_eat rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Gone_without_needed_medicine_or_treatment_that_you_needed
wvs:Gone_without_needed_medicine_or_treatment_that_you_needed rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Government_has_the_right__Keep_people_under_video_surveillance_in_public_areas
wvs:Government_has_the_right__Keep_people_under_video_surveillance_in_public_areas rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Government_s_vs_individual_s_responsibility
wvs:Government_s_vs_individual_s_responsibility rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Happiness_and_Well_being
wvs:Happiness_and_Well_being rdf:type owl:Class ;
rdfs:subClassOf vc:Value ;
rdfs:comment "Q46-Q56" ;
rdfs:label "happiness and wellbeing" .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Having_a_system_governed_by_religious_law_in_which_there_are_no_political_parties_or_elections
wvs:Having_a_system_governed_by_religious_law_in_which_there_are_no_political_parties_or_elections rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Highest_educational_level__Respondent__ISCED_2011__What_is_the_highest_educational_level_that_you_have_attained
wvs:Highest_educational_level__Respondent__ISCED_2011__What_is_the_highest_educational_level_that_you_have_attained rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Highest_educational_level__Respondent__country_specific
wvs:Highest_educational_level__Respondent__country_specific rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Highest_educational_level__Respondent_s_Father__country_specific
wvs:Highest_educational_level__Respondent_s_Father__country_specific rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Highest_educational_level__Respondent_s_Father__recoded_into_4_groups
wvs:Highest_educational_level__Respondent_s_Father__recoded_into_4_groups rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Highest_educational_level__Respondent_s_Mother__ISCED_2011
wvs:Highest_educational_level__Respondent_s_Mother__ISCED_2011 rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Highest_educational_level__Respondent_s_Mother__country_specific
wvs:Highest_educational_level__Respondent_s_Mother__country_specific rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Highest_educational_level__Respondent_s_Mother__recoded_into_4_groups
wvs:Highest_educational_level__Respondent_s_Mother__recoded_into_4_groups rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Highest_educational_level__Respondent_s_Spouse__ISCED_2011
wvs:Highest_educational_level__Respondent_s_Spouse__ISCED_2011 rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Highest_educational_level__Respondent_s_Spouse__country_specific
wvs:Highest_educational_level__Respondent_s_Spouse__country_specific rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Highest_educational_level__Respondent_s_Spouse__recoded_into_4_groups
wvs:Highest_educational_level__Respondent_s_Spouse__recoded_into_4_groups rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Homosexual_couples_are_as_good_parents_as_other_couples
wvs:Homosexual_couples_are_as_good_parents_as_other_couples rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#How_democratically_is_this_country_being_governed_today
wvs:How_democratically_is_this_country_being_governed_today rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#How_many_children_do_you_have
wvs:How_many_children_do_you_have rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#How_much_freedom_of_choice_and_control
wvs:How_much_freedom_of_choice_and_control rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#How_much_the_political_system_allows_people_to_have_a_say
wvs:How_much_the_political_system_allows_people_to_have_a_say rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#How_much_you_trust__Your_family
wvs:How_much_you_trust__Your_family rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#How_often_discusses_political_matters_with_friends
wvs:How_often_discusses_political_matters_with_friends rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#How_often_do_you_attend_religious_services
wvs:How_often_do_you_attend_religious_services rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#How_often_in_country_s_elections__Election_officials_are_fair
wvs:How_often_in_country_s_elections__Election_officials_are_fair rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#How_often_in_country_s_elections__Journalists_provide_fair_coverage_of_elections
wvs:How_often_in_country_s_elections__Journalists_provide_fair_coverage_of_elections rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#How_often_in_country_s_elections__Opposition_candidates_are_prevented_from_running
wvs:How_often_in_country_s_elections__Opposition_candidates_are_prevented_from_running rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#How_often_in_country_s_elections__Rich_people_buy_elections
wvs:How_often_in_country_s_elections__Rich_people_buy_elections rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#How_often_in_country_s_elections__TV_news_favors_the_governing_party
wvs:How_often_in_country_s_elections__TV_news_favors_the_governing_party rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#How_often_in_country_s_elections__Voters_are_bribed
wvs:How_often_in_country_s_elections__Voters_are_bribed rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#How_often_in_country_s_elections__Voters_are_offered_a_genuine_choice_in_the_elections
wvs:How_often_in_country_s_elections__Voters_are_offered_a_genuine_choice_in_the_elections rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#How_often_in_country_s_elections__Voters_are_threatened_with_violence_at_the_polls
wvs:How_often_in_country_s_elections__Voters_are_threatened_with_violence_at_the_polls rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#How_often_in_country_s_elections__Votes_are_counted_fairly
wvs:How_often_in_country_s_elections__Votes_are_counted_fairly rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#How_often_in_country_s_elections__Women_have_equal_opportunities_to_run_the_office
wvs:How_often_in_country_s_elections__Women_have_equal_opportunities_to_run_the_office rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#How_often_to_you_pray
wvs:How_often_to_you_pray rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#If_a_woman_earns_more_money_than_her_husband__it_s_almost_certain_to_cause_problems
wvs:If_a_woman_earns_more_money_than_her_husband__it_s_almost_certain_to_cause_problems rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Immigration_in_your_country__Fills_useful_jobs_in_the_workforce
wvs:Immigration_in_your_country__Fills_useful_jobs_in_the_workforce rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Immigration_in_your_country__Gives_asylum_to_political_refugees
wvs:Immigration_in_your_country__Gives_asylum_to_political_refugees rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Immigration_in_your_country__Helps_poor_people_establish_new_lives
wvs:Immigration_in_your_country__Helps_poor_people_establish_new_lives rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Immigration_in_your_country__Increases_the_crime_rate
wvs:Immigration_in_your_country__Increases_the_crime_rate rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Immigration_in_your_country__Increases_the_risks_of_terrorism
wvs:Immigration_in_your_country__Increases_the_risks_of_terrorism rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Immigration_in_your_country__Increases_unemployment
wvs:Immigration_in_your_country__Increases_unemployment rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Immigration_in_your_country__Leads_to_social_conflict
wvs:Immigration_in_your_country__Leads_to_social_conflict rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Immigration_in_your_country__Strengthens_cultural_diversity
wvs:Immigration_in_your_country__Strengthens_cultural_diversity rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Immigration_policy_preference
wvs:Immigration_policy_preference rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Impact_of_immigrants_on_the_development_of_the_country
wvs:Impact_of_immigrants_on_the_development_of_the_country rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Importance_of_God
wvs:Importance_of_God rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Importance_of_democracy
wvs:Importance_of_democracy rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Important_child_qualities__Determination_perseverance
wvs:Important_child_qualities__Determination_perseverance rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Important_child_qualities__Feeling_of_responsibility
wvs:Important_child_qualities__Feeling_of_responsibility rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Important_child_qualities__Good_manners
wvs:Important_child_qualities__Good_manners rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Important_child_qualities__Hard_work
wvs:Important_child_qualities__Hard_work rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Important_child_qualities__Imagination
wvs:Important_child_qualities__Imagination rdf:type owl:Class ;
rdfs:subClassOf vc:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/wvs.owl#Important_child_qualities__Independence
wvs:Important_child_qualities__Independence rdf:type owl:Class ;