-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocbias-schema.ttl
4103 lines (2966 loc) · 256 KB
/
docbias-schema.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 : <https://nobias-project.eu/nobias/> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix obo: <http://purl.obolibrary.org/obo/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix swrla: <http://swrl.stanford.edu/ontologies/3.3/swrla.owl#> .
@prefix terms: <http://purl.org/dc/terms/> .
@prefix schema: <http://schema.org/> .
@prefix opla-sd: <http://ontologydesignpatterns.org/opla-sd#> .
@prefix protege: <http://protege.stanford.edu/plugins/owl/protege#> .
@prefix oboInOwl: <http://www.geneontology.org/formats/oboInOwl#> .
@prefix resource: <http://semanticscience.org/resource/> .
@prefix cpannotationschema: <http://www.ontologydesignpatterns.org/schemas/cpannotationschema.owl#> .
@prefix AnnotationVocabulary: <http://www.omg.org/spec/EDMC-FIBO/FND/Utilities/AnnotationVocabulary/> .
@base <https://nobias-project.eu/nobias/> .
<https://nobias-project.eu/nobias/> rdf:type owl:Ontology ;
owl:imports <http://www.w3.org/2004/02/skos/core> ;
dc:contributor "Maria-Esther Vidal" ,
"Mayra Russo" ,
"Sammy Sawischa" ,
"Yukti Sharma" ;
dc:creator "Mayra Russo"@en ,
"NoBIAS project" ;
dc:description "Doc-Bias, an ontology to support the documentation of bias in data"@en ;
dc:title "Doc-Bias Ontology"@en ;
terms:created "2022-06-10" ;
terms:language "en" ;
terms:license <http://creativecommons.org/licenses/by/4.0/> ,
"GNU General Public License v3.0"@en ;
terms:publisher "TIB – Leibniz Information Centre for Science and Technology, Hannover, Germany" ;
owl:versionInfo "0.3"@en ,
"2023-05-24"^^xsd:string .
#################################################################
# Annotation properties
#################################################################
### http://ontologydesignpatterns.org/opla-sd#entityPosition
opla-sd:entityPosition rdf:type owl:AnnotationProperty .
### http://ontologydesignpatterns.org/opla-sd#entityPositionX
opla-sd:entityPositionX rdf:type owl:AnnotationProperty .
### http://ontologydesignpatterns.org/opla-sd#entityPositionY
opla-sd:entityPositionY rdf:type owl:AnnotationProperty .
### http://purl.obolibrary.org/obo/IAO_0000115
obo:IAO_0000115 rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/citation
dc:citation rdf:type owl:AnnotationProperty ;
dc:identifier "citation"@en .
### http://purl.org/dc/elements/1.1/contributor
dc:contributor rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/creator
dc:creator rdf:type owl:AnnotationProperty ;
rdfs:comment "Mayra Russo"@en .
### http://purl.org/dc/elements/1.1/description
dc:description rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/identifier
dc:identifier rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/source
dc:source rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/title
dc:title rdf:type owl:AnnotationProperty ;
rdfs:label "dc:title"@en ;
rdfs:range rdfs:Literal .
### http://purl.org/dc/terms/bibliographicCitation
terms:bibliographicCitation rdf:type owl:AnnotationProperty ;
rdfs:range rdfs:Literal .
### http://purl.org/dc/terms/created
terms:created rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/language
terms:language rdf:type owl:AnnotationProperty ;
rdfs:range terms:LinguisticSystem .
### http://purl.org/dc/terms/license
terms:license rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/publisher
terms:publisher rdf:type owl:AnnotationProperty ;
rdfs:range foaf:Agent .
### http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleEnabled
swrla:isRuleEnabled rdf:type owl:AnnotationProperty .
### http://www.geneontology.org/formats/oboInOwl#hasDbXref
oboInOwl:hasDbXref rdf:type owl:AnnotationProperty .
### http://www.geneontology.org/formats/oboInOwl#hasExactSynonym
oboInOwl:hasExactSynonym rdf:type owl:AnnotationProperty .
### http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym
oboInOwl:hasRelatedSynonym rdf:type owl:AnnotationProperty .
### http://www.ontologydesignpatterns.org/schemas/cpannotationschema.owl#coversRequirements
cpannotationschema:coversRequirements rdf:type owl:AnnotationProperty ;
rdfs:comment "This annotation property is used for exemplifying possible requirements the content pattern provides a solution for. Requirements are expressed as natural language competency questions." .
### http://www.ontologydesignpatterns.org/schemas/cpannotationschema.owl#extractedFrom
cpannotationschema:extractedFrom rdf:type owl:AnnotationProperty ;
rdfs:comment "This annotation property should be assigned with a URI, which points to the possible reference ontology which the annotated pattern was extracted from (i.e. the reference ontology that the ontology elements have been deeply or partially cloned by). The range is not explicit in the definition of the annotation property because it would turn the ontology to OWL Full. E.g. The participation pattern is extracted from the Dolce Ultra Lite ontology, hence the value for this annotation property is http://www.ontologydesignpatterns.org/ont/dul/DUL.owl" .
### http://www.ontologydesignpatterns.org/schemas/cpannotationschema.owl#hasComponent
cpannotationschema:hasComponent rdf:type owl:AnnotationProperty ;
rdfs:comment "This annotation property is useful for content ontology design patterns. Its value is a URI, which refers to another content ontology design pattern which is a component of the annotated one." .
### http://www.ontologydesignpatterns.org/schemas/cpannotationschema.owl#hasConsequences
cpannotationschema:hasConsequences rdf:type owl:AnnotationProperty ;
rdfs:comment "This annotation property is used for briefly describing the benefits and/or possible trade-offs when using the CP." .
### http://www.ontologydesignpatterns.org/schemas/cpannotationschema.owl#hasIntent
cpannotationschema:hasIntent rdf:type owl:AnnotationProperty ;
rdfs:comment "This annotation property is used in order to describe the intent of the content pattern." .
### http://www.ontologydesignpatterns.org/schemas/cpannotationschema.owl#hasUnitTest
cpannotationschema:hasUnitTest rdf:type owl:AnnotationProperty ;
rdfs:comment "This property can be used to annotate a unit test (e.g. in the form of a SPARQL query) to be launched to evaluate an ontology against a requirement-based task." .
### http://www.ontologydesignpatterns.org/schemas/cpannotationschema.owl#isCloneOf
cpannotationschema:isCloneOf rdf:type owl:AnnotationProperty ;
rdfs:comment "This annotation property is used for referring a cloned ontology entity to its cloning source." .
### http://www.ontologydesignpatterns.org/schemas/cpannotationschema.owl#isSpecializationOf
cpannotationschema:isSpecializationOf rdf:type owl:AnnotationProperty ;
rdfs:comment "This annotation property is useful for content ontology design patterns and its elements. Its value is a URI, which refers either to a content ontology design pattern that is specialized by the annotated one, or to an ontology element that is specialized by the annotated one." .
### http://www.ontologydesignpatterns.org/schemas/cpannotationschema.owl#reengineeredFrom
cpannotationschema:reengineeredFrom rdf:type owl:AnnotationProperty ;
rdfs:comment "This annotation property should be assigned with a URI, which points to the concept schema, page, or anything else from which the annotated pattern was reengineered. If the source does not have any URI e.g., a printed book, this property value should provide information as precise as possible in order to identify the source. This property is alternative to the extractedFrom property because it is used when the pattern come from a concept schema which is not an owl ontology. For example content ontology design patterns, which are reengineered from data model patterns, rdf schemas, etc. should be annotatd with this property. E.g. The basicpersonalfoaf pattern is extracted from the rdf FOAF specification, hence the value for this annotation property is http://xmlns.com/foaf/spec/20071002.rdf" .
### http://www.ontologydesignpatterns.org/schemas/cpannotationschema.owl#relatedCPs
cpannotationschema:relatedCPs rdf:type owl:AnnotationProperty ;
rdfs:comment "This annotation property can be used to indicate other CPs (if any) that specialize, generalize, inlcude, or are components of the CP. Furthermore, this field may indicate other CPs that are typically used in conjunction with the described one. Important similarities and differences with other patterns can be also described here." .
### http://www.ontologydesignpatterns.org/schemas/cpannotationschema.owl#scenarios
cpannotationschema:scenarios rdf:type owl:AnnotationProperty ;
rdfs:comment "This annotation property is used for describing examples of instantiation of the Content OP. For example, for the part-of Content OP (which represents part-whole relations) a possible scenario is the sentence: \"the brain is part of the human body\". Scenarios are expressed as natural language sentences." .
### http://www.w3.org/1999/02/22-rdf-syntax-ns#type
rdf:type rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#comment
skos:comment rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#definition
skos:definition rdf:type owl:AnnotationProperty .
### http://www.w3.org/ns/prov#definition
prov:definition rdf:type owl:AnnotationProperty .
### https://nobias-project.eu/nobias/formalization
:formalization rdf:type owl:AnnotationProperty .
#################################################################
# Object Properties
#################################################################
### http://purl.org/dc/terms/Creator
terms:Creator rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain <http://www.w3.org/ns/dcat#Dataset> ;
rdfs:range foaf:Person ;
rdfs:comment "defines creator of the Dataset" ;
rdfs:label "creator"@en .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#communicates_with_language
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#communicates_with_language> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:range <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Language> ;
rdfs:label "communicates_with_language"@en .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#ethnically_associates
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#ethnically_associates> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdf:type owl:FunctionalProperty ;
rdfs:domain <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Ethnic_Identity> .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#ethnically_self_identifies_as
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#ethnically_self_identifies_as> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Ethnic_Identity> ;
rdfs:range <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Ethnic_Self_Identity> .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#has_biological_sex
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#has_biological_sex> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdf:type owl:FunctionalProperty ;
rdfs:domain <http://www.w3.org/2000/10/swap/pim/contact#Person> ;
rdfs:range <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Biological_Sex> ;
rdfs:comment "association of gender identity concept with a biological gender" .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#has_ethnic_association
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#has_ethnic_association> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Ethnic_Identity> .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#has_ethnic_identification
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#has_ethnic_identification> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdf:type owl:AsymmetricProperty ;
rdfs:domain <http://www.w3.org/2000/10/swap/pim/contact#Person> ;
rdfs:range <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Ethnic_Identification> .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#has_ethnic_identity
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#has_ethnic_identity> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdf:type owl:AsymmetricProperty ;
rdfs:domain <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Ethnic_Identification> ;
rdfs:range <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Ethnic_Identity> .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#has_ethnic_origin
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#has_ethnic_origin> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Ethnic_Identification> ;
rdfs:range <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Ethnic_Origin> .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#has_ethnic_self-identity
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#has_ethnic_self-identity> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Ethnic_Identity> ;
rdfs:range <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Ethnic_Self_Identity> .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#has_religious_adherance
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#has_religious_adherance> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdf:type owl:FunctionalProperty ;
rdfs:domain <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Religious_Identity> ;
rdfs:range <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Religious_Adherance> .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#has_religious_identifcation
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#has_religious_identifcation> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Ethnic_Identification> ;
rdfs:range <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Religious_Identity> .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#has_sexual_orientation_of
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#has_sexual_orientation_of> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:range <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Sexual_Orientation> .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#has_skin_color
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#has_skin_color> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdf:type owl:FunctionalProperty ;
rdfs:domain <http://www.w3.org/2000/10/swap/pim/contact#Person> ;
rdfs:range <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Skin_Color> ;
rdfs:label "has_skin_color"@en .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#identifies_with_religion
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#identifies_with_religion> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Religious_Identity> ;
rdfs:range <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Religion> ;
rdfs:label "identifies_with_religion"@en .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#is_of_ethnic_origin
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#is_of_ethnic_origin> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Ethnic_Identification> ;
rdfs:range <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Ethnic_Origin> ;
rdfs:label "is_of_ethnic_origin"@en .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#is_of_the_racial_background
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#is_of_the_racial_background> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain <http://www.w3.org/2000/10/swap/pim/contact#Person> ;
rdfs:range <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Race> ;
rdfs:label "is_of_the_racial_background"@en .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#self_identifies_gender_as
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#self_identifies_gender_as> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain <http://www.w3.org/2000/10/swap/pim/contact#Person> ;
rdfs:range <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Gender_Self-Identification> ;
rdfs:label "self_identifies_gender_as"@en .
### http://www.w3.org/2004/02/skos/core#hasTopConcept
skos:hasTopConcept rdfs:subPropertyOf owl:topObjectProperty .
### http://www.w3.org/2004/02/skos/core#inScheme
skos:inScheme rdfs:subPropertyOf owl:topObjectProperty .
### http://www.w3.org/2004/02/skos/core#member
skos:member rdfs:subPropertyOf owl:topObjectProperty .
### http://www.w3.org/2004/02/skos/core#memberList
skos:memberList rdfs:subPropertyOf owl:topObjectProperty .
### http://www.w3.org/2004/02/skos/core#semanticRelation
skos:semanticRelation rdfs:subPropertyOf owl:topObjectProperty .
### http://www.w3.org/ns/dcat#theme
<http://www.w3.org/ns/dcat#theme> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain <http://www.w3.org/ns/dcat#Dataset> ;
rdfs:range skos:Concept ;
rdfs:comment "A main category of the resource. A resource can have multiple themes."@en ;
rdfs:label "theme"@en .
### http://www.w3.org/ns/dqv#computedOn
<http://www.w3.org/ns/dqv#computedOn> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain <http://www.w3.org/ns/dqv#QualityMeasurement> ;
rdfs:range <http://www.w3.org/ns/dcat#Dataset> ;
rdfs:comment "defines measure of metric which is computed on dataset" ;
rdfs:label "computedOn"@en .
### http://www.w3.org/ns/dqv#hasQualityAnnotation
<http://www.w3.org/ns/dqv#hasQualityAnnotation> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain <http://www.w3.org/ns/dcat#Dataset> ;
rdfs:range <http://www.w3.org/ns/dqv#QualityAnnotation> ;
rdfs:comment "defines annotations related to quality that Dataset has" ;
rdfs:label "hasQualityAnnotation"@en .
### http://www.w3.org/ns/dqv#inCategory
<http://www.w3.org/ns/dqv#inCategory> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain <http://www.w3.org/ns/dqv#Dimension> ;
rdfs:range <http://www.w3.org/ns/dqv#Category> ;
rdfs:comment "defines Category that given Dimension belongs to" ;
rdfs:label "inCategory"@en .
### http://www.w3.org/ns/dqv#inDimension
<http://www.w3.org/ns/dqv#inDimension> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain <http://www.w3.org/ns/dqv#Metric> ;
rdfs:range <http://www.w3.org/ns/dqv#Dimension> ;
rdfs:comment "defines Dimension who has given Metric" ;
rdfs:label "inDemension"@en .
### http://www.w3.org/ns/dqv#isMeasurementOf
<http://www.w3.org/ns/dqv#isMeasurementOf> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain <http://www.w3.org/ns/dqv#QualityMeasurement> ;
rdfs:range <http://www.w3.org/ns/dqv#Metric> ;
rdfs:comment "defines metric which is measured"@en ;
rdfs:label "isMeasurementOf"@en .
### http://www.w3.org/ns/mls#achieves
<http://www.w3.org/ns/mls#achieves> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:isDefinedBy "http://ml-schema.github.io/documentation/ML%20Schema.html"@en ;
rdfs:label "achieves"@en .
### http://www.w3.org/ns/mls#definedOn
<http://www.w3.org/ns/mls#definedOn> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:isDefinedBy "http://ml-schema.github.io/documentation/ML%20Schema.html"@en ;
rdfs:label "definedOn"@en .
### http://www.w3.org/ns/mls#defines
<http://www.w3.org/ns/mls#defines> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:isDefinedBy "http://ml-schema.github.io/documentation/ML%20Schema.html"@en ;
rdfs:label "defines"@en .
### http://www.w3.org/ns/mls#executes
<http://www.w3.org/ns/mls#executes> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain <http://www.w3.org/ns/mls#Run> ;
rdfs:isDefinedBy "http://ml-schema.github.io/documentation/ML%20Schema.html"@en ;
rdfs:label "executes"@en .
### http://www.w3.org/ns/mls#hasInput
<http://www.w3.org/ns/mls#hasInput> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain <http://www.w3.org/ns/mls#Run> ;
rdfs:range <http://www.w3.org/ns/dcat#Dataset> ;
rdfs:isDefinedBy "http://ml-schema.github.io/documentation/ML%20Schema.html"@en ;
rdfs:label "hasInput"@en .
### http://www.w3.org/ns/mls#hasPart
<http://www.w3.org/ns/mls#hasPart> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:range <http://www.w3.org/ns/mls#EvaluationProcedure> ;
rdfs:isDefinedBy "http://ml-schema.github.io/documentation/ML%20Schema.html"@en ;
rdfs:label "hasPart"@en .
### http://www.w3.org/ns/mls#hasQuality
<http://www.w3.org/ns/mls#hasQuality> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:label "hasQuality"@en .
### http://www.w3.org/ns/mls#implements
<http://www.w3.org/ns/mls#implements> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:range <http://www.w3.org/ns/mls#Algorithm> ;
rdfs:isDefinedBy "http://ml-schema.github.io/documentation/ML%20Schema.html"@en ;
rdfs:label "implements"@en .
### http://www.w3.org/ns/mls#realizes
<http://www.w3.org/ns/mls#realizes> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:isDefinedBy "http://ml-schema.github.io/documentation/ML%20Schema.html"@en ;
rdfs:label "realizes"@en .
### http://www.w3.org/ns/mls#specifiedBy
<http://www.w3.org/ns/mls#specifiedBy> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:comment "A relation between an entity and the information content entity that specifies it."@en ;
rdfs:isDefinedBy "http://ml-schema.github.io/documentation/ML%20Schema.html#d4e227"@en ;
rdfs:label "specifiedBy"@en .
### http://www.w3.org/ns/odrl/2/target
<http://www.w3.org/ns/odrl/2/target> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain <http://www.w3.org/ns/dqv#QualityPolicy> ;
rdfs:range <http://www.w3.org/ns/dcat#Dataset> ;
rdfs:comment "defines dataset for which a quality policy is applicable for" ;
rdfs:label "target"@en .
### http://www.w3.org/ns/prov#wasAttributedTo
prov:wasAttributedTo rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain :BiasMeasure ;
rdfs:range <http://xmlns.com/foaf/0.1/#term_Document> ;
rdfs:comment "attributing provenance of Bias to a scholarly document."@en ;
rdfs:label "wasAttributedTo"@en .
### https://nobias-project.eu/nobias/aligns
:aligns rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
owl:inverseOf :isAlignedWith ;
rdfs:domain :Harm ;
rdfs:range :Bias ;
rdfs:label "aligns"@en .
### https://nobias-project.eu/nobias/associatedTo
:associatedTo rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
owl:inverseOf :composedOf ;
rdfs:domain :DemographicDimension ;
rdfs:range <http://www.w3.org/ns/dcat#Dataset> ;
rdfs:label "associatedTo"@en .
### https://nobias-project.eu/nobias/associates
:associates rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
owl:inverseOf :isAssociatedTo ;
rdfs:domain :Application ;
rdfs:range :Bias ;
rdfs:label "associates"@en .
### https://nobias-project.eu/nobias/composedOf
:composedOf rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain <http://www.w3.org/ns/dcat#Dataset> ;
rdfs:range :DemographicDimension ;
rdfs:label "composedOf"@en .
### https://nobias-project.eu/nobias/evaluatesFeature
:evaluatesFeature rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain :BiasEvaluation ;
rdfs:range <http://www.w3.org/ns/mls#Feature> ;
rdfs:label "evaluatesFeature"@en .
### https://nobias-project.eu/nobias/evaluatesForTask
:evaluatesForTask rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain :BiasEvaluation ;
rdfs:range <http://www.w3.org/ns/mls#Task> ;
rdfs:label "evaluatesForTask"@en .
### https://nobias-project.eu/nobias/evaluatesInDataset
:evaluatesInDataset rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain :BiasEvaluation ;
rdfs:range <http://www.w3.org/ns/mls#Dataset> ;
rdfs:label "evaluatesInDataset"@en .
### https://nobias-project.eu/nobias/evaluatesWithMeasure
:evaluatesWithMeasure rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain :BiasEvaluation ;
rdfs:range :BiasMeasure ;
rdfs:label "evaluatesWithMeasure"@en .
### https://nobias-project.eu/nobias/hasBiasMeasure
:hasBiasMeasure rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
owl:inverseOf :measures ;
rdfs:domain :Bias ;
rdfs:range :BiasMeasure ;
rdfs:label "hasBiasMeasure"@en .
### https://nobias-project.eu/nobias/hasDataset
:hasDataset rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:range <http://www.w3.org/ns/dcat#Dataset> ;
rdfs:label "hasDataset"@en .
### https://nobias-project.eu/nobias/hasDocumentationType
:hasDocumentationType rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain <http://www.w3.org/ns/mls#Dataset> ,
:BiasEvaluation ,
<https://www.openriskmanual.org/ns/doam#Model_Components> ;
rdfs:range :DocumentationType ;
rdfs:label "hasDocumentationType"@en .
### https://nobias-project.eu/nobias/hasModelComponent
:hasModelComponent rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain <http://www.w3.org/ns/mls#Model> ;
rdfs:range <https://www.openriskmanual.org/ns/doam#Model_Components> ;
rdfs:label "hasModelComponent"@en .
### https://nobias-project.eu/nobias/hasOutput
:hasOutput rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain <http://www.w3.org/ns/mls#Run> ;
rdfs:range <http://www.w3.org/ns/mls#Model> ,
<http://www.w3.org/ns/mls#ModelEvaluation> ;
rdfs:label "hasOutput"@en .
### https://nobias-project.eu/nobias/isAlignedWith
:isAlignedWith rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain :Bias ;
rdfs:range :Harm ;
rdfs:label "isAlignedWith"@en .
### https://nobias-project.eu/nobias/isAssociatedTo
:isAssociatedTo rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain :Bias ;
rdfs:range :Application ;
rdfs:label "isAssociatedTo"@en .
### https://nobias-project.eu/nobias/isPartOf
:isPartOf rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:label "isPartOf"@en .
### https://nobias-project.eu/nobias/measures
:measures rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain :BiasMeasure ;
rdfs:range :Bias ;
rdfs:label "measures"@en .
### https://nobias-project.eu/nobias/preparesData
:preparesData rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain :Pre-processing ;
rdfs:range <http://www.w3.org/ns/dcat#Dataset> ;
rdfs:comment "defines files that are used in preparing the Data for training to be used by Model" ;
rdfs:label "preparesData"@en .
#################################################################
# Data properties
#################################################################
### http://purl.org/dc/terms/Issued
terms:Issued rdf:type owl:DatatypeProperty ;
rdfs:domain <http://www.w3.org/ns/dcat#Dataset> ;
rdfs:range rdfs:Literal ;
rdfs:comment "defines date on which Dataset is published" .
### http://purl.org/dc/terms/description
terms:description rdf:type owl:DatatypeProperty ;
rdfs:domain <http://www.w3.org/ns/dcat#Dataset> ;
rdfs:range rdfs:Literal ;
rdfs:comment "gives description of dataset" .
### http://purl.org/dc/terms/modified
terms:modified rdf:type owl:DatatypeProperty ;
rdfs:domain <http://www.w3.org/ns/dcat#Dataset> ;
rdfs:range rdfs:Literal ;
rdfs:comment "defines date on which Dataset is modified" .
### http://purl.org/dc/terms/title
terms:title rdf:type owl:DatatypeProperty ;
rdfs:domain <http://www.w3.org/ns/dcat#Dataset> ;
rdfs:range rdfs:Literal ;
rdfs:comment "defines title of the Dataset" .
### http://www.w3.org/ns/dcat#Keyword
<http://www.w3.org/ns/dcat#Keyword> rdf:type owl:DatatypeProperty ;
rdfs:domain <http://www.w3.org/ns/dcat#Dataset> ;
rdfs:range rdfs:Literal ;
rdfs:comment "defines Keywords describing the Dataset" .
### http://www.w3.org/ns/dqv#ExpectedDatatype
<http://www.w3.org/ns/dqv#ExpectedDatatype> rdf:type owl:DatatypeProperty ;
rdfs:domain <http://www.w3.org/ns/dqv#Metric> ;
rdfs:range rdfs:Literal ;
rdfs:comment "defines expected datatype of metric" .
### http://www.w3.org/ns/dqv#value
<http://www.w3.org/ns/dqv#value> rdf:type owl:DatatypeProperty ;
rdfs:domain <http://www.w3.org/ns/dqv#QualityMeasurement> ;
rdfs:range rdfs:Literal ;
rdfs:comment "defines value of the metric measured" ;
rdfs:label "qualityValue"@en .
### https://nobias-project.eu/nobias/age
:age rdf:type owl:DatatypeProperty ;
rdfs:domain <http://www.w3.org/ns/mls#Feature> ;
rdfs:range xsd:int ;
rdfs:label "age"@en .
### https://nobias-project.eu/nobias/biasClassification
:biasClassification rdf:type owl:DatatypeProperty ;
rdfs:domain :BiasEvaluation ;
rdfs:range rdfs:Literal ;
rdfs:label "biasClassification"@en .
### https://nobias-project.eu/nobias/biasMeasureID
:biasMeasureID rdf:type owl:DatatypeProperty ;
rdfs:domain :BiasMeasure ;
rdfs:range rdfs:Literal ;
rdfs:label "biasMeasureID"@en .
### https://nobias-project.eu/nobias/biasScore
:biasScore rdf:type owl:DatatypeProperty ;
rdfs:domain :BiasEvaluation ;
rdfs:range rdfs:Literal ;
rdfs:comment "Represents the bias score calculated with bias detection method" ;
rdfs:label "biasScore"@en .
### https://nobias-project.eu/nobias/biasThreshold
:biasThreshold rdf:type owl:DatatypeProperty ;
rdfs:domain :BiasEvaluation ;
rdfs:range xsd:int ;
rdfs:label "biasThreshold"@en .
### https://nobias-project.eu/nobias/datasetName
:datasetName rdf:type owl:DatatypeProperty ;
rdfs:domain <http://www.w3.org/ns/dcat#Dataset> ;
rdfs:range xsd:string ;
dc:creator "russo"^^xsd:string ;
rdfs:label "datasetName"@en .
### https://nobias-project.eu/nobias/evaluationID
:evaluationID rdf:type owl:DatatypeProperty ;
rdfs:domain :BiasEvaluation ;
rdfs:range rdfs:Literal ;
rdfs:label "evaluationID"@en .
### https://nobias-project.eu/nobias/featureSubGroup
:featureSubGroup rdf:type owl:DatatypeProperty ;
rdfs:domain :BiasEvaluation ;
rdfs:range rdfs:Literal ;
rdfs:label "featureSubGroup"@en .
### https://nobias-project.eu/nobias/hasContentType
:hasContentType rdf:type owl:DatatypeProperty ;
rdfs:domain <http://www.w3.org/ns/dcat#Dataset> ;
rdfs:range rdfs:Literal ;
rdfs:label "hasContentType"@en .
### https://nobias-project.eu/nobias/hasMeasureValue
:hasMeasureValue rdf:type owl:DatatypeProperty ;
rdfs:domain <http://www.w3.org/ns/mls#EvaluationMeasure> ;
rdfs:range xsd:float ;
rdfs:comment "hssMeasureValue"@en .
### https://nobias-project.eu/nobias/hasValue
:hasValue rdf:type owl:DatatypeProperty ;
rdfs:domain <http://www.w3.org/ns/mls#EvaluationMeasure> ;
rdfs:range xsd:decimal ;
rdfs:label "hasValue"@en .
### https://nobias-project.eu/nobias/isAvailable
:isAvailable rdf:type owl:DatatypeProperty ;
rdfs:domain <http://www.w3.org/ns/dcat#Dataset> ;
rdfs:range xsd:boolean ;
rdfs:comment "defines whether dataset is publicly available" .
### https://nobias-project.eu/nobias/language
:language rdf:type owl:DatatypeProperty ;
rdfs:domain <http://www.w3.org/ns/dcat#Dataset> ;
rdfs:range rdfs:Literal .
### https://nobias-project.eu/nobias/modelName
:modelName rdf:type owl:DatatypeProperty ;
rdfs:domain <http://www.w3.org/ns/mls#Model> ;
rdfs:range xsd:string ;
dc:creator "russo"^^xsd:string ;
rdfs:label "modelName"@en .
### https://nobias-project.eu/nobias/periodOftime
:periodOftime rdf:type owl:DatatypeProperty ;
rdfs:domain <http://www.w3.org/ns/dcat#Dataset> ;
rdfs:range rdfs:Literal ;
rdfs:label <https://nobias-project.eu/periodOfTime> ;
rdfs:seeAlso "http://purl.org/dc/terms/PeriodOfTime"@en .
### https://nobias-project.eu/nobias/privFeature
:privFeature rdf:type owl:DatatypeProperty ;
rdfs:domain :BiasEvaluation ;
rdfs:range rdfs:Literal ;
rdfs:comment "sub-group in feature assessed is considered to be privileged when in comparison with another sub-group."@en ;
rdfs:label "privFeature"@en .
### https://nobias-project.eu/nobias/specificationDescription
:specificationDescription rdf:type owl:DatatypeProperty ;
rdfs:domain <http://www.w3.org/ns/mls#EvaluationProcedure> ;
rdfs:range xsd:string ;
rdfs:comment "specificationDescription"@en .
### https://nobias-project.eu/nobias/spontaneity
:spontaneity rdf:type owl:DatatypeProperty ;
rdfs:domain <http://www.w3.org/ns/dcat#Dataset> ;
rdfs:range xsd:boolean ;
rdfs:comment "defines whether dataset was spontaneously collected from a Social Media Platform or computer-generated"@en ;
rdfs:label "spontaneity"@en .
### https://nobias-project.eu/nobias/underPrivFeature
:underPrivFeature rdf:type owl:DatatypeProperty ;
rdfs:domain :BiasEvaluation ;
rdfs:range rdfs:Literal ;
rdfs:comment "sub-group in feature assessed is considered to be underprivileged when in comparison with another sub-group."@en ;
rdfs:label "underPrivFeature"@en .
### https://nobias-project.eu/nobias/valueCount
:valueCount rdf:type owl:DatatypeProperty ;
rdfs:domain :BiasEvaluation ;
rdfs:range xsd:int ;
rdfs:label "valueCount"@en .
#################################################################
# Classes
#################################################################
### http://aims.fao.org/aos/geopolitical.owl#economic_region
<http://aims.fao.org/aos/geopolitical.owl#economic_region> rdf:type owl:Class ;
rdfs:subClassOf <http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing> .
### http://aims.fao.org/aos/geopolitical.owl#geographical_region
<http://aims.fao.org/aos/geopolitical.owl#geographical_region> rdf:type owl:Class ;
rdfs:subClassOf <http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing> .
### http://aims.fao.org/aos/geopolitical.owl#territory
<http://aims.fao.org/aos/geopolitical.owl#territory> rdf:type owl:Class ;
rdfs:subClassOf <http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing> .
### http://purl.obolibrary.org/obo/GSSO_005478
obo:GSSO_005478 rdf:type owl:Class ;
rdfs:subClassOf :DemographicDimension ;
rdfs:comment "An economic and sociological combined total measure of a person's work experience and of an individual's or family's economic and social position in relation to others, based on household income, earners' education, and occupation are examined, as well as combined income, whereas for an individual's SES only their own attributes are assessed. However, SES is more commonly used to depict an economic difference in society as a whole."@en ;
rdfs:label "SocioEconomicStatus"@en .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#Adventism
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#Adventism> rdf:type owl:Class ;
rdfs:subClassOf <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Christianity> .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#African_American
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#African_American> rdf:type owl:Class ;
rdfs:subClassOf <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Race> .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#Ahmadiyya
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#Ahmadiyya> rdf:type owl:Class ;
rdfs:subClassOf <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Islam> .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#Alaskan_Native
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#Alaskan_Native> rdf:type owl:Class ;
rdfs:subClassOf <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Race> ;
rdfs:comment "\"A person having origins in any of the original peoples of North and South America (including Central America), and who maintains tribal affiliation or community attachment.\" OMB Directive 15" .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#Algerian
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#Algerian> rdf:type owl:Class ;
rdfs:subClassOf <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Ethnic_Origin> .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#Algerian_Identity
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#Algerian_Identity> rdf:type owl:Class ;
rdfs:subClassOf <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Ethnic_Self_Identity> ;
skos:prefLabel "Algerian" .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#American_Indian
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#American_Indian> rdf:type owl:Class ;
rdfs:subClassOf <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Race> ;
rdfs:comment "\"A person having origins in any of the original peoples of North and South America (including Central America), and who maintains tribal affiliation or community attachment.\" OMB Directive 15" .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#American_Sign_Language
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#American_Sign_Language> rdf:type owl:Class ;
rdfs:subClassOf <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Sign_Language> .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#Arabic
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#Arabic> rdf:type owl:Class ;
rdfs:subClassOf <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Language> .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#Asexual
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#Asexual> rdf:type owl:Class ;
rdfs:subClassOf <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Sexual_Orientation> ;
rdfs:comment "lacking in sexual attraction and interest" .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#Asian
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#Asian> rdf:type owl:Class ;
rdfs:subClassOf <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Race> ;
rdfs:comment "\"A person having origins in any of the original peoples of the Far East, Southeast Asia, or the Indian subcontinent including, for example, Cambodia, China, India, Japan, Korea, Malaysia, Pakistan, the Philippine Islands, Thailand, and Vietnam.\" OMB Directive 15, 1997" .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#Assemblies_of_God
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#Assemblies_of_God> rdf:type owl:Class ;
rdfs:subClassOf <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Christianity> .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#Aztec
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#Aztec> rdf:type owl:Class ;
rdfs:subClassOf <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Ethnic_Origin> .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#Aztec_Identity
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#Aztec_Identity> rdf:type owl:Class ;
rdfs:subClassOf <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Ethnic_Self_Identity> ;
skos:prefLabel "Aztec" .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#Bahai_Faith
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#Bahai_Faith> rdf:type owl:Class ;
rdfs:subClassOf <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Religion> .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#Baptist
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#Baptist> rdf:type owl:Class ;
rdfs:subClassOf <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Christianity> .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#Barbadian
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#Barbadian> rdf:type owl:Class ;
rdfs:subClassOf <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Ethnic_Origin> .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#Barbadian_Identity
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#Barbadian_Identity> rdf:type owl:Class ;
rdfs:subClassOf <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Ethnic_Self_Identity> ;
skos:prefLabel "Barbadian" .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#Biological_Sex
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#Biological_Sex> rdf:type owl:Class ;
rdfs:subClassOf :DemographicDimension .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#Bisexual
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#Bisexual> rdf:type owl:Class ;
rdfs:subClassOf <http://sbmi.tmc.uth.edu/ontology/foaf_plus#Sexual_Orientation> ;
rdfs:comment "sexual interest in both biological sex, males and females" .
### http://sbmi.tmc.uth.edu/ontology/foaf_plus#Black
<http://sbmi.tmc.uth.edu/ontology/foaf_plus#Black> rdf:type owl:Class ;