-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSRAO-base.owl
More file actions
2969 lines (1947 loc) · 213 KB
/
SRAO-base.owl
File metadata and controls
2969 lines (1947 loc) · 213 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<rdf:RDF xmlns="http://www.fairsharing.org/ontology/subject/SRAO/SRAO-base.owl#"
xml:base="http://www.fairsharing.org/ontology/subject/SRAO/SRAO-base.owl"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:obo="http://purl.obolibrary.org/obo/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:domains="http://www.fairsharing.org/ontology/domains/"
xmlns:subject="http://www.fairsharing.org/ontology/subject/"
xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#">
<owl:Ontology rdf:about="http://www.fairsharing.org/ontology/subject/SRAO/SRAO-base.owl">
<owl:versionIRI rdf:resource="http://www.fairsharing.org/ontology/subject/SRAO/releases/2025-06-01/SRAO-base.owl"/>
<dc:creator xml:lang="en">The FAIRsharing Team, contact@fairsharing.org</dc:creator>
<dc:title xml:lang="en">FAIRsharing Subject Ontology (SRAO)</dc:title>
<dc:type rdf:resource="http://purl.obolibrary.org/obo/IAO_8000001"/>
<dcterms:description xml:lang="en">SRAO is a hierarchy of academic disciplines that draws from the re3data subject list as well as importing terms from 7 publicly-available ontologies. This hierarchy covers all of the humanities and natural sciences and, where external vocabularies could not be found, SRAO classes were created.
The initial hierarchy and class set came from FAIRsharing user requirements. Additional classes have been drawn from the following sources:
1. the re3data subject categories as listed at http://www.re3data.org/browse/by-subject/
2. NCIT (http://dx.doi.org/10.3233/978-1-60750-949-3-33, CC BY 4.0)
3. the EDAM Topic hierarchy as available at http://edamontology.org (http://doi.org/10.1093/bioinformatics/btt113, CC BY-SA 4.0)
4. AgroVoc (http://agrovoc.uniroma2.it/agrovoc/agrovoc/en/, CC BY 3.0 IGO)
5. OMIT (https://doi.org/10.1371/journal.pone.0100855 and https://doi.org/10.1186/s13326-016-0064-2, CC BY 3.0)
6. OBI (https://doi.org/10.1371/journal.pone.0154556, CC BY 3.0)
7. PO (http://www.plantontology.org/, CC BY 4.0)
8. UAT: (https://astrothesaurus.org/, CC BY 3.0 Unported)
Modifications to the hierarchy have been performed to aid usability within FAIRsharing as well as to aid ontology alignment and merging. Additional definitions and annotations have also been incorporated by the FAIRsharing Team.
Originally developed for use within FAIRsharing.org
Licensed under the Creative Commons Attribution 4.0 International (CC BY 4.0), https://creativecommons.org/licenses/by/4.0/</dcterms:description>
<dcterms:license rdf:resource="https://creativecommons.org/licenses/by/4.0/"/>
<owl:versionInfo>2025-06-01</owl:versionInfo>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/IAO_0000115 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000117 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000117"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000118 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000118"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000119 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000119"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000233 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000233"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000412 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000412"/>
<!-- http://purl.obolibrary.org/obo/IAO_0100001 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0100001"/>
<!-- http://purl.org/dc/elements/1.1/creator -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/creator"/>
<!-- http://purl.org/dc/elements/1.1/title -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/title"/>
<!-- http://purl.org/dc/elements/1.1/type -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/type"/>
<!-- http://purl.org/dc/terms/description -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/description"/>
<!-- http://purl.org/dc/terms/license -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/license"/>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000268 -->
<owl:AnnotationProperty rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000268">
<rdfs:label xml:lang="en">re3data alternative term</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000118"/>
</owl:AnnotationProperty>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000269 -->
<owl:AnnotationProperty rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000269">
<rdfs:label xml:lang="en">EDAM alternative term</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000118"/>
</owl:AnnotationProperty>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000272 -->
<owl:AnnotationProperty rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000272">
<rdfs:label xml:lang="en">OMIT alternative term</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000118"/>
</owl:AnnotationProperty>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000276 -->
<owl:AnnotationProperty rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000276">
<rdfs:label xml:lang="en">NCIT alternative term</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000118"/>
</owl:AnnotationProperty>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000278 -->
<owl:AnnotationProperty rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000278">
<rdfs:label xml:lang="en">AgroVoc alternative term</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000118"/>
</owl:AnnotationProperty>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000279 -->
<owl:AnnotationProperty rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000279">
<rdfs:label xml:lang="en">AgroPortal alternative term</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000118"/>
</owl:AnnotationProperty>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000292 -->
<owl:AnnotationProperty rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000292">
<rdfs:label xml:lang="en">PO alternative term</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000118"/>
</owl:AnnotationProperty>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000317 -->
<owl:AnnotationProperty rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000317">
<rdfs:label xml:lang="en">OBI alternative term</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000118"/>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://aims.fao.org/aos/agrovoc/c_1335455465014 -->
<owl:Class rdf:about="http://aims.fao.org/aos/agrovoc/c_1335455465014"/>
<!-- http://aims.fao.org/aos/agrovoc/c_1648 -->
<owl:Class rdf:about="http://aims.fao.org/aos/agrovoc/c_1648"/>
<!-- http://aims.fao.org/aos/agrovoc/c_203 -->
<owl:Class rdf:about="http://aims.fao.org/aos/agrovoc/c_203"/>
<!-- http://aims.fao.org/aos/agrovoc/c_2481 -->
<owl:Class rdf:about="http://aims.fao.org/aos/agrovoc/c_2481"/>
<!-- http://aims.fao.org/aos/agrovoc/c_3235 -->
<owl:Class rdf:about="http://aims.fao.org/aos/agrovoc/c_3235"/>
<!-- http://aims.fao.org/aos/agrovoc/c_4682 -->
<owl:Class rdf:about="http://aims.fao.org/aos/agrovoc/c_4682"/>
<!-- http://aims.fao.org/aos/agrovoc/c_4856 -->
<owl:Class rdf:about="http://aims.fao.org/aos/agrovoc/c_4856"/>
<!-- http://edamontology.org/topic_0605 -->
<owl:Class rdf:about="http://edamontology.org/topic_0605"/>
<!-- http://edamontology.org/topic_0780 -->
<owl:Class rdf:about="http://edamontology.org/topic_0780"/>
<!-- http://edamontology.org/topic_0781 -->
<owl:Class rdf:about="http://edamontology.org/topic_0781"/>
<!-- http://edamontology.org/topic_2259 -->
<owl:Class rdf:about="http://edamontology.org/topic_2259"/>
<!-- http://edamontology.org/topic_3047 -->
<owl:Class rdf:about="http://edamontology.org/topic_3047"/>
<!-- http://edamontology.org/topic_3071 -->
<owl:Class rdf:about="http://edamontology.org/topic_3071"/>
<!-- http://edamontology.org/topic_3292 -->
<owl:Class rdf:about="http://edamontology.org/topic_3292"/>
<!-- http://edamontology.org/topic_3297 -->
<owl:Class rdf:about="http://edamontology.org/topic_3297"/>
<!-- http://edamontology.org/topic_3304 -->
<owl:Class rdf:about="http://edamontology.org/topic_3304"/>
<!-- http://edamontology.org/topic_3315 -->
<owl:Class rdf:about="http://edamontology.org/topic_3315"/>
<!-- http://edamontology.org/topic_3316 -->
<owl:Class rdf:about="http://edamontology.org/topic_3316"/>
<!-- http://edamontology.org/topic_3318 -->
<owl:Class rdf:about="http://edamontology.org/topic_3318"/>
<!-- http://edamontology.org/topic_3397 -->
<owl:Class rdf:about="http://edamontology.org/topic_3397"/>
<!-- http://edamontology.org/topic_3697 -->
<owl:Class rdf:about="http://edamontology.org/topic_3697"/>
<!-- http://purl.obolibrary.org/obo/NCIT_C15188 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCIT_C15188"/>
<!-- http://purl.obolibrary.org/obo/NCIT_C16294 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCIT_C16294"/>
<!-- http://purl.obolibrary.org/obo/NCIT_C16304 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCIT_C16304"/>
<!-- http://purl.obolibrary.org/obo/NCIT_C16345 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCIT_C16345"/>
<!-- http://purl.obolibrary.org/obo/NCIT_C16349 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCIT_C16349"/>
<!-- http://purl.obolibrary.org/obo/NCIT_C16413 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCIT_C16413"/>
<!-- http://purl.obolibrary.org/obo/NCIT_C16414 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCIT_C16414"/>
<!-- http://purl.obolibrary.org/obo/NCIT_C16417 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCIT_C16417"/>
<!-- http://purl.obolibrary.org/obo/NCIT_C16419 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCIT_C16419"/>
<!-- http://purl.obolibrary.org/obo/NCIT_C16421 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCIT_C16421"/>
<!-- http://purl.obolibrary.org/obo/NCIT_C16439 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCIT_C16439"/>
<!-- http://purl.obolibrary.org/obo/NCIT_C16478 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCIT_C16478"/>
<!-- http://purl.obolibrary.org/obo/NCIT_C16548 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCIT_C16548"/>
<!-- http://purl.obolibrary.org/obo/NCIT_C16624 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCIT_C16624"/>
<!-- http://purl.obolibrary.org/obo/NCIT_C16633 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCIT_C16633"/>
<!-- http://purl.obolibrary.org/obo/NCIT_C16851 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCIT_C16851"/>
<!-- http://purl.obolibrary.org/obo/NCIT_C17027 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCIT_C17027"/>
<!-- http://purl.obolibrary.org/obo/NCIT_C17039 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCIT_C17039"/>
<!-- http://purl.obolibrary.org/obo/NCIT_C17141 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCIT_C17141"/>
<!-- http://purl.obolibrary.org/obo/NCIT_C17167 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCIT_C17167"/>
<!-- http://purl.obolibrary.org/obo/NCIT_C17173 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCIT_C17173"/>
<!-- http://purl.obolibrary.org/obo/NCIT_C17269 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCIT_C17269"/>
<!-- http://purl.obolibrary.org/obo/NCIT_C17992 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCIT_C17992"/>
<!-- http://purl.obolibrary.org/obo/NCIT_C18189 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCIT_C18189"/>
<!-- http://purl.obolibrary.org/obo/NCIT_C19349 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCIT_C19349"/>
<!-- http://purl.obolibrary.org/obo/NCIT_C19638 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCIT_C19638"/>
<!-- http://purl.obolibrary.org/obo/NCIT_C20085 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCIT_C20085"/>
<!-- http://purl.obolibrary.org/obo/NCIT_C39794 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCIT_C39794"/>
<!-- http://purl.obolibrary.org/obo/NCIT_C54625 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCIT_C54625"/>
<!-- http://purl.obolibrary.org/obo/NCIT_C95096 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCIT_C95096"/>
<!-- http://purl.obolibrary.org/obo/OMIT_0002286 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OMIT_0002286"/>
<!-- http://purl.obolibrary.org/obo/OMIT_0007951 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OMIT_0007951"/>
<!-- http://purl.obolibrary.org/obo/OMIT_0008715 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OMIT_0008715"/>
<!-- http://purl.obolibrary.org/obo/OMIT_0009577 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OMIT_0009577"/>
<!-- http://purl.obolibrary.org/obo/OMIT_0009732 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OMIT_0009732"/>
<!-- http://purl.obolibrary.org/obo/OMIT_0010809 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OMIT_0010809"/>
<!-- http://purl.obolibrary.org/obo/OMIT_0010991 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OMIT_0010991"/>
<!-- http://purl.obolibrary.org/obo/OMIT_0013823 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OMIT_0013823"/>
<!-- http://purl.obolibrary.org/obo/OMIT_0021467 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OMIT_0021467"/>
<!-- http://purl.obolibrary.org/obo/OMIT_0026615 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OMIT_0026615"/>
<!-- http://purl.obolibrary.org/obo/OMIT_0027298 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OMIT_0027298"/>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000002 -->
<owl:Class rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000002">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<obo:IAO_0000115 xml:lang="en">Humanities and Social Sciences is a broad multi-disciplinary research area incorporating both the Humanities and the Social Sciences. One differentiator for these two closely-related subjects is that humanities are predominately interested in studying the specifics and the 'unique', while social sciences are mainly interested in the general / population level.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Allyson Lister, https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">Adapted from https://www.thebritishacademy.ac.uk/blog/what-social-science, AL 17.6.2019</obo:IAO_0000119>
<obo:IAO_0000412 xml:lang="en">re3data</obo:IAO_0000412>
<rdfs:comment xml:lang="en">AL 17.11.21: The label was modified from plural to singular according to FAIRsharing best practises.</rdfs:comment>
<rdfs:comment xml:lang="en">AL 3.6.2019: This 'composite term' (a class describing multiple concepts) is a standard conflation within this research area and is therefore retained. This is in contrast with the general rule within FAIRsharing to refactor composite terms.</rdfs:comment>
<rdfs:label xml:lang="en">Humanities and Social Science</rdfs:label>
</owl:Class>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000004 -->
<owl:Class rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000004">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCIT_C16478"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OMIT_0007951"/>
<obo:IAO_0000115 xml:lang="en">Ancient Cultures is the study of the pattern of learned beliefs, values, and behavior that are shared within a group in the context of ancient civilisations.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Allyson Lister, https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">Adapted from NCIT http://purl.obolibrary.org/obo/NCIT_C16478, AL 12.6.2019</obo:IAO_0000119>
<obo:IAO_0000412 xml:lang="en">re3data</obo:IAO_0000412>
<rdfs:label xml:lang="en">Ancient Cultures</rdfs:label>
</owl:Class>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000005 -->
<owl:Class rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000005">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCIT_C54625"/>
<rdfs:subClassOf rdf:resource="http://www.fairsharing.org/ontology/subject/SRAO_0000004"/>
<obo:IAO_0000115 xml:lang="en">Prehistory is the branch of knowledge that deals with events or conditions before written or recorded history.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Allyson Lister, https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">Adapted from OED, AL 6.6.2019</obo:IAO_0000119>
<obo:IAO_0000412 xml:lang="en">re3data</obo:IAO_0000412>
<rdfs:label xml:lang="en">Prehistory</rdfs:label>
</owl:Class>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000006 -->
<owl:Class rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000006">
<rdfs:subClassOf rdf:resource="http://www.fairsharing.org/ontology/subject/SRAO_0000004"/>
<obo:IAO_0000115 xml:lang="en">Classical Philology is the branch of knowledge that deals with the historical, linguistic, interpretative, and critical aspects of literature from the classical period, generally considered to be the Ancient Greek and Ancient Roman civilizations.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Allyson Lister, https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">Adapted from OED, AL 13.6.2019</obo:IAO_0000119>
<obo:IAO_0000412 xml:lang="en">re3data</obo:IAO_0000412>
<rdfs:label xml:lang="en">Classical Philology</rdfs:label>
</owl:Class>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000009 -->
<owl:Class rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000009">
<rdfs:subClassOf rdf:resource="http://www.fairsharing.org/ontology/subject/SRAO_0000004"/>
<obo:IAO_0000115 xml:lang="en">Egyptology is the study of Egyptian antiquities, of the ancient Egyptian language and history.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Allyson Lister, https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">Adapted from OED, AL 21.05.2019</obo:IAO_0000119>
<obo:IAO_0000412 xml:lang="en">re3data</obo:IAO_0000412>
<rdfs:comment xml:lang="en">AL: 21.5.2019 Refactored re3data composite class 'Egyptology and Ancient Near Eastern Studies' into sibling classes 'Ancient Near Eastern Studies' and 'Ancient Near Eastern Studies' according to FAIRsharing curation best practises.</rdfs:comment>
<rdfs:label xml:lang="en">Egyptology</rdfs:label>
</owl:Class>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000012 -->
<owl:Class rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000012">
<rdfs:subClassOf rdf:resource="http://www.fairsharing.org/ontology/subject/SRAO_0000013"/>
<obo:IAO_0000115 xml:lang="en">Early Modern History is the study of the period of modern history that follows the late Middle Ages of the post-classical era. Although the chronological limits of the period are open to debate, the timeframe spans the period after the late portion of the post-classical age (c. 1500), known as the Middle Ages, through the beginning of the Age of Revolutions (c. 1800).</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Allyson Lister, https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">Adapted from Wikipedia https://en.wikipedia.org/wiki/Early_modern_period, AL 12.6.2019</obo:IAO_0000119>
<obo:IAO_0000412 xml:lang="en">re3data</obo:IAO_0000412>
<rdfs:label xml:lang="en">Early Modern History</rdfs:label>
</owl:Class>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000013 -->
<owl:Class rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000013">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCIT_C54625"/>
<obo:IAO_0000115 xml:lang="en">Modern History is the study of the historical period after post-classical history.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Allyson Lister, https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">Adapted from Wikipedia https://en.wikipedia.org/wiki/Modern_history, AL 21.05.2019</obo:IAO_0000119>
<obo:IAO_0000412 xml:lang="en">re3data</obo:IAO_0000412>
<rdfs:comment xml:lang="en">AL: 21.5.2019 Refactored re3data composite class 'Modern and Current History' into 'Modern History' according to FAIRsharing curation best practises.</rdfs:comment>
<rdfs:label xml:lang="en">Modern History</rdfs:label>
</owl:Class>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000014 -->
<owl:Class rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000014">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCIT_C54625"/>
<obo:IAO_0000115 xml:lang="en">History of Science is the study of the development of science and scientific knowledge, including both the natural and social sciences.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Allyson Lister, https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">Wikipedia https://en.wikipedia.org/wiki/History_of_science, AL 12.6.2019</obo:IAO_0000119>
<obo:IAO_0000412 xml:lang="en">re3data</obo:IAO_0000412>
<rdfs:label xml:lang="en">History of Science</rdfs:label>
</owl:Class>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000015 -->
<owl:Class rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000015">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OMIT_0007951"/>
<obo:IAO_0000115 xml:lang="en">Fine Arts is a subject area covering the creative arts, including the visual arts, poetry, music, rhetoric, etc., whose products are intended to be appreciated primarily or solely for their aesthetic, imaginative, or intellectual content.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Allyson Lister, https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">Adapted from OED, AL 10.4.2019</obo:IAO_0000119>
<obo:IAO_0000412 xml:lang="en">re3data</obo:IAO_0000412>
<rdfs:comment xml:lang="en">AL 10.4.2019: Renamed 'Fine Arts, Music, Theatre and Media Studies' to 'Fine Arts' to align with FAIRsharing curation best practices.</rdfs:comment>
<rdfs:label xml:lang="en">Fine Arts</rdfs:label>
</owl:Class>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000016 -->
<owl:Class rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000016">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCIT_C54625"/>
<rdfs:subClassOf rdf:resource="http://www.fairsharing.org/ontology/subject/SRAO_0000015"/>
<obo:IAO_0000115 xml:lang="en">Art history is the study of objects of art in their historical development and stylistic contexts; that is genre, design, format, and style.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Allyson Lister, https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">Wikipedia https://en.wikipedia.org/wiki/Art_history, AL 18.6.2019</obo:IAO_0000119>
<obo:IAO_0000412 xml:lang="en">re3data</obo:IAO_0000412>
<rdfs:label xml:lang="en">Art History</rdfs:label>
</owl:Class>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000017 -->
<owl:Class rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000017">
<rdfs:subClassOf rdf:resource="http://www.fairsharing.org/ontology/subject/SRAO_0000015"/>
<obo:IAO_0000115 xml:lang="en">Musicology is the branch of knowledge that deals with music as a subject of study rather than as a skill or performing art; academic research in or scholarly study of music.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Allyson Lister, https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">OED, AL 12.6.2019</obo:IAO_0000119>
<obo:IAO_0000412 xml:lang="en">re3data</obo:IAO_0000412>
<rdfs:label xml:lang="en">Musicology</rdfs:label>
</owl:Class>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000018 -->
<owl:Class rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000018">
<rdfs:subClassOf rdf:resource="http://www.fairsharing.org/ontology/subject/SRAO_0000015"/>
<obo:IAO_0000115 xml:lang="en">Media Studies is a discipline and field of study that deals with the content, history, and effects of various media; in particular, the mass media.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Allyson Lister, https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">Wikipedia, https://en.wikipedia.org/wiki/Media_studies, 1.4.2019</obo:IAO_0000119>
<obo:IAO_0000412 xml:lang="en">re3data</obo:IAO_0000412>
<rdfs:comment xml:lang="en">AL 10.4.2019: Refactored 'Theatre and Media Studies' to sibling classes 'Theatre Studies' and 'Media Studies' to align with FAIRsharing curation best practices.</rdfs:comment>
<rdfs:label xml:lang="en">Media Studies</rdfs:label>
</owl:Class>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000020 -->
<owl:Class rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000020">
<rdfs:subClassOf rdf:resource="http://aims.fao.org/aos/agrovoc/c_1335455465014"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCIT_C16294"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCIT_C17027"/>
<rdfs:subClassOf rdf:resource="http://www.fairsharing.org/ontology/subject/SRAO_0000042"/>
<rdfs:subClassOf rdf:resource="http://www.fairsharing.org/ontology/subject/SRAO_0000054"/>
<obo:IAO_0000115 xml:lang="en">Applied Linguistics is the branch of linguistics concerned with practical applications of language studies, such as language teaching, translation, and speech therapy. It is an interdisciplinary field which identifies, investigates, and offers solutions to language-related real-life problems. Some of the academic fields related to applied linguistics are education, psychology, communication research, anthropology, and sociology.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Allyson Lister, https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">Adapted from OED, Wikipedia https://en.wikipedia.org/wiki/Applied_linguistics, AL 1.4.2019</obo:IAO_0000119>
<obo:IAO_0000412 xml:lang="en">re3data</obo:IAO_0000412>
<rdfs:comment xml:lang="en">AL: 7.5.2019 Refactored re3data composite class 'General and Applied Linguistics' into 'Applied Linguistics' according to FAIRsharing curation best practises.</rdfs:comment>
<rdfs:label xml:lang="en">Applied Linguistics</rdfs:label>
</owl:Class>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000022 -->
<owl:Class rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000022">
<rdfs:subClassOf rdf:resource="http://aims.fao.org/aos/agrovoc/c_1335455465014"/>
<obo:IAO_0000115 xml:lang="en">Historical Linguistics is the branch of linguistics concerned with the history and development of languages.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Allyson Lister, https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">OED</obo:IAO_0000119>
<obo:IAO_0000412 xml:lang="en">re3data</obo:IAO_0000412>
<rdfs:comment xml:lang="en">AL: 7.5.2019 Refactored re3data composite class 'Typology, Non-European Languages, Historical Linguistics' into 'Historical Linguistics' according to FAIRsharing curation best practises.</rdfs:comment>
<rdfs:label xml:lang="en">Historical Linguistics</rdfs:label>
</owl:Class>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000023 -->
<owl:Class rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000023">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OMIT_0007951"/>
<obo:IAO_0000115 xml:lang="en">Literary Studies is the study, evaluation, and interpretation of literature.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Allyson Lister, https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">Adapted from Wikipedia https://en.wikipedia.org/wiki/Literary_criticism, AL 21.05.2019</obo:IAO_0000119>
<obo:IAO_0000412 xml:lang="en">re3data</obo:IAO_0000412>
<rdfs:label xml:lang="en">Literary Studies</rdfs:label>
</owl:Class>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000024 -->
<owl:Class rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000024">
<rdfs:subClassOf rdf:resource="http://www.fairsharing.org/ontology/subject/SRAO_0000023"/>
<obo:IAO_0000115 xml:lang="en">Medieval German Literature is a field of study concerned with literature written in Germany, starting with the Carolingian dynasty. Various dates have been given for the end of the German literary Middle Ages, with the Reformation (1517) being the last possible cut-off point.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Allyson Lister, https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">Adapted from Wikipedia https://en.wikipedia.org/wiki/Medieval_German_literature, AL 12.6.2019</obo:IAO_0000119>
<obo:IAO_0000412 xml:lang="en">re3data</obo:IAO_0000412>
<rdfs:label xml:lang="en">Medieval German Literature</rdfs:label>
</owl:Class>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000025 -->
<owl:Class rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000025">
<rdfs:subClassOf rdf:resource="http://www.fairsharing.org/ontology/subject/SRAO_0000023"/>
<obo:IAO_0000115 xml:lang="en">German Literature comprises the written works of the German-speaking peoples of central Europe.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Allyson Lister, https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">Encyclopedia Britannica https://www.britannica.com/art/German-literature, AL 6.6.2019</obo:IAO_0000119>
<obo:IAO_0000412 xml:lang="en">re3data</obo:IAO_0000412>
<rdfs:comment xml:lang="en">AL 3.7.2019: Renamed from 'Modern German Literature' (the original re3data label) to 'German Literature' as FAIRsharing required a more broad subject area.</rdfs:comment>
<rdfs:label xml:lang="en">German Literature</rdfs:label>
</owl:Class>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000026 -->
<owl:Class rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000026">
<rdfs:subClassOf rdf:resource="http://www.fairsharing.org/ontology/subject/SRAO_0000023"/>
<obo:IAO_0000115 xml:lang="en">European Literature is the literature written in the context of Western culture in the languages of Europe, including the ones belonging to the Indo-European language family as well as several geographically or historically related languages such as Basque and Hungarian.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Allyson Lister, https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000118 xml:lang="en">Western Literature</obo:IAO_0000118>
<obo:IAO_0000119 xml:lang="en">Wikipedia https://en.wikipedia.org/wiki/Western_literature, AL 21.05.2019</obo:IAO_0000119>
<obo:IAO_0000412 xml:lang="en">re3data</obo:IAO_0000412>
<rdfs:comment xml:lang="en">AL: 21.5.2019 Refactored re3data composite class 'European and American Literature' into sibling classes 'European Literature' and 'American Literature' according to FAIRsharing curation best practises.</rdfs:comment>
<rdfs:label xml:lang="en">European Literature</rdfs:label>
</owl:Class>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000027 -->
<owl:Class rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000027">
<rdfs:subClassOf rdf:resource="http://www.fairsharing.org/ontology/subject/SRAO_0000023"/>
<obo:IAO_0000115 xml:lang="en">Comparative Literature is the study of literature across cultural and national frontiers, time periods, languages and genres, even across the boundaries between literature and the other arts.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Allyson Lister, https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">https://www.gla.ac.uk/undergraduate/degrees/comparativeliterature/, AL 21.05.2019</obo:IAO_0000119>
<obo:IAO_0000412 xml:lang="en">re3data</obo:IAO_0000412>
<rdfs:comment xml:lang="en">AL: 21.5.2019 Refactored re3data composite class 'General and Comparative Literature and Cultural Studies' into sibling classes 'Comparative Literature' and 'Cultural Studies' according to FAIRsharing curation best practises.</rdfs:comment>
<rdfs:label xml:lang="en">Comparative Literature</rdfs:label>
</owl:Class>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000030 -->
<owl:Class rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000030">
<rdfs:subClassOf rdf:resource="http://www.fairsharing.org/ontology/subject/SRAO_0000299"/>
<obo:IAO_0000115 xml:lang="en">Asian Studies is the term used usually in North America and Australia for what in Europe is known as Oriental studies. The field is concerned with the Asian people and societies, their cultures, languages, history and politics.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Allyson Lister, https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000118 xml:lang="en">Oriental Studies</obo:IAO_0000118>
<obo:IAO_0000119 xml:lang="en">Adapted from Wikipedia https://en.wikipedia.org/wiki/Asian_studies, 11.4.2019</obo:IAO_0000119>
<obo:IAO_0000412 xml:lang="en">re3data</obo:IAO_0000412>
<rdfs:comment xml:lang="en">AL: 11.4.2019 Refactored re3data composite class 'Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies' and its children 'African, American and Oceania Studies', 'Asian Studies', 'Religious Studies and Jewish Studies', 'Islamic Studies, Arabian Studies, Semitic Studies', and 'Social and Cultural Anthropology and Ethnology/Folklore' into a completely reworked hierarchy of singular concepts according to FAIRsharing curation best practises.</rdfs:comment>
<rdfs:label xml:lang="en">Asian Studies</rdfs:label>
</owl:Class>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000031 -->
<owl:Class rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000031">
<rdfs:subClassOf rdf:resource="http://www.fairsharing.org/ontology/subject/SRAO_0000299"/>
<obo:IAO_0000115 xml:lang="en">African Studies is the study of Africa, especially the continent's cultures and societies (as opposed to its geology, geography, zoology, etc.).</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Allyson Lister, https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">Wikipedia https://en.wikipedia.org/wiki/African_studies, 11.4.2019</obo:IAO_0000119>
<obo:IAO_0000412 xml:lang="en">re3data</obo:IAO_0000412>
<rdfs:comment xml:lang="en">AL: 11.4.2019 Refactored re3data composite class 'Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies' and its children 'African, American and Oceania Studies', 'Asian Studies', 'Religious Studies and Jewish Studies', 'Islamic Studies, Arabian Studies, Semitic Studies', and 'Social and Cultural Anthropology and Ethnology/Folklore' into a completely reworked hierarchy of singular concepts according to FAIRsharing curation best practises.</rdfs:comment>
<rdfs:label xml:lang="en">African Studies</rdfs:label>
</owl:Class>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000032 -->
<owl:Class rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000032">
<rdfs:subClassOf rdf:resource="http://www.fairsharing.org/ontology/subject/SRAO_0000033"/>
<obo:IAO_0000115 xml:lang="en">Islamic Studies refers to the study of Islam. Islamic studies can be pursued from a primarily secular or traditional religous perspective.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Allyson Lister, https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">Adapted from Wikipedia https://en.wikipedia.org/wiki/Islamic_studies, 11.4.2019</obo:IAO_0000119>
<obo:IAO_0000412 xml:lang="en">re3data</obo:IAO_0000412>
<rdfs:comment xml:lang="en">AL: 11.4.2019 Refactored re3data composite class 'Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies' and its children 'African, American and Oceania Studies', 'Asian Studies', 'Religious Studies and Jewish Studies', 'Islamic Studies, Arabian Studies, Semitic Studies', and 'Social and Cultural Anthropology and Ethnology/Folklore' into a completely reworked hierarchy of singular concepts according to FAIRsharing curation best practises.</rdfs:comment>
<rdfs:label xml:lang="en">Islamic Studies</rdfs:label>
</owl:Class>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000033 -->
<owl:Class rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000033">
<rdfs:subClassOf rdf:resource="http://www.fairsharing.org/ontology/subject/SRAO_0000299"/>
<obo:IAO_0000115 xml:lang="en">Religious Studies is an academic field devoted to research into religious beliefs, behaviors, and institutions. It describes, compares, interprets, and explains religion, emphasizing systematic, historically based, and cross-cultural perspectives.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Allyson Lister, https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">Adapted from Wikipedia https://en.wikipedia.org/wiki/Religious_studies, AL 11.4.2019</obo:IAO_0000119>
<obo:IAO_0000412 xml:lang="en">re3data</obo:IAO_0000412>
<rdfs:comment xml:lang="en">AL: 11.4.2019 Refactored re3data composite class 'Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies' and its children 'African, American and Oceania Studies', 'Asian Studies', 'Religious Studies and Jewish Studies', 'Islamic Studies, Arabian Studies, Semitic Studies', and 'Social and Cultural Anthropology and Ethnology/Folklore' into a completely reworked hierarchy of singular concepts according to FAIRsharing curation best practises.</rdfs:comment>
<rdfs:label xml:lang="en">Religious Studies</rdfs:label>
</owl:Class>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000035 -->
<owl:Class rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000035">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OMIT_0021467"/>
<obo:IAO_0000115 xml:lang="en">Protestant Theology is the study of the Christian denomination of Protestantism.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Allyson Lister, https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">Adapted from Wikipedia https://en.wikipedia.org/wiki/Protestantism#Theology, AL 13.6.2019</obo:IAO_0000119>
<obo:IAO_0000412 xml:lang="en">re3data</obo:IAO_0000412>
<rdfs:label xml:lang="en">Protestant Theology</rdfs:label>
</owl:Class>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000036 -->
<owl:Class rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000036">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OMIT_0021467"/>
<obo:IAO_0000115 xml:lang="en">Roman Catholic Theology is the understanding of Roman Catholic doctrine or teachings, and results from the studies of theologians. It is based on canonical scripture, and sacred tradition, as interpreted authoritatively by the magisterium of the Roman Catholic Church.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Allyson Lister, https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">Wikipedia https://en.wikipedia.org/wiki/Catholic_theology, AL 18.6.2019</obo:IAO_0000119>
<obo:IAO_0000412 xml:lang="en">re3data</obo:IAO_0000412>
<rdfs:label xml:lang="en">Roman Catholic Theology</rdfs:label>
</owl:Class>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000038 -->
<owl:Class rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000038">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCIT_C39794"/>
<obo:IAO_0000115 xml:lang="en">History of philosophy is a research area concerned with the various periods, individuals and/or schools of philosophy.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Allyson Lister, https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">Adapted from Wikipedia https://en.wikipedia.org/wiki/Philosophy#History_of_philosophy, AL 12.6.2019</obo:IAO_0000119>
<obo:IAO_0000412 xml:lang="en">re3data</obo:IAO_0000412>
<rdfs:label xml:lang="en">History of Philosophy</rdfs:label>
</owl:Class>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000039 -->
<owl:Class rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000039">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCIT_C39794"/>
<obo:IAO_0000115 xml:lang="en">Theoretical Philosophy is a discipline dealing with questions concerning the nature and scope of human knowledge, the relations between language, thought and reality, the structures of correct reasoning, and the fundamental categories of reality.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Allyson Lister, https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">Adapted from https://www.philosophy.su.se/utbildning/kurser/grundnivå/deltidskurser/2.44303/theoretical-philosophy-i-30-credits-tpi-1.276132, AL 12.6.2019</obo:IAO_0000119>
<obo:IAO_0000412 xml:lang="en">re3data</obo:IAO_0000412>
<rdfs:label xml:lang="en">Theoretical Philosophy</rdfs:label>
</owl:Class>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000040 -->
<owl:Class rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000040">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCIT_C39794"/>
<obo:IAO_0000115 xml:lang="en">Practical Philosophy is the study of the bases of philosophy (metaphysics, knowledge theory, logic) for "practical thinking", with the emphasis on values, attitudes to life and norms of behaviour. Value theory and analysis of normative positions constitute the core of practical philosophy.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Allyson Lister, https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">Adapted from https://www.fil.lu.se/en/department/subjects-at-the-department/practical-philosophy/, AL 12.6.2019</obo:IAO_0000119>
<obo:IAO_0000412 xml:lang="en">re3data</obo:IAO_0000412>
<rdfs:label xml:lang="en">Practical Philosophy</rdfs:label>
</owl:Class>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000041 -->
<owl:Class rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000041">
<rdfs:subClassOf rdf:resource="http://www.fairsharing.org/ontology/subject/SRAO_0000002"/>
<obo:IAO_0000115 xml:lang="en">Social and Behavioral Science is a broad area of study that applies to a unique range of disciplines -- anthropology, sociology, and psychology, among them -- that are primarily concerned with the analysis of human behavior.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Allyson Lister, https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">Adapted from https://www.ashford.edu/online-degrees/social-behavioral-science/what-is-social-and-behavioral-science, AL 12.6.2019</obo:IAO_0000119>
<obo:IAO_0000412 xml:lang="en">re3data</obo:IAO_0000412>
<rdfs:comment xml:lang="en">AL 3.6.2019: This 'composite term' (a class describing multiple concepts) is a standard conflation within this research area and is therefore retained. This is in contrast with the general rule within FAIRsharing to refactor composite terms.</rdfs:comment>
<rdfs:comment xml:lang="en">AL 5.6.2019: The label was modified from plural to singular according to FAIRsharing best practises.</rdfs:comment>
<rdfs:label xml:lang="en">Social and Behavioural Science</rdfs:label>
</owl:Class>
<!-- http://www.fairsharing.org/ontology/subject/SRAO_0000042 -->
<owl:Class rdf:about="http://www.fairsharing.org/ontology/subject/SRAO_0000042">
<rdfs:subClassOf rdf:resource="http://www.fairsharing.org/ontology/subject/SRAO_0000041"/>
<obo:IAO_0000115 xml:lang="en">Education Science is the study of educational policy and practice and deals with the methods and strategies of teaching.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Allyson Lister, https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000118 xml:lang="en">Pedagogy</obo:IAO_0000118>
<obo:IAO_0000119 xml:lang="en">Adapted from Wikipedia https://en.wikipedia.org/wiki/Educational_sciences and https://www.researchgate.net/post/What_is_Education_Science, AL 12.6.2019</obo:IAO_0000119>
<obo:IAO_0000412 xml:lang="en">re3data</obo:IAO_0000412>
<rdfs:comment xml:lang="en">AL 5.6.2019: The label was modified from plural to singular according to FAIRsharing best practises.</rdfs:comment>