-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfolk_aligned.ttl
8366 lines (6291 loc) · 409 KB
/
folk_aligned.ttl
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/valuemerge_rev.owl#> .
@prefix be: <http://www.ontologydesignpatterns.org/ont/emotions/BasicEmotions.owl#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix vm: <http://www.ontologydesignpatterns.org/ont/values/valuemerge.owl#> .
@prefix bhv: <https://w3id.org/spice/SON/SchwartzValues#> .
@prefix dul: <http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#> .
@prefix hai: <http://www.ontologydesignpatterns.org/ont/values/haidt.owl#> .
@prefix mft: <https://w3id.org/spice/SON/HaidtValues#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@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 folk: <http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#> .
@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/schwartz.owl#> .
@prefix vcvf: <http://www.ontologydesignpatterns.org/ont/values/valuecore_with_value_frames.owl#> .
@prefix webc: <http://www.ontologydesignpatterns.org/ont/values/webcol.owl#> .
@prefix frame: <https://w3id.org/framester/framenet/abox/frame/> .
@prefix inner: <http://www.ontologydesignpatterns.org/ont/values/inner.owl#> .
@prefix semio: <http://www.ontologydesignpatterns.org/ont/values/ontologydesignpatterns.org/cp/owl/semiotics.owl#> .
@prefix fschema: <https://w3id.org/framester/schema/> .
@prefix wn30instances: <https://w3id.org/framester/wn/wn30/instances/> .
@base <http://www.ontologydesignpatterns.org/ont/values/valuemerge_rev.owl> .
<http://www.ontologydesignpatterns.org/ont/values/valuemerge_rev.owl> rdf:type owl:Ontology ;
rdfs:comment """A quick and dirty collection of values, with their provenance and some of their expressed relations, from the Web.
Relations include negative oppositions from Haidt (e.g. from Haidt J. and Graham J. When Morality Opposes Justice: Conservatives Have Moral Intuitions that Liberals may not Recognize. Social Justice Research, Vol. 20, No. 1, March 2007, 10.1007/s11211-007-0034-z), subsumptions from Schwartz' circumplex model (e.g. from
Schwartz, S. H. (1992). Universals in the content and structure of values: theoretical advances and empirical tests in 20 countries. Adv. Exp. Soc. Psychol. 25, 1–65. doi: 10.1016/S0065-2601(08)60281-6; Schwartz, S. H. (2012). An Overview of the Schwartz Theory of Basic Values. Online Readings in Psychology and Culture, 2, 1, 10.9707/2307-0919.1116; Schwartz, S. H. (2014). Rethinking the concept and measurement of societal culture in light of empirical findings. J. Cross. Cult. Psychol. 45, 5–13, 10.1177/ 0022022113490830; Schwartz, S. H. A. (2006). Theory of cultural value orientations: Explication and applications. Comp. Soc. 5, 137–182. doi: 10.1163/1569133067786 67357), and some clearly contrastive oppositions, also from Schwartz'.
Subsumptions pair subclass taxonomies (following the D&S super-duper punning). Relations allow to infer a quite complex taxonomy, deserving investigation.
Apparently, the circumplex model and related glosses hint at a more complex model of values (involving e.g. norms, goals, equilibria, causality, etc.), which needs to be designed, and used to refactor this collection with analytic axioms.
For example, Self-protection values should include roles played by Self and Others, action or event types that may prize or harm the Self, parameters establishing the protection dimensions, related social and legal norms aimed at (or limiting) Self-protection, etc.
Most values collected on the Web seem to reuse academic studies such as Schwartz, Haidt, etc., but it is interesting to spot the convergence among psychological, business, military, and cultural contexts.
Several values found in Web lists have no obvious subsumers in Schwartz' hiearchy, and need refinement. Not all values feature a gloss, and many of them feature glosses with a provenance of suspicious quality.
Last addition includes The World Value Survey value inventory, used in interviews for gathering multicultural statistics about values and other social invariants: https://www.worldvaluessurvey.org/WVSDocumentationWV7.jsp
Overall, some redundance may exist, even within established models, e.g. the difference between Personal Security and Self-protection in Schwartz92 might be blurred.
Finally, a first extraction of value-related frames from Framester has been done, leading to 7 conceptual frames and 6 synset frames that cover all senses of 'value', from proper normative/goal senses to commercial and informational senses.
A much deeper extraction needs to be done by using the labels from the value collection, and attempting a transitive closure across Framester and its modules, in order to discover possible inconsistencies, problematic inferences, typical roles, associations to sentiment polarity and emotions, visual categories, etc.""" ;
owl:versionInfo """1.0, 14-12-2022, by Stefano De Giorgis. Reintroduced all the entities from ValueCore module, reviewed all the rdfs:subClassOf relation between MFT, BHV and Folk values.
0.8, 13-12-2022, by Stefano De Giorgis. Aligned the BHV (Basic Human Values by Scwhartz) module, reused the correct URIs for already existing entities, reorganized classes according to BHV taxonomy.
0.7, 12-12-2022, by Stefano De Giorgis. Deleted some individuals for :IndividualValue (no mention of it in Schwartz 2006), reorganized classes and subClasses of FolkValues.
0.6, 03-15-2021, by Aldo Gangemi. Added vlue notions by provenance, and added typing accordingly.
0.5, 06-07-2021, by Aldo Gangemi. Added the ValueAppraisal class as a type of ValueSituation.
0.4, 03-06-2021, by Aldo Gangemi. Added missing contrast relations, added a transitive contrast relation to experiment with reasoning chains in Schwartz' circumplex model.
0.3, 03-04-2021, by Aldo Gangemi. Added documentation, created super-duper intension-extension inference mechanism for values.
0.2, 03-05-2021, by Aldo Gangemi. Added the ValueCommitment and ValueSituation classes, and created punning for values as classes+individuals.
0.1, 03-04-2021, bootstrapped by Aldo Gangemi from a Web collection of existing inventories, and a basic analysis of Schwartz' and Haidt's models.""" .
#################################################################
# 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 .
#################################################################
# Object Properties
#################################################################
### http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#satisfiedBy
dul:satisfiedBy rdf:type owl:ObjectProperty ;
owl:inverseOf dul:satisfies .
### http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#satisfies
dul:satisfies rdf:type owl:ObjectProperty ;
rdfs:domain dul:Situation ;
rdfs:range dul:Description .
### http://www.ontologydesignpatterns.org/ont/values/valuemerge_rev.owl#contrasts
:contrasts rdf:type owl:ObjectProperty ,
owl:SymmetricProperty ;
rdfs:domain schw:IndividualValue ;
rdfs:range schw:IndividualValue ;
rdfs:comment "Schwartz' contrastive opposition relation, designed as a symmetric property. In Schwartz' theory, such contrast entails conflict, and should lead to a disjointness relation between the situation classes satisfying the contrasted values. However, the conflict assumption is heavily debated in literature." ;
rdfs:label "contrasts" .
### http://www.ontologydesignpatterns.org/ont/values/valuemerge_rev.owl#hasNegative
:hasNegative rdf:type owl:ObjectProperty ;
owl:inverseOf :hasPositive ;
rdfs:domain schw:IndividualValue ;
rdfs:range mft:NegativeValue ;
rdfs:comment "A (judgmentally, culturally dependent) opposition between a (positive) value, and a negative one. Cf. Haidt and Graham 2007, who however claim the universality of the polarity. Due to the asymmetry in the notion, the relation is not symmetric." .
### http://www.ontologydesignpatterns.org/ont/values/valuemerge_rev.owl#hasPositive
:hasPositive rdf:type owl:ObjectProperty .
### http://www.ontologydesignpatterns.org/ont/values/valuemerge_rev.owl#transitivelyContrasts
:transitivelyContrasts rdf:type owl:ObjectProperty ,
owl:SymmetricProperty ;
rdfs:domain schw:IndividualValue ;
rdfs:range schw:IndividualValue ;
owl:propertyChainAxiom ( fschema:subsumedUnder
:contrasts
) .
### http://www.w3.org/ns/prov#wasAttributedTo
prov:wasAttributedTo rdf:type owl:ObjectProperty .
### https://w3id.org/framester/schema/subsumedUnder
fschema:subsumedUnder rdf:type owl:ObjectProperty ;
owl:inverseOf fschema:subsumes ;
rdf:type owl:TransitiveProperty .
### https://w3id.org/framester/schema/subsumes
fschema:subsumes rdf:type owl:ObjectProperty ,
owl:TransitiveProperty .
#################################################################
# Classes
#################################################################
### http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Description
dul:Description rdf:type owl:Class .
### http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Situation
dul:Situation rdf:type owl:Class .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Acceptance
folk:Acceptance rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Acceptance
)
]
] ;
rdfs:subClassOf folk:Feelings .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Accountability
folk:Accountability rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Accountability
)
]
] ;
rdfs:subClassOf folk:Integrity .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Accuracy
folk:Accuracy rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Accuracy
)
]
] ;
rdfs:subClassOf folk:Order .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Adaptability
folk:Adaptability rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Adaptability
)
]
] ;
rdfs:subClassOf folk:Spirituality .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Adventure
folk:Adventure rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Adventure
)
]
] ;
rdfs:subClassOf bhv:OpennessToChange ,
bhv:Stimulation .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Affective_autonomy
folk:Affective_autonomy rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Affective_autonomy
)
]
] ;
rdfs:subClassOf vcvf:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Altruism
folk:Altruism rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Altruism
)
]
] ;
rdfs:subClassOf folk:Spirituality .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Ambition
folk:Ambition rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Ambition
)
]
] ;
rdfs:subClassOf folk:Strength ,
bhv:Achievement .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Amusement
folk:Amusement rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Amusement
)
]
] ;
rdfs:subClassOf folk:Enjoyment .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Analysis
folk:Analysis rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Analysis
)
]
] ;
rdfs:subClassOf vcvf:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Anticipation
folk:Anticipation rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Anticipation
)
]
] ;
rdfs:subClassOf vcvf:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Approachability
folk:Approachability rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Approachability
)
]
] ;
rdfs:subClassOf bhv:SelfTranscendence .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Association
folk:Association rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Association
)
]
] ;
rdfs:subClassOf folk:Community .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Authenticity
folk:Authenticity rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Authenticity
)
]
] ;
rdfs:subClassOf vcvf:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Balance
folk:Balance rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Balance
)
]
] ;
rdfs:subClassOf folk:Spirituality .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Belief_in_God
folk:Belief_in_God rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Belief_in_God
)
]
] ;
rdfs:subClassOf folk:Beliefs .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Beliefs
folk:Beliefs rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Beliefs
)
]
] ;
rdfs:subClassOf vcvf:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Bravery
folk:Bravery rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Bravery
)
]
] ;
rdfs:subClassOf folk:Courage .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Brilliance
folk:Brilliance rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Brilliance
)
]
] ;
rdfs:subClassOf folk:Intelligence .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Building_communities
folk:Building_communities rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Building_communities
)
]
] ;
rdfs:subClassOf folk:Community .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Candor
folk:Candor rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Candor
)
]
] ;
rdfs:subClassOf folk:Integrity .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Certainty
folk:Certainty rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Certainty
)
]
] ;
rdfs:subClassOf folk:Order .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Charity
folk:Charity rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Charity
)
]
] ;
rdfs:subClassOf folk:Giving ,
folk:Spirituality .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Cleanliness
folk:Cleanliness rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Cleanliness
)
]
] ;
rdfs:subClassOf folk:Order ,
bhv:Security .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Cleverness
folk:Cleverness rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Cleverness
)
]
] ;
rdfs:subClassOf folk:Intelligence .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Collaboration
folk:Collaboration rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Collaboration
)
]
] ;
rdfs:subClassOf folk:Community .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Comfort
folk:Comfort rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Comfort
)
]
] ;
rdfs:subClassOf folk:Feelings .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Commitment
folk:Commitment rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Commitment
)
]
] ;
rdfs:subClassOf folk:Integrity .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Common_sense
folk:Common_sense rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Common_sense
)
]
] ;
rdfs:subClassOf folk:Intelligence .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Communication
folk:Communication rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Communication
)
]
] ;
rdfs:subClassOf folk:Spirituality .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Community
folk:Community rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Community
)
]
] ;
rdfs:subClassOf folk:Spirituality .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Compassion
folk:Compassion rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Compassion
)
]
] ;
rdfs:subClassOf folk:Feelings .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Competition
folk:Competition rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Competition
)
]
] ;
rdfs:subClassOf vcvf:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Compliance
folk:Compliance rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Compliance
)
]
] ;
rdfs:subClassOf folk:Order ,
bhv:Conservation .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Congruence
folk:Congruence rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Congruence
)
]
] ;
rdfs:subClassOf vcvf:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Connection
folk:Connection rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Connection
)
]
] ;
rdfs:subClassOf folk:Community .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Consciousness
folk:Consciousness rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Consciousness
)
]
] ;
rdfs:subClassOf folk:Spirituality .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Consent
folk:Consent rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Consent
)
]
] ;
rdfs:subClassOf vcvf:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Consideration
folk:Consideration rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Consideration
)
]
] ;
rdfs:subClassOf folk:Community .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Consistency
folk:Consistency rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Consistency
)
]
] ;
rdfs:subClassOf folk:Order .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Contentment
folk:Contentment rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Contentment
)
]
] ;
rdfs:subClassOf folk:Feelings .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Continuous_learning
folk:Continuous_learning rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Continuous_learning
)
]
] ;
rdfs:subClassOf folk:Learning .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Contribution
folk:Contribution rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Contribution
)
]
] ;
rdfs:subClassOf folk:Spirituality .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Control
folk:Control rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Control
)
]
] ;
rdfs:subClassOf bhv:Power .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Conviction
folk:Conviction rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Conviction
)
]
] ;
rdfs:subClassOf folk:Courage .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Cooperation
folk:Cooperation rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Cooperation
)
]
] ;
rdfs:subClassOf folk:Community .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Courage
folk:Courage rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Courage
)
]
] ;
rdfs:subClassOf vcvf:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Courtesy
folk:Courtesy rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Courtesy
)
]
] ;
rdfs:subClassOf folk:Spirituality .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Creativity
folk:Creativity rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Creativity
)
]
] ;
rdfs:subClassOf vcvf:ValueSituation ,
bhv:SelfDirection .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Curiosity
folk:Curiosity rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Curiosity
)
]
] ;
rdfs:subClassOf folk:Creativity .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Daring
folk:Daring rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Daring
)
]
] ;
rdfs:subClassOf bhv:Stimulation .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Decision_making
folk:Decision_making rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Decision_making
)
]
] ;
rdfs:subClassOf folk:Order .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Development
folk:Development rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Development
)
]
] ;
rdfs:subClassOf folk:Evolution ,
bhv:Achievement .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Devotion
folk:Devotion rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Devotion
)
]
] ;
rdfs:subClassOf folk:Spirituality ,
bhv:Tradition .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Dignity
folk:Dignity rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Dignity
)
]
] ;
rdfs:subClassOf folk:Integrity .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Discovery
folk:Discovery rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Discovery
)
]
] ;
rdfs:subClassOf folk:Creativity .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Distinctiveness
folk:Distinctiveness rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Distinctiveness
)
]
] ;
rdfs:subClassOf vcvf:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Diversity
folk:Diversity rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Diversity
)
]
] ;
rdfs:subClassOf vcvf:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Drive
folk:Drive rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Drive
)
]
] ;
rdfs:subClassOf vcvf:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Dutiful
folk:Dutiful rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Dutiful
)
]
] ;
rdfs:subClassOf vcvf:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Earning_trust
folk:Earning_trust rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Earning_trust
)
]
] ;
rdfs:subClassOf bhv:SelfTranscendence .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Economy
folk:Economy rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Economy
)
]
] ;
rdfs:subClassOf folk:Order .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Education
folk:Education rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Education
)
]
] ;
rdfs:subClassOf vcvf:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Egalitarianism
folk:Egalitarianism rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Egalitarianism
)
]
] ;
rdfs:subClassOf vcvf:ValueSituation ,
bhv:Universalism .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Embeddedness
folk:Embeddedness rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Embeddedness
)
]
] ;
rdfs:subClassOf vcvf:ValueSituation .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Empathy
folk:Empathy rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Empathy
)
]
] ;
rdfs:subClassOf folk:Feelings .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Energy
folk:Energy rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Energy
)
]
] ;
rdfs:subClassOf folk:Health .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Enjoyment
folk:Enjoyment rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Enjoyment
)
]
] ;
rdfs:subClassOf folk:Feelings .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Enthusiasm
folk:Enthusiasm rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Enthusiasm
)
]
] ;
rdfs:subClassOf folk:Enjoyment .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Equality
folk:Equality rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Equality
)
]
] ;
rdfs:subClassOf folk:Spirituality ,
bhv:Universalism .
### http://www.ontologydesignpatterns.org/ont/values/FolkValues.owl#Ethics
folk:Ethics rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty dul:satisfies ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:oneOf ( folk:Ethics
)
]
] ;
rdfs:subClassOf folk:Spirituality .