-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappearances.owl
executable file
·2648 lines (2256 loc) · 123 KB
/
appearances.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
<rdf:RDF
xmlns ="http://rdf.muninn-project.org/ontologies/appearances#"
xmlns:org="http://rdf.muninn-project.org/ontologies/appearances#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdaGr2="http://RDVocab.info/ElementsGr2/"
xmlns:muninn="http://rdf.muninn-project.org/ontologies/muninn#"
xmlns:my="http://www.cs.vu.nl/~mcaklein/onto/swrc-ext/2005/05#"
xmlns:ow="http://swrc.ontoware.org/ontology#"
xmlns:appearances="http://rdf.muninn-project.org/ontologies/appearances#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:foaf="http://xmlns.com/foaf/spec/"
xmlns:cidoc="http://www.cidoc-crm.org/rdfs/5.0.4/cidoc-crm#"
xmlns:time = "http://www.w3.org/2006/time#"
xmlns:rel="http://purl.org/vocab/relationship/"
xmlns:rnews="http://iptc.org/std/rNews/2011-10-07#"
xmlns:gnd="http://d-nb.info/gnd/"
xmlns:lode="http://linkedevents.org/ontology/"
xmlns:dbpedia="http://dbpedia.org/resource/"
xmlns:mugshots="http://rdf.muninn-project.org/ontologies/mugshots#"
xmlns:fao="http://aims.fao.org/aos/geopolitical.owl#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
xmlns:swrl="http://www.w3.org/2003/11/swrl#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:swrlb="http://www.w3.org/2003/11/swrlb#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xml:base="http://rdf.muninn-project.org/ontologies/appearances">
<owl:Ontology rdf:about="">
<dc:title>Sex, Genders, Preferences and Desires Ontology</dc:title>
<dc:description>This ontology is meant to record individual's sex, gender identities as well as their preferences, desires and relationships.</dc:description>
<rdfs:label xml:lang="en">Sex, Genders, Preferences and Desires Ontology</rdfs:label>
<rdfs:comment xml:lang="en">This ontology is meant to record individual's sex, gender identities as well as their preferences, desires and relationships.</rdfs:comment>
<owl:versionInfo rdf:datatype="http://www.w3.org/2001/XMLSchema#decimal">0.1</owl:versionInfo>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2012-11-15</dc:date>
<vs:term_status>Testing</vs:term_status>
<dc:creator rdf:resource="http://rdf.muninn-project.org/ww1/2011/11/11/Person/Warren"/>
<dc:creator>
<foaf:Person rdf:about="#adriel">
<foaf:name>Adriel Dean-Hall</foaf:name>
<foaf:firstName>Adriel</foaf:firstName>
<foaf:lastName>Dean-Hall</foaf:lastName>
</foaf:Person>
</dc:creator>
</owl:Ontology>
<owl:Class rdf:ID="Person">
<foaf:name>Person</foaf:name>
<rdfs:label xml:lang="en">Natural Person</rdfs:label>
</owl:Class>
<owl:Class rdf:ID="Observation">
<foaf:name>Observation</foaf:name>
<rdfs:label xml:lang="en">Observation</rdfs:label>
</owl:Class>
<owl:Class rdf:ID="SelfReported">
<foaf:name>Self Reported</foaf:name>
<rdfs:label xml:lang="en">Self Reported</rdfs:label>
</owl:Class>
<owl:ObjectProperty rdf:ID="hasGender">
<foaf:name>Gender</foaf:name>
<rdfs:label xml:lang="en">Has Gender</rdfs:label>
<rdfs:domain rdf:resource="#Person"/>
<rdfs:range rdf:resource="#Gender"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasSex">
<foaf:name>Sex</foaf:name>
<rdfs:label xml:lang="en">Has Sex</rdfs:label>
<rdfs:domain rdf:resource="#Person"/>
<rdfs:range rdf:resource="#Sex"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="htmlColor">
<foaf:name>htmlColor</foaf:name>
<rdfs:label xml:lang="en">htmlColor</rdfs:label>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#String"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasSexualPreference">
<foaf:name>hasSexualPreference</foaf:name>
<rdfs:label xml:lang="en">has Sexual Preference</rdfs:label>
<rdfs:domain rdf:resource="#Person"/>
<rdfs:range rdf:resource="#Sex"/>
<rdfs:range rdf:resource="#Gender"/>
<rdfs:range rdf:resource="#Appearance"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasRomanticPreference">
<foaf:name>hasRomanticPreference</foaf:name>
<rdfs:label xml:lang="en">has Romantic Preference</rdfs:label>
<rdfs:domain rdf:resource="#Person"/>
<rdfs:range rdf:resource="#Sex"/>
<rdfs:range rdf:resource="#Gender"/>
<rdfs:range rdf:resource="#Appearance"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasEntertaimentPreference">
<foaf:name>hasEntertaimentPreference</foaf:name>
<rdfs:label xml:lang="en">has Entertaiment Preference</rdfs:label>
<rdfs:domain rdf:resource="#Person"/>
<rdfs:range rdf:resource="#Sex"/>
<rdfs:range rdf:resource="#Gender"/>
<rdfs:range rdf:resource="#Appearance"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasSexualAversion">
<foaf:name>hasSexualAversion</foaf:name>
<rdfs:label xml:lang="en">has Sexual Aversion</rdfs:label>
<rdfs:domain rdf:resource="#Person"/>
<rdfs:range rdf:resource="#Sex"/>
<rdfs:range rdf:resource="#Gender"/>
<rdfs:range rdf:resource="#Appearance"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasRomanticAversion">
<foaf:name>hasRomanticAversion</foaf:name>
<rdfs:label xml:lang="en">has Romantic Aversion</rdfs:label>
<rdfs:domain rdf:resource="#Person"/>
<rdfs:range rdf:resource="#Sex"/>
<rdfs:range rdf:resource="#Gender"/>
<rdfs:range rdf:resource="#Appearance"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasEntertaimentAversion">
<foaf:name>hasEntertaimentAversion</foaf:name>
<rdfs:label xml:lang="en">has Entertaiment Aversion</rdfs:label>
<rdfs:domain rdf:resource="#Person"/>
<rdfs:range rdf:resource="#Sex"/>
<rdfs:range rdf:resource="#Gender"/>
<rdfs:range rdf:resource="#Appearance"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="hasAppearance">
<foaf:name>hasAppearance</foaf:name>
<rdfs:label xml:lang="en">has Appearance</rdfs:label>
<rdfs:domain rdf:resource="#Person"/>
<rdfs:range rdf:resource="#Appearance"/>
</owl:ObjectProperty>
<owl:Class rdf:ID="Gender">
<foaf:name>Gender</foaf:name>
<rdfs:label xml:lang="en">Gender (Generic)</rdfs:label>
</owl:Class>
<owl:Class rdf:ID="GenderStrict">
<foaf:name>Gender</foaf:name>
<rdfs:label xml:lang="en">Gender (Strict)</rdfs:label>
<rdfs:comment xml:lang="en">Strict F/M coding of Gender types, with restriction.</rdfs:comment>
<rdfs:subClassOf rdf:resource="#GenderSimple"/>
</owl:Class>
<GenderStrict rdf:about="http://rdf.muninn-project.org/ontologies/organization#GenderStrict-F">
<foaf:name>F</foaf:name>
<rdfs:label xml:lang="en">Woman</rdfs:label>
<rdfs:label xml:lang="en">Femme</rdfs:label>
<rdfs:label xml:lang="en">Frau</rdfs:label>
<owl:disjointWith rdf:resource="http://rdf.muninn-project.org/ontologies/organization#GenderStrict-M"/>
<skos:related rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#GenderSimple-F"/>
</GenderStrict>
<GenderStrict rdf:about="http://rdf.muninn-project.org/ontologies/organization#GenderStrict-M">
<foaf:name>M</foaf:name>
<rdfs:label xml:lang="en">Man</rdfs:label>
<rdfs:label xml:lang="en">Homme</rdfs:label>
<rdfs:label xml:lang="en">Mann</rdfs:label>
<owl:disjointWith rdf:resource="http://rdf.muninn-project.org/ontologies/organization#GenderStrict-F"/>
<skos:related rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#GenderSimple-M"/>
</GenderStrict>
<owl:Class rdf:ID="GenderSimple">
<foaf:name>Gender</foaf:name>
<rdfs:label xml:lang="en">SimplebGender</rdfs:label>
<rdfs:comment xml:lang="en">Simple F/M coding of Gender types.</rdfs:comment>
<rdfs:subClassOf rdf:resource="#Gender"/>
</owl:Class>
<GenderSimple rdf:about="http://rdf.muninn-project.org/ontologies/appearances#GenderSimple-F">
<foaf:name>F</foaf:name>
<rdfs:label xml:lang="en">Woman</rdfs:label>
<rdfs:label xml:lang="en">Femme</rdfs:label>
<rdfs:label xml:lang="en">Frau</rdfs:label>
</GenderSimple>
<GenderSimple rdf:about="http://rdf.muninn-project.org/ontologies/appearances#GenderSimple-M">
<foaf:name>M</foaf:name>
<rdfs:label xml:lang="en">Man</rdfs:label>
<rdfs:label xml:lang="en">Homme</rdfs:label>
<rdfs:label xml:lang="en">Mann</rdfs:label>
</GenderSimple>
<owl:Class rdf:ID="SexISO5218">
<foaf:name>Sex</foaf:name>
<rdfs:label xml:lang="en">Sex (ISO/IEC 5218)</rdfs:label>
<rdfs:comment xml:lang="en">Strict F/M coding of Gender types, with restriction.</rdfs:comment>
<rdfs:subClassOf rdf:resource="#Sex"/>
<owl:equivalentClass muninn:wikipedia_version="523615489" rdf:resource="http://dbpedia.org/resource/ISO_5218"/>
</owl:Class>
<SexISO5218 rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SexISO5218-2">
<foaf:name>2</foaf:name>
<rdfs:label xml:lang="en">Woman</rdfs:label>
<rdfs:label xml:lang="en">Femme</rdfs:label>
<rdfs:label xml:lang="en">Frau</rdfs:label>
<owl:disjointWith rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SexISO5218-1"/>
<owl:disjointWith rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SexISO5218-0"/>
<owl:disjointWith rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SexISO5218-9"/>
</SexISO5218>
<SexISO5218 rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SexISO5218-1">
<foaf:name>1</foaf:name>
<rdfs:label xml:lang="en">Man</rdfs:label>
<rdfs:label xml:lang="en">Homme</rdfs:label>
<rdfs:label xml:lang="en">Mann</rdfs:label>
<owl:disjointWith rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SexISO5218-2"/>
<owl:disjointWith rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SexISO5218-0"/>
<owl:disjointWith rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SexISO5218-9"/>
</SexISO5218>
<SexISO5218 rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SexISO5218-0">
<foaf:name>0</foaf:name>
<rdfs:label xml:lang="en">Gender Unknown</rdfs:label>
<rdfs:label xml:lang="en">Sex Inconnu</rdfs:label>
<rdfs:label xml:lang="en">Mann</rdfs:label>
<owl:disjointWith rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SexISO5218-2"/>
<owl:disjointWith rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SexISO5218-1"/>
<owl:disjointWith rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SexISO5218-9"/>
</SexISO5218>
<SexISO5218 rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SexISO5218-9">
<foaf:name>9</foaf:name>
<rdfs:label xml:lang="en">Not Available</rdfs:label>
</SexISO5218>
<owl:Class rdf:ID="Sex">
<foaf:name>Sex</foaf:name>
</owl:Class>
<owl:Class rdf:ID="SexTyping">
<foaf:name>SexGenomeTyping</foaf:name>
<rdfs:subClassOf rdf:resource="#Sex"/>
</owl:Class>
<SexTyping rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SexTypingXX">
<foaf:name>XX</foaf:name>
<rdfs:label xml:lang="en">XX</rdfs:label>
<owl:disjointWith rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SexTypingXY"/>
<owl:sameAs rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SexISO5218-2"/>
</SexTyping>
<SexTyping rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SexTypingXY">
<foaf:name>XY</foaf:name>
<rdfs:label xml:lang="en">XY</rdfs:label>
<owl:disjointWith rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SexTypingXX"/>
<owl:sameAs rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SexISO5218-1"/>
</SexTyping>
<owl:Class rdf:ID="macroEthnicity">
<foaf:name>Macro Ethnicity</foaf:name>
</owl:Class>
<owl:Class rdf:ID="Religion">
<foaf:name>Religion</foaf:name>
<owl:sameAs rdf:resource="http://rdf.muninn-project.org/ontologies/religion#Religion"/>
<owl:subClass rdf:resource="#macroEthnicity"/>
</owl:Class>
<owl:Class rdf:ID="Nationality">
<foaf:name>Nationality</foaf:name>
<owl:subClass rdf:resource="#macroEthnicity"/>
</owl:Class>
<owl:Class rdf:ID="Race">
<foaf:name>Race</foaf:name>
<owl:subClass rdf:resource="#macroEthnicity"/>
</owl:Class>
<owl:Class rdf:ID="Appearance">
<foaf:name>Appearance</foaf:name>
</owl:Class>
<!--
http://en.wikipedia.org/wiki/Asexuality
http://en.wikipedia.org/wiki/Bisexuality
http://en.wikipedia.org/wiki/Heterosexuality
http://en.wikipedia.org/wiki/Homosexuality
http://en.wikipedia.org/wiki/Fa%27afafine
http://en.wikipedia.org/wiki/Hijra_%28South_Asia%29
http://en.wikipedia.org/wiki/Xanith
-->
<EthnicityUKCensusCode rdf:about="http://rdf.muninn-project.org/ontologies/appearances#EthnicityUKCensusCodeA1">
<foaf:name>A1</foaf:name>
<rdfs:label xml:lang="en">Indian</rdfs:label>
</EthnicityUKCensusCode>
<EthnicityUKCensusCode rdf:about="http://rdf.muninn-project.org/ontologies/appearances#EthnicityUKCensusCodeA2">
<foaf:name>A2</foaf:name>
<rdfs:label xml:lang="en">Pakistani</rdfs:label>
</EthnicityUKCensusCode>
<EthnicityUKCensusCode rdf:about="http://rdf.muninn-project.org/ontologies/appearances#EthnicityUKCensusCodeA3">
<foaf:name>A3</foaf:name>
<rdfs:label xml:lang="en">Bangladeshi</rdfs:label>
</EthnicityUKCensusCode>
<EthnicityUKCensusCode rdf:about="http://rdf.muninn-project.org/ontologies/appearances#EthnicityUKCensusCodeA9">
<foaf:name>A9</foaf:name>
<rdfs:label xml:lang="en">Any other Asian ethnic background</rdfs:label>
</EthnicityUKCensusCode>
<EthnicityUKCensusCode rdf:about="http://rdf.muninn-project.org/ontologies/appearances#EthnicityUKCensusCodeB1">
<foaf:name>B1</foaf:name>
<rdfs:label xml:lang="en">Caribbean</rdfs:label>
</EthnicityUKCensusCode>
<EthnicityUKCensusCode rdf:about="http://rdf.muninn-project.org/ontologies/appearances#EthnicityUKCensusCodeB2">
<foaf:name>B2</foaf:name>
<rdfs:label xml:lang="en">African</rdfs:label>
</EthnicityUKCensusCode>
<EthnicityUKCensusCode rdf:about="http://rdf.muninn-project.org/ontologies/appearances#EthnicityUKCensusCodeB9">
<foaf:name>B9</foaf:name>
<rdfs:label xml:lang="en">Any other Black ethnic background</rdfs:label>
</EthnicityUKCensusCode>
<EthnicityUKCensusCode rdf:about="http://rdf.muninn-project.org/ontologies/appearances#EthnicityUKCensusCodeM1">
<foaf:name>M1</foaf:name>
<rdfs:label xml:lang="en">White and Black Caribbean</rdfs:label>
</EthnicityUKCensusCode>
<EthnicityUKCensusCode rdf:about="http://rdf.muninn-project.org/ontologies/appearances#EthnicityUKCensusCodeM2">
<foaf:name>M2</foaf:name>
<rdfs:label xml:lang="en">White and Black African</rdfs:label>
</EthnicityUKCensusCode>
<EthnicityUKCensusCode rdf:about="http://rdf.muninn-project.org/ontologies/appearances#EthnicityUKCensusCodeM3">
<foaf:name>M3</foaf:name>
<rdfs:label xml:lang="en">White and Asian</rdfs:label>
</EthnicityUKCensusCode>
<EthnicityUKCensusCode rdf:about="http://rdf.muninn-project.org/ontologies/appearances#EthnicityUKCensusCodeM9">
<foaf:name>M9</foaf:name>
<rdfs:label xml:lang="en">Any other Mixed ethnic background</rdfs:label>
</EthnicityUKCensusCode>
<EthnicityUKCensusCode rdf:about="http://rdf.muninn-project.org/ontologies/appearances#EthnicityUKCensusCodeO1">
<foaf:name>O1</foaf:name>
<rdfs:label xml:lang="en">Chinese</rdfs:label>
</EthnicityUKCensusCode>
<EthnicityUKCensusCode rdf:about="http://rdf.muninn-project.org/ontologies/appearances#EthnicityUKCensusCodeO9">
<foaf:name>O9</foaf:name>
<rdfs:label xml:lang="en">Any other ethnic group</rdfs:label>
</EthnicityUKCensusCode>
<EthnicityUKCensusCode rdf:about="http://rdf.muninn-project.org/ontologies/appearances#EthnicityUKCensusCodeW1">
<foaf:name>W1</foaf:name>
<rdfs:label xml:lang="en">British</rdfs:label>
</EthnicityUKCensusCode>
<EthnicityUKCensusCode rdf:about="http://rdf.muninn-project.org/ontologies/appearances#EthnicityUKCensusCodeW2">
<foaf:name>W2</foaf:name>
<rdfs:label xml:lang="en">Irish</rdfs:label>
</EthnicityUKCensusCode>
<EthnicityUKCensusCode rdf:about="http://rdf.muninn-project.org/ontologies/appearances#EthnicityUKCensusCodeW9">
<foaf:name>W9</foaf:name>
<rdfs:label xml:lang="en">Any other White ethnic background</rdfs:label>
</EthnicityUKCensusCode>
<EthnicityUKCensusCode rdf:about="http://rdf.muninn-project.org/ontologies/appearances#EthnicityUKCensusCodeNS">
<foaf:name>NS</foaf:name>
<rdfs:label xml:lang="en">Not Stated</rdfs:label>
</EthnicityUKCensusCode>
<owl:Class rdf:ID="EthnicityUKCensusCode">
<foaf:name>EthnicityUKCensusCode Census Codes</foaf:name>
<rdfs:label xml:lang="en">UK CensusCodes</rdfs:label>
<rdfs:comment xml:lang="en">S</rdfs:comment>
<rdfs:subClassOf rdf:resource="#PerceivedEthnicity"/>
<owl:equivalentClass muninn:wikipedia_version="516873922" rdf:resource="http://dbpedia.org/resource/Self_Defined_Ethnicity"/>
</owl:Class>
<!--
http://www.fbi.gov/about-us/cjis/fingerprints_biometrics/guidelines-for-preparation-of-fingerprint-cards-and-association-criminal-history-information
-->
<!-- IC COdes -->
<owl:Class rdf:ID="EthnicityUKICCode">
<foaf:name>IC Codes</foaf:name>
<rdfs:label xml:lang="en">UK IC-Codes</rdfs:label>
<rdfs:comment xml:lang="en">Simple F/M coding of Gender types.</rdfs:comment>
<rdfs:subClassOf rdf:resource="#PerceivedEthnicity"/>
<owl:equivalentClass muninn:wikipedia_version="524218658" rdf:resource="http://dbpedia.org/resource/IC_codes"/>
</owl:Class>
<EthnicityUKICCode rdf:about="http://rdf.muninn-project.org/ontologies/appearances#EthnicityUKICCodeIC0">
<foaf:name>IC0</foaf:name>
<rdfs:label xml:lang="en">Origin unknown</rdfs:label>
</EthnicityUKICCode>
<EthnicityUKICCode rdf:about="http://rdf.muninn-project.org/ontologies/appearances#EthnicityUKICCodeIC6">
<foaf:name>IC6</foaf:name>
<rdfs:label xml:lang="en">Arab person</rdfs:label>
</EthnicityUKICCode>
<EthnicityUKICCode rdf:about="http://rdf.muninn-project.org/ontologies/appearances#EthnicityUKICCodeIC5">
<foaf:name>IC5</foaf:name>
<rdfs:label xml:lang="en">Chinese, Japanese, or South-East Asian person</rdfs:label>
</EthnicityUKICCode>
<EthnicityUKICCode rdf:about="http://rdf.muninn-project.org/ontologies/appearances#EthnicityUKICCodeIC4">
<foaf:name>IC4</foaf:name>
<rdfs:label xml:lang="en">Indian, Pakistani, Nepalese, Maldivian, Sri Lankan, Bangladeshi, or any other (South) Asian person</rdfs:label>
</EthnicityUKICCode>
<EthnicityUKICCode rdf:about="http://rdf.muninn-project.org/ontologies/appearances#EthnicityUKICCodeIC3">
<foaf:name>IC3</foaf:name>
<rdfs:label xml:lang="en">African/Afro-Caribbean person</rdfs:label>
</EthnicityUKICCode>
<EthnicityUKICCode rdf:about="http://rdf.muninn-project.org/ontologies/appearances#EthnicityUKICCodeIC1">
<foaf:name>IC1</foaf:name>
<rdfs:label xml:lang="en">White person, northern European type</rdfs:label>
</EthnicityUKICCode>
<EthnicityUKICCode rdf:about="http://rdf.muninn-project.org/ontologies/appearances#EthnicityUKICCodeIC2">
<foaf:name>IC2</foaf:name>
<rdfs:label xml:lang="en">Mediterranean European/Hispanic</rdfs:label>
</EthnicityUKICCode>
<!-- Skin -->
<owl:Class rdf:ID="SkinColor">
<foaf:name>Skin Color</foaf:name>
<rdfs:label xml:lang="en">Skin Color</rdfs:label>
<rdfs:subClassOf rdf:resource="#Appearance"/>
</owl:Class>
<owl:Class rdf:ID="SkinColorSimple">
<foaf:name>Simple Skin Color</foaf:name>
<rdfs:label xml:lang="en">Simple Skin Color</rdfs:label>
<rdfs:subClassOf rdf:resource="#SkinColor"/>
</owl:Class>
<SkinColorSimple rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorSimpleAlbino">
<foaf:name>Abino</foaf:name>
<rdfs:label xml:lang="en">Simple Skin Color Albino</rdfs:label>
<htmlColor>FFFFFF</htmlColor>
<owl:rdfValue>Albino</owl:rdfValue>
<skos:equivalent rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#VonLuschan1"/>
</SkinColorSimple>
<SkinColorSimple rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorSimpleWhite">
<foaf:name>White</foaf:name>
<rdfs:label xml:lang="en">Simple Skin Color White</rdfs:label>
<htmlColor>FFFFFF</htmlColor>
<owl:rdfValue>White</owl:rdfValue>
<skos:broader rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#FitzpatrickSkinColorTypeIII"/>
<skos:broader rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#FitzpatrickSkinColorTypeII"/>
</SkinColorSimple>
<SkinColorSimple rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorSimpleBrown">
<foaf:name>Brown</foaf:name>
<rdfs:label xml:lang="en">Simple Skin Color Brown</rdfs:label>
<htmlColor>663300</htmlColor>
<owl:rdfValue>Black</owl:rdfValue>
<skos:broader rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#FitzpatrickSkinColorTypeV"/>
</SkinColorSimple>
<SkinColorSimple rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorSimpleOlive">
<foaf:name>Olive</foaf:name>
<rdfs:label xml:lang="en">Simple Skin Color Olive</rdfs:label>
<htmlColor>95945e</htmlColor>
<owl:rdfValue>Olive</owl:rdfValue>
<skos:broader rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#FitzpatrickSkinColorTypeIV"/>
</SkinColorSimple>
<SkinColorSimple rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorSimpleBlack">
<foaf:name>Black</foaf:name>
<rdfs:label xml:lang="en">Simple Skin Color Black</rdfs:label>
<htmlColor>000000</htmlColor>
<owl:rdfValue>Black</owl:rdfValue>
<skos:broader rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#FitzpatrickSkinColorTypeVI"/>
</SkinColorSimple>
<owl:Class rdf:ID="SkinColorVonLuschan">
<foaf:name>Von_Luschan_scale</foaf:name>
<rdfs:label xml:lang="en">Skin Color</rdfs:label>
<rdfs:subClassOf rdf:resource="#SkinColor"/>
<owl:equivalentClass muninn:wikipedia_version="523615489" rdf:resource="http://dbpedia.org/resource/Von_Luschan_scale"/>
<foaf:depiction rdf:resource="http://upload.wikimedia.org/wikipedia/commons/1/1e/Felix_von_Luschan_Skin_Color_Chart.JPG"/>
</owl:Class>
<SkinColorVonLuschan rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan1">
<foaf:name>1</foaf:name>
<rdfs:label xml:lang="en">Von Luschan Skin Color 1</rdfs:label>
<htmlColor>F4F2F5</htmlColor>
</SkinColorVonLuschan>
<SkinColorVonLuschan rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan2">
<foaf:name>2</foaf:name>
<rdfs:label xml:lang="en">Von Luschan Skin Color 2</rdfs:label>
<htmlColor>EEEDEB</htmlColor>
</SkinColorVonLuschan>
<SkinColorVonLuschan rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan3">
<foaf:name>3</foaf:name>
<rdfs:label xml:lang="en">Von Luschan Skin Color 3</rdfs:label>
<htmlColor>FAF9F7</htmlColor>
</SkinColorVonLuschan>
<SkinColorVonLuschan rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan4">
<foaf:name>4</foaf:name>
<rdfs:label xml:lang="en">Von Luschan Skin Color 4</rdfs:label>
<htmlColor>FDFBE6</htmlColor>
</SkinColorVonLuschan>
<SkinColorVonLuschan rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan5">
<foaf:name>5</foaf:name>
<rdfs:label xml:lang="en">Von Luschan Skin Color 5</rdfs:label>
<htmlColor>FDF6E6</htmlColor>
</SkinColorVonLuschan>
<SkinColorVonLuschan rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan6">
<foaf:name>6</foaf:name>
<rdfs:label xml:lang="en">Von Luschan Skin Color 6</rdfs:label>
<htmlColor>FEF7E5</htmlColor>
</SkinColorVonLuschan>
<SkinColorVonLuschan rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan7">
<foaf:name>7</foaf:name>
<rdfs:label xml:lang="en">Von Luschan Skin Color 7</rdfs:label>
<htmlColor>FAF0EF</htmlColor>
</SkinColorVonLuschan>
<SkinColorVonLuschan rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan8">
<foaf:name>8</foaf:name>
<rdfs:label xml:lang="en">Von Luschan Skin Color 8</rdfs:label>
<htmlColor>F3EAE5</htmlColor>
</SkinColorVonLuschan>
<SkinColorVonLuschan rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan9">
<foaf:name>9</foaf:name>
<rdfs:label xml:lang="en">Von Luschan Skin Color 9</rdfs:label>
<htmlColor>F4F1EA</htmlColor>
</SkinColorVonLuschan>
<SkinColorVonLuschan rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan10">
<foaf:name>10</foaf:name>
<rdfs:label xml:lang="en">Von Luschan Skin Color 10</rdfs:label>
<htmlColor>FBFCF4</htmlColor>
</SkinColorVonLuschan>
<SkinColorVonLuschan rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan11">
<foaf:name>11</foaf:name>
<rdfs:label xml:lang="en">Von Luschan Skin Color 11</rdfs:label>
<htmlColor>FBF7EB</htmlColor>
</SkinColorVonLuschan>
<SkinColorVonLuschan rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan12">
<foaf:name>12</foaf:name>
<rdfs:label xml:lang="en">Von Luschan Skin Color 12</rdfs:label>
<htmlColor>FEF6E3</htmlColor>
</SkinColorVonLuschan>
<SkinColorVonLuschan rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan13">
<foaf:name>13</foaf:name>
<rdfs:label xml:lang="en">Von Luschan Skin Color 13</rdfs:label>
<rdfs:comment xml:lang="en">This skin color is the same as number 14. </rdfs:comment>
<htmlColor>FFF9E1</htmlColor>
</SkinColorVonLuschan>
<SkinColorVonLuschan rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan14">
<foaf:name>14</foaf:name>
<rdfs:label xml:lang="en">Von Luschan Skin Color 14</rdfs:label>
<htmlColor>FFF9E1</htmlColor>
<rdfs:comment xml:lang="en">This skin color is the same as number 13. </rdfs:comment>
<!-- No difference from #13! -->
</SkinColorVonLuschan>
<SkinColorVonLuschan rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan15">
<foaf:name>15</foaf:name>
<rdfs:label xml:lang="en">Von Luschan Skin Color 15</rdfs:label>
<htmlColor>F1E7C3</htmlColor>
</SkinColorVonLuschan>
<SkinColorVonLuschan rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan16">
<foaf:name>16</foaf:name>
<rdfs:label xml:lang="en">Von Luschan Skin Color 16</rdfs:label>
<htmlColor>EFE2AD</htmlColor>
</SkinColorVonLuschan>
<SkinColorVonLuschan rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan17">
<foaf:name>17</foaf:name>
<rdfs:label xml:lang="en">Von Luschan Skin Color 17</rdfs:label>
<htmlColor>E0D293</htmlColor>
</SkinColorVonLuschan>
<SkinColorVonLuschan rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan18">
<foaf:name>18</foaf:name>
<rdfs:label xml:lang="en">Von Luschan Skin Color 18</rdfs:label>
<htmlColor>EFE39B</htmlColor>
</SkinColorVonLuschan>
<SkinColorVonLuschan rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan19">
<foaf:name>19</foaf:name>
<rdfs:label xml:lang="en">Von Luschan Skin Color 19</rdfs:label>
<htmlColor>E7D39E</htmlColor>
</SkinColorVonLuschan>
<SkinColorVonLuschan rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan20">
<foaf:name>20</foaf:name>
<rdfs:label xml:lang="en">Von Luschan Skin Color 20</rdfs:label>
<htmlColor>EED885</htmlColor>
</SkinColorVonLuschan>
<SkinColorVonLuschan rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan21">
<foaf:name>21</foaf:name>
<rdfs:label xml:lang="en">Von Luschan Skin Color 21</rdfs:label>
<htmlColor>E3C467</htmlColor>
</SkinColorVonLuschan>
<SkinColorVonLuschan rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan22">
<foaf:name>22</foaf:name>
<rdfs:label xml:lang="en">Von Luschan Skin Color 22</rdfs:label>
<htmlColor>E1C16A</htmlColor>
</SkinColorVonLuschan>
<SkinColorVonLuschan rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan23">
<foaf:name>23</foaf:name>
<rdfs:label xml:lang="en">Von Luschan Skin Color 23</rdfs:label>
<htmlColor>DFC17B</htmlColor>
</SkinColorVonLuschan>
<SkinColorVonLuschan rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan24">
<foaf:name>24</foaf:name>
<rdfs:label xml:lang="en">Von Luschan Skin Color 24</rdfs:label>
<htmlColor>DEBB67</htmlColor>
</SkinColorVonLuschan>
<SkinColorVonLuschan rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan25">
<foaf:name>25</foaf:name>
<rdfs:label xml:lang="en">Von Luschan Skin Color 25</rdfs:label>
<htmlColor>C7A464</htmlColor>
</SkinColorVonLuschan>
<SkinColorVonLuschan rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan26">
<foaf:name>26</foaf:name>
<rdfs:label xml:lang="en">Von Luschan Skin Color 26</rdfs:label>
<htmlColor>BC9762</htmlColor>
</SkinColorVonLuschan>
<SkinColorVonLuschan rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan27">
<foaf:name>27</foaf:name>
<rdfs:label xml:lang="en">Von Luschan Skin Color 27</rdfs:label>
<htmlColor>9C6B43</htmlColor>
</SkinColorVonLuschan>
<SkinColorVonLuschan rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan28">
<foaf:name>28</foaf:name>
<rdfs:label xml:lang="en">Von Luschan Skin Color 28</rdfs:label>
<htmlColor>8E583E</htmlColor>
</SkinColorVonLuschan>
<SkinColorVonLuschan rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan29">
<foaf:name>29</foaf:name>
<rdfs:label xml:lang="en">Von Luschan Skin Color 29</rdfs:label>
<htmlColor>7B4C2E</htmlColor>
</SkinColorVonLuschan>
<SkinColorVonLuschan rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan30">
<foaf:name>30</foaf:name>
<rdfs:label xml:lang="en">Von Luschan Skin Color 30</rdfs:label>
<htmlColor>613214</htmlColor>
</SkinColorVonLuschan>
<SkinColorVonLuschan rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan31">
<foaf:name>31</foaf:name>
<rdfs:label xml:lang="en">Von Luschan Skin Color 31</rdfs:label>
<htmlColor>672E23</htmlColor>
</SkinColorVonLuschan>
<SkinColorVonLuschan rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan32">
<foaf:name>32</foaf:name>
<rdfs:label xml:lang="en">Von Luschan Skin Color 32</rdfs:label>
<htmlColor>603121</htmlColor>
</SkinColorVonLuschan>
<SkinColorVonLuschan rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan33">
<foaf:name>33</foaf:name>
<rdfs:label xml:lang="en">Von Luschan Skin Color 33</rdfs:label>
<htmlColor>573229</htmlColor>
</SkinColorVonLuschan>
<SkinColorVonLuschan rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan34">
<foaf:name>34</foaf:name>
<rdfs:label xml:lang="en">Von Luschan Skin Color 34</rdfs:label>
<htmlColor>402015</htmlColor>
</SkinColorVonLuschan>
<SkinColorVonLuschan rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan35">
<foaf:name>35</foaf:name>
<rdfs:label xml:lang="en">Von Luschan Skin Color 35</rdfs:label>
<htmlColor>312529</htmlColor>
</SkinColorVonLuschan>
<SkinColorVonLuschan rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan36">
<foaf:name>36</foaf:name>
<rdfs:label xml:lang="en">Von Luschan Skin Color 36</rdfs:label>
<htmlColor>1B1C2E</htmlColor>
</SkinColorVonLuschan>
<owl:Class rdf:ID="SkinColorFitzpatrickType">
<foaf:name>Fitzpatrick scale</foaf:name>
<rdfs:label xml:lang="en">Fitzpatrick Scale Type</rdfs:label>
<rdfs:subClassOf rdf:resource="#FitzpatrickSkinColor"/>
<foaf:isPrimaryTopicOf rdf:resource="http://www.arpansa.gov.au/RadiationProtection/Solaria/Offline/05/07.html"/>
</owl:Class>
<owl:Class rdf:ID="KinseyScale">
<foaf:name>Kinsey Scale</foaf:name>
<rdfs:label xml:lang="en">Kinsey Scale</rdfs:label>
<foaf:isPrimaryTopicOf rdf:resource=""/>
<owl:equivalentClass muninn:wikipedia_version="533434457" rdf:resource="http://dbpedia.org/resource/Kinsey_scale" />
</owl:Class>
<KinseyScale rdf:about="http://rdf.muninn-project.org/ontologies/appearances#KinseyScale0">
<foaf:name>Exclusively heterosexual</foaf:name>
<rdfs:label xml:lang="en">Exclusively heterosexual</rdfs:label>
<rdf:value>0</rdf:value>
</KinseyScale>
<KinseyScale rdf:about="http://rdf.muninn-project.org/ontologies/appearances#KinseyScale1">
<foaf:name>Predominantly heterosexual, only incidentally homosexual</foaf:name>
<rdfs:label xml:lang="en">Predominantly heterosexual, only incidentally homosexual</rdfs:label>
<rdf:value>1</rdf:value>
</KinseyScale>
<KinseyScale rdf:about="http://rdf.muninn-project.org/ontologies/appearances#KinseyScale2">
<foaf:name>Predominantly heterosexual, but more than incidentally homosexual</foaf:name>
<rdfs:label xml:lang="en">Predominantly heterosexual, but more than incidentally homosexual</rdfs:label>
<rdf:value>2</rdf:value>
</KinseyScale>
<KinseyScale rdf:about="http://rdf.muninn-project.org/ontologies/appearances#KinseyScale3">
<foaf:name>Equally heterosexual and homosexual</foaf:name>
<rdfs:label xml:lang="en">Equally heterosexual and homosexual</rdfs:label>
<rdf:value>3</rdf:value>
</KinseyScale>
<KinseyScale rdf:about="http://rdf.muninn-project.org/ontologies/appearances#KinseyScale4">
<foaf:name>Predominantly homosexual, but more than incidentally heterosexual</foaf:name>
<rdfs:label xml:lang="en">Predominantly homosexual, but more than incidentally heterosexual</rdfs:label>
<rdf:value>4</rdf:value>
</KinseyScale>
<KinseyScale rdf:about="http://rdf.muninn-project.org/ontologies/appearances#KinseyScale5">
<foaf:name>Predominantly homosexual, only incidentally heterosexual</foaf:name>
<rdfs:label xml:lang="en">Predominantly homosexual, only incidentally heterosexual</rdfs:label>
<rdf:value>5</rdf:value>
</KinseyScale>
<KinseyScale rdf:about="http://rdf.muninn-project.org/ontologies/appearances#KinseyScale6">
<foaf:name>Exclusively homosexual</foaf:name>
<rdfs:label xml:lang="en">Exclusively homosexual</rdfs:label>
<rdf:value>6</rdf:value>
</KinseyScale>
<KinseyScale rdf:about="http://rdf.muninn-project.org/ontologies/appearances#KinseyScaleX">
<foaf:name>Non-sexual</foaf:name>
<rdfs:label xml:lang="en">Non-sexual</rdfs:label>
<rdf:value>X</rdf:value>
</KinseyScale>
<SkinColorFitzpatrickType rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorFitzpatrickTypeI">
<rdfs:label xml:lang="en">Albino</rdfs:label>
<rdfs:label xml:lang="en">White</rdfs:label>
<rdfs:label xml:lang="en">Very Fair</rdfs:label>
<rdfs:label xml:lang="en">Freckles</rdfs:label>
<foaf:name>Albino</foaf:name>
<rdf:value>I</rdf:value>
<skos:equivalent rdf:resource="http://en.wikipedia.org/wiki/Celts_(modern)"/>
<skos:narrower rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan1"/>
<skos:narrower rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan2"/>
<skos:narrower rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan3"/>
<skos:narrower rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan4"/>
<skos:narrower rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan5"/>
</SkinColorFitzpatrickType>
<SkinColorFitzpatrickType rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorFitzpatrickTypeII">
<rdfs:label xml:lang="en">White</rdfs:label>
<rdfs:label xml:lang="en">Fair</rdfs:label>
<rdfs:label xml:lang="en">Light-skinned European</rdfs:label>
<foaf:name>White</foaf:name>
<rdf:value>II</rdf:value>
<skos:narrower rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan6"/>
<skos:narrower rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan7"/>
<skos:narrower rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan8"/>
<skos:narrower rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan9"/>
<skos:narrower rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan10"/>
</SkinColorFitzpatrickType>
<SkinColorFitzpatrickType rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorFitzpatrickTypeIII">
<rdfs:label xml:lang="en">Light intermediate</rdfs:label>
<rdfs:label xml:lang="en">Dark-skinned European</rdfs:label>
<foaf:name>Beige</foaf:name>
<rdf:value>III</rdf:value>
<skos:narrower rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan11"/>
<skos:narrower rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan12"/>
<skos:narrower rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan13"/>
<skos:narrower rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan14"/>
<skos:narrower rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan15"/>
</SkinColorFitzpatrickType>
<SkinColorFitzpatrickType rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorFitzpatrickTypeIV">
<rdfs:label xml:lang="en">Dark intermediate</rdfs:label>
<rdfs:label xml:lang="en">Olive Skin</rdfs:label>
<rdfs:label xml:lang="en">Mediterranean</rdfs:label>
<rdfs:label xml:lang="en">Beige with a brown tint</rdfs:label>
<rdfs:label xml:lang="en">Mediterranean Caucasian</rdfs:label>
<foaf:name>Beige with a brown tint</foaf:name>
<skos:equivalent rdf:resource="http://en.wikipedia.org/wiki/Mediterranean_race"/>
<skos:equivalent rdf:resource="http://en.wikipedia.org/wiki/Olive_skin"/>
<rdf:value>IV</rdf:value>
<skos:narrower rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan16"/>
<skos:narrower rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan17"/>
<skos:narrower rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan18"/>
<skos:narrower rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan19"/>
<skos:narrower rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan20"/>
<skos:narrower rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan21"/>
</SkinColorFitzpatrickType>
<SkinColorFitzpatrickType rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorFitzpatrickTypeV">
<rdfs:label xml:lang="en">Dark</rdfs:label>
<rdfs:label xml:lang="en">Brown</rdfs:label>
<rdfs:label xml:lang="en">Dark brown</rdfs:label>
<foaf:name>Dark brown</foaf:name>
<skos:equivalent rdf:resource="http://en.wikipedia.org/wiki/Brown_people"/>
<rdf:value>V</rdf:value>
<skos:narrower rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan22"/>
<skos:narrower rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan23"/>
<skos:narrower rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan24"/>
<skos:narrower rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan25"/>
<skos:narrower rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan26"/>
<skos:narrower rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan27"/>
<skos:narrower rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan28"/>
</SkinColorFitzpatrickType>
<SkinColorFitzpatrickType rdf:about="http://rdf.muninn-project.org/ontologies/appearances#SkinColorFitzpatrickTypeVI">
<rdfs:label xml:lang="en">Very Dark</rdfs:label>
<rdfs:label xml:lang="en">Black</rdfs:label>
<foaf:name>Black</foaf:name>
<skos:equivalent rdf:resource="http://en.wikipedia.org/wiki/Black_people"/>
<skos:narrower rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan29"/>
<skos:narrower rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan30"/>
<skos:narrower rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan31"/>
<skos:narrower rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan32"/>
<skos:narrower rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan33"/>
<skos:narrower rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan34"/>
<skos:narrower rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan35"/>
<skos:narrower rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#SkinColorVonLuschan36"/>
<rdf:value>VI</rdf:value>
</SkinColorFitzpatrickType>
<!-- Eye Color -->
<owl:Class rdf:ID="EyeColor">
<foaf:name>Eye Color</foaf:name>
<rdfs:label xml:lang="en">Eye Color</rdfs:label>
<owl:subClassOf rdf:resource="#Appearance"/>
<owl:equivalentClass muninn:wikipedia_version="525009236" rdf:resource="http://dbpedia.org/resource/Eye_color" />
<!-- <owl:sameAs rdf:resource="Fitzpatrick_scale"/> -->
</owl:Class>
<owl:Class rdf:ID="EyeColorICCS">
<foaf:name>Iris Color Classification System</foaf:name>
<rdfs:label xml:lang="en">Iris Color Classification System</rdfs:label>
<owl:subClassOf rdf:resource="#EyeColor"/>
<rdfs:comment xml:lang="en">Iris Color Classification System</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#ConceptScheme"/>
<skos:hasTopConcept rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#EyeColorICCS1"/>
<skos:hasTopConcept rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#EyeColorICCS2"/>
<skos:hasTopConcept rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#EyeColorICCS3"/>
<skos:hasTopConcept rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#EyeColorICCS4"/>
<skos:hasTopConcept rdf:resource="http://rdf.muninn-project.org/ontologies/appearances#EyeColorICCS5"/>
<foaf:isPrimaryTopicOf rdf:resource="#seddon"/>
</owl:Class>
<!-- Blue or gray irides were classified as grade 1 or 2.
These grades were distinguished by assessing the proportion
of total iris area with brown or yellow pigment,
compared with standard photographs A and B.
A green iris was a grade 2 or 3. Similarly, these grades
depended on the extent of brown or yellow pigment
in the iris. A predominantly brown iris was graded 3,
4, or 5, depending on the intensity of the yellowbrown
pigment compared with standard photographs
C and D. -->
<EyeColorICCS rdf:about="http://rdf.muninn-project.org/ontologies/appearances#EyeColorICCS1">
<foaf:name>Blue or gray iris with brown or yellow specks</foaf:name>
<rdfs:label xml:lang="en">Blue with Brown Specks (ICCS #1)</rdfs:label>
<rdfs:label xml:lang="en">Gray with Brown Specks (ICCS #1)</rdfs:label>
<rdfs:label xml:lang="en">Blue with Yellow Specks (ICCS #1)</rdfs:label>
<rdfs:label xml:lang="en">Gray with Yellow Specks (ICCS #1)</rdfs:label>
<rdf:value>1</rdf:value>
</EyeColorICCS>
<EyeColorICCS rdf:about="http://rdf.muninn-project.org/ontologies/appearances#EyeColorICCS2">
<foaf:name>Blue, gray, or green iris with brown or yellow specks</foaf:name>
<rdfs:label xml:lang="en">Blue with Brown Specks (ICCS #2)</rdfs:label>
<rdfs:label xml:lang="en">Gray with Brown Specks (ICCS #2)</rdfs:label>
<rdfs:label xml:lang="en">Green with Brown Specks (ICCS #2)</rdfs:label>
<rdfs:label xml:lang="en">Blue with Yellow Specks (ICCS #2)</rdfs:label>
<rdfs:label xml:lang="en">Gray with Yellow Specks (ICCS #2)</rdfs:label>
<rdfs:label xml:lang="en">Green with Yellow Specks (ICCS #2)</rdfs:label>
<rdf:value>2</rdf:value>
</EyeColorICCS>
<EyeColorICCS rdf:about="http://rdf.muninn-project.org/ontologies/appearances#EyeColorICCS3">
<foaf:name>Green or light brown iris with brown or yellow specks</foaf:name>
<rdfs:label xml:lang="en">Light Brown with Brown Specks (ICCS #3)</rdfs:label>
<rdfs:label xml:lang="en">Green with Brown Specks (ICCS #3)</rdfs:label>
<rdfs:label xml:lang="en">Light Brown with Yellow Specks (ICCS #3)</rdfs:label>
<rdfs:label xml:lang="en">Green with Yellow Specks (ICCS #3)</rdfs:label>
<rdf:value>3</rdf:value>
</EyeColorICCS>
<EyeColorICCS rdf:about="http://rdf.muninn-project.org/ontologies/appearances#EyeColorICCS4">
<foaf:name>Brown</foaf:name>
<rdfs:label xml:lang="en">Brown (ICCS #4)</rdfs:label>
<rdf:value>4</rdf:value>
</EyeColorICCS>
<EyeColorICCS rdf:about="http://rdf.muninn-project.org/ontologies/appearances#EyeColorICCS5">
<foaf:name>Brown</foaf:name>
<rdfs:label xml:lang="en">Brown (ICCS #5)</rdfs:label>
<rdf:value>5</rdf:value>
</EyeColorICCS>
<owl:Class rdf:ID="EyeColorSimple">
<foaf:name>Simple Eye Color</foaf:name>
<rdfs:label xml:lang="en">Simple Eye Color Reference</rdfs:label>
<owl:subClassOf rdf:resource="#EyeColor"/>
<rdfs:comment xml:lang="en">Simple eye color reference.</rdfs:comment>
</owl:Class>
<!-- auburn, light brown, dark brown and black tints).
1 = blue, 2 = grey, 3 = green, 4 = yellow, 5 = tan and
6 = chocolate.24–26 -->
<owl:Class rdf:ID="EyeColorRiddell">
<foaf:name>Riddell Eye Color Reference</foaf:name>
<rdfs:label xml:lang="en">Riddell Eye Color Reference</rdfs:label>
<owl:subClassOf rdf:resource="#EyeColor"/>
<rdfs:comment xml:lang="en">Riddell Eye Color Reference. The Riddell standard makes use of a three part scale that marks up the main colour of the eye, the diffuse color of the eye and any colour spots within the eye.</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#ConceptScheme"/>
<foaf:isPrimaryTopicOf rdf:resource="#AHG_AHG2288"/>
</owl:Class>
<owl:DataProperty rdf:ID="RiddellGeneralColor">
<foaf:name>Riddell General Color</foaf:name>
<rdfs:label xml:lang="en">Riddell General Eye Color</rdfs:label>
<rdfs:domain rdf:resource="#EyeColorRiddell"/>
<rdfs:range rdf:resource="#RiddellColor"/>
</owl:DataProperty>
<owl:DataProperty rdf:ID="RiddellDiffuseColor">
<foaf:name>Riddell Diffuse Color</foaf:name>
<rdfs:label xml:lang="en">Riddell Diffuse Eye Color</rdfs:label>
<rdfs:domain rdf:resource="#EyeColorRiddell"/>
<rdfs:range rdf:resource="#RiddellColor"/>
</owl:DataProperty>
<owl:DataProperty rdf:ID="RiddellSpotsColor">
<foaf:name>Riddell Spots Color</foaf:name>
<rdfs:label xml:lang="en">Riddell Spots Eye Color</rdfs:label>
<rdfs:domain rdf:resource="#EyeColorRiddell"/>
<rdfs:range rdf:resource="#RiddellColor"/>
</owl:DataProperty>
<owl:Class rdf:ID="RiddellColor">
<foaf:name>RiddellColorScheme</foaf:name>
<rdfs:label xml:lang="en">Riddell Color Reference</rdfs:label>
<rdfs:comment xml:lang="en">Riddell Color Reference.</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#ConceptScheme"/>