-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfaecherklassifikation.ttl
6151 lines (5413 loc) · 369 KB
/
faecherklassifikation.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 rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
<https://onto.tib.eu/destf/cs/>
a skos:ConceptScheme ;
rdfs:comment "Diese Ontologie basiert auf \"Bildung und Kultur: Personal an Hochschulen - Fächersystematik - 2017; Erschienen am 5.12.2018; Stand: Berichtsjahr 2017; Statistisches Bundesamt (Destatis), 2018\"; in SKOS konvertiert von Tatiana Walther unter Mitwirkung von Christian Hauschke (Technische Informationsbibliothek (TIB) Hannover). Die Bezeichnungen und Inhalte der Fächersystematik blieben unverändert."@de, "© Statistisches Bundesamt (Destatis), 2018"@de ;
owl:versionInfo "2019-07-01"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:hasTopConcept <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/02>, <https://onto.tib.eu/destf/cs/03>, <https://onto.tib.eu/destf/cs/04>, <https://onto.tib.eu/destf/cs/05>, <https://onto.tib.eu/destf/cs/07>, <https://onto.tib.eu/destf/cs/08>, <https://onto.tib.eu/destf/cs/09>, <https://onto.tib.eu/destf/cs/15>, <https://onto.tib.eu/destf/cs/20> ;
skos:prefLabel "Personal an Hochschulen - Fächersystematik"@de .
<https://onto.tib.eu/destf/cs/01>
a skos:Concept ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:narrower <https://onto.tib.eu/destf/cs/010>, <https://onto.tib.eu/destf/cs/020>, <https://onto.tib.eu/destf/cs/030>, <https://onto.tib.eu/destf/cs/040>, <https://onto.tib.eu/destf/cs/050>, <https://onto.tib.eu/destf/cs/070>, <https://onto.tib.eu/destf/cs/080>, <https://onto.tib.eu/destf/cs/090>, <https://onto.tib.eu/destf/cs/100>, <https://onto.tib.eu/destf/cs/110>, <https://onto.tib.eu/destf/cs/120>, <https://onto.tib.eu/destf/cs/130>, <https://onto.tib.eu/destf/cs/140>, <https://onto.tib.eu/destf/cs/160>, <https://onto.tib.eu/destf/cs/195> ;
skos:narrowerTransitive <https://onto.tib.eu/destf/cs/010>, <https://onto.tib.eu/destf/cs/0100>, <https://onto.tib.eu/destf/cs/0120>, <https://onto.tib.eu/destf/cs/0130>, <https://onto.tib.eu/destf/cs/020>, <https://onto.tib.eu/destf/cs/0200>, <https://onto.tib.eu/destf/cs/0210>, <https://onto.tib.eu/destf/cs/0215>, <https://onto.tib.eu/destf/cs/0220>, <https://onto.tib.eu/destf/cs/0230>, <https://onto.tib.eu/destf/cs/0240>, <https://onto.tib.eu/destf/cs/0250>, <https://onto.tib.eu/destf/cs/0260>, <https://onto.tib.eu/destf/cs/030>, <https://onto.tib.eu/destf/cs/0300>, <https://onto.tib.eu/destf/cs/0310>, <https://onto.tib.eu/destf/cs/0315>, <https://onto.tib.eu/destf/cs/0320>, <https://onto.tib.eu/destf/cs/0330>, <https://onto.tib.eu/destf/cs/0340>, <https://onto.tib.eu/destf/cs/0350>, <https://onto.tib.eu/destf/cs/0390>, <https://onto.tib.eu/destf/cs/040>, <https://onto.tib.eu/destf/cs/0400>, <https://onto.tib.eu/destf/cs/0410>, <https://onto.tib.eu/destf/cs/0420>, <https://onto.tib.eu/destf/cs/0425>, <https://onto.tib.eu/destf/cs/0426>, <https://onto.tib.eu/destf/cs/0430>, <https://onto.tib.eu/destf/cs/050>, <https://onto.tib.eu/destf/cs/0500>, <https://onto.tib.eu/destf/cs/0510>, <https://onto.tib.eu/destf/cs/0520>, <https://onto.tib.eu/destf/cs/0530>, <https://onto.tib.eu/destf/cs/0540>, <https://onto.tib.eu/destf/cs/0550>, <https://onto.tib.eu/destf/cs/0560>, <https://onto.tib.eu/destf/cs/0570>, <https://onto.tib.eu/destf/cs/0580>, <https://onto.tib.eu/destf/cs/0585>, <https://onto.tib.eu/destf/cs/0590>, <https://onto.tib.eu/destf/cs/070>, <https://onto.tib.eu/destf/cs/0700>, <https://onto.tib.eu/destf/cs/0710>, <https://onto.tib.eu/destf/cs/0720>, <https://onto.tib.eu/destf/cs/080>, <https://onto.tib.eu/destf/cs/0800>, <https://onto.tib.eu/destf/cs/0810>, <https://onto.tib.eu/destf/cs/0820>, <https://onto.tib.eu/destf/cs/0830>, <https://onto.tib.eu/destf/cs/0835>, <https://onto.tib.eu/destf/cs/0840>, <https://onto.tib.eu/destf/cs/0845>, <https://onto.tib.eu/destf/cs/090>, <https://onto.tib.eu/destf/cs/0900>, <https://onto.tib.eu/destf/cs/0910>, <https://onto.tib.eu/destf/cs/0920>, <https://onto.tib.eu/destf/cs/0930>, <https://onto.tib.eu/destf/cs/0940>, <https://onto.tib.eu/destf/cs/0950>, <https://onto.tib.eu/destf/cs/0960>, <https://onto.tib.eu/destf/cs/100>, <https://onto.tib.eu/destf/cs/1000>, <https://onto.tib.eu/destf/cs/1020>, <https://onto.tib.eu/destf/cs/1030>, <https://onto.tib.eu/destf/cs/1040>, <https://onto.tib.eu/destf/cs/1050>, <https://onto.tib.eu/destf/cs/1070>, <https://onto.tib.eu/destf/cs/1080>, <https://onto.tib.eu/destf/cs/1090>, <https://onto.tib.eu/destf/cs/110>, <https://onto.tib.eu/destf/cs/1100>, <https://onto.tib.eu/destf/cs/1110>, <https://onto.tib.eu/destf/cs/1120>, <https://onto.tib.eu/destf/cs/1125>, <https://onto.tib.eu/destf/cs/120>, <https://onto.tib.eu/destf/cs/1200>, <https://onto.tib.eu/destf/cs/1210>, <https://onto.tib.eu/destf/cs/1215>, <https://onto.tib.eu/destf/cs/1220>, <https://onto.tib.eu/destf/cs/1225>, <https://onto.tib.eu/destf/cs/1230>, <https://onto.tib.eu/destf/cs/1235>, <https://onto.tib.eu/destf/cs/1240>, <https://onto.tib.eu/destf/cs/130>, <https://onto.tib.eu/destf/cs/1300>, <https://onto.tib.eu/destf/cs/1310>, <https://onto.tib.eu/destf/cs/1315>, <https://onto.tib.eu/destf/cs/1320>, <https://onto.tib.eu/destf/cs/1340>, <https://onto.tib.eu/destf/cs/1345>, <https://onto.tib.eu/destf/cs/1346>, <https://onto.tib.eu/destf/cs/1347>, <https://onto.tib.eu/destf/cs/1348>, <https://onto.tib.eu/destf/cs/1350>, <https://onto.tib.eu/destf/cs/1370>, <https://onto.tib.eu/destf/cs/1380>, <https://onto.tib.eu/destf/cs/140>, <https://onto.tib.eu/destf/cs/1400>, <https://onto.tib.eu/destf/cs/1410>, <https://onto.tib.eu/destf/cs/1420>, <https://onto.tib.eu/destf/cs/1430>, <https://onto.tib.eu/destf/cs/1440>, <https://onto.tib.eu/destf/cs/1445>, <https://onto.tib.eu/destf/cs/1450>, <https://onto.tib.eu/destf/cs/1460>, <https://onto.tib.eu/destf/cs/1465>, <https://onto.tib.eu/destf/cs/1470>, <https://onto.tib.eu/destf/cs/1480>, <https://onto.tib.eu/destf/cs/1490>, <https://onto.tib.eu/destf/cs/1495>, <https://onto.tib.eu/destf/cs/1510>, <https://onto.tib.eu/destf/cs/1520>, <https://onto.tib.eu/destf/cs/1530>, <https://onto.tib.eu/destf/cs/1540>, <https://onto.tib.eu/destf/cs/1550>, <https://onto.tib.eu/destf/cs/1560>, <https://onto.tib.eu/destf/cs/1570>, <https://onto.tib.eu/destf/cs/1575>, <https://onto.tib.eu/destf/cs/1576>, <https://onto.tib.eu/destf/cs/1580>, <https://onto.tib.eu/destf/cs/1590>, <https://onto.tib.eu/destf/cs/160>, <https://onto.tib.eu/destf/cs/1610>, <https://onto.tib.eu/destf/cs/1650>, <https://onto.tib.eu/destf/cs/1660>, <https://onto.tib.eu/destf/cs/195>, <https://onto.tib.eu/destf/cs/1950> ;
skos:notation "01"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Geisteswissenschaften"@de ;
skos:topConceptOf <https://onto.tib.eu/destf/cs/> .
<https://onto.tib.eu/destf/cs/010>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/01> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:narrower <https://onto.tib.eu/destf/cs/0100>, <https://onto.tib.eu/destf/cs/0120>, <https://onto.tib.eu/destf/cs/0130> ;
skos:narrowerTransitive <https://onto.tib.eu/destf/cs/0100>, <https://onto.tib.eu/destf/cs/0120>, <https://onto.tib.eu/destf/cs/0130> ;
skos:notation "010"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:note "Lehr- und Forschungsgebiete, die lediglich einer Fächergruppe, aber keinem Lehr- und Forschungsbereich zugeordnet werden können, sind hier nachzuweisen."@de ;
skos:prefLabel "Geisteswissenschaften allgemein"@de .
<https://onto.tib.eu/destf/cs/0100>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/010> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/010> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0100"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:note "Lehr- und Forschungsgebiete, die lediglich einem Lehr- und Forschungsbereich, aber keinem Fachgebiet zugeordnet werden können, sind hier nachzuweisen."@de ;
skos:prefLabel "Geisteswissenschaften allgemein"@de .
<https://onto.tib.eu/destf/cs/0120>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/010> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/010> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0120"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:note "Interdisziplinäre Lehr- und Forschungsgebiete, die mehrere Lehr- und Forschungsbereiche einer Fächergruppe betreffen und nicht schwerpunktmäßig zugeordnet werden können, sind hier nachzuweisen."@de ;
skos:prefLabel "Interdisziplinäre Studien (Schwerpunkt Sprach- und Kulturwissenschaften)"@de .
<https://onto.tib.eu/destf/cs/0130>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/010> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/010> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0130"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Medienwissenschaften"@de .
<https://onto.tib.eu/destf/cs/02>
a skos:Concept ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:narrower <https://onto.tib.eu/destf/cs/200> ;
skos:narrowerTransitive <https://onto.tib.eu/destf/cs/200>, <https://onto.tib.eu/destf/cs/2000>, <https://onto.tib.eu/destf/cs/2005>, <https://onto.tib.eu/destf/cs/2010>, <https://onto.tib.eu/destf/cs/2020> ;
skos:notation "02"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Sport"@de ;
skos:topConceptOf <https://onto.tib.eu/destf/cs/> .
<https://onto.tib.eu/destf/cs/020>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/01> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:narrower <https://onto.tib.eu/destf/cs/0200>, <https://onto.tib.eu/destf/cs/0210>, <https://onto.tib.eu/destf/cs/0215>, <https://onto.tib.eu/destf/cs/0220>, <https://onto.tib.eu/destf/cs/0230>, <https://onto.tib.eu/destf/cs/0240>, <https://onto.tib.eu/destf/cs/0250>, <https://onto.tib.eu/destf/cs/0260> ;
skos:narrowerTransitive <https://onto.tib.eu/destf/cs/0200>, <https://onto.tib.eu/destf/cs/0210>, <https://onto.tib.eu/destf/cs/0215>, <https://onto.tib.eu/destf/cs/0220>, <https://onto.tib.eu/destf/cs/0230>, <https://onto.tib.eu/destf/cs/0240>, <https://onto.tib.eu/destf/cs/0250>, <https://onto.tib.eu/destf/cs/0260> ;
skos:notation "020"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Evang. Theologie"@de .
<https://onto.tib.eu/destf/cs/0200>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/020> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/020> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0200"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:note "Lehr- und Forschungsgebiete, die lediglich einem Lehr- und Forschungsbereich, aber keinem Fachgebiet zugeordnet werden können, sind hier nachzuweisen"@de ;
skos:prefLabel "Evang. Theologie allgemein"@de .
<https://onto.tib.eu/destf/cs/0210>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/020> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/020> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0210"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Altes Testament (evang. Th.)"@de .
<https://onto.tib.eu/destf/cs/0215>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/020> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/020> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0215"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Diakoniewissenschaft"@de .
<https://onto.tib.eu/destf/cs/0220>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/020> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/020> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0220"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Neues Testament (evang. Th.)"@de .
<https://onto.tib.eu/destf/cs/0230>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/020> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/020> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0230"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Historische Theologie (evang. Th.)"@de .
<https://onto.tib.eu/destf/cs/0240>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/020> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/020> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0240"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Systematische Theologie (evang. Th.)"@de .
<https://onto.tib.eu/destf/cs/0250>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/020> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/020> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0250"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Praktische Theologie und Religionspädagogik (evang. Th.)"@de .
<https://onto.tib.eu/destf/cs/0260>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/020> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/020> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0260"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Religionsgeschichte und Missionswissenschaft (evang. Th.)"@de .
<https://onto.tib.eu/destf/cs/03>
a skos:Concept ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:narrower <https://onto.tib.eu/destf/cs/220>, <https://onto.tib.eu/destf/cs/225>, <https://onto.tib.eu/destf/cs/230>, <https://onto.tib.eu/destf/cs/235>, <https://onto.tib.eu/destf/cs/240>, <https://onto.tib.eu/destf/cs/250>, <https://onto.tib.eu/destf/cs/270>, <https://onto.tib.eu/destf/cs/290>, <https://onto.tib.eu/destf/cs/310>, <https://onto.tib.eu/destf/cs/315>, <https://onto.tib.eu/destf/cs/320> ;
skos:narrowerTransitive <https://onto.tib.eu/destf/cs/1700>, <https://onto.tib.eu/destf/cs/1710>, <https://onto.tib.eu/destf/cs/1715>, <https://onto.tib.eu/destf/cs/1720>, <https://onto.tib.eu/destf/cs/1725>, <https://onto.tib.eu/destf/cs/1730>, <https://onto.tib.eu/destf/cs/1740>, <https://onto.tib.eu/destf/cs/1750>, <https://onto.tib.eu/destf/cs/1760>, <https://onto.tib.eu/destf/cs/1800>, <https://onto.tib.eu/destf/cs/1801>, <https://onto.tib.eu/destf/cs/1802>, <https://onto.tib.eu/destf/cs/1803>, <https://onto.tib.eu/destf/cs/1804>, <https://onto.tib.eu/destf/cs/1805>, <https://onto.tib.eu/destf/cs/1806>, <https://onto.tib.eu/destf/cs/1820>, <https://onto.tib.eu/destf/cs/1825>, <https://onto.tib.eu/destf/cs/1826>, <https://onto.tib.eu/destf/cs/1827>, <https://onto.tib.eu/destf/cs/1828>, <https://onto.tib.eu/destf/cs/1829>, <https://onto.tib.eu/destf/cs/220>, <https://onto.tib.eu/destf/cs/2200>, <https://onto.tib.eu/destf/cs/2210>, <https://onto.tib.eu/destf/cs/2220>, <https://onto.tib.eu/destf/cs/2230>, <https://onto.tib.eu/destf/cs/2240>, <https://onto.tib.eu/destf/cs/225>, <https://onto.tib.eu/destf/cs/2250>, <https://onto.tib.eu/destf/cs/2255>, <https://onto.tib.eu/destf/cs/2260>, <https://onto.tib.eu/destf/cs/2265>, <https://onto.tib.eu/destf/cs/2270>, <https://onto.tib.eu/destf/cs/2275>, <https://onto.tib.eu/destf/cs/2280>, <https://onto.tib.eu/destf/cs/2285>, <https://onto.tib.eu/destf/cs/2290>, <https://onto.tib.eu/destf/cs/230>, <https://onto.tib.eu/destf/cs/2300>, <https://onto.tib.eu/destf/cs/2320>, <https://onto.tib.eu/destf/cs/2330>, <https://onto.tib.eu/destf/cs/2340>, <https://onto.tib.eu/destf/cs/2345>, <https://onto.tib.eu/destf/cs/235>, <https://onto.tib.eu/destf/cs/2350>, <https://onto.tib.eu/destf/cs/2360>, <https://onto.tib.eu/destf/cs/240>, <https://onto.tib.eu/destf/cs/2400>, <https://onto.tib.eu/destf/cs/2410>, <https://onto.tib.eu/destf/cs/2420>, <https://onto.tib.eu/destf/cs/250>, <https://onto.tib.eu/destf/cs/2500>, <https://onto.tib.eu/destf/cs/2510>, <https://onto.tib.eu/destf/cs/2515>, <https://onto.tib.eu/destf/cs/2520>, <https://onto.tib.eu/destf/cs/2530>, <https://onto.tib.eu/destf/cs/2540>, <https://onto.tib.eu/destf/cs/2545>, <https://onto.tib.eu/destf/cs/2550>, <https://onto.tib.eu/destf/cs/2560>, <https://onto.tib.eu/destf/cs/2570>, <https://onto.tib.eu/destf/cs/2580>, <https://onto.tib.eu/destf/cs/2590>, <https://onto.tib.eu/destf/cs/2610>, <https://onto.tib.eu/destf/cs/2620>, <https://onto.tib.eu/destf/cs/2630>, <https://onto.tib.eu/destf/cs/2640>, <https://onto.tib.eu/destf/cs/2650>, <https://onto.tib.eu/destf/cs/2665>, <https://onto.tib.eu/destf/cs/2670>, <https://onto.tib.eu/destf/cs/2680>, <https://onto.tib.eu/destf/cs/2690>, <https://onto.tib.eu/destf/cs/270>, <https://onto.tib.eu/destf/cs/2700>, <https://onto.tib.eu/destf/cs/2710>, <https://onto.tib.eu/destf/cs/2711>, <https://onto.tib.eu/destf/cs/2712>, <https://onto.tib.eu/destf/cs/2720>, <https://onto.tib.eu/destf/cs/2730>, <https://onto.tib.eu/destf/cs/2740>, <https://onto.tib.eu/destf/cs/2750>, <https://onto.tib.eu/destf/cs/2760>, <https://onto.tib.eu/destf/cs/2770>, <https://onto.tib.eu/destf/cs/2780>, <https://onto.tib.eu/destf/cs/2790>, <https://onto.tib.eu/destf/cs/2810>, <https://onto.tib.eu/destf/cs/2815>, <https://onto.tib.eu/destf/cs/2820>, <https://onto.tib.eu/destf/cs/2830>, <https://onto.tib.eu/destf/cs/2835>, <https://onto.tib.eu/destf/cs/2840>, <https://onto.tib.eu/destf/cs/290>, <https://onto.tib.eu/destf/cs/2900>, <https://onto.tib.eu/destf/cs/2905>, <https://onto.tib.eu/destf/cs/2910>, <https://onto.tib.eu/destf/cs/2915>, <https://onto.tib.eu/destf/cs/2920>, <https://onto.tib.eu/destf/cs/2925>, <https://onto.tib.eu/destf/cs/2930>, <https://onto.tib.eu/destf/cs/2935>, <https://onto.tib.eu/destf/cs/2936>, <https://onto.tib.eu/destf/cs/2940>, <https://onto.tib.eu/destf/cs/2960>, <https://onto.tib.eu/destf/cs/2966>, <https://onto.tib.eu/destf/cs/2971>, <https://onto.tib.eu/destf/cs/2980>, <https://onto.tib.eu/destf/cs/2985>, <https://onto.tib.eu/destf/cs/3010>, <https://onto.tib.eu/destf/cs/310>, <https://onto.tib.eu/destf/cs/3100>, <https://onto.tib.eu/destf/cs/3110>, <https://onto.tib.eu/destf/cs/315>, <https://onto.tib.eu/destf/cs/320> ;
skos:notation "03"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Rechts-, Wirtschafts- und Sozialwissenschaften"@de ;
skos:topConceptOf <https://onto.tib.eu/destf/cs/> .
<https://onto.tib.eu/destf/cs/030>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/01> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:narrower <https://onto.tib.eu/destf/cs/0300>, <https://onto.tib.eu/destf/cs/0310>, <https://onto.tib.eu/destf/cs/0315>, <https://onto.tib.eu/destf/cs/0320>, <https://onto.tib.eu/destf/cs/0330>, <https://onto.tib.eu/destf/cs/0340>, <https://onto.tib.eu/destf/cs/0350>, <https://onto.tib.eu/destf/cs/0390> ;
skos:narrowerTransitive <https://onto.tib.eu/destf/cs/0300>, <https://onto.tib.eu/destf/cs/0310>, <https://onto.tib.eu/destf/cs/0315>, <https://onto.tib.eu/destf/cs/0320>, <https://onto.tib.eu/destf/cs/0330>, <https://onto.tib.eu/destf/cs/0340>, <https://onto.tib.eu/destf/cs/0350>, <https://onto.tib.eu/destf/cs/0390> ;
skos:notation "030"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Kath. Theologie"@de .
<https://onto.tib.eu/destf/cs/0300>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/030> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/030> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0300"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:note "Lehr- und Forschungsgebiete, die lediglich einem Lehr- und Forschungsbereich, aber keinem Fachgebiet zugeordnet werden können, sind hier nachzuweisen."@de ;
skos:prefLabel "Kath. Theologie allgemein"@de .
<https://onto.tib.eu/destf/cs/0310>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/030> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/030> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0310"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Biblische Theologie (kath. Th.)"@de .
<https://onto.tib.eu/destf/cs/0315>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/030> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/030> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0315"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Caritaswissenschaft"@de .
<https://onto.tib.eu/destf/cs/0320>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/030> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/030> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0320"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Historische Theologie (kath. Th.)"@de .
<https://onto.tib.eu/destf/cs/0330>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/030> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/030> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0330"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Systematische Theologie (kath. Th.)"@de .
<https://onto.tib.eu/destf/cs/0340>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/030> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/030> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0340"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Praktische Theologie und Religionspädagogik (kath. Th.)"@de .
<https://onto.tib.eu/destf/cs/0350>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/030> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/030> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0350"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Kanonistik (kath. Th.)"@de .
<https://onto.tib.eu/destf/cs/0390>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/030> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/030> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0390"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Altkatholische Theologie"@de .
<https://onto.tib.eu/destf/cs/04>
a skos:Concept ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:narrower <https://onto.tib.eu/destf/cs/330>, <https://onto.tib.eu/destf/cs/340>, <https://onto.tib.eu/destf/cs/360>, <https://onto.tib.eu/destf/cs/370>, <https://onto.tib.eu/destf/cs/390>, <https://onto.tib.eu/destf/cs/400>, <https://onto.tib.eu/destf/cs/410>, <https://onto.tib.eu/destf/cs/420> ;
skos:narrowerTransitive <https://onto.tib.eu/destf/cs/2950>, <https://onto.tib.eu/destf/cs/330>, <https://onto.tib.eu/destf/cs/3300>, <https://onto.tib.eu/destf/cs/3310>, <https://onto.tib.eu/destf/cs/3315>, <https://onto.tib.eu/destf/cs/3320>, <https://onto.tib.eu/destf/cs/340>, <https://onto.tib.eu/destf/cs/3400>, <https://onto.tib.eu/destf/cs/3410>, <https://onto.tib.eu/destf/cs/3420>, <https://onto.tib.eu/destf/cs/3430>, <https://onto.tib.eu/destf/cs/3450>, <https://onto.tib.eu/destf/cs/360>, <https://onto.tib.eu/destf/cs/3600>, <https://onto.tib.eu/destf/cs/3610>, <https://onto.tib.eu/destf/cs/3620>, <https://onto.tib.eu/destf/cs/3630>, <https://onto.tib.eu/destf/cs/3635>, <https://onto.tib.eu/destf/cs/3636>, <https://onto.tib.eu/destf/cs/3637>, <https://onto.tib.eu/destf/cs/3638>, <https://onto.tib.eu/destf/cs/3640>, <https://onto.tib.eu/destf/cs/3650>, <https://onto.tib.eu/destf/cs/3690>, <https://onto.tib.eu/destf/cs/370>, <https://onto.tib.eu/destf/cs/3700>, <https://onto.tib.eu/destf/cs/3710>, <https://onto.tib.eu/destf/cs/3720>, <https://onto.tib.eu/destf/cs/3730>, <https://onto.tib.eu/destf/cs/3740>, <https://onto.tib.eu/destf/cs/3750>, <https://onto.tib.eu/destf/cs/3760>, <https://onto.tib.eu/destf/cs/3770>, <https://onto.tib.eu/destf/cs/3780>, <https://onto.tib.eu/destf/cs/3790>, <https://onto.tib.eu/destf/cs/3800>, <https://onto.tib.eu/destf/cs/3810>, <https://onto.tib.eu/destf/cs/3820>, <https://onto.tib.eu/destf/cs/3830>, <https://onto.tib.eu/destf/cs/3840>, <https://onto.tib.eu/destf/cs/3850>, <https://onto.tib.eu/destf/cs/390>, <https://onto.tib.eu/destf/cs/3900>, <https://onto.tib.eu/destf/cs/3910>, <https://onto.tib.eu/destf/cs/3920>, <https://onto.tib.eu/destf/cs/3930>, <https://onto.tib.eu/destf/cs/3940>, <https://onto.tib.eu/destf/cs/3950>, <https://onto.tib.eu/destf/cs/400>, <https://onto.tib.eu/destf/cs/4000>, <https://onto.tib.eu/destf/cs/4010>, <https://onto.tib.eu/destf/cs/4020>, <https://onto.tib.eu/destf/cs/4030>, <https://onto.tib.eu/destf/cs/4035>, <https://onto.tib.eu/destf/cs/4040>, <https://onto.tib.eu/destf/cs/4050>, <https://onto.tib.eu/destf/cs/4060>, <https://onto.tib.eu/destf/cs/4065>, <https://onto.tib.eu/destf/cs/4070>, <https://onto.tib.eu/destf/cs/4080>, <https://onto.tib.eu/destf/cs/4090>, <https://onto.tib.eu/destf/cs/410>, <https://onto.tib.eu/destf/cs/4100>, <https://onto.tib.eu/destf/cs/4110>, <https://onto.tib.eu/destf/cs/4120>, <https://onto.tib.eu/destf/cs/4130>, <https://onto.tib.eu/destf/cs/4135>, <https://onto.tib.eu/destf/cs/4140>, <https://onto.tib.eu/destf/cs/4150>, <https://onto.tib.eu/destf/cs/4160>, <https://onto.tib.eu/destf/cs/4170>, <https://onto.tib.eu/destf/cs/4180>, <https://onto.tib.eu/destf/cs/4190>, <https://onto.tib.eu/destf/cs/420>, <https://onto.tib.eu/destf/cs/4200>, <https://onto.tib.eu/destf/cs/4205>, <https://onto.tib.eu/destf/cs/4210>, <https://onto.tib.eu/destf/cs/4215>, <https://onto.tib.eu/destf/cs/4220>, <https://onto.tib.eu/destf/cs/4230>, <https://onto.tib.eu/destf/cs/4240>, <https://onto.tib.eu/destf/cs/4250> ;
skos:notation "04"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Mathematik, Naturwissenschaften"@de ;
skos:topConceptOf <https://onto.tib.eu/destf/cs/> .
<https://onto.tib.eu/destf/cs/040>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/01> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:narrower <https://onto.tib.eu/destf/cs/0400>, <https://onto.tib.eu/destf/cs/0410>, <https://onto.tib.eu/destf/cs/0420>, <https://onto.tib.eu/destf/cs/0425>, <https://onto.tib.eu/destf/cs/0426>, <https://onto.tib.eu/destf/cs/0430> ;
skos:narrowerTransitive <https://onto.tib.eu/destf/cs/0400>, <https://onto.tib.eu/destf/cs/0410>, <https://onto.tib.eu/destf/cs/0420>, <https://onto.tib.eu/destf/cs/0425>, <https://onto.tib.eu/destf/cs/0426>, <https://onto.tib.eu/destf/cs/0430> ;
skos:notation "040"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Philosophie"@de .
<https://onto.tib.eu/destf/cs/0400>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/040> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/040> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0400"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:note "Lehr- und Forschungsgebiete, die lediglich einem Lehr- und Forschungsbereich, aber keinem Fachgebiet zugeordnet werden können, sind hier nachzuweisen."@de ;
skos:prefLabel "Philosophie allgemein"@de .
<https://onto.tib.eu/destf/cs/0410>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/040> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/040> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0410"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Religionswissenschaft"@de .
<https://onto.tib.eu/destf/cs/0420>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/040> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/040> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0420"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Didaktik der Philosophie/Ethik"@de .
<https://onto.tib.eu/destf/cs/0425>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/040> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/040> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0425"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Geschichte der Philosophie"@de .
<https://onto.tib.eu/destf/cs/0426>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/040> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/040> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0426"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Logik"@de .
<https://onto.tib.eu/destf/cs/0430>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/040> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/040> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0430"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Wissenschaftsforschung/-lehre"@de .
<https://onto.tib.eu/destf/cs/05>
a skos:Concept ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:narrower <https://onto.tib.eu/destf/cs/440>, <https://onto.tib.eu/destf/cs/445>, <https://onto.tib.eu/destf/cs/450>, <https://onto.tib.eu/destf/cs/470>, <https://onto.tib.eu/destf/cs/490>, <https://onto.tib.eu/destf/cs/520> ;
skos:narrowerTransitive <https://onto.tib.eu/destf/cs/440>, <https://onto.tib.eu/destf/cs/4400>, <https://onto.tib.eu/destf/cs/445>, <https://onto.tib.eu/destf/cs/4450>, <https://onto.tib.eu/destf/cs/4451>, <https://onto.tib.eu/destf/cs/4453>, <https://onto.tib.eu/destf/cs/4455>, <https://onto.tib.eu/destf/cs/4457>, <https://onto.tib.eu/destf/cs/4459>, <https://onto.tib.eu/destf/cs/450>, <https://onto.tib.eu/destf/cs/4500>, <https://onto.tib.eu/destf/cs/4510>, <https://onto.tib.eu/destf/cs/4520>, <https://onto.tib.eu/destf/cs/4525>, <https://onto.tib.eu/destf/cs/4530>, <https://onto.tib.eu/destf/cs/4540>, <https://onto.tib.eu/destf/cs/4550>, <https://onto.tib.eu/destf/cs/4560>, <https://onto.tib.eu/destf/cs/4580>, <https://onto.tib.eu/destf/cs/4585>, <https://onto.tib.eu/destf/cs/4590>, <https://onto.tib.eu/destf/cs/4595>, <https://onto.tib.eu/destf/cs/4610>, <https://onto.tib.eu/destf/cs/470>, <https://onto.tib.eu/destf/cs/4700>, <https://onto.tib.eu/destf/cs/4705>, <https://onto.tib.eu/destf/cs/4710>, <https://onto.tib.eu/destf/cs/4715>, <https://onto.tib.eu/destf/cs/4716>, <https://onto.tib.eu/destf/cs/4720>, <https://onto.tib.eu/destf/cs/4725>, <https://onto.tib.eu/destf/cs/4730>, <https://onto.tib.eu/destf/cs/4732>, <https://onto.tib.eu/destf/cs/4735>, <https://onto.tib.eu/destf/cs/4736>, <https://onto.tib.eu/destf/cs/4737>, <https://onto.tib.eu/destf/cs/4738>, <https://onto.tib.eu/destf/cs/4740>, <https://onto.tib.eu/destf/cs/4745>, <https://onto.tib.eu/destf/cs/4750>, <https://onto.tib.eu/destf/cs/4760>, <https://onto.tib.eu/destf/cs/4770>, <https://onto.tib.eu/destf/cs/4775>, <https://onto.tib.eu/destf/cs/4776>, <https://onto.tib.eu/destf/cs/4780>, <https://onto.tib.eu/destf/cs/4790>, <https://onto.tib.eu/destf/cs/4810>, <https://onto.tib.eu/destf/cs/4820>, <https://onto.tib.eu/destf/cs/490>, <https://onto.tib.eu/destf/cs/4900>, <https://onto.tib.eu/destf/cs/4910>, <https://onto.tib.eu/destf/cs/4920>, <https://onto.tib.eu/destf/cs/4930>, <https://onto.tib.eu/destf/cs/4935>, <https://onto.tib.eu/destf/cs/4936>, <https://onto.tib.eu/destf/cs/4940>, <https://onto.tib.eu/destf/cs/4950>, <https://onto.tib.eu/destf/cs/4960>, <https://onto.tib.eu/destf/cs/4970>, <https://onto.tib.eu/destf/cs/4980>, <https://onto.tib.eu/destf/cs/4990>, <https://onto.tib.eu/destf/cs/5010>, <https://onto.tib.eu/destf/cs/5015>, <https://onto.tib.eu/destf/cs/5020>, <https://onto.tib.eu/destf/cs/5030>, <https://onto.tib.eu/destf/cs/5040>, <https://onto.tib.eu/destf/cs/5050>, <https://onto.tib.eu/destf/cs/5060>, <https://onto.tib.eu/destf/cs/5070>, <https://onto.tib.eu/destf/cs/5080>, <https://onto.tib.eu/destf/cs/5090>, <https://onto.tib.eu/destf/cs/5110>, <https://onto.tib.eu/destf/cs/5120>, <https://onto.tib.eu/destf/cs/5130>, <https://onto.tib.eu/destf/cs/5140>, <https://onto.tib.eu/destf/cs/5150>, <https://onto.tib.eu/destf/cs/5160>, <https://onto.tib.eu/destf/cs/520>, <https://onto.tib.eu/destf/cs/5200>, <https://onto.tib.eu/destf/cs/5210>, <https://onto.tib.eu/destf/cs/5220>, <https://onto.tib.eu/destf/cs/5230>, <https://onto.tib.eu/destf/cs/5240> ;
skos:notation "05"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Humanmedizin/Gesundheitswissenschaften"@de ;
skos:topConceptOf <https://onto.tib.eu/destf/cs/> .
<https://onto.tib.eu/destf/cs/050>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/01> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:narrower <https://onto.tib.eu/destf/cs/0500>, <https://onto.tib.eu/destf/cs/0510>, <https://onto.tib.eu/destf/cs/0520>, <https://onto.tib.eu/destf/cs/0530>, <https://onto.tib.eu/destf/cs/0540>, <https://onto.tib.eu/destf/cs/0550>, <https://onto.tib.eu/destf/cs/0560>, <https://onto.tib.eu/destf/cs/0570>, <https://onto.tib.eu/destf/cs/0580>, <https://onto.tib.eu/destf/cs/0585>, <https://onto.tib.eu/destf/cs/0590> ;
skos:narrowerTransitive <https://onto.tib.eu/destf/cs/0500>, <https://onto.tib.eu/destf/cs/0510>, <https://onto.tib.eu/destf/cs/0520>, <https://onto.tib.eu/destf/cs/0530>, <https://onto.tib.eu/destf/cs/0540>, <https://onto.tib.eu/destf/cs/0550>, <https://onto.tib.eu/destf/cs/0560>, <https://onto.tib.eu/destf/cs/0570>, <https://onto.tib.eu/destf/cs/0580>, <https://onto.tib.eu/destf/cs/0585>, <https://onto.tib.eu/destf/cs/0590> ;
skos:notation "050"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Geschichte"@de .
<https://onto.tib.eu/destf/cs/0500>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/050> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/050> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0500"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:note "Lehr- und Forschungsgebiete, die lediglich einem Lehr- und Forschungsbereich, aber keinem Fachgebiet zugeordnet werden können, sind hier nachzuweisen."@de ;
skos:prefLabel "Geschichte allgemein"@de .
<https://onto.tib.eu/destf/cs/0510>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/050> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/050> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0510"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Ur- und Frühgeschichte"@de .
<https://onto.tib.eu/destf/cs/0520>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/050> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/050> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0520"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Alte Geschichte"@de .
<https://onto.tib.eu/destf/cs/0530>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/050> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/050> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0530"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Mittelalterliche Geschichte"@de .
<https://onto.tib.eu/destf/cs/0540>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/050> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/050> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0540"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Neuere und neueste Geschichte"@de .
<https://onto.tib.eu/destf/cs/0550>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/050> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/050> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0550"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Länder-, Landesgeschichte"@de .
<https://onto.tib.eu/destf/cs/0560>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/050> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/050> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0560"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Wirtschafts- und Sozialgeschichte"@de .
<https://onto.tib.eu/destf/cs/0570>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/050> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/050> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0570"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Archäologie"@de .
<https://onto.tib.eu/destf/cs/0580>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/050> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/050> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0580"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Didaktik der Geschichte"@de .
<https://onto.tib.eu/destf/cs/0585>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/050> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/050> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0585"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Kultur- und Geistesgeschichte"@de .
<https://onto.tib.eu/destf/cs/0590>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/050> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/050> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0590"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Technikgeschichte"@de .
<https://onto.tib.eu/destf/cs/07>
a skos:Concept ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:narrower <https://onto.tib.eu/destf/cs/540>, <https://onto.tib.eu/destf/cs/550>, <https://onto.tib.eu/destf/cs/560>, <https://onto.tib.eu/destf/cs/580>, <https://onto.tib.eu/destf/cs/610>, <https://onto.tib.eu/destf/cs/615>, <https://onto.tib.eu/destf/cs/620>, <https://onto.tib.eu/destf/cs/640>, <https://onto.tib.eu/destf/cs/650> ;
skos:narrowerTransitive <https://onto.tib.eu/destf/cs/540>, <https://onto.tib.eu/destf/cs/5400>, <https://onto.tib.eu/destf/cs/550>, <https://onto.tib.eu/destf/cs/5500>, <https://onto.tib.eu/destf/cs/5510>, <https://onto.tib.eu/destf/cs/5520>, <https://onto.tib.eu/destf/cs/5530>, <https://onto.tib.eu/destf/cs/5535>, <https://onto.tib.eu/destf/cs/560>, <https://onto.tib.eu/destf/cs/5600>, <https://onto.tib.eu/destf/cs/5610>, <https://onto.tib.eu/destf/cs/5620>, <https://onto.tib.eu/destf/cs/5630>, <https://onto.tib.eu/destf/cs/5640>, <https://onto.tib.eu/destf/cs/5650>, <https://onto.tib.eu/destf/cs/5660>, <https://onto.tib.eu/destf/cs/5670>, <https://onto.tib.eu/destf/cs/5680>, <https://onto.tib.eu/destf/cs/580>, <https://onto.tib.eu/destf/cs/5800>, <https://onto.tib.eu/destf/cs/5810>, <https://onto.tib.eu/destf/cs/5820>, <https://onto.tib.eu/destf/cs/5830>, <https://onto.tib.eu/destf/cs/5840>, <https://onto.tib.eu/destf/cs/5850>, <https://onto.tib.eu/destf/cs/5860>, <https://onto.tib.eu/destf/cs/5870>, <https://onto.tib.eu/destf/cs/5880>, <https://onto.tib.eu/destf/cs/5890>, <https://onto.tib.eu/destf/cs/5910>, <https://onto.tib.eu/destf/cs/5920>, <https://onto.tib.eu/destf/cs/610>, <https://onto.tib.eu/destf/cs/6100>, <https://onto.tib.eu/destf/cs/6105>, <https://onto.tib.eu/destf/cs/6106>, <https://onto.tib.eu/destf/cs/6107>, <https://onto.tib.eu/destf/cs/6108>, <https://onto.tib.eu/destf/cs/615>, <https://onto.tib.eu/destf/cs/620>, <https://onto.tib.eu/destf/cs/6200>, <https://onto.tib.eu/destf/cs/6205>, <https://onto.tib.eu/destf/cs/6210>, <https://onto.tib.eu/destf/cs/6220>, <https://onto.tib.eu/destf/cs/6230>, <https://onto.tib.eu/destf/cs/6235>, <https://onto.tib.eu/destf/cs/6240>, <https://onto.tib.eu/destf/cs/6250>, <https://onto.tib.eu/destf/cs/6255>, <https://onto.tib.eu/destf/cs/6260>, <https://onto.tib.eu/destf/cs/6300>, <https://onto.tib.eu/destf/cs/6310>, <https://onto.tib.eu/destf/cs/6315>, <https://onto.tib.eu/destf/cs/6320>, <https://onto.tib.eu/destf/cs/6330>, <https://onto.tib.eu/destf/cs/6340>, <https://onto.tib.eu/destf/cs/6350>, <https://onto.tib.eu/destf/cs/640>, <https://onto.tib.eu/destf/cs/6400>, <https://onto.tib.eu/destf/cs/6410>, <https://onto.tib.eu/destf/cs/6415>, <https://onto.tib.eu/destf/cs/6420>, <https://onto.tib.eu/destf/cs/6430>, <https://onto.tib.eu/destf/cs/650>, <https://onto.tib.eu/destf/cs/6500>, <https://onto.tib.eu/destf/cs/6510>, <https://onto.tib.eu/destf/cs/6520> ;
skos:notation "07"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Agrar-, Forst- und Ernährungswissenschaften, Veterinärmedizin"@de ;
skos:topConceptOf <https://onto.tib.eu/destf/cs/> .
<https://onto.tib.eu/destf/cs/070>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/01> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:narrower <https://onto.tib.eu/destf/cs/0700>, <https://onto.tib.eu/destf/cs/0710>, <https://onto.tib.eu/destf/cs/0720> ;
skos:narrowerTransitive <https://onto.tib.eu/destf/cs/0700>, <https://onto.tib.eu/destf/cs/0710>, <https://onto.tib.eu/destf/cs/0720> ;
skos:notation "070"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Bibliothekswissenschaft, Dokumentation"@de .
<https://onto.tib.eu/destf/cs/0700>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/070> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/070> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0700"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:note "Lehr- und Forschungsgebiete, die lediglich einem Lehr- und Forschungsbereich, aber keinem Fachgebiet zugeordnet werden können, sind hier nachzuweisen."@de ;
skos:prefLabel "Bibliothekswissenschaft, Dokumentation allgemein"@de .
<https://onto.tib.eu/destf/cs/0710>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/070> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/070> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0710"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Bibliothekswissenschaft/-wesen (nicht für Verwaltungs-FH)"@de .
<https://onto.tib.eu/destf/cs/0720>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/070> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/070> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0720"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Dokumentationswissenschaft"@de .
<https://onto.tib.eu/destf/cs/08>
a skos:Concept ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:narrower <https://onto.tib.eu/destf/cs/670>, <https://onto.tib.eu/destf/cs/675>, <https://onto.tib.eu/destf/cs/680>, <https://onto.tib.eu/destf/cs/690>, <https://onto.tib.eu/destf/cs/710>, <https://onto.tib.eu/destf/cs/720>, <https://onto.tib.eu/destf/cs/730>, <https://onto.tib.eu/destf/cs/740>, <https://onto.tib.eu/destf/cs/750>, <https://onto.tib.eu/destf/cs/760>, <https://onto.tib.eu/destf/cs/765>, <https://onto.tib.eu/destf/cs/770> ;
skos:narrowerTransitive <https://onto.tib.eu/destf/cs/2990>, <https://onto.tib.eu/destf/cs/3500>, <https://onto.tib.eu/destf/cs/3510>, <https://onto.tib.eu/destf/cs/3520>, <https://onto.tib.eu/destf/cs/3530>, <https://onto.tib.eu/destf/cs/3540>, <https://onto.tib.eu/destf/cs/3550>, <https://onto.tib.eu/destf/cs/3560>, <https://onto.tib.eu/destf/cs/3570>, <https://onto.tib.eu/destf/cs/670>, <https://onto.tib.eu/destf/cs/6700>, <https://onto.tib.eu/destf/cs/6710>, <https://onto.tib.eu/destf/cs/6720>, <https://onto.tib.eu/destf/cs/6740>, <https://onto.tib.eu/destf/cs/675>, <https://onto.tib.eu/destf/cs/6750>, <https://onto.tib.eu/destf/cs/6755>, <https://onto.tib.eu/destf/cs/6760>, <https://onto.tib.eu/destf/cs/6780>, <https://onto.tib.eu/destf/cs/6790>, <https://onto.tib.eu/destf/cs/680>, <https://onto.tib.eu/destf/cs/6800>, <https://onto.tib.eu/destf/cs/6810>, <https://onto.tib.eu/destf/cs/6820>, <https://onto.tib.eu/destf/cs/6830>, <https://onto.tib.eu/destf/cs/6840>, <https://onto.tib.eu/destf/cs/6845>, <https://onto.tib.eu/destf/cs/6850>, <https://onto.tib.eu/destf/cs/6855>, <https://onto.tib.eu/destf/cs/6860>, <https://onto.tib.eu/destf/cs/6870>, <https://onto.tib.eu/destf/cs/690>, <https://onto.tib.eu/destf/cs/6900>, <https://onto.tib.eu/destf/cs/6905>, <https://onto.tib.eu/destf/cs/6906>, <https://onto.tib.eu/destf/cs/6907>, <https://onto.tib.eu/destf/cs/6910>, <https://onto.tib.eu/destf/cs/6920>, <https://onto.tib.eu/destf/cs/6930>, <https://onto.tib.eu/destf/cs/6935>, <https://onto.tib.eu/destf/cs/6940>, <https://onto.tib.eu/destf/cs/6945>, <https://onto.tib.eu/destf/cs/6950>, <https://onto.tib.eu/destf/cs/6960>, <https://onto.tib.eu/destf/cs/6965>, <https://onto.tib.eu/destf/cs/6970>, <https://onto.tib.eu/destf/cs/6975>, <https://onto.tib.eu/destf/cs/6976>, <https://onto.tib.eu/destf/cs/6980>, <https://onto.tib.eu/destf/cs/6985>, <https://onto.tib.eu/destf/cs/6990>, <https://onto.tib.eu/destf/cs/7010>, <https://onto.tib.eu/destf/cs/7020>, <https://onto.tib.eu/destf/cs/7030>, <https://onto.tib.eu/destf/cs/7040>, <https://onto.tib.eu/destf/cs/7045>, <https://onto.tib.eu/destf/cs/710>, <https://onto.tib.eu/destf/cs/7100>, <https://onto.tib.eu/destf/cs/7110>, <https://onto.tib.eu/destf/cs/7120>, <https://onto.tib.eu/destf/cs/7125>, <https://onto.tib.eu/destf/cs/7130>, <https://onto.tib.eu/destf/cs/7140>, <https://onto.tib.eu/destf/cs/7150>, <https://onto.tib.eu/destf/cs/7155>, <https://onto.tib.eu/destf/cs/7160>, <https://onto.tib.eu/destf/cs/7170>, <https://onto.tib.eu/destf/cs/7190>, <https://onto.tib.eu/destf/cs/720>, <https://onto.tib.eu/destf/cs/7200>, <https://onto.tib.eu/destf/cs/7210>, <https://onto.tib.eu/destf/cs/7215>, <https://onto.tib.eu/destf/cs/7220>, <https://onto.tib.eu/destf/cs/7230>, <https://onto.tib.eu/destf/cs/7240>, <https://onto.tib.eu/destf/cs/7245>, <https://onto.tib.eu/destf/cs/7246>, <https://onto.tib.eu/destf/cs/730>, <https://onto.tib.eu/destf/cs/7300>, <https://onto.tib.eu/destf/cs/7310>, <https://onto.tib.eu/destf/cs/7320>, <https://onto.tib.eu/destf/cs/7330>, <https://onto.tib.eu/destf/cs/7335>, <https://onto.tib.eu/destf/cs/7340>, <https://onto.tib.eu/destf/cs/7350>, <https://onto.tib.eu/destf/cs/7390>, <https://onto.tib.eu/destf/cs/7395>, <https://onto.tib.eu/destf/cs/740>, <https://onto.tib.eu/destf/cs/7400>, <https://onto.tib.eu/destf/cs/7410>, <https://onto.tib.eu/destf/cs/7420>, <https://onto.tib.eu/destf/cs/7430>, <https://onto.tib.eu/destf/cs/7440>, <https://onto.tib.eu/destf/cs/7450>, <https://onto.tib.eu/destf/cs/7460>, <https://onto.tib.eu/destf/cs/750>, <https://onto.tib.eu/destf/cs/7500>, <https://onto.tib.eu/destf/cs/7510>, <https://onto.tib.eu/destf/cs/7520>, <https://onto.tib.eu/destf/cs/7530>, <https://onto.tib.eu/destf/cs/7540>, <https://onto.tib.eu/destf/cs/7550>, <https://onto.tib.eu/destf/cs/7570>, <https://onto.tib.eu/destf/cs/760>, <https://onto.tib.eu/destf/cs/7600>, <https://onto.tib.eu/destf/cs/7610>, <https://onto.tib.eu/destf/cs/7620>, <https://onto.tib.eu/destf/cs/765>, <https://onto.tib.eu/destf/cs/7660>, <https://onto.tib.eu/destf/cs/770>, <https://onto.tib.eu/destf/cs/7700> ;
skos:notation "08"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Ingenieurwissenschaften"@de ;
skos:topConceptOf <https://onto.tib.eu/destf/cs/> .
<https://onto.tib.eu/destf/cs/080>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/01> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:narrower <https://onto.tib.eu/destf/cs/0800>, <https://onto.tib.eu/destf/cs/0810>, <https://onto.tib.eu/destf/cs/0820>, <https://onto.tib.eu/destf/cs/0830>, <https://onto.tib.eu/destf/cs/0835>, <https://onto.tib.eu/destf/cs/0840>, <https://onto.tib.eu/destf/cs/0845> ;
skos:narrowerTransitive <https://onto.tib.eu/destf/cs/0800>, <https://onto.tib.eu/destf/cs/0810>, <https://onto.tib.eu/destf/cs/0820>, <https://onto.tib.eu/destf/cs/0830>, <https://onto.tib.eu/destf/cs/0835>, <https://onto.tib.eu/destf/cs/0840>, <https://onto.tib.eu/destf/cs/0845> ;
skos:notation "080"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Allgemeine und vergleichende Literatur- und Sprachwissenschaft"@de .
<https://onto.tib.eu/destf/cs/0800>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/080> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/080> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0800"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:note "Lehr- und Forschungsgebiete, die lediglich einem Lehr- und Forschungsbereich, aber keinem Fachgebiet zugeordnet werden können, sind hier nachzuweisen."@de ;
skos:prefLabel "Allg. und vergleichende Literatur- und Sprachwissenschaft allgemein"@de .
<https://onto.tib.eu/destf/cs/0810>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/080> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/080> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0810"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Allg. und vergleichende Sprachwissenschaft"@de .
<https://onto.tib.eu/destf/cs/0820>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/080> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/080> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0820"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Allg. und vergleichende Literaturwissenschaft"@de .
<https://onto.tib.eu/destf/cs/0830>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/080> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/080> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0830"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Angewandte Sprachwissenschaft, berufsbezogene Fremdsprachenausbildung"@de .
<https://onto.tib.eu/destf/cs/0835>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/080> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/080> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0835"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Computerlinguistik"@de .
<https://onto.tib.eu/destf/cs/0840>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/080> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/080> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0840"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Fremdsprachenausbildung (f. Hörer aller Fakultäten)"@de .
<https://onto.tib.eu/destf/cs/0845>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/080> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/080> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0845"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Indogermanistik"@de .
<https://onto.tib.eu/destf/cs/09>
a skos:Concept ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:narrower <https://onto.tib.eu/destf/cs/780>, <https://onto.tib.eu/destf/cs/790>, <https://onto.tib.eu/destf/cs/800>, <https://onto.tib.eu/destf/cs/820>, <https://onto.tib.eu/destf/cs/830> ;
skos:narrowerTransitive <https://onto.tib.eu/destf/cs/780>, <https://onto.tib.eu/destf/cs/7800>, <https://onto.tib.eu/destf/cs/7810>, <https://onto.tib.eu/destf/cs/7820>, <https://onto.tib.eu/destf/cs/7830>, <https://onto.tib.eu/destf/cs/7840>, <https://onto.tib.eu/destf/cs/790>, <https://onto.tib.eu/destf/cs/7900>, <https://onto.tib.eu/destf/cs/7920>, <https://onto.tib.eu/destf/cs/7930>, <https://onto.tib.eu/destf/cs/7940>, <https://onto.tib.eu/destf/cs/7950>, <https://onto.tib.eu/destf/cs/7960>, <https://onto.tib.eu/destf/cs/800>, <https://onto.tib.eu/destf/cs/8000>, <https://onto.tib.eu/destf/cs/8010>, <https://onto.tib.eu/destf/cs/8020>, <https://onto.tib.eu/destf/cs/8030>, <https://onto.tib.eu/destf/cs/8035>, <https://onto.tib.eu/destf/cs/8040>, <https://onto.tib.eu/destf/cs/8050>, <https://onto.tib.eu/destf/cs/8060>, <https://onto.tib.eu/destf/cs/8070>, <https://onto.tib.eu/destf/cs/8075>, <https://onto.tib.eu/destf/cs/8076>, <https://onto.tib.eu/destf/cs/820>, <https://onto.tib.eu/destf/cs/8200>, <https://onto.tib.eu/destf/cs/8210>, <https://onto.tib.eu/destf/cs/8220>, <https://onto.tib.eu/destf/cs/8225>, <https://onto.tib.eu/destf/cs/8230>, <https://onto.tib.eu/destf/cs/8240>, <https://onto.tib.eu/destf/cs/8250>, <https://onto.tib.eu/destf/cs/8270>, <https://onto.tib.eu/destf/cs/8275>, <https://onto.tib.eu/destf/cs/830>, <https://onto.tib.eu/destf/cs/8300>, <https://onto.tib.eu/destf/cs/8310>, <https://onto.tib.eu/destf/cs/8315>, <https://onto.tib.eu/destf/cs/8320>, <https://onto.tib.eu/destf/cs/8325>, <https://onto.tib.eu/destf/cs/8330>, <https://onto.tib.eu/destf/cs/8340>, <https://onto.tib.eu/destf/cs/8350>, <https://onto.tib.eu/destf/cs/8360>, <https://onto.tib.eu/destf/cs/8363>, <https://onto.tib.eu/destf/cs/8364>, <https://onto.tib.eu/destf/cs/8365> ;
skos:notation "09"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Kunst, Kunstwissenschaft"@de ;
skos:topConceptOf <https://onto.tib.eu/destf/cs/> .
<https://onto.tib.eu/destf/cs/090>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/01> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:narrower <https://onto.tib.eu/destf/cs/0900>, <https://onto.tib.eu/destf/cs/0910>, <https://onto.tib.eu/destf/cs/0920>, <https://onto.tib.eu/destf/cs/0930>, <https://onto.tib.eu/destf/cs/0940>, <https://onto.tib.eu/destf/cs/0950>, <https://onto.tib.eu/destf/cs/0960> ;
skos:narrowerTransitive <https://onto.tib.eu/destf/cs/0900>, <https://onto.tib.eu/destf/cs/0910>, <https://onto.tib.eu/destf/cs/0920>, <https://onto.tib.eu/destf/cs/0930>, <https://onto.tib.eu/destf/cs/0940>, <https://onto.tib.eu/destf/cs/0950>, <https://onto.tib.eu/destf/cs/0960> ;
skos:notation "090"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Altphilologie (klass. Philologie)"@de .
<https://onto.tib.eu/destf/cs/0900>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/090> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/090> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0900"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:note "Lehr- und Forschungsgebiete, die lediglich einem Lehr- und Forschungsbereich, aber keinem Fachgebiet zugeordnet werden können, sind hier nachzuweisen."@de ;
skos:prefLabel "Altphilologie allgemein"@de .
<https://onto.tib.eu/destf/cs/0910>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/090> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/090> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0910"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Griechische Philologie"@de .
<https://onto.tib.eu/destf/cs/0920>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/090> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/090> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0920"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Lateinische Philologie"@de .
<https://onto.tib.eu/destf/cs/0930>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/090> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/090> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0930"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Byzantinistik"@de .
<https://onto.tib.eu/destf/cs/0940>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/090> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/090> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0940"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Neugriechisch"@de .
<https://onto.tib.eu/destf/cs/0950>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/090> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/090> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0950"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Papyrologie"@de .
<https://onto.tib.eu/destf/cs/0960>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/090> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/090> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "0960"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Didaktik der Altphilologie"@de .
<https://onto.tib.eu/destf/cs/100>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/01> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:narrower <https://onto.tib.eu/destf/cs/1000>, <https://onto.tib.eu/destf/cs/1020>, <https://onto.tib.eu/destf/cs/1030>, <https://onto.tib.eu/destf/cs/1040>, <https://onto.tib.eu/destf/cs/1050>, <https://onto.tib.eu/destf/cs/1070>, <https://onto.tib.eu/destf/cs/1080>, <https://onto.tib.eu/destf/cs/1090> ;
skos:narrowerTransitive <https://onto.tib.eu/destf/cs/1000>, <https://onto.tib.eu/destf/cs/1020>, <https://onto.tib.eu/destf/cs/1030>, <https://onto.tib.eu/destf/cs/1040>, <https://onto.tib.eu/destf/cs/1050>, <https://onto.tib.eu/destf/cs/1070>, <https://onto.tib.eu/destf/cs/1080>, <https://onto.tib.eu/destf/cs/1090> ;
skos:notation "100"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Germanistik (Deutsch, germanische Sprachen ohne Anglistik)"@de .
<https://onto.tib.eu/destf/cs/1000>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/100> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/100> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1000"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:note "Lehr- und Forschungsgebiete, die lediglich einem Lehr- und Forschungsbereich, aber keinem Fachgebiet zugeordnet werden können, sind hier nachzuweisen."@de ;
skos:prefLabel "Germanistik (Deutsch, germanische Sprachen ohne Anglistik) allgemein"@de .
<https://onto.tib.eu/destf/cs/1020>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/100> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/100> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1020"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Skandinavistik"@de .
<https://onto.tib.eu/destf/cs/1030>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/100> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/100> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1030"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Niederlandistik"@de .
<https://onto.tib.eu/destf/cs/1040>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/100> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/100> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1040"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Deutsch als Fremdsprache oder als Zweitsprache"@de .
<https://onto.tib.eu/destf/cs/1050>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/100> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/100> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1050"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Didaktik der deutschen Sprache"@de .
<https://onto.tib.eu/destf/cs/1070>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/100> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/100> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1070"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Sonstige germanische Sprachen (ohne Anglistik)"@de .
<https://onto.tib.eu/destf/cs/1080>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/100> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/100> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1080"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Deutsche Literaturwissenschaft"@de .
<https://onto.tib.eu/destf/cs/1090>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/100> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/100> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1090"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Deutsche Sprachwissenschaft"@de .
<https://onto.tib.eu/destf/cs/110>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/01> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:narrower <https://onto.tib.eu/destf/cs/1100>, <https://onto.tib.eu/destf/cs/1110>, <https://onto.tib.eu/destf/cs/1120>, <https://onto.tib.eu/destf/cs/1125> ;
skos:narrowerTransitive <https://onto.tib.eu/destf/cs/1100>, <https://onto.tib.eu/destf/cs/1110>, <https://onto.tib.eu/destf/cs/1120>, <https://onto.tib.eu/destf/cs/1125> ;
skos:notation "110"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Anglistik, Amerikanistik"@de .
<https://onto.tib.eu/destf/cs/1100>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/110> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/110> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1100"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Anglistik"@de .
<https://onto.tib.eu/destf/cs/1110>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/110> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/110> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1110"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Amerikanistik"@de .
<https://onto.tib.eu/destf/cs/1120>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/110> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/110> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1120"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Didaktik des Englischen"@de .
<https://onto.tib.eu/destf/cs/1125>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/110> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/110> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1125"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Wirtschaftsenglisch, Englische Fachsprachen"@de .
<https://onto.tib.eu/destf/cs/120>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/01> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:narrower <https://onto.tib.eu/destf/cs/1200>, <https://onto.tib.eu/destf/cs/1210>, <https://onto.tib.eu/destf/cs/1215>, <https://onto.tib.eu/destf/cs/1220>, <https://onto.tib.eu/destf/cs/1225>, <https://onto.tib.eu/destf/cs/1230>, <https://onto.tib.eu/destf/cs/1235>, <https://onto.tib.eu/destf/cs/1240> ;
skos:narrowerTransitive <https://onto.tib.eu/destf/cs/1200>, <https://onto.tib.eu/destf/cs/1210>, <https://onto.tib.eu/destf/cs/1215>, <https://onto.tib.eu/destf/cs/1220>, <https://onto.tib.eu/destf/cs/1225>, <https://onto.tib.eu/destf/cs/1230>, <https://onto.tib.eu/destf/cs/1235>, <https://onto.tib.eu/destf/cs/1240> ;
skos:notation "120"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Romanistik"@de .
<https://onto.tib.eu/destf/cs/1200>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/120> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/120> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1200"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:note "Lehr- und Forschungsgebiete, die lediglich einem Lehr- und Forschungsbereich, aber keinem Fachgebiet zugeordnet werden können, sind hier nachzuweisen."@de ;
skos:prefLabel "Romanistik allgemein"@de .
<https://onto.tib.eu/destf/cs/1210>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/120> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/120> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1210"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Französische Sprach- und Literaturwissenschaft"@de .
<https://onto.tib.eu/destf/cs/1215>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/120> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/120> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1215"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Didaktik des Französischen"@de .
<https://onto.tib.eu/destf/cs/1220>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/120> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/120> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1220"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Italienische Sprach- und Literaturwissenschaft"@de .
<https://onto.tib.eu/destf/cs/1225>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/120> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/120> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1225"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Didaktik des Italienischen"@de .
<https://onto.tib.eu/destf/cs/1230>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/120> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/120> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1230"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Iberoromanische Sprach- und Literaturwissenschaft"@de .
<https://onto.tib.eu/destf/cs/1235>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/120> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/120> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1235"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Didaktik des Spanischen"@de .
<https://onto.tib.eu/destf/cs/1240>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/120> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/120> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1240"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Sonstige romanische Sprachen"@de .
<https://onto.tib.eu/destf/cs/130>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/01> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:narrower <https://onto.tib.eu/destf/cs/1300>, <https://onto.tib.eu/destf/cs/1310>, <https://onto.tib.eu/destf/cs/1315>, <https://onto.tib.eu/destf/cs/1320>, <https://onto.tib.eu/destf/cs/1340>, <https://onto.tib.eu/destf/cs/1345>, <https://onto.tib.eu/destf/cs/1346>, <https://onto.tib.eu/destf/cs/1347>, <https://onto.tib.eu/destf/cs/1348>, <https://onto.tib.eu/destf/cs/1350>, <https://onto.tib.eu/destf/cs/1370>, <https://onto.tib.eu/destf/cs/1380> ;
skos:narrowerTransitive <https://onto.tib.eu/destf/cs/1300>, <https://onto.tib.eu/destf/cs/1310>, <https://onto.tib.eu/destf/cs/1315>, <https://onto.tib.eu/destf/cs/1320>, <https://onto.tib.eu/destf/cs/1340>, <https://onto.tib.eu/destf/cs/1345>, <https://onto.tib.eu/destf/cs/1346>, <https://onto.tib.eu/destf/cs/1347>, <https://onto.tib.eu/destf/cs/1348>, <https://onto.tib.eu/destf/cs/1350>, <https://onto.tib.eu/destf/cs/1370>, <https://onto.tib.eu/destf/cs/1380> ;
skos:notation "130"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Slawistik, Baltistik, Finno-Ugristik"@de .
<https://onto.tib.eu/destf/cs/1300>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/130> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/130> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1300"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:note "Lehr- und Forschungsgebiete, die lediglich einem Lehr- und Forschungsbereich, aber keinem Fachgebiet zugeordnet werden können, sind hier nachzuweisen."@de ;
skos:prefLabel "Slawistik, Baltistik, Finno-Ugristik allgemein"@de .
<https://onto.tib.eu/destf/cs/1310>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/130> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/130> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1310"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:note "Lehr- und Forschungsgebiete, die lediglich einem Lehr- und Forschungsbereich, aber keinem Fachgebiet zugeordnet werden können, sind hier nachzuweisen."@de ;
skos:prefLabel "Slawistik allgemein"@de .
<https://onto.tib.eu/destf/cs/1315>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/130> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/130> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1315"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Ostslawische Philologien"@de .
<https://onto.tib.eu/destf/cs/1320>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/130> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/130> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1320"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Russische Sprach- und Literaturwissenschaft"@de .
<https://onto.tib.eu/destf/cs/1340>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/130> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/130> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1340"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Südslawische Philologien"@de .
<https://onto.tib.eu/destf/cs/1345>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/130> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/130> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1345"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Westslawische Philologien"@de .
<https://onto.tib.eu/destf/cs/1346>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/130> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/130> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1346"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Polnisch"@de .
<https://onto.tib.eu/destf/cs/1347>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/130> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/130> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1347"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Sorbisch"@de .
<https://onto.tib.eu/destf/cs/1348>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/130> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/130> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1348"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Tschechisch"@de .
<https://onto.tib.eu/destf/cs/1350>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/130> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/130> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1350"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Baltistik"@de .
<https://onto.tib.eu/destf/cs/1370>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/130> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/130> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1370"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Finno-Ugristik"@de .
<https://onto.tib.eu/destf/cs/1380>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/130> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/130> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1380"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Balkanologie"@de .
<https://onto.tib.eu/destf/cs/140>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/01> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:narrower <https://onto.tib.eu/destf/cs/1400>, <https://onto.tib.eu/destf/cs/1410>, <https://onto.tib.eu/destf/cs/1420>, <https://onto.tib.eu/destf/cs/1430>, <https://onto.tib.eu/destf/cs/1440>, <https://onto.tib.eu/destf/cs/1445>, <https://onto.tib.eu/destf/cs/1450>, <https://onto.tib.eu/destf/cs/1460>, <https://onto.tib.eu/destf/cs/1465>, <https://onto.tib.eu/destf/cs/1470>, <https://onto.tib.eu/destf/cs/1480>, <https://onto.tib.eu/destf/cs/1490>, <https://onto.tib.eu/destf/cs/1495>, <https://onto.tib.eu/destf/cs/1510>, <https://onto.tib.eu/destf/cs/1520>, <https://onto.tib.eu/destf/cs/1530>, <https://onto.tib.eu/destf/cs/1540>, <https://onto.tib.eu/destf/cs/1550>, <https://onto.tib.eu/destf/cs/1560>, <https://onto.tib.eu/destf/cs/1570>, <https://onto.tib.eu/destf/cs/1575>, <https://onto.tib.eu/destf/cs/1576>, <https://onto.tib.eu/destf/cs/1610> ;
skos:narrowerTransitive <https://onto.tib.eu/destf/cs/1400>, <https://onto.tib.eu/destf/cs/1410>, <https://onto.tib.eu/destf/cs/1420>, <https://onto.tib.eu/destf/cs/1430>, <https://onto.tib.eu/destf/cs/1440>, <https://onto.tib.eu/destf/cs/1445>, <https://onto.tib.eu/destf/cs/1450>, <https://onto.tib.eu/destf/cs/1460>, <https://onto.tib.eu/destf/cs/1465>, <https://onto.tib.eu/destf/cs/1470>, <https://onto.tib.eu/destf/cs/1480>, <https://onto.tib.eu/destf/cs/1490>, <https://onto.tib.eu/destf/cs/1495>, <https://onto.tib.eu/destf/cs/1510>, <https://onto.tib.eu/destf/cs/1520>, <https://onto.tib.eu/destf/cs/1530>, <https://onto.tib.eu/destf/cs/1540>, <https://onto.tib.eu/destf/cs/1550>, <https://onto.tib.eu/destf/cs/1560>, <https://onto.tib.eu/destf/cs/1570>, <https://onto.tib.eu/destf/cs/1575>, <https://onto.tib.eu/destf/cs/1576>, <https://onto.tib.eu/destf/cs/1610> ;
skos:notation "140"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Sonstige/Außereuropäische Sprach- und Kulturwissenschaften"@de .
<https://onto.tib.eu/destf/cs/1400>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/140> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/140> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1400"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Sonstige/Außereuropäische Sprach- und Kulturwissenschaften allgemein"@de .
<https://onto.tib.eu/destf/cs/1410>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/140> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/140> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1410"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Ägyptologie"@de .
<https://onto.tib.eu/destf/cs/1420>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/140> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/140> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1420"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Afrikanistik"@de .
<https://onto.tib.eu/destf/cs/1430>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/140> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/140> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1430"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Altorientalistik"@de .
<https://onto.tib.eu/destf/cs/1440>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/140> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/140> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1440"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Sprachen und Kulturen des christlichen Orients"@de .
<https://onto.tib.eu/destf/cs/1445>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/140> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/140> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1445"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Sprachen und Kulturen des Nahen und Mittleren Ostens"@de .
<https://onto.tib.eu/destf/cs/1450>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/140> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/140> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1450"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Semitistik, Arabistik"@de .
<https://onto.tib.eu/destf/cs/1460>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/140> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/140> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1460"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Judaistik/Hebräisch"@de .
<https://onto.tib.eu/destf/cs/1465>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/140> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/140> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1465"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Kaukasistik"@de .
<https://onto.tib.eu/destf/cs/1470>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/140> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/140> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1470"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Islamwissenschaft"@de .
<https://onto.tib.eu/destf/cs/1480>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/140> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/140> ;
skos:inScheme <https://onto.tib.eu/destf/cs/> ;
skos:notation "1480"^^<http://www.w3.org/2001/XMLSchema#string> ;
skos:prefLabel "Iranistik"@de .
<https://onto.tib.eu/destf/cs/1490>
a skos:Concept ;
skos:broader <https://onto.tib.eu/destf/cs/140> ;
skos:broaderTransitive <https://onto.tib.eu/destf/cs/01>, <https://onto.tib.eu/destf/cs/140> ;