-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathVocab.ttl
9257 lines (9200 loc) · 433 KB
/
Vocab.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@prefix : <https://w3id.org/class/redaktor/> .
@prefix as: <https://www.w3.org/ns/activitystreams> .
@prefix wd: <http://www.wikidata.org/entity/> .
@prefix wdt: <http://www.wikidata.org/prop/direct/> .
@prefix rnews: <http://iptc.org/std/rNews/2011-10-07#> .
@prefix loc: <https://id.loc.gov/vocabulary/relators/> .
@prefix locsubject: <https://id.loc.gov/authorities/subjects/> .
@prefix tmdb: <https://themoviedb.org#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix schema: <http://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 "redaktorVocab" ;
dct:description "**Beschreibt die Funktionen von Akteuren, Orten, Kontext und Anhängen in redaktor.**<br>Das Vokabular wird im Zusammenhang mit mehreren Quellen entwickelt und gepflegt;<br>z.B. https://wikidata.org, https://themoviedb.org oder https://id.loc.gov/vocabulary/relators. Die zugrundeliegende Turtle Datei enthält das mapping mit Konvertierungs-Schemas [WIP]"@de,
"**Describes the functions of actors, places, context and attachment in redaktor.**<br>The vocabulary is developed and maintained in the context of multiple sources,<br>e.g. https://wikidata.org, https://themoviedb.org or https://id.loc.gov/vocabulary/relators <br>The underlying turtle file maintains the mapping with conversion schemes [WIP]"@en ;
dct:issued "2022-04-10"^^xsd:date ;
dct:modified "2022-04-11"^^xsd:date ;
dct:publisher "Sebastian Lasse" ;
dct:source <https://redaktor.me> ;
dct:title "ActivityPub: Funktionen und Verbindungen"@de, "ActivityPub: Functions and Relations"@en ;
vann:preferredNamespacePrefix "redaktor" ;
vann:preferredNamespaceUri "https://w3id.org/class/redaktor/" ;
skos:hasTopConcept :n1, :n2, :n3, :n4, :n5, :n6 .
:n1 a skos:Concept ;
skos:inScheme :scheme ;
skos:narrower :n11, :n12, :n13, :n13, :n14, :n15, :n16 ;
skos:notation "1" ;
skos:prefLabel "Attributierungen"@de, "Attributions"@en ;
skos:definition "Beschreibt die Funktion von Akteuren und Bedeutung von Attributierungen."@de,
"Describes the function of actors and meaning of attributions."@en ;
skos:scopeNote as:attributedTo ;
skos:topConceptOf :scheme .
:n2 a skos:Concept ;
skos:inScheme :scheme ;
skos:narrower :n211, :n212, :n213, :n214, :n215, :n216, :n217, :n218, :n219,
:n220, :n221, :n222, :n223, :n224, :n225, :n226, :n227, :n228, :n229, :n230 ;
skos:notation "2" ;
skos:prefLabel "Bedeutung von Örtlichkeiten"@de, "Meaning of Places"@en ;
skos:definition "Beschreibt die Funktion von Örtlichkeiten im Eintrag."@de,
"Describes the function of location in the entry"@en ;
skos:scopeNote as:location ;
skos:topConceptOf :scheme .
:n3 a skos:Concept ;
skos:inScheme :scheme ;
skos:narrower :n311, :n312, :n313, :n314, :n315, :n316, :n317, :n318, :n319,
:n320, :n321, :n322, :n323, :n324, :n325, :n326, :n327, :n328, :n329,
:n330, :n331, :n332 ;
skos:notation "3" ;
skos:prefLabel "Bedeutung des Kontexts"@de, "Meaning of context."@en ;
skos:definition "Beschreibt die Funktion des jeweiligen Kontexts."@de,
"Describes the function of the context."@en ;
skos:scopeNote as:context ;
skos:topConceptOf :scheme .
:n4 a skos:Concept ;
skos:inScheme :scheme ;
skos:narrower :n411, :n412, :n413, :n414, :n415, :n416, :n417, :n418, :n419,
:n420, :n421, :n422, :n423, :n424, :n425, :n426, :n427, :n428, :n429,
:n430, :n431, :n432, :n433, :n434, :n435, :n436, :n437, :n438, :n439,
:n440, :n441, :n442 ;
skos:notation "4" ;
skos:prefLabel "Bedeutung des Instrumentes"@de, "Meaning of instrument"@en ;
skos:definition "Beschreibt die Funktion von verwendeten 'Instrumenten'."@de,
"Describes the function of used 'instruments.'"@en ;
skos:scopeNote as:instrument ;
skos:topConceptOf :scheme .
:n5 a skos:Concept ;
skos:inScheme :scheme ;
skos:narrower :n511, :n512, :n513, :n514, :n515, :n516, :n517, :n518, :n519,
:n520, :n521, :n522, :n523, :n524, :n525, :n526, :n527, :n528 ;
skos:notation "5" ;
skos:prefLabel "Bedeutung der Anhänge"@de, "Meaning of attachment"@en ;
skos:definition "Beschreibt die Funktion von Bildern oder anderen Anhängen"@de,
"Describes the function of images or other attachments"@en ;
skos:scopeNote as:attachment, as:image ;
skos:topConceptOf :scheme .
:n6 a skos:Concept ;
skos:inScheme :scheme ;
skos:narrower :n611 ;
skos:notation "6" ;
skos:prefLabel "Gegenseitige Hilfe TODO"@de, "Mutual Aid"@en ;
skos:definition "Beschreibt die Verbindungen zwischen Akteuren."@de,
"Describes functions amongst actors."@en ;
skos:topConceptOf :scheme .
:n7 a skos:Concept ;
skos:inScheme :scheme ;
skos:narrower :n711 ;
skos:notation "7" ;
skos:prefLabel "Notfall Managing TODO"@de, "Emergency Managing"@en ;
skos:altLabel "Crisis Response"@de, "Krisenintervention"@en ;
skos:definition "Beschreibt die Funktionen von Actors im Notfallmanagement, siehe auch https://shekarpour.github.io/empathi.io/#objectproperties"@de,
"Describes functions of Actors in Emergency Managing, see also https://shekarpour.github.io/empathi.io/#objectproperties"@en ;
skos:topConceptOf :scheme .
:n11 a skos:Concept ;
skos:inScheme :scheme ;
skos:narrower :n1111, :n1112, :n1113, :n1114, :n1115, :n1116, :n1117, :n1118, :n1119,
:n1120, :n1121, :n1122, :n1123, :n1124 ;
skos:notation "11" ;
skos:prefLabel "Actor Verbindungen"@de, "Actor Relations"@en ;
skos:definition "Beschreibt Verbindungen von Akteuren zu Rollen in Attributierungen"@de,
"Describes relations from actor to function in attributions"@en .
:n12 a skos:Concept ;
skos:inScheme :scheme ;
skos:narrower :n1211, :n1212, :n1213, :n1214, :n1215, :n1216, :n1217, :n1218, :n1219,
:n1220, :n1221, :n1222, :n1223, :n1224, :n1225, :n1226, :n1227, :n1228, :n1229,
:n1230, :n1231, :n1232, :n1233, :n1234, :n1235, :n1236, :n1237, :n1238, :n1239,
:n1240, :n1241, :n1242, :n1243, :n1244, :n1245, :n1246, :n1247, :n1248, :n1249,
:n1250, :n1251, :n1252, :n1253, :n1254, :n1255, :n1256 ;
skos:notation "12" ;
skos:prefLabel "Allgemeine Funktion"@de, "Generic or major function"@en ;
skos:definition "Allgemeine Aufgaben, die ein breites Spektrum an Themen abdecken, ohne oder mit nur geringer Spezialisierung auf ein bestimmtes Gebiet oder bestimmte Gebiete, werden in der Regel in das weite Feld 00 'Generische oder Hauptaufgaben' eingeordnet."@de,
"General functions which cover a broad range of subjects with little or no specialisation in a particular field or fields will typically be classified within the broad field 00 'Generic or major function'"@en .
:n13 a skos:Concept ;
skos:inScheme :scheme ;
skos:narrower :n1311, :n1312, :n1313, :n1314, :n1315, :n1316, :n1317, :n1318,
:n1320, :n1321, :n1322, :n1323, :n1324, :n1325, :n1326, :n1327, :n1328, :n1329,
:n1330, :n1331 ;
skos:notation "13", "131" ;
skos:prefLabel "Funktion in Kreativ-Werk"@de, "Creative Work function"@en ;
skos:altLabel "Zuschreibung, Tätigkeit"@de, "Attribution, Profession"@en ;
skos:definition "Beschreibt die Funktionen von Actors in Kreativprozessen"@de,
"Describes functions of Actors in Creative Work Projects"@en .
:n14 a skos:Concept ;
skos:inScheme :scheme ;
skos:narrower :n1411 ;
skos:notation "14" ;
skos:prefLabel "Funktion in Örtlichkeit"@de, "Place function"@en ;
skos:definition "Beschreibt die Funktionen von Actors in ortsbezogenen Projekten"@de,
"Describes functions of Actors in Place based Projects"@en .
:n15 a skos:Concept ;
skos:inScheme :scheme ;
skos:narrower :n1511 ;
skos:notation "14" ;
skos:prefLabel "Funktion in Veranstaltung"@de, "Event function"@en ;
skos:definition "Beschreibt die Funktionen von Actors in ereignisbasierten Projekten"@de,
"Describes functions of Actors in Event based Projects"@en .
:n16 a skos:Concept ;
skos:inScheme :scheme ;
skos:narrower :n1611, :n1612, :n1613, :n1614, :n1615, :n1616, :n1617, :n1619, :n1619,
:n1620, :n1621, :n1622, :n1623, :n1624, :n1625, :n1626, :n1627, :n1628, :n1629,
:n1630, :n1631, :n1632, :n1633, :n1634, :n1635, :n1636, :n1637, :n1638, :n1639,
:n1640, :n1641, :n1642, :n1643, :n1644, :n1645 ;
skos:notation "16" ;
skos:prefLabel "Verbindungen zu anderen Werken"@de, "Relations to other Works"@en ;
skos:altLabel "Verbindungen zwischen Kreativwerken"@de, "Relations amongst Creative Work"@en .
:n17 a skos:Concept ;
skos:inScheme :scheme ;
skos:narrower :n1711, :n1712, :n1713, :n1714, :n1717, :n1716, :n1717, :n1718, :n1719,
:n1720, :n1721, :n1722, :n1723, :n1724, :n1725, :n1726 ;
skos:notation "17" ;
skos:prefLabel "Infos, Lizenz, Rechtliches"@de, "Info, License, Legal"@en ;
skos:definition "Beschreibt Lizenzen oder Meta in Attributierungen"@de,
"Describes Licenses or meta in attributions"@en .
# Relations of actors
# TODO schema:sameAs wdt:P1881 Liste der Charaktere
# TODO schema:sameAs wdt:P953 full work available at URL
# TODO schema:sameAs wdt:P6275 copyright representative
:n1111 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n11 ;
skos:exactMatch <http://rdfs.org/sioc/ns#has_function> ;
skos:notation "1111" ;
skos:prefLabel "hat Funktion"@de, "has function"@en ;
skos:definition "Verknüpft Actor mit einer Funktion. Actors können in verschiedenen Kontexten viele verschiedene Funktionen haben."@de,
"Links an Actor to a function that this User has (it is a function of this Actor). Actors can have many different functions in different contexts."@en .
:n1112 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n11 ;
skos:exactMatch <http://rdfs.org/sioc/ns#creator_of> ;
skos:notation "1112" ;
skos:prefLabel "erstellte"@de, "created"@en ;
skos:altLabel "Autor*in von"@de, "author of"@en ;
skos:definition "Bezeichnet ein Objekt, daß Actor erstellt hat. "@de,
"Refers to an Object that the User is a creator of. Being a creator of an Item is not a function. Matches the author-rel in HTML."@en .
:n1113 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n11 ;
skos:exactMatch <http://rdfs.org/sioc/ns#modifier_of> ;
skos:notation "1113" ;
skos:prefLabel "modifizierte"@de, "modified"@en ;
skos:altLabel "Modifizierer von"@de, "modifier of"@en ;
skos:definition "Bezeichnet ein Objekt, daß Actor modifiziert hat."@de,
"Refers to an Object that this User has modified."@en .
:n1114 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n11 ;
skos:exactMatch <http://rdfs.org/sioc/ns#owner_of> ;
skos:notation "1114" ;
skos:prefLabel "besitzt"@de, "owns"@en ;
skos:altLabel "Eigentümer von"@de, "owner of"@en ;
skos:definition "Bezeichnet ein Objekt in Besitz von Actor."@de,
"Refers to a Object owned by the Actor."@en .
:n1115 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n11 ;
skos:exactMatch <http://rdfs.org/sioc/ns#moderator_of> ;
skos:notation "1115" ;
skos:prefLabel "moderiert"@de, "moderates"@en ;
skos:altLabel "ist Content-Moderator von"@de, "is content moderator of"@en ;
skos:definition "Bezeichnet eine Gruppe, in der Actor ein Moderator ist."@de,
"Refers to a Group/Forum that this Actor is a moderator of."@en .
:n1116 a skos:Concept ;
skos:broader :n11 ;
skos:inScheme :scheme ;
skos:exactMatch <http://rdfs.org/sioc/ns#administrator_of> ;
skos:notation "1116" ;
skos:prefLabel "administriert"@de, "administers"@en ;
skos:altLabel "ist Administrator von"@de, "is administrator of"@en ;
skos:definition "Bezeichnet eine Gruppe, in der Actor ein Admin ist."@de,
"Refers to a Group/Forum that this Actor is a administrator of."@en .
:n1117 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n11 ;
skos:notation "1117" ;
skos:prefLabel "verwaltet"@de, "maintains"@en ;
skos:altLabel "Pflege"@de, "Maintainance"@en ;
skos:definition "Eine Person oder Sache, die etwas pflegt, insbesondere Computersoftware."@de,
"A person or thing that maintains something, in particular computer software."@en ;
schema:sameAs schema:maintainer, tmdb:Maintainer .
:n1118 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n11 ;
skos:exactMatch <http://rdfs.org/sioc/ns#member_of> ;
skos:notation "1118" ;
skos:prefLabel "ist Mitglied von"@de, "is member of"@en ;
skos:definition "Bezeichnet eine Gruppe, in der Actor ein Mitglied ist."@de,
"Refers to a Group that this Actor is a member of."@en .
:n1119 a skos:Concept ;
skos:inScheme :scheme ;
skos:exactMatch loc:prf ;
skos:broader :n11 ;
skos:notation "1119" ;
skos:prefLabel "stellt dar"@de, "performs"@en ;
schema:sameAs wdt:P453 .
:n1120 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n11 ;
skos:notation "1120" ;
skos:prefLabel "spricht"@de, "speaks"@en ;
schema:sameAs wdt:P453 .
:n1121 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n11 ;
skos:notation "1121" ;
skos:prefLabel "doubelt"@de, "doubles"@en ;
schema:sameAs wdt:P453 .
:n1122 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n11 ;
skos:notation "1122" ;
skos:prefLabel "ist Sidekick von"@de, "is sidekick of"@en ;
skos:definition "Begleiter einer Hauptfigur"@de,
"close companion of a fictional character"@en ;
schema:sameAs wdt:P2546 .
:n1123 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n11 ;
skos:notation "1123" ;
skos:prefLabel "spricht für"@de, "speaks for"@en .
:n1124 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n11 ;
skos:notation "1124" ;
skos:prefLabel "handelt für"@de, "acts for"@en .
# Generic function
:n1211 a skos:Concept ;
skos:inScheme :scheme ;
skos:notation "1211" ;
skos:prefLabel "Fiktional"@de, "Fictional"@en ;
skos:definition "Eine Person oder Sache mit einer fiktiven Bedeutung. Zum Beispiel ein Charakter."@de,
"A person or thing with a fictional meaning. For example a Character."@en ;
schema:sameAs wdt:P453, schema:character, tmdb:character ;
skos:topConceptOf :scheme .
:n1212 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:cre ;
skos:notation "1212" ;
skos:prefLabel "Schöpfer*in"@de, "Creator"@en ;
skos:definition "Eine Person oder Organisation, die für den geistigen oder künstlerischen Inhalt einer Ressource verantwortlich ist"@de,
"A person or organization responsible for the intellectual or artistic content of a resource"@en ;
schema:sameAs wdt:P170, schema:creator, rnews:creator, tmdb:Creator .
:n1213 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:rpy ;
skos:notation "1213" ;
skos:prefLabel "Verantwortliche Person"@de, "Accountable Person"@en ;
skos:altLabel "V.i.S.d.P."@de, "Person responsible according to Press Law"@en ;
skos:definition "Eine Person oder Organisation, die rechtlich für den Inhalt des veröffentlichten Materials verantwortlich ist"@de,
"A person or organization legally responsible for the content of the published material"@en ;
schema:sameAs schema:accountablePerson, rnews:accountablePerson, tmdb:Accountable%20Person .
:n1214 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:cph ;
skos:notation "1214" ;
skos:prefLabel "Copyright Inhaber*in"@de, "Copyright Holder"@en ;
skos:altLabel "© by"@de, "© by"@en ;
skos:definition "Eine Person oder Organisation, welcher Urheber- und Rechtsrechte für den geistigen Inhalt eines Werkes gewährt oder übertragen wurden. Der Urheberrechtsinhaber ist zwar nicht unbedingt der Schöpfer des Werks, hat aber in der Regel das ausschließliche Recht, aus dem Verkauf und der Nutzung des Werks, für das der entsprechende Urheberrechtsschutz gilt, finanziell zu profitieren"@de,
"A person or organization to whom copy and legal rights have been granted or transferred for the intellectual content of a work. The copyright holder, although not necessarily the creator of the work, usually has the exclusive right to benefit financially from the sale and use of the work to which the associated copyright protection applies"@en ;
schema:sameAs wdt:P3931, schema:copyrightHolder, rnews:copyrightHolder, tmdb:Copyright%20Holder .
:n1215 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12, :n1322 ;
skos:exactMatch loc:edt ;
skos:notation "1215" ;
skos:prefLabel "Redakteur*in"@de, "Editor"@en ;
skos:definition "Eine Person, Familie oder Organisation, die zu einer Ressource beiträgt, indem sie den Inhalt überarbeitet oder erläutert, z. B. durch Hinzufügen einer Einleitung, von Anmerkungen oder anderen wichtigen Informationen. Ein Herausgeber kann auch eine Ressource für die Produktion, Veröffentlichung oder Verteilung vorbereiten. Für umfangreiche Überarbeitungen, Anpassungen usw., die Art und Inhalt des ursprünglichen Werks wesentlich verändern und zu einem neuen Werk führen, siehe Autor"@de,
"A person, family, or organization contributing to a resource by revising or elucidating the content, e.g., adding an introduction, notes, or other critical matter. An editor may also prepare a resource for production, publication, or distribution. For major revisions, adaptations, etc., that substantially change the nature and content of the original work, resulting in a new work, see author"@en ;
schema:sameAs wdt:P98, schema:editor, rnews:editor .
:n1216 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12, :n3 ;
skos:notation "1216" ;
skos:prefLabel "Anbieter*in"@de, "provider"@en ;
skos:altLabel "provider"@de, "Supplier"@en ;
skos:definition "Allgemein. Gibt die Person oder Organisation an, die den Artikel angeboten hat. Der Unterschied zwischen provider und sourceOrganisation für einen Artikel: Angenommen, der Boston Globe schreibt einen Artikel von allgemeinem Interesse und The Associated Press vertreibt den Artikel; Dann ist die source dieses Artikels 'Boston Globe', aber sein provider ist 'The Associated Press'. In 'context' nur verwenden, wenn der Anbieter das Thema ist (auch PR) oder 'In eigener Sache'."@de,
"Generic. Specifies the person or organization that distributed the item. The difference between provider and sourceOrganization for an item: Suppose the Boston Globe writes a general interest article and The Associated Press distributes the article. Then this article's source is 'Boston Globe' but its provider is 'The Associated Press'. Use in 'context' only if the supplier is subject (e.g. PR) or 'on our own behalf'."@en ;
schema:sameAs schema:provider, rnews:provider .
:n1217 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12, :n3 ;
skos:notation "1217" ;
skos:prefLabel "Quelle"@de, "source"@en ;
skos:altLabel "source organization"@de, "source organization"@en ;
skos:definition "Die Organisation, in deren Auftrag gearbeitet wurde. Der Unterschied zwischen provider und sourceOrganisation für einen Artikel: Angenommen, der Boston Globe schreibt einen Artikel von allgemeinem Interesse und The Associated Press vertreibt den Artikel; Dann ist die source dieses Artikels 'Boston Globe', aber sein provider ist 'The Associated Press'. In 'context' nur verwenden, wenn der Anbieter das Thema ist (auch PR) oder 'In eigener Sache'."@de,
"The organization on whose behalf the creator of the item was working. The difference between provider and sourceOrganization for an item: Suppose the Boston Globe writes a general interest article and The Associated Press distributes the article. Then this article's source is 'Boston Globe' but its provider is 'The Associated Press'. Use in 'context' only if the supplier is subject (e.g. PR) or 'on our own behalf'."@en ;
schema:sameAs schema:sourceOrganization, rnews:sourceOrganization .
:n1218 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:ctb ;
skos:notation "1218" ;
skos:prefLabel "Mitwirkende*r, Contributor"@de, "Contributor"@en ;
skos:definition "Eine Person, Familie oder Organisation, die für die Beiträge zur Ressource verantwortlich ist. Dies schließt diejenigen ein, deren Arbeit zu einem größeren Werk beigetragen wurde, wie z. B. einem Sammelband, einer fortlaufenden Veröffentlichung oder einer anderen Zusammenstellung von Einzelwerken. Wenn eine spezifischere Funktion verfügbar ist, geben Sie diese an, z. B. Herausgeber, Komponist, Illustrator."@de,
"A person, family or organization responsible for making contributions to the resource. This includes those whose work has been contributed to a larger work, such as an anthology, serial publication, or other compilation of individual works. If a more specific function is available, prefer that, e.g. editor, compiler, illustrator"@en ;
schema:sameAs wdt:P767, schema:contributor, rnews:contributor .
:n1219 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:ann ;
skos:notation "1219" ;
skos:prefLabel "Verfasser Strukturierte Daten, Annotator"@de, "Annotator, Structured Data Publisher"@en ;
skos:altLabel "Metadaten"@de, "metadata"@en ;
skos:hiddenLabel "sdPublisher Structured Data"@de, "sdPublisher"@en ;
skos:definition "Eine Person, die handschriftliche Anmerkungen zu einem Werk macht"@de,
"A person who makes manuscript annotations on an item"@en ;
schema:sameAs schema:sdPublisher .
:n1220 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:mrk ;
skos:notation "1220" ;
skos:prefLabel "Markup Editor"@de, "Markup editor"@en ;
skos:definition "Eine Person oder Organisation, die die Kodierung von SGML-, HTML- oder XML-Auszeichnungen von Metadaten, Text usw. vornimmt"@de,
"A person or organization performing the coding of SGML, HTML, or XML markup of metadata, text, etc."@en ;
schema:sameAs schema:editor, tmdb:Markup%20editor .
:n1221 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:att ;
skos:notation "1221" ;
skos:prefLabel "Zugeschriebener Name"@de, "Attributed name"@en ;
skos:altLabel "Generische Zuschreibung"@de, "Generic Attribution"@en ;
skos:definition "Ein Autor, Künstler usw., der mit einer Ressource in Verbindung gebracht wird, für die es eine wesentliche Berechtigung gibt oder gab, diese Person als Autor, Schöpfer usw. des Werks zu bezeichnen, was auf die Herkunft hinweist"@de,
"An author, artist, etc., relating him/her to a resource for which there is or once was substantial authority for designating that person as author, creator, etc. of the work indicative of provenance"@en ;
schema:sameAs wdt:P1779 .
:n1222 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:asn ;
skos:notation "1222" ;
skos:prefLabel "Assoziierter Name"@de, "Associated name"@en ;
skos:altLabel "Generische Assoziierung"@de, "Generic Association"@en ;
skos:definition "Eine Person oder Organisation, die mit einem Gegenstand oder einer Sammlung in Verbindung gebracht wird oder in dieser zu finden ist, die aber nicht bestimmt werden kann."@de,
"A person or organization associated with or found in an item or collection, which cannot be determined."@en ;
schema:sameAs wdt:P1779 .
:n1223 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:led ;
skos:notation "1223" ;
skos:prefLabel "Leitung"@de, "Lead"@en ;
skos:definition "Eine Person oder Organisation, die die Hauptverantwortung für eine bestimmte Tätigkeit oder ein bestimmtes Unterfangen trägt. Kann mit einem anderen Funktionsbegriff oder -code kombiniert werden, um die größere Bedeutung dieser Person oder Organisation in Bezug auf diese bestimmte Funktion zu zeigen. Wenn einer Rubrik mehr als ein Verantwortlicher zugeordnet ist, verwenden Sie den Begriff nur, wenn er auf alle Verantwortlichen zutrifft."@de,
"A person or organization that takes primary responsibility for a particular activity or endeavor. May be combined with another relator term or code to show the greater importance this person or organization has regarding that particular function. If more than one relator is assigned to a heading, use the Lead relator only if it applies to all the relators"@en ;
schema:sameAs tmdb:Lead .
:n1224 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:fnd ;
skos:notation "1224" ;
skos:prefLabel "Förderer*in"@de, "Funder"@en ;
skos:definition "Eine Person oder Organisation, die die Produktion des Werks finanziell unterstützt hat"@de,
"A person or organization that furnished financial support for the production of the work"@en ;
schema:sameAs schema:funder, tmdb:Funder .
:n1225 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:spn ;
skos:notation "1225" ;
skos:prefLabel "Sponsor"@de, "Sponsor"@en ;
skos:definition "Eine Person, Familie oder Organisation, die einen bestimmten Aspekt einer Ressource sponsert, z. B. die Finanzierung von Forschung, das Sponsoring einer Veranstaltung"@de,
"A person, family, or organization sponsoring some aspect of a resource, e.g., funding research, sponsoring an event"@en ;
schema:sameAs schema:sponsor, tmdb:Sponsor .
:n1226 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:dnr ;
skos:notation "1226" ;
skos:prefLabel "Spender*in"@de, "Donor"@en ;
skos:definition "Ein ehemaliger Eigentümer eines Gegenstands, der diesen Gegenstand einem anderen Eigentümer geschenkt hat"@de,
"A former owner of an item who donated that item to another owner"@en ;
schema:sameAs tmdb:Donor .
:n1227 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:pat ;
skos:notation "1227" ;
skos:prefLabel "Patron*in"@de, "Patron"@en ;
skos:definition "Eine Person oder Organisation, die ein Werk in Auftrag gibt. Normalerweise setzt ein Mäzen seine Mittel oder seinen Einfluss ein, um die Arbeit von Künstlern, Schriftstellern usw. zu unterstützen. Dazu gehören auch diejenigen, die einzelne Werke in Auftrag geben und dafür bezahlen."@de,
"A person or organization responsible for commissioning a work. Usually a patron uses his or her means or influence to support the work of artists, writers, etc. This includes those who commission and pay for individual works"@en ;
schema:sameAs tmdb:Patron .
:n1228 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:exp ;
skos:notation "1228" ;
skos:prefLabel "Expert*in"@de, "Expert"@en ;
skos:definition "Eine Person oder Organisation, die für die Beschreibung und Schätzung des Wertes von Waren, insbesondere von seltenen Gegenständen, Kunstwerken usw., zuständig ist."@de,
"A person or organization in charge of the description and appraisal of the value of goods, particularly rare items, works of art, etc."@en .
:n1229 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:cli ;
skos:notation "1229" ;
skos:prefLabel "Client, Kund*in, Auftraggeber*in"@de, "Client"@en ;
skos:definition "Eine Person oder Organisation, für die eine andere Person oder Organisation tätig ist"@de,
"A person or organization for whom another person or organization is acting"@en ;
schema:sameAs wdt:P88 .
:n1230 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:ctr ;
skos:notation "1230" ;
skos:prefLabel "Vertragspartner*in"@de, "Contractor"@en ;
skos:definition "Eine Person oder Organisation, die für eine Ressource relevant ist und mit einer anderen Person oder Organisation einen Vertrag über eine bestimmte Leistung abschließt"@de,
"A person or organization relevant to a resource, who enters into a contract with another person or organization to perform a specific"@en .
:n1231 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:sht ;
skos:notation "1231" ;
skos:prefLabel "Unterstützer*in"@de, "Supporter, Supporting Host"@en ;
skos:definition "Eine Person oder Organisation, die ein Projekt, ein Programm, ein Treffen, eine Veranstaltung, Datenobjekte, materielle Kulturobjekte oder andere unterstützungsfähige Einheiten unterstützt (durch Bereitstellung von Einrichtungen, Personal oder anderen Ressourcen)"@de,
"A person or organization that supports (by allocating facilities, staff, or other resources) a project, program, meeting, event, data objects, material culture objects, or other entities capable of support"@en .
:n1232 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:hst ;
skos:notation "1232" ;
skos:prefLabel "Host, Gastgeber"@de, "Host"@en ;
skos:definition "Ein Künstler, der zu einer Ressource beiträgt, indem er ein (oft gesendetes) Programm leitet, das andere Gäste, Künstler usw. einschließt. (z. B. Talkshow-Moderator)"@de,
"A performer contributing to a resource by leading a program (often broadcast) that includes other guests, performers, etc. (e.g., talk show host)"@en .
:n1233 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:his ;
skos:notation "1233" ;
skos:prefLabel "Host Institution"@de, "Host institution"@en ;
skos:definition "Eine Organisation, die die Veranstaltung, Ausstellung, Konferenz usw. ausrichtet/hostet, aber wenig oder keine Verantwortung für den Inhalt der Ressource hat"@de,
"An organization hosting the event, exhibit, conference, etc., which gave rise to a resource, but having little or no responsibility for the content of the resource"@en .
:n1234 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:cur ;
skos:notation "1234" ;
skos:prefLabel "Kurator"@de, "Curator"@en ;
skos:definition "Eine Person, Familie oder Organisation, die eine Ausstellung, Sammlung oder ein anderes Objekt konzipiert, zusammenstellt und/oder organisiert"@de,
"A person, family, or organization conceiving, aggregating, and/or organizing an exhibition, collection, or other item"@en .
:n1235 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:ard ;
skos:notation "1235" ;
skos:prefLabel "Künstlerische*r Direktor*in"@de, "Artistic director"@en ;
skos:definition "Eine Person, die für die Kontrolle der Entwicklung des künstlerischen Stils einer gesamten Produktion verantwortlich ist, einschließlich der Auswahl der zu präsentierenden Werke und der Auswahl des leitenden Produktionspersonals"@de,
"A person responsible for controlling the development of the artistic style of an entire production, including the choice of works to be presented and selection of senior production staff"@en .
:n1236 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:orm ;
skos:notation "1236" ;
skos:prefLabel "Veranstalter*in"@de, "Organizer"@en ;
skos:definition "Eine Person, Familie oder Organisation, die die Ausstellung, Veranstaltung, Konferenz usw. organisiert, aus der eine Ressource hervorgegangen ist"@de,
"A person, family, or organization organizing the exhibit, event, conference, etc., which gave rise to a resource "@en .
:n1237 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:isb ;
skos:notation "1237" ;
skos:prefLabel "Herausgeber*in"@de, "Publisher"@en ;
skos:altLabel "Herausgebende Stelle"@de, "Issuing body"@en ;
skos:definition "Eine Person, Familie oder Organisation, die ein Werk herausgibt, wie z. B. ein offizielles Organ der Einrichtung"@de,
"A person, family or organization issuing a work, such as an official organ of the body"@en ;
schema:sameAs wdt:P123, schema:publisher, schema:publisherImprint .
:n1238 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:stn ;
skos:notation "1238" ;
skos:prefLabel "Normungsgremium"@de, "Standards body"@en ;
skos:altLabel "Standards-Institution"@de ;
skos:definition "Eine Organisation, die für die Entwicklung oder Durchsetzung einer Norm / eines Standards verantwortlich ist"@de,
"An organization responsible for the development or enforcement of a standard"@en .
:n1239 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:dtc ;
skos:notation "1239" ;
skos:prefLabel "Datenlieferant"@de, "Data contributor"@en ;
skos:definition "Eine Person oder Organisation, die Daten zur Aufnahme in eine Datenbank oder eine andere Datensammlung vorlegt"@de,
"A person or organization that submits data for inclusion in a database or other collection of data"@en .
:n1240 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:asg ;
skos:notation "1240" ;
skos:prefLabel "Rechtsnachfolger"@de, "Assignee"@en ;
skos:definition "Eine Person oder Organisation, der eine Lizenz zum Drucken oder Veröffentlichen übertragen wurde"@de,
"A person or organization to whom a license for printing or publishing has been transferred"@en .
:n1241 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:lse ;
skos:notation "1241" ;
skos:prefLabel "Lizenznehmer*in"@de, "Licensee"@en ;
skos:definition "Eine Person oder Organisation, die der ursprüngliche Empfänger der Druck- oder Veröffentlichungslizenz ist"@de,
"A person or organization who is an original recipient of the right to print or publish"@en .
:n1242 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:lso ;
skos:notation "1242" ;
skos:prefLabel "Lizenzgeber*in"@de, "Licensor"@en ;
skos:definition "Eine Person oder Organisation, die Unterzeichner der Lizenz, des Imprimaturs usw. ist"@de,
"A person or organization who is a signer of the license, imprimatur, etc"@en .
:n1243 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:col ;
skos:notation "1243" ;
skos:prefLabel "Sammler*in"@de, "Collector"@en ;
skos:definition "Ein Kurator, der Gegenstände aus verschiedenen Quellen zusammenträgt, die dann als Sammlung geordnet, beschrieben und katalogisiert werden. Ein Sammler ist weder der Schöpfer des Materials noch eine Person, an die die Manuskripte in der Sammlung möglicherweise adressiert waren"@de,
"A curator who brings together items from various sources that are then arranged, described, and cataloged as a collection. A collector is neither the creator of the material nor a person to whom manuscripts in the collection may have been addressed"@en .
:n1244 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:pan ;
skos:notation "1244" ;
skos:prefLabel "Panelist*in"@de, "Panelist"@en ;
skos:definition "Ein Künstler, der zu einer Ressource beiträgt, indem er an einer (oft ausgestrahlten) Sendung teilnimmt, in der Themen erörtert werden, in der Regel unter Beteiligung von Experten auf den mit der Diskussion verbundenen Gebieten"@de,
"A performer contributing to a resource by participating in a program (often broadcast) where topics are discussed, usually with participation of experts in fields related to the discussion"@en .
:n1245 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:inv ;
skos:notation "1245" ;
skos:prefLabel "Erfinder*in"@de, "Inventor"@en ;
skos:definition "Eine Person, Familie oder Organisation, die für die Entwicklung eines neuen Geräts oder Verfahrens verantwortlich ist"@de,
"A person, family, or organization responsible for creating a new device or process"@en ;
schema:sameAs wdt:P61 .
:n1246 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:dte ;
skos:notation "1246" ;
skos:prefLabel "Widmungsträger*in"@de, "Dedicatee"@en ;
skos:definition "Eine Person, Familie oder Organisation, der eine Ressource gewidmet ist"@de,
"A person, family, or organization to whom a resource is dedicated"@en .
:n1247 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:hnr ;
skos:notation "1247" ;
skos:prefLabel "Geehrte*r, Honoree"@de, "Honoree"@en ;
skos:altLabel "Dank"@de, "Thanks"@en ;
schema:sameAs tmdb:Thanks, tmdb:Thanks%20to ;
skos:definition "Eine Person, Familie oder Organisation, die durch ein Werk oder einen Gegenstand geehrt wird (z. B. der Preisträger einer Festschrift, eine Person, der ein Exemplar überreicht wird)"@de,
"A person, family, or organization honored by a work or item (e.g., the honoree of a festschrift, a person to whom a copy is presented)"@en .
:n1248 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:ant ;
skos:notation "1248" ;
skos:prefLabel "Bibliographischer Vorläufer"@de, "Bibliographic antecedent"@en ;
skos:definition "Eine Person oder Organisation, die für eine Ressource verantwortlich ist, auf der die durch die bibliographische Beschreibung dargestellte Ressource basiert. Dies kann für Adaptionen, Fortsetzungen, etc. angebracht sein."@de,
"A person or organization responsible for a resource upon which the resource represented by the bibliographic description is based. This may be appropriate for adaptations, sequels, continuations, indexes, etc."@en .
:n1249 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:rcp ;
skos:notation "1249" ;
skos:prefLabel "Adressat*in"@de, "Addressee"@en ;
skos:definition "Eine Person, Familie oder Organisation, an die z. B. der Schriftverkehr in einem Werk gerichtet ist"@de,
"A person, family, or organization to whom e.g. correspondence in a work is addressed"@en .
:n1250 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:mdc ;
skos:notation "1250" ;
skos:prefLabel "Ansprechpartner für Metadaten"@de, "Metadata contact"@en ;
skos:definition "Eine Person oder Organisation, die in erster Linie für die Zusammenstellung und Pflege der ursprünglichen Beschreibung eines Metadatensatzes verantwortlich ist"@de,
"A person or organization primarily responsible for compiling and maintaining the original description of a metadata set"@en .
:n1251 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:app ;
skos:notation "1251" ;
skos:prefLabel "Antragsteller*in"@de, "Applicant"@en ;
skos:definition "Eine Person oder Organisation, die für die Einreichung eines Antrags verantwortlich ist oder die für die Ergebnisse der Antragsbearbeitung (z. B. Verleihung von Rechten, Belohnungen, Titeln, Positionen) als berechtigt genannt wird"@de,
"A person or organization responsible for the submission of an application or who is named as eligible for the results of the processing of the application (e.g., bestowing of rights, reward, title, position)"@en .
:n1252 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:com ;
skos:notation "1252" ;
skos:prefLabel "Compiler*in"@de, "Compiler"@en ;
skos:definition "Eine Person, Familie oder Organisation, die für die Erstellung eines neuen Werks (z. B. einer Bibliografie, eines Verzeichnisses) durch den Akt der Zusammenstellung verantwortlich ist, z. B. durch Auswahl, Anordnung, Zusammenfassung und Bearbeitung von Daten, Informationen usw."@de,
"A person, family, or organization responsible for creating a new work (e.g., a bibliography, a directory) through the act of compilation, e.g., selecting, arranging, aggregating, and editing data, information, etc"@en ;
schema:sameAs tmdb:Compiler .
:n1253 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:cre ;
skos:notation "1253" ;
skos:prefLabel "Praktikant*in"@de, "Intern"@en ;
schema:sameAs tmdb:Intern .
:n1254 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:art ;
skos:notation "1254" ;
skos:prefLabel "Autor*in"@de, "Author"@en ;
skos:altLabel "Primärer Künstler"@de, "Primary Artist"@en ;
schema:sameAs wdt:P50, schema:author, schema:artist, tmdb:Author ;
skos:definition "Eine Person, Familie oder Organisation, die für die Schaffung eines Werks verantwortlich ist, indem sie ein originales grafisches Design, eine Zeichnung, ein Gemälde usw. entwirft und umsetzt. Für Buchillustratoren ist der Begriff 011713 Illustrator [ill] vorzuziehen."@de,
"A person, family, or organization responsible for creating a work by conceiving, and implementing, an original graphic design, drawing, painting, etc. For book illustrators, prefer 011713 Illustrator [ill]"@en .
:n1255 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:exactMatch loc:rps ;
skos:notation "1255" ;
skos:prefLabel "Repository"@de, "Repository"@en ;
skos:definition "Eine Organisation, die Daten oder Objekte der materiellen Kultur beherbergt und Dienste zur Förderung einer langfristigen, konsistenten und gemeinsamen Nutzung dieser Daten oder Objekte bereitstellt"@de,
"An organization that hosts data or material culture objects and provides services to promote long term, consistent and shared use of those data or objects"@en .
:n1256 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n12 ;
skos:notation "1256" ;
skos:prefLabel "In Erinnerung an"@de, "In Memory Of"@en ;
skos:altLabel "in memoriam"@de, "in memoriam"@en ;
schema:sameAs tmdb:In%20Memory%20Of .
# functions
:n1311 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n13 ;
skos:narrower :n131111, :n131112, :n131113, :n131114, :n131115, :n131116, :n131117,
:n131118, :n131119, :n131120, :n131121 ;
skos:notation "1311" ;
skos:prefLabel "Berichterstattung"@de, "Coverage"@en ;
skos:altLabel "Reporting"@de, "Reporting"@en .
:n1312 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n13 ;
skos:narrower :n131211, :n131212, :n131213, :n131214, :n131215, :n131216, :n131217,
:n131218, :n131219, :n131220, :n131221, :n131222, :n131223, :n131224, :n131225,
:n131226, :n131227, :n131228, :n131229, :n131230, :n131231, :n131232, :n131233,
:n131234, :n131235, :n131236, :n131237, :n131238, :n131239, :n131240, :n131241,
:n131242, :n131243, :n131244, :n131245, :n131246, :n131247, :n131248, :n131249,
:n131250, :n131251, :n131252, :n131253, :n131254, :n131255, :n131256, :n131257,
:n131258, :n131259, :n131260, :n131261, :n131262, :n131263, :n131264, :n131265,
:n131266, :n131267, :n131268, :n131269, :n131270, :n131271, :n131272, :n131273,
:n131274, :n131275, :n131276, :n131277, :n131278, :n131279, :n131280, :n131281,
:n131282, :n131283, :n131284 ;
skos:notation "1312" ;
skos:prefLabel "Schreiben"@de, "Writing"@en ;
skos:altLabel "Skript"@de, "Script"@en .
:n1313 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n13 ;
skos:narrower :n131311, :n131312, :n131313, :n131314, :n131315, :n131316, :n131317,
:n131318, :n131319, :n131320, :n131321, :n131322, :n131323, :n131324, :n131325,
:n131326, :n131327, :n131328, :n131329, :n131330, :n131331, :n131332, :n131333,
:n131334, :n131335, :n131336, :n131337, :n131338, :n131339, :n131340, :n131341,
:n131342, :n131343, :n131344, :n131345, :n131346, :n131347, :n131348, :n131349,
:n131350, :n131351, :n131352, :n131353, :n131354, :n131355, :n131356, :n131357,
:n131358, :n131359, :n131360, :n131361, :n131362, :n131363, :n131364, :n131365,
:n131366, :n131367, :n131368, :n131369, :n131370, :n131371, :n131372, :n131373,
:n131374, :n131375, :n131376, :n131377, :n131378, :n131379, :n131380, :n131381,
:n131382, :n131383, :n131384, :n131385, :n131386, :n131387, :n131388, :n131389,
:n131390, :n131391, :n131392, :n131393, :n131394, :n131395, :n131396, :n131397,
:n131398, :n131399;
skos:notation "1313" ;
skos:prefLabel "Kamera"@de, "Camera"@en ;
skos:altLabel "Bilder"@de, "Photography"@en .
:n1314 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n13 ;
skos:narrower :n131411, :n131412, :n131413, :n131414, :n131415, :n131416, :n131417,
:n131418, :n131419, :n131420, :n131421, :n131422, :n131423, :n131424, :n131425,
:n131426, :n131427, :n131428, :n131429, :n131430, :n131431, :n131432, :n131433,
:n131434, :n131435, :n131436, :n131437, :n131438, :n131439, :n131440, :n131441,
:n131442, :n131443, :n131444, :n131445, :n131446, :n131447, :n131448, :n131449,
:n131450, :n131451, :n131452, :n131453, :n131454, :n131455, :n131456, :n131457,
:n131458, :n131459, :n131460, :n131461, :n131462, :n131463, :n131464, :n131465,
:n131466, :n131467, :n131468, :n131469, :n131470, :n131471, :n131472, :n131473,
:n131474, :n131475, :n131476, :n131477, :n131478, :n131479, :n131480, :n131481,
:n131482;
skos:notation "1314" ;
skos:prefLabel "Sound"@de, "Sound"@en .
:n1315 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n13 ;
skos:narrower :n131511, :n131512, :n131513, :n131514, :n131515, :n131516, :n131517,
:n131518, :n131519, :n131520, :n131521, :n131522, :n131523, :n131524, :n131525,
:n131526, :n131527, :n131528, :n131529, :n131530, :n131531, :n131532, :n131533,
:n131534, :n131535, :n131536, :n131537, :n131538, :n131539, :n131540, :n131541 ;
skos:notation "1315" ;
skos:prefLabel "Musik"@de, "Music"@en ;
skos:altLabel ""@de, ""@en .
:n1316 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n13 ;
skos:narrower :n131611, :n131612, :n131613, :n131614, :n131615, :n131616, :n131617,
:n131618, :n131619, :n131620, :n131621, :n131622, :n131623, :n131624, :n131625;
skos:notation "1316" ;
skos:prefLabel "Schauspieler"@de, "Actors"@en ;
skos:altLabel "Cast"@de, "Cast"@en .
:n1317 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n13 ;
skos:narrower :n131711, :n131712, :n131713, :n131714, :n131715, :n131716, :n131717,
:n131718, :n131719, :n131720, :n131721, :n131722, :n131723, :n131724, :n131725,
:n131726, :n131727, :n131728, :n131729, :n131730, :n131731, :n131732, :n131733,
:n131734, :n131735, :n131736, :n131737, :n131738, :n131739, :n131740, :n131741,
:n131742, :n131743, :n131744, :n131745, :n131746, :n131747, :n131748, :n131749,
:n131750, :n131751, :n131752, :n131753, :n131754, :n131755, :n131756, :n131757,
:n131758, :n131759, :n131760, :n131761, :n131762, :n131763, :n131764, :n131765,
:n131766, :n131767, :n131768, :n131769, :n131770, :n131771, :n131772, :n131773,
:n131774, :n131775, :n131776, :n131777, :n131778, :n131779, :n131780, :n131781,
:n131782, :n131783, :n131784, :n131785, :n131786, :n131787, :n131788, :n131789,
:n131790 ;
skos:notation "1317" ;
skos:prefLabel "Kunst"@de, "Art"@en .
:n1318 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n13 ;
skos:narrower :n131811, :n131812, :n131813, :n131814, :n131815, :n131816, :n131817,
:n131818, :n131819, :n131820, :n131821, :n131822, :n131823, :n131824, :n131825,
:n131826, :n131827, :n131828, :n131829, :n131830, :n131831, :n131832, :n131833,
:n131834, :n131835, :n131836, :n131837, :n131838, :n131839, :n131840, :n131841 ;
skos:notation "1318" ;
skos:prefLabel "Beleuchtung"@de, "Lighting"@en ;
skos:altLabel "Licht"@de, "Light"@en .
:n1319 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n13 ;
skos:narrower :n131911, :n131912, :n131913, :n131914, :n131915, :n131916, :n131917,
:n131918, :n131919, :n131920, :n131921, :n131922, :n131923, :n131924, :n131925,
:n131926, :n131927, :n131928, :n131929, :n131930, :n131931, :n131932, :n131933,
:n131934, :n131935, :n131936, :n131937, :n131938, :n131939, :n131940, :n131941,
:n131942, :n131943, :n131944, :n131945, :n131946, :n131947, :n131948, :n131949,
:n131950, :n131951, :n131952, :n131953, :n131954, :n131955, :n131956, :n131957,
:n131958, :n131959, :n131960, :n131961, :n131962, :n131963, :n131964, :n131965,
:n131966, :n131967, :n131968, :n131969, :n131970, :n131971, :n131972 ;
skos:notation "1319" ;
skos:prefLabel "Bühne und Requisite"@de, "Stage and Props"@en .
:n1320 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n13 ;
skos:narrower :n132011, :n132012, :n132013, :n132014, :n132015, :n132016, :n132017,
:n132018, :n132019, :n132020, :n132021, :n132022, :n132023, :n132024, :n132025,
:n132026, :n132027, :n132028, :n132029, :n132030, :n132031, :n132032, :n132033,
:n132034, :n132035, :n132036, :n132037, :n132038, :n132039, :n132040, :n132041,
:n132042 ;
skos:notation "1320" ;
skos:prefLabel "Regie"@de, "Directing"@en ;
skos:altLabel "Direktion"@de, "Director"@en .
:n1321 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n13 ;
skos:narrower :n132111, :n132112, :n132113, :n132114, :n132115, :n132116, :n132117,
:n132118, :n132119, :n132120, :n132121, :n132122, :n132123, :n132124, :n132125,
:n132126, :n132127, :n132128, :n132129, :n132130, :n132131, :n132132, :n132133,
:n132134, :n132135, :n132136, :n132137, :n132138, :n132139, :n132140, :n132141,
:n132142, :n132143, :n132144, :n132145, :n132146, :n132147, :n132148, :n132149,
:n132150, :n132151, :n132152, :n132153, :n132154, :n132155, :n132156, :n132157,
:n132158, :n132159, :n132160, :n132161, :n132162, :n132163, :n132164, :n132165,
:n132166, :n132167, :n132168, :n132169, :n132170, :n132171, :n132172, :n132173,
:n132174, :n132175, :n132176, :n132177, :n132178, :n132179, :n132180, :n132181,
:n132182, :n132183, :n132184, :n132185, :n132186, :n132187, :n132188, :n132189,
:n132190, :n132191, :n132192, :n132193, :n132194, :n132195, :n132196, :n132197,
:n132198, :n132199, :n1321100, :n1321101, :n1321102, :n1321103, :n1321104,
:n1321105, :n1321106, :n1321107, :n1321108, :n1321109, :n1321110, :n1321111,
:n1321112, :n1321113, :n1321114, :n1321115, :n1321116, :n1321117, :n1321118,
:n1321119, :n1321120, :n1321121, :n1321122, :n1321123, :n1321124, :n1321125,
:n1321126, :n1321127, :n1321128, :n1321129, :n1321130, :n1321131, :n1321132,
:n1321133, :n1321134, :n1321135, :n1321136, :n1321137, :n1321138, :n1321139,
:n1321140, :n1321141 ;
skos:notation "1321" ;
skos:prefLabel "Produktion"@de, "Production"@en .
:n1322 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n13 ;
skos:narrower :n132211, :n132212, :n132213, :n132214, :n132215, :n132216, :n132217,
:n132218, :n132219, :n132220, :n132221, :n132222, :n132223, :n132224, :n132225,
:n132226, :n132227, :n132228, :n132229, :n132230, :n132231, :n132232, :n132233,
:n132234, :n132235, :n132236, :n132237, :n132238, :n132239, :n132240, :n132241,
:n132242, :n132243, :n132244, :n132245, :n132246, :n132247, :n132248, :n132249,
:n132250, :n132251, :n132252, :n132253, :n132254, :n132255, :n132256, :n132257,
:n132258, :n132259, :n132260, :n132261, :n132262, :n132263, :n132264, :n132265,
:n132266, :n132267, :n132268, :n132269, :n132270, :n132271, :n132272, :n132273,
:n132274, :n132275, :n132276, :n132277;
skos:notation "1322" ;
skos:prefLabel "Bearbeitung"@de, "Editing"@en ;
skos:altLabel "Edit"@de, "Edit"@en .
:n1323 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n13 ;
skos:narrower :n132311, :n132312, :n132313, :n132314, :n132315, :n132316, :n132317,
:n132318, :n132319, :n132320, :n132321, :n132322, :n132323, :n132324, :n132325,
:n132326, :n132327, :n132328, :n132329, :n132330, :n132331, :n132332, :n132333,
:n132334, :n132335, :n132336, :n132337, :n132338, :n132339, :n132340, :n132341,
:n132342, :n132343, :n132344, :n132345, :n132346, :n132347, :n132348, :n132349,
:n132350, :n132351, :n132352, :n132353, :n132354, :n132355, :n132356, :n132357,
:n132358, :n132359, :n132360, :n132361, :n132362, :n132363, :n132364, :n132365,
:n132366, :n132367, :n132368, :n132369, :n132370, :n132371, :n132372, :n132373,
:n132374, :n132375, :n132376, :n132377, :n132378, :n132379, :n132380 ;
skos:notation "1323" ;
skos:prefLabel "Kostüme und Styling"@de, "Costume and Styling"@en .
:n1324 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n13 ;
skos:narrower :n132411, :n132412, :n132413, :n132414, :n132415, :n132416, :n132417,
:n132418, :n132419, :n132420, :n132421, :n132422, :n132423, :n132424, :n132425,
:n132426, :n132427, :n132428, :n132429, :n132430, :n132431, :n132432, :n132433,
:n132434, :n132435, :n132436, :n132437, :n132438, :n132439, :n132440, :n132441,
:n132442, :n132443, :n132444, :n132445, :n132446, :n132447, :n132448, :n132449,
:n132450, :n132451, :n132452, :n132453, :n132454, :n132455, :n132456, :n132457,
:n132458, :n132459, :n132460, :n132461, :n132462, :n132463, :n132464, :n132465,
:n132466, :n132467, :n132468, :n132469, :n132470, :n132471, :n132472, :n132473,
:n132474, :n132475, :n132476, :n132477, :n132478, :n132479, :n132480, :n132481,
:n132482, :n132483, :n132484, :n132485, :n132486, :n132487, :n132488, :n132489,
:n132490, :n132491, :n132492, :n132493, :n132494, :n132495, :n132496, :n132497,
:n132498, :n132499, :n1324100, :n1324101, :n1324102, :n1324103, :n1324104 ;
skos:notation "1324" ;
skos:prefLabel "Visuelle Effekte"@de, "Visual Effects"@en ;
skos:altLabel "VFX"@de, "VFX"@en .
:n1325 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n13 ;
skos:narrower :n132511, :n132512, :n132513, :n132514, :n132515, :n132516, :n132517,
:n132518, :n132519, :n132520, :n132521, :n132522, :n132523, :n132524, :n132525,
:n132526, :n132527, :n132528, :n132529, :n132530, :n132531, :n132532, :n132533,
:n132534, :n132535, :n132536, :n132537, :n132538, :n132539, :n132540, :n132541,
:n132542, :n132543, :n132544, :n132545, :n132546, :n132547, :n132548, :n132549,
:n132550, :n132551, :n132552, :n132553, :n132554, :n132555, :n132556, :n132557,
:n132558, :n132559, :n132560, :n132561, :n132562, :n132563, :n132564, :n132565,
:n132566, :n132567, :n132568, :n132569, :n132570, :n132571, :n132572, :n132573,
:n132574, :n132575, :n132576, :n132577, :n132578, :n132579, :n132580, :n132581,
:n132582, :n132583, :n132584, :n132585, :n132586, :n132587, :n132588, :n132589,
:n132590, :n132591, :n132592, :n132593, :n132594, :n132595, :n132596, :n132597,
:n132598, :n132599, :n1325100, :n1325101, :n1325102, :n1325103, :n1325104,
:n1325105, :n1325106, :n1325107, :n1325108, :n1325109, :n1325110, :n1325111,
:n1325112, :n1325113, :n1325114, :n1325115, :n1325116, :n1325117, :n1325118,
:n1325119, :n1325120, :n1325121, :n1325122 ;
skos:notation "1325" ;
skos:prefLabel "Crew"@de, "Crew"@en .
:n1326 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n13 ;
skos:narrower :n132611, :n132612, :n132613 ;
skos:notation "1326" ;
skos:prefLabel "Comic"@de, "Comic"@en .
:n1327 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n13 ;
skos:narrower :n132711, :n132712, :n132713, :n132714, :n132715, :n132716,
:n132717, :n132718, :n132719, :n132720, :n132721, :n132722, :n132723,
:n132724, :n132725, :n132726, :n132727, :n132728, :n132729 ;
skos:notation "1327" ;
skos:prefLabel "Herstellung"@de, "Manufacturing"@en ;
skos:altLabel "Fabrikation"@de, "Fabrication"@en .
:n1328 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n13 ;
skos:narrower :n132811, :n132812, :n132813, :n132814, :n132815, :n132816,
:n132817, :n132818, :n132819, :n132820 ;
skos:notation "1328" ;
skos:prefLabel "Vertrieb"@de, "Distribution"@en ;
skos:altLabel "Verkauf"@de, "Selling"@en .
:n1329 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n13 ;
skos:narrower :n132911, :n132912, :n132913, :n132914, :n132915, :n132916, :n132917,
:n132918, :n132919, :n132920, :n132921, :n132922, :n132923, :n132924, :n132925 ;
skos:notation "1329" ;
skos:prefLabel "Buchhaltung"@de, "Accounting"@en .
:n1330 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n13 ;
skos:narrower :n133011, :n133012, :n133013, :n133014, :n133015, :n133016, :n133017,
:n133018, :n133019, :n133020 ;
skos:notation "1330" ;
skos:prefLabel "Akademisch"@de, "Academics"@en ;
skos:altLabel "Wissenschaft"@de, "Science"@en .
:n1331 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n13 ;
skos:narrower :n133111, :n133112, :n133113, :n133114, :n133115, :n133116, :n133117,
:n133118, :n133119, :n133120, :n133121, :n133122, :n133123, :n133124, :n133125,
:n133126, :n133127, :n133128, :n133129, :n133130, :n133131, :n133132, :n133133,
:n133134, :n133135, :n133136, :n133137, :n133138, :n133139, :n133140, :n133141,
:n133142, :n133143, :n133144, :n133145, :n133146, :n133147, :n133148, :n133149,
:n133150, :n133151, :n133152, :n133153, :n133154, :n133155, :n133156, :n133157,
:n133158 ;
skos:notation "1331" ;
skos:prefLabel "Recht / Legal"@de, "Legal"@en .
:n1411 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n14 ;
skos:notation "1411" ;
skos:prefLabel "TODO Funktion in Örtlichkeit"@de, "TODO function in Place"@en .
:n1511 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n15 ;
skos:notation "1511" ;
skos:prefLabel "TODO Funktion in Veranstaltung"@de, "TODO function in Event"@en .
# Relations to other Works
:n1611 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n16 ;
skos:notation "1611" ;
skos:prefLabel "erwähnt"@de, "mentions"@en ;
skos:definition "Zeigt an, dass der Artikel einen Verweis auf ein Konzept enthält, sich aber nicht unbedingt auf dieses bezieht."@de,
"Indicates that the item contains a reference to, but is not necessarily about a concept."@en ;
schema:sameAs wdt:P6568, schema:mentions, rnews:mentions .
:n1612 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n16 ;
skos:notation "1612" ;
skos:prefLabel "zitiert"@de, "cites"@en ;
skos:definition "Zitat, Verweis von einem Dokument auf ein anderes"@de,
"citation from one creative or scholarly work to another"@en ;
schema:sameAs schema:citation, wdt:P2860 .
:n1613 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n16 ;
skos:notation "1613" ;
skos:prefLabel "inspiriert von"@de, "inspired by"@en ;
skos:definition "Werk, Mensch oder Ereignis, das dieses Werk inspiriert hat"@de,
"work, human, place or event which inspired this creative work or fictional entity"@en ;
schema:sameAs wdt:P941 .
:n1614 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n16 ;
skos:notation "1614" ;
skos:prefLabel "basiert auf"@de, "based on"@en ;
skos:definition "Werk(e), auf denen dieses Werk basiert"@de,
"the work(s) used as the basis for subject item"@en ;
schema:sameAs schema:isBasedOn, wdt:P144 .
:n1615 a skos:Concept ;
skos:inScheme :scheme ;
skos:broader :n16 ;
skos:notation "1615" ;
skos:prefLabel "nach einem Werk von"@de, "after a work by"@en ;
skos:definition "Künstler, dessen Werk dieses Werk inspiriert hat oder von dem kopiert wurde"@de,
"artist whose work strongly inspired/ was copied in this item"@en ;
schema:sameAs wdt:P1877 .