-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathhochschulfaechersystematik.ttl
More file actions
5567 lines (5219 loc) · 201 KB
/
Copy pathhochschulfaechersystematik.ttl
File metadata and controls
5567 lines (5219 loc) · 201 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
@base <https://w3id.org/kim/hochschulfaechersystematik/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix schema: <https://schema.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<scheme> a skos:ConceptScheme ;
dct:alternative "Hochschulfächersystematik"@de ;
dct:description "Diese SKOS-Klassifikation basiert auf der Destatis-[\"Systematik der Fächergruppen, Studienbereiche und Studienfächer\"](https://bartoc.org/en/node/18919)."@de ;
dct:issued "2019-12-11" ;
dct:license <http://dcat-ap.de/def/licenses/other-closed> ;
dct:publisher <https://oerworldmap.org/resource/urn:uuid:fd06253e-fe67-4910-b923-51db9d27e59f> ;
dct:source <https://www.destatis.de/DE/Methoden/Klassifikationen/Bildung/studenten-pruefungsstatistik.html> ;
dct:title "Destatis-Systematik der Fächergruppen, Studienbereiche und Studienfächer"@de ;
vann:preferredNamespacePrefix "hfs" ;
vann:preferredNamespaceUri "https://w3id.org/kim/hochschulfaechersystematik/" ;
skos:hasTopConcept <n0>,
<n1>,
<n2>,
<n3>,
<n4>,
<n5>,
<n7>,
<n8>,
<n9> ;
schema:isBasedOn <http://bartoc.org/node/18919> .
<n0> a skos:Concept ;
skos:notation "0" ;
skos:prefLabel "Fachübergreifend"@de,
"Interdisciplinary"@en,
"Міждисциплінарний"@uk,
"Tvärvetenskapligt"@sv,
"Interdisciplinario"@es,
"Interdisciplinárny"@sk,
"Διεπιστημονικό"@el,
"Interdisciplinare"@it,
"Mezioborový"@cs,
"Interdisciplinaire"@fr ;
skos:topConceptOf <scheme> .
<n1> a skos:Concept ;
skos:narrower <n01>,
<n02>,
<n03>,
<n04>,
<n05>,
<n06>,
<n07>,
<n08>,
<n09>,
<n10>,
<n11>,
<n12>,
<n13>,
<n14>,
<n18>,
<n19> ;
skos:notation "1" ;
skos:prefLabel "Geisteswissenschaften"@de,
"Humanities"@en,
"Гуманітарні науки"@uk,
"Humaniora"@sv,
"Humanidades"@es,
"Humanitné vedy"@sk,
"Ανθρωπιστικές Επιστήμες"@el,
"Scienze Umane"@it,
"Humanitní vědy"@cs,
"Sciences humaines"@fr ;
skos:topConceptOf <scheme> .
<n2> a skos:Concept ;
skos:narrower <n22> ;
skos:notation "2" ;
skos:prefLabel "Sport"@de,
"Sports"@en,
"Спорт"@uk,
"Idrott"@sv,
"Deportes"@es,
"Šport"@sk,
"Αθλητισμός"@el,
"Sport"@it,
"Sport"@cs,
"Sport"@fr ;
skos:topConceptOf <scheme> .
<n3> a skos:Concept ;
skos:narrower <n23>,
<n24>,
<n25>,
<n26>,
<n27>,
<n28>,
<n29>,
<n30>,
<n31>,
<n32>,
<n33>,
<n34> ;
skos:notation "3" ;
skos:prefLabel "Rechts-, Wirtschafts- und Sozialwissenschaften"@de,
"Law, Economics and Social Sciences"@en,
"Право, економіка та суспільні науки"@uk,
"Rätts-, ekonomi- och samhällsvetenskaper"@sv,
"Derecho, Economía y Ciencias Sociales"@es,
"Právo, ekonómia a spoločenské vedy"@sk,
"Νομική, Οικονομικά και Κοινωνικές Επιστήμες"@el,
"Giurisprudenza, Economia e Scienze Sociali"@it,
"Právo, ekonomie a společenské vědy"@cs,
"Droit, économie et sciences sociales"@fr ;
skos:topConceptOf <scheme> .
<n4> a skos:Concept ;
skos:narrower <n36>,
<n37>,
<n39>,
<n40>,
<n41>,
<n42>,
<n43>,
<n44> ;
skos:notation "4" ;
skos:prefLabel "Mathematik, Naturwissenschaften"@de,
"Mathematics, Natural Sciences"@en,
"Математика, природничі науки"@uk,
"Matematik och naturvetenskaper"@sv,
"Matemáticas y Ciencias Naturales"@es,
"Matematika, prírodné vedy"@sk,
"Μαθηματικά, Φυσικές Επιστήμες"@el,
"Matematica, Scienze Naturali"@it,
"Matematika, přírodní vědy"@cs,
"Mathématiques, sciences naturelles"@fr ;
skos:topConceptOf <scheme> .
<n5> a skos:Concept ;
skos:narrower <n48>,
<n49>,
<n50> ;
skos:notation "5" ;
skos:prefLabel "Humanmedizin/Gesundheitswissenschaften"@de,
"Human Medicine / Health Sciences"@en,
"Медицина / Науки про здоров'я"@uk,
"Medicin/Hälsovetenskaper"@sv,
"Medicina/Ciencias de la Salud"@es,
"Humánna medicína / Zdravotné vedy"@sk,
"Ιατρική / Επιστήμες Υγείας"@el,
"Medicina Umana / Scienze della Salute"@it,
"Humánní medicína / Zdravotní vědy"@cs,
"Médecine humaine / Sciences de la santé"@fr ;
skos:topConceptOf <scheme> .
<n7> a skos:Concept ;
skos:narrower <n51>,
<n57>,
<n58>,
<n59>,
<n60> ;
skos:notation "7" ;
skos:prefLabel "Agrar-, Forst- und Ernährungswissenschaften, Veterinärmedizin"@de,
"Agricultural, Forest and Nutritional Sciences, Veterinary medicine"@en,
"Сільськогосподарські, лісові та харчові науки, ветеринарія"@uk,
"Jordbruks-, skogs- och livsmedelsvetenskaper, veterinärmedicin"@sv,
"Ciencias Agrícolas, Forestales y Nutricionales, Medicina Veterinaria"@es,
"Poľnohospodárske, lesnícke a výživové vedy, veterinárna medicína"@sk,
"Γεωπονικές, Δασολογικές και Διατροφικές Επιστήμες, Κτηνιατρική"@el,
"Scienze Agrarie, Forestali e Nutrizionali, Veterinaria"@it,
"Zemědělské, lesnické a potravinářské vědy, veterinární medicína"@cs,
"Sciences agronomiques, forestières et alimentaires, médecine vétérinaire"@fr ;
skos:topConceptOf <scheme> .
<n8> a skos:Concept ;
skos:narrower <n61>,
<n62>,
<n63>,
<n64>,
<n65>,
<n66>,
<n67>,
<n68>,
<n69>,
<n70>,
<n71>,
<n72> ;
skos:notation "8" ;
skos:prefLabel "Ingenieurwissenschaften"@de,
"Engineering Sciences"@en,
"Інженерія"@uk,
"Ingenjörsvetenskaper"@sv,
"Ingenierías"@es,
"Inžinierske vedy"@sk,
"Επιστήμες Μηχανικής"@el,
"Scienze dell'Ingegneria"@it,
"Technické vědy"@cs,
"Sciences de l’ingénieur"@fr ;
skos:topConceptOf <scheme> .
<n9> a skos:Concept ;
skos:narrower <n74>,
<n75>,
<n76>,
<n77>,
<n78> ;
skos:notation "9" ;
skos:prefLabel "Kunst, Kunstwissenschaft"@de,
"Art, Art Theory"@en,
"Мистецтво, мистецтвознавство"@uk,
"Konst, konstvetenskap"@sv,
"Arte, Teoría del Arte"@es,
"Umenie, veda o umení"@sk,
"Τέχνη, Θεωρία Τέχνης"@el,
"Arte, Teoria dell'Arte"@it,
"Umění, věda o umění"@cs,
"Art, théorie de l’art"@fr ;
skos:topConceptOf <scheme> .
<n01> a skos:Concept ;
skos:broader <n1> ;
skos:inScheme <scheme> ;
skos:narrower <n004>,
<n090> ;
skos:notation "01" ;
skos:prefLabel "Geisteswissenschaften allgemein"@de,
"Humanities (general)"@en,
"Гуманітарні науки загалом"@uk,
"Humaniora (allmänt)"@sv,
"Humanidades (general)"@es,
"Humanitné vedy (všeobecné)"@sk,
"Ανθρωπιστικές Επιστήμες (γενικά)"@el,
"Scienze Umane (generale)"@it,
"Humanitní vědy (obecně)"@cs,
"Sciences humaines (général)"@fr .
<n02> a skos:Concept ;
skos:broader <n1> ;
skos:inScheme <scheme> ;
skos:narrower <n053>,
<n161>,
<n544> ;
skos:notation "02" ;
skos:prefLabel "Evangelische Theologie, -Religionslehre"@de,
"Protestant Theology, Protestant Religious Education"@en,
"Протестантська теологія, протестантська релігійна освіта"@uk,
"Protestantisk teologi, protestantisk religionsundervisning"@sv,
"Teología Protestante, Educación Religiosa Protestante"@es,
"Evanjelická teológia, evanjelická náboženská výchova"@sk,
"Προτεσταντική Θεολογία, Προτεσταντική Θρησκευτική Εκπαίδευση"@el,
"Teologia Protestante, Educazione Religiosa Protestante"@it,
"Evangelická teologie, evangelická výuka náboženství"@cs,
"Théologie protestante, enseignement religieux protestant"@fr .
<n03> a skos:Concept ;
skos:broader <n1> ;
skos:inScheme <scheme> ;
skos:narrower <n086>,
<n162>,
<n545> ;
skos:notation "03" ;
skos:prefLabel "Katholische Theologie, -Religionslehre"@de,
"Catholic Theology, Catholic Religious Education"@en,
"Католицька теологія, католицька релігійна освіта"@uk,
"Katolsk teologi, katolsk religionsundervisning"@sv,
"Teología Católica, Educación Religiosa Católica"@es,
"Katolícka teológia, katolícka náboženská výchova"@sk,
"Καθολική Θεολογία, Καθολική Θρησκευτική Εκπαίδευση"@el,
"Teologia Cattolica, Educazione Religiosa Cattolica"@it,
"Katolická teologie, katolická výuka náboženství"@cs,
"Théologie catholique, enseignement religieux catholique"@fr .
<n04> a skos:Concept ;
skos:broader <n1> ;
skos:inScheme <scheme> ;
skos:narrower <n127>,
<n136>,
<n169> ;
skos:notation "04" ;
skos:prefLabel "Philosophie"@de,
"Philosophy"@en,
"Філософія"@uk,
"Filosofi"@sv,
"Filosofía"@es,
"Filozofia"@sk,
"Φιλοσοφία"@el,
"Filosofia"@it,
"Filozofie"@cs,
"Philosophie"@fr .
<n05> a skos:Concept ;
skos:broader <n1> ;
skos:inScheme <scheme> ;
skos:narrower <n012>,
<n068>,
<n183>,
<n272>,
<n273>,
<n275>,
<n548> ;
skos:notation "05" ;
skos:prefLabel "Geschichte"@de,
"History"@en,
"Історія"@uk,
"Historia"@sv,
"Historia"@es,
"História"@sk,
"Ιστορία"@el,
"Storia"@it,
"Historie"@cs,
"Histoire"@fr .
<n06> a skos:Concept ;
skos:broader <n1> ;
skos:inScheme <scheme> ;
skos:narrower <n022>,
<n037> ;
skos:notation "06" ;
skos:prefLabel "Informations- und Bibliothekswissenschaften"@de,
"Information and Library Sciences"@en,
"Бібліотекознавство, документознавство"@uk,
"Informations- och biblioteksvetenskap"@sv,
"Ciencias de la Información y Bibliotecología"@es,
"Informačné a knižničné vedy"@sk,
"Βιβλιοθηκονομία και Επιστήμη της Πληροφόρησης"@el,
"Scienze dell'Informazione e Biblioteconomia"@it,
"Informační věda a knihovnictví"@cs,
"Sciences de l’information et bibliothéconomie"@fr .
<n07> a skos:Concept ;
skos:broader <n1> ;
skos:inScheme <scheme> ;
skos:narrower <n018>,
<n152>,
<n160>,
<n188>,
<n284> ;
skos:notation "07" ;
skos:prefLabel "Allgemeine und vergleichende Literatur- und Sprachwissenschaft"@de,
"General and Comparative Literary Studies and Linguistics"@en,
"Загальне та порівняльне літературознавство та мовознавство"@uk,
"Allmän och jämförande litteraturvetenskap och lingvistik"@sv,
"Estudios Literarios y Lingüísticos Generales y Comparativos"@es,
"Všeobecná a porovnávacia literárna veda a lingvistika"@sk,
"Γενικές και Συγκριτικές Λογοτεχνικές Σπουδές και Γλωσσολογία"@el,
"Studi Letterari e Linguistici Generali e Comparati"@it,
"Obecná a srovnávací literární věda a lingvistika"@cs,
"Littérature générale et comparée, linguistique"@fr .
<n08> a skos:Concept ;
skos:broader <n1> ;
skos:inScheme <scheme> ;
skos:narrower <n005>,
<n031>,
<n043>,
<n070>,
<n095> ;
skos:notation "08" ;
skos:prefLabel "Altphilologie (klassische Philologie), Neugriechisch"@de,
"Classical Philology, Modern Greek"@en,
"Класична філологія, новогрецька мова"@uk,
"Klassisk filologi, Moderna grekiska"@sv,
"Filología Clásica, Griego Moderno"@es,
"Klasická filológia, novogréčtina"@sk,
"Κλασική Φιλολογία, Νέα Ελληνικά"@el,
"Filologia Classica, Greco Moderno"@it,
"Klasická filologie, novořečtina"@cs,
"Philologie classique, grec moderne"@fr .
<n09> a skos:Concept ;
skos:broader <n1> ;
skos:inScheme <scheme> ;
skos:narrower <n034>,
<n067>,
<n119>,
<n120>,
<n189>,
<n271> ;
skos:notation "09" ;
skos:prefLabel "Germanistik (Deutsch, germanische Sprachen ohne Anglistik)"@de,
"German Studies (German, Germanic Languages excl. English)"@en,
"Німецькі студії (німецька мова, германські мови без англійської мови)"@uk,
"Tysk studier (tyska, germanska språk exklusive engelska)"@sv,
"Estudios Alemanes (Alemán y Lenguas Germánicas excl. Inglés)"@es,
"Germanistika (nemčina, germánske jazyky okrem angličtiny)"@sk,
"Γερμανικές Σπουδές (Γερμανικά, Γερμανικές Γλώσσες εκτός Αγγλικών)"@el,
"Studi Germanici (Tedesco, Lingue Germaniche escluso Inglese)"@it,
"Germanistika (němčina, germánské jazyky vyjma anglistiky)"@cs,
"Études germaniques (allemand, langues germaniques sauf anglais)"@fr .
<n10> a skos:Concept ;
skos:broader <n1> ;
skos:inScheme <scheme> ;
skos:narrower <n006>,
<n008> ;
skos:notation "10" ;
skos:prefLabel "Anglistik, Amerikanistik"@de,
"English Studies, American Studies"@en,
"Англійські студії, американські студії"@uk,
"Engelska studier, Amerikastudier"@sv,
"Estudios Ingleses, Estudios Americanos"@es,
"Anglistika, amerikanistika"@sk,
"Αγγλικές Σπουδές, Αμερικανικές Σπουδές"@el,
"Studi Inglesi, Studi Americani"@it,
"Anglistika, amerikanistika"@cs,
"Études anglaises, études américaines"@fr .
<n11> a skos:Concept ;
skos:broader <n1> ;
skos:inScheme <scheme> ;
skos:narrower <n059>,
<n084>,
<n131>,
<n137>,
<n150> ;
skos:notation "11" ;
skos:prefLabel "Romanistik"@de,
"Romance Studies"@en,
"Романістика"@uk,
"Romanska språk och litteratur"@sv,
"Estudios Romances"@es,
"Romanistika"@sk,
"Ρομανικές Σπουδές"@el,
"Studi Romanzi"@it,
"Romanistika"@cs,
"Études romanes"@fr .
<n12> a skos:Concept ;
skos:broader <n1> ;
skos:inScheme <scheme> ;
skos:narrower <n016>,
<n056>,
<n130>,
<n139>,
<n146>,
<n153>,
<n206>,
<n207>,
<n209> ;
skos:notation "12" ;
skos:prefLabel "Slawistik, Baltistik, Finno-Ugristik"@de,
"Slavic, Baltic, Finno-Ugrian Studies"@en,
"Слов'янознавство, балтистика, фіно-угрознавство"@uk,
"Slaviska, baltiska och finsk-ugriska studier"@sv,
"Estudios Eslavos, Bálticos y Fino-ugrio"@es,
"Slavistika, baltistika, fino-hungaristika"@sk,
"Σλαβικές, Βαλτικές, Φινο-Ουγγρικές Σπουδές"@el,
"Studi Slavi, Baltici, Ugro-Finnici"@it,
"Slavistika, baltistika, finno-ugristika"@cs,
"Études slaves, baltiques et finno-ougriennes"@fr .
<n13> a skos:Concept ;
skos:broader <n1> ;
skos:inScheme <scheme> ;
skos:narrower <n001>,
<n002>,
<n010>,
<n015>,
<n073>,
<n078>,
<n081>,
<n083>,
<n085>,
<n122>,
<n145>,
<n158>,
<n180>,
<n187> ;
skos:notation "13" ;
skos:prefLabel "Sonstige Sprach- und Kulturwissenschaften"@de,
"Other linguistic and cultural studies"@en,
"Інші лінгвокультурологічні дослідження"@uk,
"Övriga språk- och kulturstudier"@sv,
"Otros Estudios Lingüísticos y Culturales"@es,
"Iné jazykové a kultúrne štúdiá"@sk,
"Άλλες γλωσσικές και πολιτισμικές σπουδές"@el,
"Altri studi linguistici e culturali"@it,
"Ostatní jazykové a kulturní vědy"@cs,
"Autres études linguistiques et culturelles"@fr .
<n14> a skos:Concept ;
skos:broader <n1> ;
skos:inScheme <scheme> ;
skos:narrower <n024>,
<n173>,
<n174> ;
skos:notation "14" ;
skos:prefLabel "Kulturwissenschaften i.e.S."@de,
"Cultural Studies in the narrower sense"@en,
"Культурологія у вужчому розумінні"@uk,
"Kulturvetenskap i snävare bemärkelse"@sv,
"Estudios Culturales (en sentido restringido)"@es,
"Kultúrne štúdiá v užšom zmysle"@sk,
"Πολιτισμικές Σπουδές με τη στενή έννοια"@el,
"Studi Culturali in senso stretto"@it,
"Kulturologie v užším smyslu"@cs,
"Sciences culturelles au sens strict"@fr .
<n18> a skos:Concept ;
skos:broader <n1> ;
skos:inScheme <scheme> ;
skos:narrower <n292> ;
skos:notation "18" ;
skos:prefLabel "Islamische Studien/Islamische Theologie"@de,
"Islamic Studies/Islamic Theology"@en,
"Ісламознавство/Ісламська теологія"@uk,
"Islamiska studier/Islamisk teologi"@sv,
"Estudios Islámicos/Teología Islámica"@es,
"Islamské štúdiá/Islamská teológia"@sk,
"Ισλαμικές Σπουδές/Ισλαμική Θεολογία"@el,
"Studi Islamici/Teologia Islamica"@it,
"Islamská studia/Islámská teologie"@cs,
"Études islamiques / Théologie islamique"@fr .
<n19> a skos:Concept ;
skos:broader <n1> ;
skos:inScheme <scheme> ;
skos:narrower <n302> ;
skos:notation "19" ;
skos:prefLabel "Medienwissenschaft"@de,
"Media Science"@en,
"Медіазнавство"@uk,
"Medievetenskap"@sv,
"Ciencias de la comunicación y medios"@es,
"Mediálne štúdiá"@sk,
"Επιστήμη των Μέσων Ενημέρωσης"@el,
"Scienze dei Media"@it,
"Mediální věda"@cs,
"Sciences des médias"@fr .
<n22> a skos:Concept ;
skos:broader <n2> ;
skos:inScheme <scheme> ;
skos:narrower <n029>,
<n098> ;
skos:notation "22" ;
skos:prefLabel "Sport, Sportwissenschaft"@de,
"Sports, Sports Science"@en,
"Фізична культура та спорт"@uk,
"Idrott, idrottsvetenskap"@sv,
"Deportes, Ciencias del Deporte"@es,
"Šport, telovýchova"@sk,
"Αθλητισμός, Επιστήμη του Αθλητισμού"@el,
"Sport, Scienze dello Sport"@it,
"Sport, sportovní věda"@cs,
"Sport, sciences du sport"@fr .
<n23> a skos:Concept ;
skos:broader <n3> ;
skos:inScheme <scheme> ;
skos:narrower <n030>,
<n055>,
<n154> ;
skos:notation "23" ;
skos:prefLabel "Rechts-, Wirtschafts- und Sozialwissenschaften allgemein"@de,
"Law, Economics and Social Sciences (general)"@en,
"Право, економіка та суспільні науки"@uk,
"Rätts-, ekonomi- och samhällsvetenskaper (allmänt)"@sv,
"Derecho, Economía y Ciencias Sociales (general)"@es,
"Právo, ekonómia a spoločenské vedy (všeobecné)"@sk,
"Νομική, Οικονομικά και Κοινωνικές Επιστήμες (γενικά)"@el,
"Giurisprudenza, Economia e Scienze Sociali (generale)"@it,
"Právo, ekonomie a společenské vědy (obecně)"@cs,
"Droit, économie et sciences sociales (général)"@fr .
<n24> a skos:Concept ;
skos:broader <n3> ;
skos:inScheme <scheme> ;
skos:narrower <n036>,
<n038>,
<n044> ;
skos:notation "24" ;
skos:prefLabel "Regionalwissenschaften"@de,
"Regional Studies"@en,
"Регіональні студії"@uk,
"Regionala studier"@sv,
"Estudios Regionales"@es,
"Regionalistika"@sk,
"Περιφερειακές Σπουδές"@el,
"Studi Regionali"@it,
"Regionální studia"@cs,
"Études régionales"@fr .
<n25> a skos:Concept ;
skos:broader <n3> ;
skos:inScheme <scheme> ;
skos:narrower <n129> ;
skos:notation "25" ;
skos:prefLabel "Politikwissenschaft"@de,
"Political Science"@en,
"Політологія"@uk,
"Statsvetenskap"@sv,
"Ciencia Política"@es,
"Politológia"@sk,
"Πολιτική Επιστήμη"@el,
"Scienze Politiche"@it,
"Politologie"@cs,
"Sciences politiques"@fr .
<n26> a skos:Concept ;
skos:broader <n3> ;
skos:inScheme <scheme> ;
skos:narrower <n147>,
<n148>,
<n149> ;
skos:notation "26" ;
skos:prefLabel "Sozialwissenschaften/Soziologie"@de,
"Social Sciences/Sociology"@en,
"Суспільні науки та соціологія"@uk,
"Samhällsvetenskap/Sociologi"@sv,
"Ciencias Sociales/Sociología"@es,
"Spoločenské vedy/Sociológia"@sk,
"Κοινωνικές Επιστήμες/Κοινωνιολογία"@el,
"Scienze Sociali/Sociologia"@it,
"Společenské vědy/Sociologie"@cs,
"Sciences sociales / Sociologie"@fr .
<n27> a skos:Concept ;
skos:broader <n3> ;
skos:inScheme <scheme> ;
skos:narrower <n208>,
<n245>,
<n253> ;
skos:notation "27" ;
skos:prefLabel "Sozialwesen"@de,
"Applied Social Science"@en,
"Прикладні суспільні науки"@uk,
"Tillämpad socialvetenskap"@sv,
"Ciencias Sociales Aplicadas"@es,
"Aplikované spoločenské vedy"@sk,
"Εφαρμοσμένες Κοινωνικές Επιστήμες"@el,
"Scienze Sociali Applicate"@it,
"Aplikované společenské vědy"@cs,
"Sciences sociales appliquées"@fr .
<n28> a skos:Concept ;
skos:broader <n3> ;
skos:inScheme <scheme> ;
skos:narrower <n042>,
<n135> ;
skos:notation "28" ;
skos:prefLabel "Rechtswissenschaften"@de,
"Law"@en,
"Правознавство"@uk,
"Rättsvetenskap"@sv,
"Derecho"@es,
"Právo"@sk,
"Νομική"@el,
"Giurisprudenza"@it,
"Právní věda"@cs,
"Droit"@fr .
<n29> a skos:Concept ;
skos:broader <n3> ;
skos:inScheme <scheme> ;
skos:narrower <n168>,
<n172>,
<n255>,
<n256>,
<n257>,
<n258>,
<n259>,
<n260>,
<n261>,
<n262>,
<n263>,
<n264>,
<n265>,
<n266>,
<n268>,
<n269> ;
skos:notation "29" ;
skos:prefLabel "Verwaltungswissenschaften"@de,
"Administrative Sciences"@en,
"Управління та адміністрування"@uk,
"Administrativ vetenskap"@sv,
"Ciencias Administrativas"@es,
"Verejná správa"@sk,
"Διοικητικές Επιστήμες"@el,
"Scienze Amministrative"@it,
"Správní vědy"@cs,
"Sciences administratives"@fr .
<n30> a skos:Concept ;
skos:broader <n3> ;
skos:inScheme <scheme> ;
skos:narrower <n011>,
<n021>,
<n166>,
<n167>,
<n175>,
<n181>,
<n182>,
<n184>,
<n210>,
<n274>,
<n304> ;
skos:notation "30" ;
skos:prefLabel "Wirtschaftswissenschaften"@de,
"Business and Economics"@en,
"Бізнес та економіка"@uk,
"Företagsekonomi och nationalekonomi"@sv,
"Economía y Negocios"@es,
"Obchod a ekonómia"@sk,
"Οικονομικά και Επιχειρηματικότητα"@el,
"Economia e Business"@it,
"Obchodní vědy a ekonomie"@cs,
"Sciences économiques et de gestion"@fr .
<n31> a skos:Concept ;
skos:broader <n3> ;
skos:inScheme <scheme> ;
skos:narrower <n179>,
<n464> ;
skos:notation "31" ;
skos:prefLabel "Wirtschaftsingenieurwesen mit wirtschaftswissenschaftlichem Schwerpunkt"@de,
"Business Engineering specialising in Economics"@en,
"Бізнес інженерія у галузі економіки"@uk,
"Industriell ekonomi med ekonomiinriktning"@sv,
"Ingeniería empresarial con especialización en Economía"@es,
"Podnikové inžinierstvo so zameraním na ekonómiu"@sk,
"Επιχειρησιακή Μηχανική με ειδίκευση στα Οικονομικά"@el,
"Ingegneria Gestionale con specializzazione in Economia"@it,
"Průmyslové inženýrství se zaměřením na ekonomii"@cs,
"Génie industriel à orientation économique"@fr .
<n32> a skos:Concept ;
skos:broader <n3> ;
skos:inScheme <scheme> ;
skos:narrower <n132> ;
skos:notation "32" ;
skos:prefLabel "Psychologie"@de,
"Psychology"@en,
"Психологія"@uk,
"Psykologi"@sv,
"Psicología"@es,
"Psychológia"@sk,
"Ψυχολογία"@el,
"Psicologia"@it,
"Psychologie"@cs,
"Psychologie"@fr .
<n33> a skos:Concept ;
skos:broader <n3> ;
skos:inScheme <scheme> ;
skos:narrower <n052>,
<n115>,
<n117>,
<n190>,
<n254>,
<n270>,
<n321>,
<n361>,
<n365> ;
skos:notation "33" ;
skos:prefLabel "Erziehungswissenschaften"@de,
"Educational Sciences"@en,
"Педагогічні науки"@uk,
"Pedagogik"@sv,
"Ciencias de la Educación"@es,
"Pedagogické vedy"@sk,
"Παιδαγωγικές Επιστήμες"@el,
"Scienze dell'Educazione"@it,
"Pedagogické vědy"@cs,
"Sciences de l’éducation"@fr .
<n34> a skos:Concept ;
skos:broader <n3> ;
skos:inScheme <scheme> ;
skos:narrower <n303> ;
skos:notation "34" ;
skos:prefLabel "Kommunikationswissenschaft/Publizistik"@de,
"Communication Science/Journalism"@en,
"Соціальні комунікації/Журналістика"@uk,
"Kommunikationsvetenskap/Journalistik"@sv,
"Ciencias de la Comunicación/Periodismo"@es,
"Komunikačná veda/Žurnalistika"@sk,
"Επιστήμη της Επικοινωνίας/Δημοσιογραφία"@el,
"Scienze della Comunicazione/Giornalismo"@it,
"Komunikační věda/Žurnalistika"@cs,
"Sciences de la communication / Journalisme"@fr .
<n36> a skos:Concept ;
skos:broader <n4> ;
skos:inScheme <scheme> ;
skos:narrower <n019>,
<n049>,
<n186>,
<n312> ;
skos:notation "36" ;
skos:prefLabel "Mathematik, Naturwissenschaften allgemein"@de,
"Mathematics, Natural Sciences (general)"@en,
"Математика, Природничі науки (загальні)"@uk,
"Matematik och naturvetenskap (allmänt)"@sv,
"Matemáticas y Ciencias Naturales (general)"@es,
"Matematika, prírodné vedy (všeobecné)"@sk,
"Μαθηματικά, Φυσικές Επιστήμες (γενικά)"@el,
"Matematica, Scienze Naturali (generale)"@it,
"Matematika, přírodní vědy (obecně)"@cs,
"Mathématiques, sciences naturelles (général)"@fr .
<n37> a skos:Concept ;
skos:broader <n4> ;
skos:inScheme <scheme> ;
skos:narrower <n105>,
<n118>,
<n237>,
<n276> ;
skos:notation "37" ;
skos:prefLabel "Mathematik"@de,
"Mathematics"@en,
"Математика"@uk,
"Matematik"@sv,
"Matemáticas"@es,
"Matematika"@sk,
"Μαθηματικά"@el,
"Matematica"@it,
"Matematika"@cs,
"Mathématiques"@fr .
<n39> a skos:Concept ;
skos:broader <n4> ;
skos:inScheme <scheme> ;
skos:narrower <n0128>,
<n014> ;
skos:notation "39" ;
skos:prefLabel "Physik, Astronomie"@de,
"Physics, Astronomy"@en,
"Фізика, Астрономія"@uk,
"Fysik, astronomi"@sv,
"Física, Astronomía"@es,
"Fyzika, astronómia"@sk,
"Φυσική, Αστρονομία"@el,
"Fisica, Astronomia"@it,
"Fyzika, astronomie"@cs,
"Physique, astronomie"@fr .
<n40> a skos:Concept ;
skos:broader <n4> ;
skos:inScheme <scheme> ;
skos:narrower <n025>,
<n032>,
<n096> ;
skos:notation "40" ;
skos:prefLabel "Chemie"@de,
"Chemistry"@en,
"Хімія"@uk,
"Kemi"@sv,
"Química"@es,
"Chémia"@sk,
"Χημεία"@el,
"Chimica"@it,
"Chemie"@cs,
"Chimie"@fr .
<n41> a skos:Concept ;
skos:broader <n4> ;
skos:inScheme <scheme> ;
skos:narrower <n126> ;
skos:notation "41" ;
skos:prefLabel "Pharmazie"@de,
"Pharmacy"@en,
"Фармація"@uk,
"Farmaci"@sv,
"Farmacia"@es,
"Farmácia"@sk,
"Φαρμακευτική"@el,
"Farmacia"@it,
"Farmacie"@cs,
"Pharmacie"@fr .
<n42> a skos:Concept ;
skos:broader <n4> ;
skos:inScheme <scheme> ;
skos:narrower <n009>,
<n026>,
<n282>,
<n300> ;
skos:notation "42" ;
skos:prefLabel "Biologie"@de,
"Biology"@en,
"Біологія"@uk,
"Biologi"@sv,
"Biología"@es,
"Biológia"@sk,
"Βιολογία"@el,
"Biologia"@it,
"Biologie"@cs,
"Biologie"@fr .
<n43> a skos:Concept ;
skos:broader <n4> ;
skos:inScheme <scheme> ;
skos:narrower <n039>,
<n065>,
<n066>,
<n110>,
<n111>,
<n124>,
<n385> ;
skos:notation "43" ;
skos:prefLabel "Geowissenschaften (ohne Geographie)"@de,
"Geosciences (excl. Geography)"@en,
"Науки про Землю(крім географії)"@uk,
"Geovetenskaper (exkl. geografi)"@sv,
"Ciencias de la Tierra (excl. Geografía)"@es,
"Geovedy (bez geografie)"@sk,
"Γεωεπιστήμες (εκτός Γεωγραφία)"@el,
"Geoscienze (senza Geografia)"@it,
"Geovědy (bez geografie)"@cs,
"Géosciences (sans géographie)"@fr .
<n44> a skos:Concept ;
skos:broader <n4> ;
skos:inScheme <scheme> ;
skos:narrower <n050>,
<n178>,
<n283> ;
skos:notation "44" ;
skos:prefLabel "Geographie"@de,
"Geography"@en,
"Географія"@uk,
"Geografi"@sv,
"Geografía"@es,
"Geografia"@sk,
"Γεωγραφία"@el,
"Geografia"@it,
"Geografie"@cs,
"Géographie"@fr .
<n48> a skos:Concept ;
skos:broader <n5> ;
skos:inScheme <scheme> ;
skos:narrower <n195>,
<n232>,
<n233>,
<n234> ;
skos:notation "48" ;
skos:prefLabel "Gesundheitswissenschaften allgemein"@de,
"Health Sciences (general)"@en,
"Науки про здоров'я (в цілому)"@uk,
"Hälsovetenskaper (allmänt)"@sv,
"Ciencias de la Salud (general)"@es,
"Zdravotné vedy (všeobecné)"@sk,
"Επιστήμες Υγείας (γενικά)"@el,
"Scienze della Salute (generale)"@it,
"Zdravotní vědy (obecně)"@cs,
"Sciences de la santé (général)"@fr .
<n49> a skos:Concept ;
skos:broader <n5> ;
skos:inScheme <scheme> ;
skos:narrower <n107> ;
skos:notation "49" ;
skos:prefLabel "Humanmedizin (ohne Zahnmedizin)"@de,
"Human Medicine (excl. Dentistry)"@en,
"Медицина людини (крім стоматології)"@uk,
"Medicin (exkl. tandvård)"@sv,
"Medicina Humana (excl. Odontología)"@es,
"Humánna medicína (bez stomatológie)"@sk,
"Ιατρική (εκτός από την Οδοντιατρική)"@el,
"Medicina Umana (esclusa Odontoiatria)"@it,
"Humánní medicína (bez stomatologie)"@cs,
"Médecine humaine (sans odontologie)"@fr .
<n50> a skos:Concept ;
skos:broader <n5> ;
skos:inScheme <scheme> ;
skos:narrower <n185> ;
skos:notation "50" ;
skos:prefLabel "Zahnmedizin"@de,
"Dentistry"@en,
"Стоматологія"@uk,
"Tandvård"@sv,
"Odontología"@es,
"Stomatológia"@sk,
"Οδοντιατρική"@el,
"Odontoiatria"@it,
"Stomatologie"@cs,
"Odontologie"@fr .
<n51> a skos:Concept ;
skos:broader <n7> ;
skos:inScheme <scheme> ;
skos:narrower <n156> ;
skos:notation "51" ;
skos:prefLabel "Veterinärmedizin"@de,
"Veterinary Medicine"@en,
"Ветеринарна медицина"@uk,
"Veterinärmedicin"@sv,
"Medicina Veterinaria"@es,
"Veterinárna medicína"@sk,
"Κτηνιατρική"@el,
"Veterinaria"@it,
"Veterinární medicína"@cs,
"Médecine vétérinaire"@fr .
<n57> a skos:Concept ;
skos:broader <n7> ;
skos:inScheme <scheme> ;
skos:narrower <n061>,
<n064>,