-
Notifications
You must be signed in to change notification settings - Fork 0
/
cei.xsd
3881 lines (3869 loc) · 172 KB
/
cei.xsd
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"?>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<!-- This schema is an restricted implementation of the CEI vocabulary defined at
http://www.cei.lmu.de/
It is a living document, but document validated against an older version of this document should remain valid with newer.
The recent development of this schema is recorded at https://github.com/GVogeler/cei
-->
<xs:import namespace="http://www.w3.org/XML/1998/namespace"
schemaLocation="http://www.w3.org/2001/xml.xsd"/>
<xs:element name="cei">
<xs:annotation>
<xs:documentation xml:lang="de">Wurzelelement für alle Dokumente, die den Regeln der CEI
(Charters Encoding Initiative, http://www.cei.lmu.de) folgen.</xs:documentation>
<xs:documentation xml:lang="en">abstract root element</xs:documentation>
<xs:documentation>Revision History (if not explicit stated all changes by Georg Vogeler)
2017-04-06: added @resp as global attribute
2016-10-11: added chirograph as mean of authentication in chirographs/chartae partitae.
2016-10-08: added rogatio and intercessio as parts of the diplomatic discourse, and rogator and intervenient as relevant personal
2016-08-02: added incipit as part of diplomaticAnalysis
2016-01-24: added forename, surname, rolename as part of persName
2016-01-16: added mixedContent and group:transcription in pict (to allow transcription of textual parts in rotae etc.); extend quote with all of group:reference; unclear extended with @reason, @agent; persName as child of author introduced
2015-12-06: unclear added; title allowed in bibl
2015-08-26: pb@ed added
2015-08-24: chDesc/head introduced
bibl/publisher introduced
note@anchored introduced
2015-04-02: introduced issuePlace/location/geo
introduced encodingDesc/geoDecl|p;
introduced issuePlace/place;
introduced issueDate/date
2015-03-12:
introduced idno for bibl/imprint and bibl
2014-10-28: introduced bibl@key and @resp for p
and abstract
2014-10-21: elemente ref allowed to contain layout elements
2014-01-16:
introduced @sameAs as a global attribute
2014-01-11: archIdentifier/ref introduced
2013-01-30: more strict hierarchy "charter" introduced
2011-11-18: corr um elementgroup
transcription erweitert, idno/add|corr zugelassen, index/group:content erlaubt
2011-11-17:
notariusSub/notarius|persName präzisiert
2011-11-15: issueDate hinzugefügt
2011-10-10: keine
Namespaces für cei: verwendet
2011-04-26: shape, ties, colour, counterseal als Unterelemente
von seal eingeführt
2011-04-25: subscriptio als Teil von auth eingeführt
2011-01-31: plica
als Teil von dimensions eingeführt
2011-01-27: testisSigilli eingeführt
2011-01-26: notarius
als relevantPersonal eingeführt.
2010-04-26: decoDesc eingeführt, class mit @resp und
@target (für die Referenz auf eine externe Taxonomie) versehen
2010-03-01: availability/p
eingeführt, div@type=charter/... ermöglicht; layout als Kind von index ermöglicht, einige
weitere Erweiterungen
2010-02-26: testes auch in auth zugelassen, foreign als Teil von
testis eingeführt
2010-01-20: inscriptio dem italienischen Modell (Pratesi, Genesi e forme,
1999, pp. 76-77) folgend auch in der narration und der dispositio zugelassen (GV)
2009-12-21: relevantPersonal direkt unter chDesc zugelassen
2009-11-23: cit@type eingeführt
2009-10-16: group|text als Alternatives Element eingeführt
2009-10-13: englische
Dokumentation mit den Angaben aus der Datenbank ergänzt; einige Definitionen aus der TEI
ergänzt, notariusStruct und dateSort getilgt (GV)
2009-10-04: Siegelmodell auf sealDesc/seal
reduziert. (GV)
2009-10-03: englische Dokumentation bis name="nota" (excl.) ergänzt (GV)
2009-09-29: englische Dokumentation bis name="invocatio" (incl.) entered (GV)
2009-09-27:
englische Dokumentation bis name="elongata" (incl.) ergänzt (GV)
2009-09-21: authenticity
eaingeführt, englische Dokumentation bis name="app" ergänzt (GV)
2009-06-03: i aus der
Layout-Gruppe genommen. altIdentifier eingeführt (GV)
2009-05-08: scope mit group:layout
versehen
2009-05-07: notariusDesc enthält group:layout
2009-05-06: notariusDesc enthält
group:textualElements; figure/graphic mehr als Einmal zugelassen
2009-04-29: dateRange nach
Modell date mit Transkription etc. und @from/to als xs:anySimpleType gestaltet
2009-01-29
testes für eine Zeugenliste hinzugefügt; note und head als Subelemente für listBibl
eingeführt lem-content ausgemistet; @wit zu rdg hinzugefügt.
2009-01-26:
settlement/region/country aus group:biblArch rausgenommen, damit es nicht mit group:geog
kollidiert. Muß eigentlich auch in archIdentifier/msIdentifier reichen.
2008-02-07:
region/country verbessert
2008-01-31: element name="span" eingeführt
2008-01-21: @usage
eingefügt
2007-12-17: c@desc hinzugefügt (@type wäre für deklarierte Elemente (könnte dann
auch decl werden) und @desc für Freitext)
2007-09-24: support eingeführt und seal als
Subelement von sealDesc zugelassen (mit kopierter Definition, layoutDesc/layout eingeführt,
handDesc als Kopie von scribe TODO: scribe sollte durch handDesc ersetzt werden! (GV)
2007-07-24: decls-Attribut zu p/div/text zugelassen (vgl. TEI), einige MOM-Spezifische
Grundangaben für den Gesamtfront eingeführt, die eigentlich in den teiHeader gehören würden.
(gv)
2006-11-15: Mehrere Urkunden zusammengefaßt über Ausweitung der Charter
Description-Elemente in front abgedeckt
2006-09-13: Rubrum nachgetragen, andere Elemente
etwas großzügiger behandelt (GV)
2006-08-10: archIdentifier kann auch über settlement und
repository statt über arch näher erschlossen werden.
2006-08-08: archIdentifier offener
gestaltet, dateSort in ein allgemeins date-Konstrukt integriert.
2006-05-16: type-Attribute
auch bei geogName; <back> mit Inhalten versehen (GV) </xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="teiHeader" maxOccurs="1">
<xs:annotation>
<xs:documentation xml:lang="de">Der Dateikopf beschreibt die Datei nach den Regeln der
TEI (http://www.tei-c.org), Version P4</xs:documentation>
<xs:documentation xml:lang="en">contains information on the encoding of the
text.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="fileDesc">
<xs:annotation>
<xs:documentation xml:lang="de">Beschreibung der Datei</xs:documentation>
<xs:documentation xml:lang="en">a file description, tagged <fileDesc>,
containing a full bibliographical description of the computer file itself, from
which a user of the text could derive a proper bibliographic citation, or which
a librarian or archivist could use in creating a catalogue entry recording its
presence within a library or archive. The term computer file here is to be
understood as referring to the whole entity or document described by the header,
even when this is stored in several distinct operating system files. The file
description also includes information about the source or sources from which the
electronic document was derived.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="titleStmt">
<xs:annotation>
<xs:documentation xml:lang="de">Den Regeln der TEI entsprechend müßten
hier verschiedene Elemente verpflichtend sein: title
z.B.</xs:documentation>
<xs:documentation xml:lang="en">(title statement) groups information about
the title of a work and those responsible for its intellectual
content.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="title"/>
<xs:element ref="author"/>
<xs:element ref="p"/>
<xs:element ref="respStmt"/>
</xs:choice>
</xs:sequence>
<xs:attributeGroup ref="standard"/>
</xs:complexType>
</xs:element>
<xs:element minOccurs="0" ref="publicationStmt"/>
<xs:element minOccurs="0" ref="sourceDesc"/>
<xs:element name="editionStmt">
<xs:annotation>
<xs:documentation>Die Ausgabe</xs:documentation>
</xs:annotation>
<xs:complexType mixed="true">
<xs:sequence>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="edition">
<xs:complexType mixed="true">
<xs:sequence>
<xs:choice minOccurs="0">
<xs:group ref="date"/>
</xs:choice>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element ref="p"/>
<xs:element ref="respStmt"/>
<xs:group ref="bibliographicInformation"/>
<xs:group ref="content"/>
</xs:choice>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:sequence>
<xs:attributeGroup ref="standard"/>
</xs:complexType>
</xs:element>
<xs:element minOccurs="0" ref="encodingDesc"/>
<xs:element minOccurs="0" name="projectDesc">
<xs:annotation>
<xs:documentation xml:lang="en"> (project description) describes in detail the aim
or purpose for which an electronic file was encoded, together with any other
relevant information concerning the process by which it was assembled or
collected.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="p"/>
<xs:element ref="respStmt"/>
</xs:choice>
</xs:sequence>
<xs:attributeGroup ref="standard"/>
</xs:complexType>
</xs:element>
<xs:element name="revisionDesc" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">a revision history, tagged <revisionDesc>,
which allows the encoder to provide a history of changes made during the
development of the electronic text. The revision history is important for
version control and for resolving questions about the history of a
file.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="p"/>
</xs:choice>
</xs:sequence>
<xs:attributeGroup ref="standard"/>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attributeGroup ref="standard"/>
</xs:complexType>
</xs:element>
<xs:choice maxOccurs="1">
<xs:choice maxOccurs="1">
<xs:element maxOccurs="1" ref="text"/>
<xs:element maxOccurs="1" ref="charter"/>
</xs:choice>
<xs:element maxOccurs="1" ref="group"/>
</xs:choice>
</xs:sequence>
<xs:attributeGroup ref="standard"/>
<xs:attributeGroup ref="transcription"/>
</xs:complexType>
</xs:element>
<xs:element name="encodingDesc">
<xs:annotation>
<xs:documentation xml:lang="en">an encoding description, which describes the relationship
between an electronic text and its source or sources. It allows for detailed description of
whether (or how) the text was normalized during transcription, how the encoder resolved
ambiguities in the source, what levels of encoding or analysis were applied, and similar
matters.</xs:documentation>
</xs:annotation>
<xs:complexType mixed="true">
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:choice>
<xs:element ref="p"/>
<xs:element name="geoDecl">
<xs:annotation>
<xs:documentation xml:lang="en">documents the notation and the datum used for geographic coordinates expressed as content of the geo element elsewhere within the document.</xs:documentation>
</xs:annotation>
<xs:complexType mixed="true">
<xs:attributeGroup ref="standard"/>
<xs:attribute name="datum"/>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:sequence>
<xs:attributeGroup ref="standard"/>
</xs:complexType>
</xs:element>
<xs:element name="sourceDesc">
<xs:annotation>
<xs:documentation xml:lang="de">enthält die bibliographischen Angaben der Quellen, aus denen
der elektronische Text stammt.</xs:documentation>
<xs:documentation xml:lang="en">supplies a bibliographic description of the copy text(s) from
which an electronic text was derived or generated.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:choice minOccurs="0">
<xs:group ref="biblArch"/>
<xs:element maxOccurs="unbounded" ref="p"/>
</xs:choice>
</xs:sequence>
<xs:attributeGroup ref="standard"/>
<xs:attribute name="ref">
<xs:annotation>
<xs:documentation xml:lang="de">Verweis auf die Textpassage zu der hier die Quelle
angegeben wird.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="publicationStmt">
<xs:annotation>
<xs:documentation xml:lang="de">Angaben zur Veröffentlichung des Textes (Zeitpunkt,
rechtsverbindlicher Ort, Beschränkungen, Verantwortlichkeiten ...)</xs:documentation>
<xs:documentation xml:lang="en"> (publication statement) groups information concerning the
publication or distribution of an electronic or other text.</xs:documentation>
</xs:annotation>
<xs:complexType mixed="true">
<xs:sequence>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="publisher">
<xs:annotation>
<xs:documentation xml:lang="en">provides the name of the organization responsible for
the publication or distribution of a bibliographic item.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:anySimpleType">
<xs:attributeGroup ref="standard"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element ref="pubPlace"/>
<xs:element name="availability">
<xs:annotation>
<xs:documentation xml:lang="en">supplies information about the availability of a text,
for example any restrictions on its use or distribution, its copyright status,
etc.</xs:documentation>
</xs:annotation>
<xs:complexType mixed="true">
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:element ref="p"/>
</xs:sequence>
<xs:attributeGroup ref="standard"/>
<xs:attribute name="status" type="xs:anySimpleType"/>
</xs:complexType>
</xs:element>
<xs:group ref="date"/>
<xs:element ref="p"/>
</xs:choice>
</xs:sequence>
<xs:attributeGroup ref="standard"/>
</xs:complexType>
</xs:element>
<xs:element name="respStmt">
<xs:annotation>
<xs:documentation xml:lang="en">(statement of responsibility) supplies a statement of
responsibility for the intellectual content of a text, edition, recording, or series, where
the specialized elements for authors, editors, etc. do not suffice or do not
apply.</xs:documentation>
</xs:annotation>
<xs:complexType mixed="true">
<xs:sequence>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="name"/>
<xs:element name="resp">
<xs:annotation>
<xs:documentation xml:lang="en">contains a phrase describing the nature of a person's
intellectual responsibility.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attributeGroup ref="standard"/>
<xs:attributeGroup ref="name"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:group ref="date"/>
</xs:choice>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="text">
<xs:annotation>
<xs:documentation xml:lang="de">Mit type="charter" als Urkunde
identifiziert</xs:documentation>
<xs:documentation xml:lang="en">contains a text or a corpus of texts</xs:documentation>
</xs:annotation>
<xs:complexType mixed="true">
<xs:choice>
<xs:sequence minOccurs="0">
<xs:element minOccurs="0" name="front">
<xs:annotation>
<xs:documentation xml:lang="en">(front matter) contains any prefatory matter (headers,
title page, prefaces, dedications, etc.) found at the start of a document, before
the main body.</xs:documentation>
</xs:annotation>
<xs:complexType mixed="true">
<xs:sequence>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:group ref="biblArch"/>
<xs:element ref="sourceDesc"/>
<xs:element ref="publicationStmt"/>
<xs:element ref="respStmt"/>
<xs:group ref="textualElements"/>
<xs:group ref="reference"/>
<xs:element ref="encodingDesc"/>
<xs:element minOccurs="0" ref="chDesc"/>
</xs:choice>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:choice>
<xs:element name="body">
<xs:annotation>
<xs:documentation xml:lang="en">Main part of a text - after a front and back
matter</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:choice>
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:group ref="textualElements"/>
</xs:choice>
</xs:sequence>
<xs:sequence minOccurs="0">
<xs:element minOccurs="0" ref="idno"/>
<xs:element minOccurs="0" ref="chDesc"/>
<xs:element minOccurs="0" ref="tenor"/>
</xs:sequence>
</xs:choice>
</xs:complexType>
</xs:element>
<xs:element maxOccurs="unbounded" ref="group"/>
</xs:choice>
<xs:element minOccurs="0" maxOccurs="1" ref="back"/>
</xs:sequence>
<xs:group ref="charter"/>
</xs:choice>
<xs:attributeGroup ref="standard"/>
<xs:attribute ref="decls" use="optional"/>
<xs:attribute name="type" use="optional"/>
<xs:attribute ref="picture" use="optional"/>
<xs:attribute ref="certainty" use="optional"/>
</xs:complexType>
</xs:element>
<xs:element name="back">
<xs:annotation>
<xs:documentation xml:lang="en">Parts of a text as appendices, indices, bibliography
etc.</xs:documentation>
</xs:annotation>
<xs:complexType mixed="true">
<xs:sequence>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:group ref="textualElements"/>
<xs:group ref="layout"/>
<xs:group ref="content"/>
<xs:group ref="biblArch"/>
<xs:group ref="reference"/>
<xs:group ref="transcription"/>
</xs:choice>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="charter">
<xs:annotation>
<xs:documentation xml:lang="en">represents a single charter</xs:documentation>
</xs:annotation>
<xs:complexType mixed="true">
<xs:choice>
<xs:group ref="charter"/>
</xs:choice>
<xs:attributeGroup ref="standard"/>
<xs:attribute ref="decls" use="optional"/>
<xs:attribute name="type" use="optional"/>
<xs:attribute ref="picture" use="optional"/>
<xs:attribute ref="certainty" use="optional"/>
</xs:complexType>
</xs:element>
<xs:element name="idno">
<xs:annotation>
<xs:documentation xml:lang="de">Die Identifikationsnummer eines Objektes innerhalb der
aktuellen Struktur (z.B. Nummer in einem Urkundenbuch, Bestand in einem Archiv,
Handschriftensignatur in einer Bibliothek.</xs:documentation>
<xs:documentation xml:lang="en">contains the unique identifier of a document in a body of
documents or its locator in the holdings of an archives or a library ==Example== <text
type="charter" name="1"> <idno>1</idno> ... </text> <text
type="charter" name="2"> <idno>1a</idno> ... </text> and
<archStruct> <settlement>München</settlement> <arch>Bayerisches
Hauptstaatsarchiv</arch> <archFond>HU Passau</arch>
<idno>3</idno> </archStruct></xs:documentation>
</xs:annotation>
<xs:complexType mixed="true">
<xs:sequence>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="add"/>
<xs:element ref="corr"/>
</xs:choice>
</xs:sequence>
<xs:attributeGroup ref="standard"/>
<xs:attribute ref="usage"/>
</xs:complexType>
</xs:element>
<xs:element name="chDesc">
<xs:annotation>
<xs:documentation xml:lang="de">Faßt die Metadaten einer Urkunde zusammen.</xs:documentation>
<xs:documentation xml:lang="en">contains the meta-data for the charter as described by the
Comitè internationale de Diplomatique under the heading of 'analyse diplomatique'. For
calendars/regesta with more detailed informations this element can contain detailed
informations on the content, but should be augmented by elements describing the physical
setting, annotating the content etc.</xs:documentation>
</xs:annotation>
<xs:complexType mixed="true">
<xs:sequence>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="abstract">
<xs:annotation>
<xs:documentation xml:lang="de">Das Regest, das den Rechtsinhalt einer Urkunde
zusammenfaßt, in Editionen als kurzes "Kopfregest", in anderen Umgebungen auch als
ausführliches "Langregest" mit wörtlichen Zitaten. Das Regest sollte den Aussteller
und den Empfänger der Urkunde nennen. [Fließtext]</xs:documentation>
<xs:documentation xml:lang="en">contains the text of the abstract/summary of the
document as a head before an edited text or as a single part of calendar/regesta
collection (like Regesta Imperii).</xs:documentation>
</xs:annotation>
<xs:complexType mixed="true">
<xs:sequence>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:group ref="content"/>
<xs:group ref="layout"/>
<xs:group ref="reference"/>
<xs:group ref="textualElements"/>
<xs:group ref="relevantPersonal"/>
</xs:choice>
</xs:sequence>
<xs:attributeGroup ref="standard"/>
</xs:complexType>
</xs:element>
<xs:group ref="relevantPersonal"/>
<xs:element ref="issuePlace"/>
<xs:element ref="issueDate"/>
<xs:group ref="date"/>
<xs:element name="issued">
<xs:annotation>
<xs:documentation xml:lang="de">Diese Konstruktion kann allgemeine Elemente für die
Beschreibung von Ausstellungsort und -zeit verwenden und ist deshalb den Konstrukten
"issuePlace" und "date" bzw. "publicationStmt" vorzuziehen.
[strict!]</xs:documentation>
<xs:documentation xml:lang="en">a container for date and place of issuing of the
charter</xs:documentation>
</xs:annotation>
<xs:complexType mixed="true">
<xs:sequence>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:group ref="date"/>
<xs:choice>
<xs:element ref="issuePlace"/>
<xs:element ref="placeName"/>
</xs:choice>
</xs:choice>
</xs:sequence>
<xs:attributeGroup ref="standard"/>
</xs:complexType>
</xs:element>
<xs:element ref="publicationStmt">
<xs:annotation>
<xs:documentation xml:lang="de">Man könnte mit diesem allgemeinen Element die Angaben
über Ausstellungsort und -datum kennzeichnen - es ist aber zu diskutieren, wie
ähnlich die "Veröffentlichung" eines Textes mit der "Ausfertigung" ist. vgl. Element
"issued" [strict!]</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="witList"/>
<xs:element ref="diplomaticAnalysis"/>
<xs:element ref="class"/>
<xs:group ref="layout"/>
<xs:group ref="reference"/>
<xs:group ref="textualElements"/>
</xs:choice>
</xs:sequence>
<xs:attributeGroup ref="standard"/>
</xs:complexType>
</xs:element>
<xs:element name="class">
<xs:annotation>
<xs:documentation xml:lang="en">classifciation of the document in prose (e.g. breve, writ,
preceptum, mandato, Bulle, recognitio feodorum, oblatio, transsumptum ...) or with reference
to a taxonomy indicated generally in the encodingDesc or specifically in the target
attribute</xs:documentation>
<!-- Offen ist, wie diese Klassifikation expliziert mit einer externen Taxonomie verbunden werden kann -->
</xs:annotation>
<xs:complexType>
<xs:attribute ref="target"/>
<xs:attributeGroup ref="standard"/>
</xs:complexType>
</xs:element>
<xs:element name="issuePlace">
<xs:annotation>
<xs:documentation xml:lang="de">Ausstellungsort, zu ersetzen durch publStmt/publPlace?
[strict!]</xs:documentation>
<xs:documentation xml:lang="en">place, where the charter is issued</xs:documentation>
</xs:annotation>
<xs:complexType mixed="true">
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:sequence>
<xs:group ref="textualElements"/>
</xs:sequence>
<xs:sequence>
<xs:element ref="placeName"/>
<xs:element ref="location" minOccurs="0"/>
</xs:sequence>
</xs:choice>
<xs:attributeGroup ref="standard"/>
</xs:complexType>
</xs:element>
<xs:element name="location">
<xs:annotation>
<xs:documentation xml:lang="en">defines the location of a place as a set of geographical coordinates, in terms of other named geo-political entities, or as an address.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="1">
<xs:element ref="geo"/>
<xs:sequence>
<xs:element ref="placeName" minOccurs="0"/>
<xs:element ref="settlement" minOccurs="0"/>
<xs:element ref="country" minOccurs="0"/>
</xs:sequence>
</xs:choice>
<xs:attributeGroup ref="standard"/>
</xs:complexType>
</xs:element>
<xs:element name="geo">
<xs:annotation>
<xs:documentation xml:lang="en">contains any expression of a set of geographic coordinates, representing a point, line, or area on the surface of the earth in some notation</xs:documentation>
</xs:annotation>
<xs:complexType mixed="true">
<xs:attributeGroup ref="standard"/>
<xs:attribute ref="decls"/>
</xs:complexType>
</xs:element>
<xs:element name="dimensions">
<xs:annotation>
<xs:documentation xml:lang="de">Maße des Objekts (Höhe x Breite oder in eigenen
Elementen)</xs:documentation>
<xs:documentation xml:lang="en">The element discuss dimensions of the current object usually
as height x width, which could be given in the appropriate elements.</xs:documentation>
</xs:annotation>
<xs:complexType mixed="true">
<xs:sequence minOccurs="0">
<xs:element name="height" type="xs:anySimpleType">
<xs:annotation>
<xs:documentation xml:lang="en">contains a measurement measured along the axis at right
angles to the bottom of the written surface, i.e. parallel to the spine for a codex or
book.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="plica" type="xs:anySimpleType">
<xs:annotation>
<xs:documentation xml:lang="en">contains the measurement of the turn up at the bottom of
a charter to support the seal (VID 541), measured along the axis at right angles to
the bottom of the written surface.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="width" type="xs:anySimpleType">
<xs:annotation>
<xs:documentation xml:lang="en">contains a measurement measured along the axis parallel
to the bottom of the written surface, i.e. perpendicular to the spine of a book or
codex.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attributeGroup ref="standard"/>
</xs:complexType>
</xs:element>
<xs:element name="diplomaticAnalysis">
<xs:annotation>
<xs:documentation xml:lang="de">Enthält Bemerkungen zur diplomatischen Kritik der Urkunde, die
formale Beobachtungen der inneren wie äußeren Merkmale ebenso wie inhaltliche Überlegungen
enthalten kann. [Fließtext]</xs:documentation>
<xs:documentation xml:lang="en">contains text that discusses the document from the point of
view of diplomatics, thus giving formal critics and critics by the content, reporting
scholarly discussion on the document etc..</xs:documentation>
</xs:annotation>
<xs:complexType mixed="true">
<xs:sequence>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="sealDesc"/>
<xs:element ref="authenticity"/>
<xs:group ref="content"/>
<xs:group ref="reference"/>
<xs:group ref="formularium"/>
<xs:group ref="layout"/>
<xs:group ref="biblArch"/>
<xs:group ref="textualElements"/>
<xs:group ref="relevantPersonal"/>
<xs:element ref="incipit"/>
</xs:choice>
</xs:sequence>
<xs:attributeGroup ref="standard"/>
</xs:complexType>
</xs:element>
<xs:element name="authenticity">
<xs:annotation>
<xs:documentation xml:lang="de">Das Element diskutiert die Echtheit der Urkunde. Im Attribut
"degree" muß eine verkürzte Aussage getroffen werden.</xs:documentation>
<xs:documentation xml:lang="en">contains a description of the authenticity of the document.
The attribute "degree" gives a abbreviated statement in numbers or with normalized
text.</xs:documentation>
</xs:annotation>
<xs:complexType mixed="true">
<xs:sequence>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:group ref="reference"/>
<xs:group ref="textualElements"/>
<xs:group ref="content"/>
<xs:element ref="sealDesc"/>
</xs:choice>
</xs:sequence>
<xs:attributeGroup ref="standard"/>
<xs:attribute name="degree" type="xs:anySimpleType" default="0">
<xs:annotation>
<xs:documentation xml:lang="de">Grad der Verunechtung ausgedrückt durch eine numerische
Angabe in Prozent ("100%" = Totalfälschung) oder durch eome textliche Beschreibung (z.B.
"verunechtet", "interpoliert", "Fälschung"), die in der encodingDesc des teiHeaders
deklariert werden muß.</xs:documentation>
<xs:documentation xml:lang="en">numeric degree of falsification in percent ("100%" =
complete forged) or by a textual description (e.g. "partly false", "interpolated",
"forged") to be declared in the encodingDesc of the teiHeader.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="figure">
<xs:annotation>
<xs:documentation xml:lang="en">the place of a figure</xs:documentation>
<xs:documentation xml:lang="de">Referenz auf ein Bild</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="figDesc">
<xs:annotation>
<xs:documentation xml:lang="en">(Description of Figure) contains a brief prose
description of the appearance or content of a graphic figure, for use when documenting
an image without displaying it.</xs:documentation>
</xs:annotation>
<xs:complexType mixed="true">
<xs:sequence>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:group ref="layout"/>
<xs:group ref="biblArch"/>
</xs:choice>
</xs:sequence>
<xs:attributeGroup ref="standard"/>
</xs:complexType>
</xs:element>
<xs:element minOccurs="0" maxOccurs="unbounded" name="graphic">
<xs:annotation>
<xs:documentation xml:lang="en">represents a graphic (image, drawing, diagramm, graph
etc.) as referenced in the url-attribute</xs:documentation>
</xs:annotation>
<xs:complexType mixed="true">
<xs:attribute name="url"/>
<xs:attributeGroup ref="standard"/>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attributeGroup ref="standard"/>
</xs:complexType>
</xs:element>
<xs:element name="witList">
<xs:annotation>
<xs:documentation xml:lang="de">Textzeugen</xs:documentation>
<xs:documentation xml:lang="en">contains a list of all the textual witnesses for the
text</xs:documentation>
</xs:annotation>
<xs:complexType mixed="true">
<xs:sequence>
<xs:choice maxOccurs="unbounded">
<xs:element maxOccurs="unbounded" name="witness">
<xs:annotation>
<xs:documentation xml:lang="de">Der einzelne Textzeuge</xs:documentation>
<xs:documentation xml:lang="en">contains either a description of a single textual
witness for the text.</xs:documentation>
</xs:annotation>
<xs:complexType mixed="true">
<xs:sequence>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="traditioForm" type="xs:string">
<xs:annotation>
<xs:documentation xml:lang="de"> Überlieferungsform: Original, Kopial, Insert,
Transsumpt, Vidimus, Konzept. Die verwendete Begrifflichkeit ist dem VID zu
entnehmen oder in der profileDesc zu dokumentieren. </xs:documentation>
<xs:documentation xml:lang="en">contains information on the transmission
status of a materialization of a text or the textual 'tradition' of the
document (cfr. Vocabulaire Internationale de Diplomatique n. 24). If the
document is the first written documentation of its authors will, it is
considered as an 'original'. Later copies can be specified as being
authenticated, inserted into other documents etc. ==Example==
<witness> <archIdentifier>Palermo, ASt, Atti notarili 1 fol.
80</archIdentifier> <traditioForm>authenticated
copy<transmission> <witness></xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="sigil" type="xs:string">
<xs:annotation>
<xs:documentation xml:lang="de">Die Sigle als Abkürzung für einen
Textzeugen</xs:documentation>
<xs:documentation xml:lang="en">the abbreviation used for a document or
textual witness defined in the witnesslist and refered to in the wit element
in the apparatus</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="physicalDesc">
<xs:annotation>
<xs:documentation xml:lang="en">contains a formal description of the physical
properties of the document excluding text and legal content. ==Example==
<physDesc> <material>parchment, 10x12 inch</material>
</physDesc> <auth><seal>I (<sigillant>Raimund de
Mevolhon, Bischof von Gap (1282-1289)</sigillant>), II.
(<sigillant>Romanus, Bischof von Epirus
(1286-1298)</sigillant>), III. (<sigillant>Waldebrunus, Bischof
von Vlorá und Glabinitza</sigillant>), IV. (<sigillant>Leo,
Bischof von Calamon</sigillant>), V. (<sigillant>Thomas, Bischof
von Acerra</sigillant>) Siegel von Seidenschnüren
abgerissen.</seal> -- <seal>VI. S. des <sigillant>Bischofs
Leotherius von Veroli</sigillant> an Seidenschnur beschädigt, in
Maltha, spitzoval. Umschr.: <legend>S. L RVL ....</legend> Auf
der Rückseite das Signet undeutlich.</seal> -- <seal>VII. S. d.
<sigillant>Bischofs Ägidius v. Tortiboli</sigillant> etwas
beschädigt, spitzoval, in Maltha, III A 2 a. Umschr.: <legend> -- EPI
. S . EGIDII DEI .... TIBVR . </legend></seal> --
<seal>VIII. S. d. <sigillant>Bischofs Perronus v.
Larino</sigillant> sehr beschädigt, spitzoval, in Maltha. Umschr.:
<legend>. .
PERRONI</legend></seal></auth></xs:documentation>
</xs:annotation>
<xs:complexType mixed="true">
<xs:sequence>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="scribe"/>
<xs:element ref="handDesc"/>
<xs:group ref="layout"/>
<xs:group ref="textualElements"/>
<xs:element ref="support"/>
<xs:element ref="material"/>
<xs:element ref="dimensions"/>
<xs:element ref="condition"/>
<xs:element name="extent">
<xs:annotation>
<xs:documentation xml:lang="en">describes the approximate size of the
electronic text as stored on some carrier medium, specified in any
convenient units. In Context of document description the
<extent> element is principally a specification of the number
of leaves or bifolia a document contains, but may also contain any
number of other measurements carried out on the document. Such
measurements may be specifically marked using the phrase level
<dimensions> element, as in the following example, or left as
plain prose. Since the <dimensions> element is available for
use anywhere in a description, the cataloguer may choose to discuss
(for example) dimensions of miniatures at the same time as
describing the miniatures, rather than specify that information
within the <extent> element. ==Example== <extent>2
leaves, taken from the binding of a printed book</extent>
<extent>ii+321 leaves</extent> <extent>37+212
leaves</extent></xs:documentation>
</xs:annotation>
<xs:complexType mixed="true">
<xs:sequence>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="dimensions"/>
</xs:choice>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element ref="layoutDesc"/>
<xs:element ref="sealDesc"/>
<xs:element ref="decoDesc"/>
</xs:choice>
</xs:sequence>
<xs:attributeGroup ref="standard"/>
</xs:complexType>
</xs:element>
<xs:element ref="nota"/>
<xs:element name="auth">
<xs:annotation>
<xs:documentation xml:lang="en">describes the authentification of the
document. ==Example== <auth> <p>The charters bears no trace of
the announced seal.</p> </auth> ... <auth> <seal
n="1">1: Siegel des Friedrich von Hohenberg, rotes Wachs, stark
beschädigt, <legend>Fridericus [.......]</legend></seal>
<seal n="2">2: Siegel des Kloster S. Maria, verloren, nur noch Pressel
vorhanden</seal> or <physDesc> <material>parchment, 10x12
inch</material> </physDesc> <auth><seal>I
(<sigillant>Raimund de Mevolhon, Bischof von Gap
(1282-1289)</sigillant>), II. (<sigillant>Romanus, Bischof von
Epirus (1286-1298)</sigillant>), III. (<sigillant>Waldebrunus,
Bischof von Vloré und Glabinitza</sigillant>), IV.
(<sigillant>Leo, Bischof von Calamon</sigillant>), V.
(<sigillant>Thomas, Bischof von Acerra</sigillant>) Siegel von
Seidenschnüren abgerissen.</seal> - <seal>VI. S. des
<sigillant>Bischofs Leotherius von Veroli</sigillant> an
Seidenschnur beschädigt, in Maltha, spitzoval. Umschr.: <legend>S. L
RVL ....</legend> Auf der Rückseite das Signet
undeutlich.</seal> - <seal>VII. S. d. <sigillant>Bischofs
Ägidius v. Tortiboli</sigillant> etwas beschädigt, spitzoval, in
Maltha, III A 2 a. Umschr.: <legend>+ EPI . S . EGIDII DEI .... TIBVR
. </legend></seal> - <seal>VIII. S. d.
<sigillant>Bischofs Perronus v. Larino</sigillant> sehr
beschädigt, spitzoval, in Maltha. Umschr.: <legend>. .
PERRONI</legend></seal></auth> <auth>
<sigillum>...</sigillum> </auth></xs:documentation>
</xs:annotation>
<xs:complexType mixed="true">
<xs:sequence>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="sealDesc"/>
<xs:group ref="layout"/>
<xs:element name="notariusDesc">
<xs:annotation>
<xs:documentation xml:lang="de">Beschreibung einer notariellen
Unterfertigung.</xs:documentation>
<xs:documentation xml:lang="en">Description of a notarial
subscription</xs:documentation>
</xs:annotation>
<xs:complexType mixed="true">
<xs:sequence>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="notariusSub"/>
<xs:element ref="notariusSign"/>
<xs:element ref="notarius"/>
<xs:element ref="chirograph"/>
<xs:group ref="textualElements"/>
<xs:group ref="layout"/>
</xs:choice>
</xs:sequence>
<xs:attributeGroup ref="standard"/>
</xs:complexType>
</xs:element>
<xs:element ref="testes"/>
<xs:element ref="subscriptio"/>
</xs:choice>
</xs:sequence>
<xs:attributeGroup ref="standard"/>
</xs:complexType>
</xs:element>
<xs:group ref="content"/>
<xs:group ref="layout"/>
<xs:group ref="textualElements"/>
<xs:group ref="reference"/>
<xs:group ref="biblArch"/>
<xs:element name="rubrum">
<xs:annotation>
<xs:documentation xml:lang="en">classification given on the document or as an
endorsment by the recipient or the archive.</xs:documentation>
</xs:annotation>
<xs:complexType mixed="true">
<xs:choice maxOccurs="unbounded" minOccurs="0">
<xs:sequence>
<xs:group ref="transcription"/>
<xs:group ref="content"/>
</xs:sequence>
</xs:choice>
<xs:attributeGroup ref="standard"/>
<xs:attribute ref="type"/>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:sequence>
<xs:attribute ref="certainty" use="optional"/>
<xs:attribute name="type" type="xs:anySimpleType" use="optional"/>
<xs:attributeGroup ref="standard"/>
<xs:attribute name="sigil" type="xs:anySimpleType">
<xs:annotation>
<xs:documentation xml:lang="de">P5 sieht dafür das Attribut id vor. Diese Lösung
ist sowohl dem Element, als auch dem Attribut vorzuziehen.
[strict!]</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:group ref="layout"/>
</xs:choice>
</xs:sequence>
<xs:attributeGroup ref="standard"/>
</xs:complexType>
</xs:element>
<xs:element name="nota">
<xs:annotation>
<xs:documentation xml:lang="de">Enthält Vermerke der ausstellenden Kanzlei auf der Urkunde.
Für Archivvermerke beim Empfänger vgl. rubrum</xs:documentation>
<xs:documentation xml:lang="en">contains the extra sigillum notes on the document (Lat.: extra
tenorem, parfois extra sigillum), i.e notes on the original or its copies that aren't in
part of the actual content of document itself although they are part of the elaboration# of
the document. They are usually placed in margin, under the seal or on the back of the
document and contain notes on the elaboration, its means of authentication or its
registration by the issuing chancery. It does not include notes added by the recipient or
the holding archives. ==Example== <nota type="iussio" resp="issuer">per mandatum
domini nostri imperatoris in consilio</nota> <nota type=""
resp="adressee">...</nota></xs:documentation>
</xs:annotation>