-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathdfg-viewer.xml
4433 lines (4080 loc) · 184 KB
/
dfg-viewer.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!--
*
* (c) Kitodo. Key to digital objects e. V. <contact@kitodo.org>
*
* This file is part of the Kitodo project.
*
* It is licensed under GNU General Public License version 3 or later.
*
* For the full copyright and license information, please read the
* GPL3-License.txt file that was distributed with this source code.
*
-->
<ruleset xmlns="http://names.kitodo.org/ruleset/v2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://names.kitodo.org/ruleset/v2 ruleset.xsd">
<!--
'declaration' tag:
Declares the object classes of the divisions and keys.
- possible member tags, in order as mentioned:
division (repeatable, min. quantity: 1)
key (optional, repeatable)
'correlation' tag:
Declares correlations between divisions and keys.
- possible member tag:
restriction (optional, repeatable)
'editing' tag:
Describes how the program should behave when editing the data.
- possible member tags, in order as mentioned:
setting (optional, repeatable)
acquisitionStage (optional, repeatable)
-->
<declaration>
<!--
'division' tag:
Declares a subclass of mets:div.
- required attribute 'id':
Internal name of the division. This should be a
xsd:NMTOKEN (that is, do not include spaces).
- optional attribute 'processTitle':
Template for making process titles. Production offers
the possibility to automatically form process titles
according to a schema. This is a string of metadata
keys and constants separated by plus signs. Constants
are identified by enclosing them in single quotes. The
special metadata value TSL_ATS is given by the system
with the author title key or, if no author is
specified, the title key (4/2/2/1).
When templates are used to form process titles in a
rule set, only those divisions that have a template for
forming process titles are proposed as the top division
types for new processes. Otherwise, all divisions are
available as the highest division types.
- possible member tags, in order as mentioned:
label (repeatable, min. quantity: 1)
subdivisionByDate (optional, not repeatable)
'label' tag:
Sets a human readable label for an item.
- optional attribute 'lang':
ISO 639 alpha-2 language code - display language to use
the label for. If missing, defines the default value
used if there is no specific label for one language
- text content:
human-readable label, displayed to the editing user
'subdivisionByDate' tag:
Determines how this division is broken down by date.
- optional attribute 'yearBegin':
Annual first day of the operating year, if the annual
accounts do not coincide with the turn of the year.
Format: Two hyphens, the month as a two-digit number,
one hyphen, the day as a two-digit number.
- required member tag:
division (repeatable, min. quantity: 1)
'division' tag, as child of 'subdivisionByDate':
Declares a subclass of mets:div for temporal breakdown.
- required attribute 'id':
Internal name of the division. This should be a
xsd:NMTOKEN (that is, do not include spaces).
- required attribute 'dates':
metadata key containing the date value
- required attribute 'scheme':
Formatting pattern for the date value. Either
"yyyy/yyyy" to indicate a double year in conjunction
with the attribute yearBegin, otherwise any formatting
that is understood by Java’s date formatter.
-->
<!-- Divisions as per https://dfg-viewer.de/en/structural-data-set/ -->
<division id="section">
<label>Section</label>
<label lang="de">Abschnitt</label>
</division>
<division id="file">
<label>File</label>
<label lang="de">Akte</label>
</division>
<division id="album">
<label>Album</label>
<label lang="de">Album</label>
</division>
<division id="register">
<label>Register</label>
<label lang="de">Amtsbuch</label>
</division>
<division id="annotation">
<label>Annotation</label>
<label lang="de">Annotation</label>
</division>
<division id="address">
<label>Address</label>
<label lang="de">Anrede</label>
</division>
<division id="article">
<label>Article</label>
<label lang="de">Artikel</label>
</division>
<division id="atlas">
<label>Atlas</label>
<label lang="de">Atlas</label>
</division>
<division id="issue">
<label>Issue</label>
<label lang="de">Ausgabe (auch: Heft)</label>
</division>
<division id="bachelor_thesis">
<label>Bachelor Thesis</label>
<label lang="de">Bachelorarbeit</label>
</division>
<division id="volume">
<label>Volume</label>
<label lang="de">Band</label>
</division>
<division id="contained_work">
<label>Contained Work</label>
<label lang="de">Beigefügtes oder Enthaltenes Werk</label>
</division>
<division id="additional">
<label>Additional</label>
<label lang="de">Beilage</label>
</division>
<division id="report">
<label>Report</label>
<label lang="de">Bericht</label>
</division>
<division id="official_notification">
<label>Official Notification</label>
<label lang="de">Bescheid</label>
</division>
<division id="provenance">
<label>Provenance</label>
<label lang="de">Besitznachweis</label>
</division>
<division id="image">
<label>Image</label>
<label lang="de">Bild</label>
</division>
<division id="collation">
<label>Collation</label>
<label lang="de">Bogensignatur</label>
</division>
<division id="ornament">
<label>Ornament</label>
<label lang="de">Buchschmuck</label>
</division>
<division id="letter">
<label>Letter</label>
<label lang="de">Brief</label>
</division>
<division id="cover">
<label>Cover</label>
<label lang="de">Deckel</label>
</division>
<division id="cover_front">
<label>Front Cover</label>
<label lang="de">Vorderdeckel</label>
</division>
<division id="cover_back">
<label>Back Cover</label>
<label lang="de">Rückdeckel</label>
</division>
<division id="diploma_thesis">
<label>Diploma Thesis</label>
<label lang="de">Diplomarbeit</label>
</division>
<division id="doctoral_thesis">
<label>Doctoral Thesis</label>
<label lang="de">Dissertation</label>
</division>
<division id="document">
<label>Document</label>
<label lang="de">Dokument</label>
</division>
<division id="printers_mark">
<label>Printers Mark</label>
<label lang="de">Druckermarke</label>
</division>
<division id="printed_archives">
<label>Printed Archives</label>
<label lang="de">Druckerzeugnis (Archivale)</label>
</division>
<division id="binding">
<label>Binding</label>
<label lang="de">Einband</label>
</division>
<division id="entry">
<label>Entry</label>
<label lang="de">Eintrag</label>
</division>
<division id="corrigenda">
<label>Corrigenda</label>
<label lang="de">Errata</label>
</division>
<division id="bookplate">
<label>Bookplate</label>
<label lang="de">Exlibris</label>
</division>
<division id="fascicle">
<label>Fascicle</label>
<label lang="de">Faszikel</label>
</division>
<division id="leaflet">
<label>Leaflet</label>
<label lang="de">Flugblatt</label>
</division>
<division id="research_paper">
<label>Research paper</label>
<label lang="de">Forschungsarbeit</label>
</division>
<division id="photograph">
<label>Photograph</label>
<label lang="de">Fotografie</label>
</division>
<division id="fragment">
<label>Fragment</label>
<label lang="de">Fragment</label>
</division>
<division id="land_register">
<label>Land register</label>
<label lang="de">Grundbuch</label>
</division>
<division id="ground_plan">
<label>Ground plan</label>
<label lang="de">Grundriss</label>
</division>
<division id="habilitation_thesis">
<label>Habilitation thesis</label>
<label lang="de">Habilitation</label>
</division>
<division id="manuscript">
<label>Manuscript</label>
<label lang="de">Handschrift</label>
</division>
<division id="illustration">
<label>Illustration</label>
<label lang="de">Illustration</label>
</division>
<division id="imprint">
<label>Imprint</label>
<label lang="de">Impressum</label>
</division>
<division id="contents">
<label>Table of contents</label>
<label lang="de">Inhaltsverzeichnis</label>
</division>
<division id="initial_decoration">
<label>Initial decoration</label>
<label lang="de">Initialschmuck</label>
</division>
<division id="year">
<label>Year</label>
<label lang="de">Jahr</label>
</division>
<division id="chapter">
<label>Chapter</label>
<label lang="de">Kapitel</label>
</division>
<division id="map">
<label>Map</label>
<label lang="de">Karte</label>
</division>
<division id="cartulary">
<label>Cartulary</label>
<label lang="de">Kartular</label>
</division>
<division id="colophon">
<label>Colophon</label>
<label lang="de">Kolophon</label>
</division>
<division id="engraved_titlepage">
<label>Engraved titlepage</label>
<label lang="de">Kupfertitel</label>
</division>
<division id="magister_thesis">
<label>Magister thesis</label>
<label lang="de">Magisterarbeit</label>
</division>
<division id="folder">
<label>Folder</label>
<label lang="de">Mappe</label>
</division>
<division id="master_thesis">
<label>Master thesis</label>
<label lang="de">Masterarbeit</label>
</division>
<division id="multivolume_work">
<label>Multivolume work</label>
<label lang="de">Mehrbändiges Werk</label>
</division>
<division id="month">
<label>Month</label>
<label lang="de">Monat</label>
</division>
<division id="monograph">
<label>Monograph</label>
<label lang="de">Monographie</label>
</division>
<division id="musical_notation">
<label>Musical notation</label>
<label lang="de">Musiknotation</label>
</division>
<division id="periodical">
<label>Periodical</label>
<label lang="de">Periodica</label>
</division>
<division id="poster">
<label>Poster</label>
<label lang="de">Plakat</label>
</division>
<division id="plan">
<label>Plan</label>
<label lang="de">Plan</label>
</division>
<division id="privileges">
<label>Privileges</label>
<label lang="de">Privilegien</label>
</division>
<division id="index">
<label>Index</label>
<label lang="de">Register</label>
</division>
<division id="spine">
<label>Spine</label>
<label lang="de">Rücken</label>
</division>
<division id="scheme">
<label>Scheme</label>
<label lang="de">Schema</label>
</division>
<division id="edge">
<label>Edge</label>
<label lang="de">Schnitt</label>
</division>
<division id="seal">
<label>Seal</label>
<label lang="de">Siegel</label>
</division>
<division id="paste_down">
<label>Paste down</label>
<label lang="de">Spiegel</label>
</division>
<division id="stamp">
<label>Stamp</label>
<label lang="de">Stempel</label>
</division>
<division id="study">
<label>Study</label>
<label lang="de">Studie</label>
</division>
<division id="table">
<label>Table</label>
<label lang="de">Tabelle</label>
</division>
<division id="day">
<label>Day</label>
<label lang="de">Tag</label>
</division>
<division id="proceeding">
<label>Proceeding</label>
<label lang="de">Tagungsband</label>
</division>
<division id="text">
<label>Text</label>
<label lang="de">Text</label>
</division>
<division id="title_page">
<label>Title page</label>
<label lang="de">Titelblatt</label>
</division>
<division id="act">
<label>Act</label>
<label lang="de">Urkunde</label>
</division>
<division id="judgement">
<label>Judgement</label>
<label lang="de">Urteil</label>
</division>
<division id="verse">
<label>Verse</label>
<label lang="de">Verse</label>
</division>
<division id="note">
<label>Note</label>
<label lang="de">Vermerk</label>
</division>
<division id="preprint">
<label>Preprint</label>
<label lang="de">Vorabdruck</label>
</division>
<division id="dossier">
<label>Dossier</label>
<label lang="de">Vorgang</label>
</division>
<division id="lecture">
<label>Lecture</label>
<label lang="de">Vorlesung</label>
</division>
<division id="endsheet">
<label>Endsheet</label>
<label lang="de">Vorsatz</label>
</division>
<division id="paper">
<label>Paper</label>
<label lang="de">Vortrag</label>
</division>
<division id="preface">
<label>Preface</label>
<label lang="de">Vorwort</label>
</division>
<division id="dedication">
<label>Dedication</label>
<label lang="de">Widmung</label>
</division>
<division id="newspaper">
<label>Newspaper</label>
<label lang="de">Zeitung</label>
</division>
<!--
'key' tag:
Declare a subclass of kitodo:metadata or kitodo:metadataGroup.
- required attribute 'id':
Internal name of the key. This should be a xsd:NMTOKEN
(that is, do not include spaces).
- optional attribute 'domain':
location where to store entries with that key in the
METS file. Defaults to 'description'. Possible values:
description saves the entry in the associated
dmdSec
digitalProvenance saves the entry in the associated
amdSec in the element digiprovMD
rights saves the entry in the associated
amdSec in the element rightsMD
source saves the entry in the associated
amdSec in the element sourceMD
technical saves the entry in the associated
amdSec in the element techMD
mets:div saves the entry in element div of
the METS structure
- possible member tags, in order as mentioned:
label (repeatable, min. quantity: 1)
codomain (optional, not repeatable)
option (optional, repeatable)
pattern (optional, not repeatable)
preset (optional, repeatable)
key (optional, repeatable)
'label' tag:
Sets a human readable label for an item.
- optional attribute 'lang':
ISO 639 alpha-2 language code - display language to use
the label for. If missing, defines the default value
used if there is no specific label for one language
- text content:
human-readable label, displayed to the editing user
'codomain' tag:
Defines the codomain (value space) of the data type.
- optional attribute 'type':
Sets the XML Schema Datatype of which this key is a
subclass (cf. https://www.w3.org/TR/xmlschema-2/ ).
Defaults to 'string'. Possible values:
anyURI represents a Uniform Resource
Identifier Reference (URI)
boolean the mathematical concept of
binary-valued logic (*)
date a top-open interval of exactly one
day in length on the timeline,
beginning on the beginning moment
of the day
integer the standard mathematical concept
of the integer numbers
string character strings
(*) see also the explanation at the boolean example below
- optional attribute 'namespace':
Specifies that the value is a URI and must be in the
specified namespace.
'option' tag:
Specifies that the data type is an enumerated type and defines
the possible values of the enumeration type.
- required attribute 'value':
A possible value of the enumeration type. This is a
xsd:string (that is, it may include spaces).
- optional member tag:
label Sets a human readable label for the
option. Labels for options are
optional. If absent, the value is
also used as a label. The label can
be repeated for multilingualism.
'pattern' tag:
Sets a regular expression to which the string representation of
the values must correspond.
- text content:
the regular expression to which the string
representation must correspond
'key' tag:
If present, declares the containing element to be a subclass of
kitodo:metadataGroup (otherwise the element is a subclass of
kitodo:metatadata). For attributes and member tags, the
definition given above applies, with the exception of the
domain, which can only be set on the very outer key tag and is
inherited by all sub-keys. A key that groups other keys should
not contain any other elements than key and preset. Keys can be
nested repeatedly.
'preset' tag:
Sets the pre-filled value when creating a new entry using this
key. A repetition of the element is only appropriate if it is
an enumerated type and its use allows multiple selections.
- optional attribute 'key':
With grouped keys, the sub-key to which this preset
should apply.
- optional member tag:
preset With multiple-grouped keys, the key
is set to a sub-key.
- text content:
the value
-->
<!-- Keys as per https://dfg-viewer.de/fileadmin/groups/dfgviewer/MODS-Anwendungsprofil_2.3.1.pdf -->
<key id="titleInfo">
<label>Title information</label>
<label lang="de">Titelangaben</label>
<key id="type">
<label>Type</label>
<label lang="de">Typ</label>
<option value="abbreviated">
<label>Title as abbreviated</label>
<label lang="de">Abgekürzter Titel</label>
</option>
<option value="translated">
<label>Translation or transcription</label>
<label lang="de">Paralleltitel oder übersetzter Titel</label>
</option>
<option value="alternative">
<label>Varying form of the title</label>
<label lang="de">Abweichende Titelform</label>
</option>
<option value="uniform">
<label>Uniform title </label>
<label lang="de">Normtitel</label>
</option>
</key>
<key id="authorityURI">
<label>URI of the controlled vocabulary</label>
<label lang="de">URI der Normdatei</label>
<codomain type="anyURI"/>
</key>
<key id="valueURI">
<label>URI identifying the value from a controlled vocabulary</label>
<label lang="de">URI des Sachtitels</label>
<codomain type="anyURI"/>
</key>
<key id="title">
<label>Chief title</label>
<label lang="de">Haupttitel</label>
</key>
<key id="nonSort">
<label>Nonfiling text</label>
<label lang="de">Nicht-Sortiervorsätze</label>
</key>
<key id="subTitle">
<label>Nonfiling text</label>
<label lang="de">Untertitel</label>
</key>
<key id="partName">
<label>Section or division</label>
<label lang="de">Unterreihe/Untergliederung</label>
</key>
<key id="partNumber">
<label>Enumeration-type designation</label>
<label lang="de">Zählung</label>
</key>
</key>
<key id="name">
<label>Name</label>
<key id="type">
<label>Type</label>
<label lang="de">Typ</label>
<option value="personal">
<label>Person</label>
</option>
<option value="corporate">
<label>Organization</label>
<label lang="de">Organisation</label>
</option>
</key>
<key id="authority">
<label>Controlled vocabulary</label>
<label lang="de">Normdatei</label>
<option value="abne">
<label>Autoridades de la Biblioteca Nacional de España</label>
</option>
<option value="banqa">
<label>Fichier d'autorité local de Bibliothèque et Archives nationales du Québec</label>
</option>
<option value="bibalex">
<label>Bibliotheca Alexandrina name and subject authority file</label>
</option>
<option value="cantic">
<label>Catàleg d'autoritats de noms i títols de Catalunya</label>
</option>
<option value="cerlt">
<label>CERL thesaurus</label>
</option>
<option value="conorsi">
<label>CONOR.SI</label>
</option>
<option value="gkd">
<label>Gemeinsame Körperschaftsdatei</label>
</option>
<option value="gnd">
<label>Gemeinsame Normdatei</label>
</option>
<option value="hapi">
<label>HAPI thesaurus and name authority</label>
</option>
<option value="hkcan">
<label>Hong Kong Chinese Authority File</label>
</option>
<option value="lacnaf">
<label>Library and Archives Canada name authority file</label>
</option>
<option value="naf">
<label>NACO authority file</label>
</option>
<option value="nalnaf">
<label>National Agricultural Library name authority file</label>
</option>
<option value="nliaf">
<label>National Library of Israel Authority File</label>
</option>
<option value="nlmnaf">
<label>National Library of Medicine name authority file</label>
</option>
<option value="nta">
<label>Nederlandse Thesaurus van Auteursnamen</label>
</option>
<option value="nznb">
<label>New Zealand national bibliography</label>
</option>
<option value="sanb">
<label>South African national bibliography authority file</label>
</option>
<option value="viaf">
<label>Virtual International Authority File</label>
</option>
<option value="ulan">
<label>Union list of artist names</label>
</option>
<option value="unbisn">
<label>UNBIS name authority list</label>
</option>
<preset>gnd</preset>
</key>
<key id="authorityURI">
<label>URI of the controlled vocabulary</label>
<label lang="de">URI der Normdatei</label>
<codomain type="anyURI"/>
<preset>http://d-nb.info/gnd/</preset>
</key>
<key id="valueURI">
<label>URI identifying the value from a controlled vocabulary</label>
<label lang="de">URI des Namens</label>
<codomain type="anyURI"/>
<preset>http://d-nb.info/gnd/</preset>
</key>
<key id="namePart">
<label>The name itself</label>
<label lang="de">Namensbestandteil</label>
<key id="type">
<label>Type</label>
<label lang="de">Typ</label>
<option value="family">
<label>Surname</label>
<label lang="de">Familienname</label>
</option>
<option value="given">
<label>Forename</label>
<label lang="de">Vorname</label>
</option>
<option value="date">
<label>Dates</label>
<label lang="de">Lebensdaten</label>
</option>
<option value="termsOfAddress">
<label>Titles and enumeration</label>
<label lang="de">Titel, Ordnungshilfen und Homonymzusätze</label>
</option>
<preset>family</preset>
</key>
<key id="value">
<label>Value</label>
<label lang="de">Wert</label>
</key>
</key>
<key id="displayForm">
<label>personal name in direct order</label>
<label lang="de">Anzeigeform</label>
</key>
<key id="role">
<label>Role</label>
<label lang="de">Rolle</label>
<key id="roleTerm">
<label>Form of the role</label>
<label lang="de">Form der Rolle</label>
<key id="type">
<label>Type</label>
<label lang="de">Typ</label>
<option value="text">
<label>A role in a textual form</label>
<label lang="de">Textliche Beschreibung der Rolle</label>
</option>
<option value="code">
<label>A role in a coded form</label>
<label lang="de">Code, der für die Rolle steht</label>
</option>
<preset>code</preset>
</key>
<key id="authority">
<label>Controlled list from which the value is taken</label>
<label lang="de">Quelle für die verwendeten Codes</label>
<option value="marcrelator">
<label>MARC Code and Term List for Relators</label>
</option>
<preset>marcrelator</preset>
</key>
<key id="authorityURI">
<label>URI of the controlled vocabulary</label>
<label lang="de">URI der Normdatei</label>
<codomain type="anyURI"/>
<option value="http://id.loc.gov/vocabulary/relators"/>
<preset>http://id.loc.gov/vocabulary/relators</preset>
</key>
<key id="valueURI">
<label>URI identifying the value from a controlled vocabulary</label>
<label lang="de">URI der Rolle</label>
<codomain namespace="http://id.loc.gov/vocabulary/relators/"/>
<preset>http://id.loc.gov/vocabulary/relators/aut</preset>
</key>
</key>
</key>
</key>
<key id="genre">
<label>Style, form, or content</label>
<label lang="de">Gattung</label>
<key id="authority">
<label>Controlled list from which the value is taken</label>
<label lang="de">Quelle für die verwendeten Codes</label>
<option value="aad">
<label>Gattungsbegriffe der Arbeitsgemeinschaft Alter Drucke</label>
</option>
<option value="marcgt">
<label>MARC Genre Term List</label>
</option>
</key>
<key id="authorityURI">
<label>URI of the controlled vocabulary</label>
<label lang="de">URI der Normdatei</label>
<codomain type="anyURI"/>
</key>
<key id="valueURI">
<label>URI identifying the value from a controlled vocabulary</label>
<label lang="de">URI der Rolle</label>
<codomain type="anyURI"/>
</key>
</key>
<key id="originInfo">
<label>Origination information</label>
<label lang="de">Herkunftsangaben</label>
<key id="place">
<label>Place of publication</label>
<label lang="de">Ortsangaben</label>
<key id="placeTerm">
<label>Place</label>
<label lang="de">Erscheinungsort</label>
<key id="type">
<label>Type</label>
<label lang="de">Typ</label>
<option value="text">
<label>A place in a textual form</label>
<label lang="de">Textliche Beschreibung des Ortes</label>
</option>
<option value="code">
<label>A place in a coded form</label>
<label lang="de">Code, der für den Ort steht</label>
</option>
</key>
<key id="authority">
<label>Controlled list from which the value is taken</label>
<label lang="de">Quelle für die verwendeten Codes</label>
</key>
<key id="authorityURI">
<label>URI of the controlled vocabulary</label>
<label lang="de">URI der Normdatei</label>
<codomain type="anyURI"/>
</key>
<key id="valueURI">
<label>URI identifying the value from a controlled vocabulary</label>
<label lang="de">URI des Ortes</label>
<codomain type="anyURI"/>
</key>
</key>
</key>
<key id="publisher">
<label>Publisher</label>
<label lang="de">Herausgeber</label>
</key>
<key id="dateIssued">
<label>Date published</label>