-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlido-v1.1.xsd
4144 lines (3860 loc) · 185 KB
/
lido-v1.1.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 xmlns:doc="http://www.mda.org.uk/spectrumXML/Documentation" xmlns:gml="http://www.opengis.net/gml" xmlns:lido="http://www.lido-schema.org" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tei="http://www.tei-c.org/ns/1.0" xmlns:sch="http://purl.oclc.org/dsdl/schematron" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:skos="http://www.w3.org/2004/02/skos/core#" targetNamespace="http://www.lido-schema.org" elementFormDefault="qualified" attributeFormDefault="qualified">
<xs:annotation>
<xs:documentation>
<tei:teiHeader>
<tei:fileDesc>
<tei:titleStmt lang="en">
<tei:title>LIDO - Lightweight Information Describing Objects Version 1.1</tei:title>
<tei:author>ICOM-CIDOC LIDO Working Group</tei:author>
</tei:titleStmt>
<tei:publicationStmt lang="en">
<tei:publisher>ICOM-CIDOC LIDO Working Group</tei:publisher>
<tei:date type="publicationDate">2021-12-20</tei:date>
<tei:authority>ARTstor, Collections Trust, Deutscher Museumsbund - Fachgruppe Dokumentation, Deutsches Dokumentationszentrum für Kunstgeschichte - Bildarchiv Foto Marburg, digiCULT-Verbund eG, Institut für Museumsforschung (SMB-PK), J. Paul
Getty Trust, Göttingen State and University Library, Zuse-Institut Berlin.</tei:authority>
<tei:availability>
<tei:p>LIDO is an XML schema intended for delivering metadata, for use in a variety of online services, from an organization’s collections database to portals of aggregated resources, as well as exposing, sharing and connecting data on the web. Its strength lies in its ability to support the typical range of descriptive information about objects of material culture. It can be used for all kinds of object, e.g., art, cultural, technology and natural science and supports multilingual portal environments.</tei:p>
<tei:p>The LIDO schema is the result of a substantial redesign and enhancement of the CDWA Lite and museumdat schemas based on recommendations of the CDWA Lite/museumdat Working Group, community feedback and further CIDOC-CRM analysis. It mainly builds on CDWA and includes additional concepts to meet SPECTRUM requirements.</tei:p>
<tei:p>For more information on LIDO please refer to: <tei:ref target="http://www.lido-schema.org">www.lido-schema.org</tei:ref></tei:p>
<tei:p>Prepared for CIDOC LIDO Working Group by LIDO-DE Working Group.</tei:p>
<tei:p>The schema is developed at <tei:ref target="https://gitlab.gwdg.de/lido/development">gitlab.gwdg.de/lido/development</tei:ref>. LIDO v1.1 is backwards compatible with LIDO v1.0. For a summary of changes please refer to the repository’s README. The full history of LIDO can be found in <tei:ref target="http://www.lido-schema.org/schema/v1.0/lido-v1.0-specification.pdf">lido-v1.0-specification.pdf</tei:ref>, 2.3 History of the schema.</tei:p>
<tei:p>Editors: Erin Coburn, Richard Light, Jutta Lindenthal, Gordon McKenna (Collections Trust), Regine Stein (Göttingen State and University Library), Axel Vitzthum (digiCULT Verbund e.G.), Michelle Weidling (Göttingen State and University Library).
</tei:p>
<tei:p>Contributors: Detlev Balzer, Regine Heuchert (Technoseum), Angela Kailus (Deutsches Dokumentationszentrum für Kunstgeschichte - Bildarchiv Foto Marburg), Herdis Kley (Freie Universität Berlin), Marco Klindt (Zuse Institute Berlin), Markus Matoni (Göttingen State and University Library), Hanna-Lena Meiners (Göttingen State and University Library), Timo Schleier (Göttingen State and University Library and Head Office of the GBV Common Library Network), Francesca Schulze (German National Library), Martin Stricker (Hermann von Helmholtz-Zentrum für Kulturtechnik).
</tei:p>
<tei:p>LIDO name and logo courtesy Rob Lancefield.</tei:p>
<tei:p>Copyright 2009-2021 ICOM-CIDOC for the LIDO Working Group.</tei:p>
<tei:p><tei:ref target="http://lido-schema.org/schema/v1.1/lido-v1.1.html">LIDO - Lightweight Information Describing Objects Version 1.1</tei:ref> by <tei:ref target="https://cidoc.mini.icom.museum/working-groups/lido/">CIDOC LIDO Working Group</tei:ref> is licensed under <tei:ref targt="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0.</tei:ref></tei:p>
<tei:licence target="https://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International (CC BY 4.0)</tei:licence>
</tei:availability>
</tei:publicationStmt>
</tei:fileDesc>
</tei:teiHeader>
</xs:documentation>
</xs:annotation>
<xs:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="xml.xsd"/>
<xs:import namespace="http://www.opengis.net/gml" schemaLocation="gml/gml.xsd"/>
<xs:annotation>
<xs:appinfo>
<sch:ns uri="http://www.lido-schema.org" prefix="lido"/>
<sch:ns uri="http://www.w3.org/2002/07/owl#" prefix="owl"/>
<sch:ns uri="http://www.w3.org/2004/02/skos/core#" prefix="skos"/>
<sch:title>Schematron constraints for LIDO Version 1.1</sch:title>
<sch:pattern>
<sch:title>Either free text or index element</sch:title>
<sch:p>In LIDO v1.1 some text elements are extended to <tei:ref target="#conceptComplexType">conceptComplexType</tei:ref>
in order to foster controlled indexing in the future. To enable backwards
compatibility either elements of <tei:ref target="#textComplexType">textComplexType</tei:ref> or elements of
<tei:ref target="#conceptComplexType">conceptComplexType</tei:ref>
are allowed. Note that the elements are defined to be mutually exclusive.</sch:p>
<sch:rule abstract="true" id="sch_MixedContent">
<sch:assert role="fatal" test=" (skos:Concept or lido:conceptID or lido:term) and not(text()[not(normalize-space(.) = '')] or @xml:lang or @lido:encodinganalog or @lido:label) or (text()[normalize-space(.) != ''] and not(skos:Concept or lido:conceptID or lido:term)) or (not(*) and (not(text()) or normalize-space(.) = '')) "> Asserts that either an element based on <tei:ref target="#textComplexType">textComplexType</tei:ref> or an element
based on <tei:ref target="#conceptComplexType">conceptComplexType</tei:ref> is used for <sch:name/>, but not both at the same time.
</sch:assert>
</sch:rule>
</sch:pattern>
<sch:pattern>
<sch:title>conceptComplexType allows only skos:Concept from SKOS namespace</sch:title>
<sch:p>Asserts that only skos:Concept and not any other class from the SKOS namespace is used for
statements about a LIDO element based on <tei:ref target="#conceptComplexType">conceptComplexType</tei:ref>.</sch:p>
<sch:rule abstract="true" id="sch_SKOS">
<sch:assert role="fatal" test="not(skos:*[not(self::skos:Concept)])">
Only skos:Concept should be used as embedded class in <sch:name/> from the SKOS namespace.
</sch:assert>
</sch:rule>
</sch:pattern>
<sch:pattern>
<sch:title>skos:Concept allows only SKOS properties</sch:title>
<sch:p>Asserts that only properties in the domain or range of the skos:Concept
Class are used for statements about a LIDO sub-element of <tei:ref target="#conceptComplexType">conceptComplexType</tei:ref>.</sch:p>
<sch:rule context="skos:Concept" id="sch_SKOS_properties">
<sch:report role="fatal" test="child::*[namespace-uri() != 'http://www.w3.org/2004/02/skos/core#']">
Only SKOS properties in the domain or range of the skos:Concept Class are allowed.
</sch:report>
</sch:rule>
</sch:pattern>
<sch:pattern>
<sch:title>ComplexType allows only owl:sameAs from OWL namespace</sch:title>
<sch:p>Asserts that only owl:sameAs and not any other property or class from the
OWL namespace is used to state identity equivalence in instances of LIDO elements contained in
<tei:ref target="#actorComplexType">actorComplexType</tei:ref>,
<tei:ref target="#eventComplexType">eventComplexType</tei:ref>,
<tei:ref target="#legalBodyRefComplexType">legalBodyRefComplexType</tei:ref>,
<tei:ref target="#objectComplexType">objectComplexType</tei:ref>,
<tei:ref target="#placeComplexType">placeComplexType</tei:ref>,
<tei:ref target="#rightsHolderComplexType">rightsHolderComplexType</tei:ref>.
</sch:p>
<sch:rule abstract="true" id="sch_OWL">
<sch:assert role="fatal" test="not(owl:*[not(self::owl:sameAs)])"> Only owl:sameAs should be
used as embedded property of <sch:name/> from the OWL namespace. </sch:assert>
</sch:rule>
</sch:pattern>
<sch:pattern>
<sch:title>Values for rightsType@type</sch:title>
<sch:p>A LIDO <tei:ref target="#rightsType">rightsType</tei:ref> element can either hold the type attribute 'generic' or 'specific', respectively.
Since a generic rights type and a specific rights or license statement fall into different logical
categories, these types are mutually exclucive.</sch:p>
<sch:rule abstract="true" id="sch_rightsType">
<sch:let name="type" value="@lido:type"/>
<sch:let name="sibling_type" value="following-sibling::lido:rightsType[@lido:type]"/>
<sch:assert role="fatal" test=" @lido:type = 'http://terminology.lido-schema.org/lido00920' and not(preceding-sibling::lido:rightsType[@lido:type = 'http://terminology.lido-schema.org/lido00921']) or @lido:type = 'http://terminology.lido-schema.org/lido00921' and not(preceding-sibling::lido:rightsType[@lido:type = 'http://terminology.lido-schema.org/lido00920']) or count(parent::*/lido:rightsType) = 1 and not(@lido:type) ">
<sch:value-of select="name(parent::*)"/> can either hold a specific or a generic lido:rightsType@lido:type (mutually exclusive). If lido:rightsType@lido:type is used in <sch:value-of select="name(parent::*)"/>, it must be used in all <sch:value-of select="name(parent::*)"/>.
</sch:assert>
</sch:rule>
</sch:pattern>
<sch:pattern>
<sch:title>Possible values for lido:rightsType@lido:type</sch:title>
<sch:p>In LIDO v1.1 a type attribute is introduced for the LIDO <tei:ref target="#rightsType">rightsType</tei:ref> element
in order to discern generic rights and specific ones.
This rule asserts that only the URIs for these two types of rights are used when the type attribte is set.</sch:p>
<sch:rule abstract="true" id="sch_rightsType_type">
<sch:assert role="warn" test="(@lido:type = 'http://terminology.lido-schema.org/lido00920' or @lido:type = 'http://terminology.lido-schema.org/lido00921') or not(@lido:type)">
@lido:type can either be omitted or must hold one of the following URIs: http://terminology.lido-schema.org/lido00920, http://terminology.lido-schema.org/lido00921.
</sch:assert>
</sch:rule>
</sch:pattern>
<sch:pattern>
<sch:title>lido:collection must contain lido:objectName</sch:title>
<sch:p>Asserts that lido:collection contains at least lido:object/lido:objectName.</sch:p>
<sch:rule abstract="true" id="sch_collection">
<sch:assert role="fatal" test="lido:object/lido:objectName">
lido:collection must contain lido:object/lido:objectName.
</sch:assert>
</sch:rule>
</sch:pattern>
</xs:appinfo>
</xs:annotation>
<xs:complexType name="actorComplexType" id="actorComplexType">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">Defines identifying and indexing information about an actor.</tei:ab>
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="actorID" type="lido:identifierComplexType" minOccurs="0" maxOccurs="unbounded" id="actorID">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">An identifier for the actor.<br/>
Repeatable for identifiers from different authority files or other sources.
The recommended method, however, is to reference equivalent resources using the
<tei:ref target="https://www.w3.org/TR/owl-ref/#sameAs-def">owl:sameAs</tei:ref> property,
stating that two or more URIs identify the same individual entity.</tei:ab>
<tei:ab type="label">Actor Identifier</tei:ab>
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:any minOccurs="0" maxOccurs="unbounded" processContents="skip" namespace="http://www.w3.org/2002/07/owl#"/>
<xs:element name="nameActorSet" type="lido:appellationComplexType" maxOccurs="unbounded" id="nameActorSet">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">A set of one or more names for an actor
and the source from where it is taken. Comprises the proper name,
further appellations, pseudonyms, or other designations by which an
individual <em>person</em> or a <em>group of persons</em>, such as an <em>organization</em> or a <em>family</em> is known.<br/>
Repeated to record different sources for multiple appellations.</tei:ab>
<tei:ab type="note">Indicates names, appellations or other identifiers
assigned to a <em>person</em> or a <em>group of persons</em>, such as an <em>organization</em> or a
<em>family</em>.</tei:ab>
<tei:ab type="label">Name Actor Set</tei:ab>
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="nationalityActor" minOccurs="0" maxOccurs="unbounded" id="nationalityActor">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">An index element for the national,
geopolitical, cultural, or ethnic origin or affiliation of the
actor.</tei:ab>
<tei:ab type="label">Nationality Actor</tei:ab>
<tei:ab type="dataValues">Controlled terminology</tei:ab>
<tei:ab type="recommendation">Linked open vocabulary for
<tei:ref target="../../documents/terminology-recommendation.html#nationalityActor">Nationality Actor</tei:ref></tei:ab>
</xs:documentation>
<xs:appinfo>
<sch:pattern>
<sch:rule context="lido:nationalityActor">
<sch:extends rule="sch_SKOS"/>
</sch:rule>
</sch:pattern>
</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="lido:conceptComplexType">
<xs:attribute ref="lido:sortorder"/>
<xs:attribute ref="lido:type" id="nationalityActor_type">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">
An attribute designating the particular kind of actor affiliation,
such as to a country, culture, or an ethnic group.</tei:ab>
<tei:ab type="dataValues">Controlled terminology</tei:ab>
<tei:ab type="recommendation">LIDO Terminology for
<tei:ref target="terminology-recommendation.html#nationalityActor_type">Type of Nationality Actor</tei:ref></tei:ab>
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="vitalDatesActor" minOccurs="0" maxOccurs="unbounded" id="vitalDatesActor">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">A set of structured information about the date of birth
and death of a <em>person</em>, where applicable; or date of formation and
dissolution of a <em>group of persons</em>, respectively.</tei:ab>
<tei:ab type="label">Vital Dates Actor</tei:ab>
<tei:ab type="dataValues">Controlled format</tei:ab>
<tei:ab type="recommendation"><tei:ref target="https://www.iso.org/iso-8601-date-and-time-format.html">ISO 8601: Representation of dates and times</tei:ref>.</tei:ab>.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="lido:dateComplexType">
<xs:attribute ref="lido:type" id="vitalDatesActor_type">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">An attribute for the kind
of date with respect to the biography of a <em>person</em>, or
the life cycle of a <em>group of persons</em>.<br/>
Examples may include <em>birth date</em>, <em>death date</em>, or <em>founding date</em>,
respectively.</tei:ab>
<tei:ab type="dataValues">Controlled terminology</tei:ab>
<tei:ab type="recommendation">LIDO Terminology for
<tei:ref target="../../documents/terminology-recommendation.html#vitalDatesActor_type">Type of Vital Dates Actor</tei:ref></tei:ab>
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="vitalPlaceActor" minOccurs="0" maxOccurs="unbounded" id="vitalPlaceActor">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">An index element for the place where the
<em>person</em> was born, died, or is or was active, where applicable; or the
location where a <em>group of persons</em> was formed, dissolved or is or was
active, respectively.<br/>
If the place is in dispute, omit the place.</tei:ab>
<tei:ab type="label">Vital Place Actor</tei:ab>
<tei:ab type="dataValues">Controlled terminology</tei:ab>
<tei:ab type="recommendation">Linked open authority file for
<tei:ref target="../../documents/terminology-recommendation.html#place">Place</tei:ref>
</tei:ab>
</xs:documentation>
<xs:appinfo>
<sch:pattern>
<sch:rule context="lido:vitalPlaceActor">
<sch:extends rule="sch_OWL"/>
</sch:rule>
</sch:pattern>
</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="lido:placeComplexType">
<xs:attribute ref="lido:type" id="vitalPlaceActor_type">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">An attribute for the kind
of place with respect to the biography of a <em>person</em>, or
the life cycle of a <em>group of persons</em>. Examples may
include <em>birth place</em>, <em>death place</em>, or <em>founding place</em>,
respectively.</tei:ab>
<tei:ab type="dataValues">Controlled terminology</tei:ab>
<tei:ab type="recommendation">LIDO Terminology for
<tei:ref target="../../documents/terminology-recommendation.html#vitalPlaceActor_type">Type of Vital Place Actor</tei:ref></tei:ab>
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="genderActor" minOccurs="0" maxOccurs="unbounded" id="genderActor">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">An index element for the sex assigned at birth
or the gender identity of an actor; most often <em>female</em> or <em>male</em>.
Usually not applicable to a group of persons.</tei:ab>
<tei:ab type="label">Gender Actor</tei:ab>
<tei:ab type="dataValues">Controlled terminology</tei:ab>
<tei:ab type="recommendation">LIDO Terminology for
<tei:ref target="../../documents/terminology-recommendation.html#genderActor">Gender Actor</tei:ref></tei:ab>
</xs:documentation>
<xs:appinfo>
<sch:pattern>
<sch:rule context="lido:genderActor">
<sch:extends rule="sch_MixedContent"/>
<sch:extends rule="sch_SKOS"/>
</sch:rule>
</sch:pattern>
</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="lido:conceptMixedComplexType">
<xs:attribute ref="lido:type" id="genderActor_type">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">An attribute indicating whether the indexing term refers to either
sex as a biological characteristic, or gender as a social or cultural distinction.
If a distinction between sex or gender cannot be made or is not relevant,
the (default) type attribute <em>Sex or gender</em> is suitable.
</tei:ab>
<tei:ab type="dataValues">Controlled terminology</tei:ab>
<tei:ab type="recommendation">LIDO Terminology for
<tei:ref target="../../documents/terminology-recommendation.html#genderActor_type">Type of Gender Actor</tei:ref></tei:ab>
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute ref="lido:type" id="actor_type">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">An attribute indicating whether the actor is an
individual <em>person</em> or a <em>group of persons</em>, such as a an <em>organization</em> or a
<em>family</em>.</tei:ab>
<tei:ab type="dataValues">Controlled terminology</tei:ab>
<tei:ab type="recommendation">LIDO Terminology for
<tei:ref target="../../documents/terminology-recommendation.html#actor_type">Type of Actor</tei:ref></tei:ab>
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="actorInRoleComplexType" id="actorInRoleComplexType">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">Defines actor information with role, attribution and
extent, where applicable, related to the event the actor participated in or was
present at.</tei:ab>
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="actor" type="lido:actorComplexType" id="actor_actorInRoleComplexType">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">A wrapper for identifying and indexing information
about an actor with role statement.</tei:ab>
<tei:ab type="label">Actor</tei:ab>
</xs:documentation>
<xs:appinfo>
<sch:pattern>
<sch:rule context="lido:actor">
<sch:extends rule="sch_OWL"/>
</sch:rule>
</sch:pattern>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="roleActor" minOccurs="0" maxOccurs="unbounded" id="roleActor">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">An index element for the role or activity
performed by an actor in the context of the event in focus.<br/>
Examples may include <em>designer</em>, <em>painter</em>, or <em>publisher</em>.</tei:ab>
<tei:ab type="label">Role Actor</tei:ab>
<tei:ab type="dataValues">Controlled terminology</tei:ab>
<tei:ab type="recommendation">Linked open vocabulary for
<tei:ref target="../../documents/terminology-recommendation.html#roleActor">Role Actor</tei:ref></tei:ab>
</xs:documentation>
<xs:appinfo>
<sch:pattern>
<sch:rule context="lido:roleActor">
<sch:extends rule="sch_SKOS"/>
</sch:rule>
</sch:pattern>
</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="lido:conceptComplexType">
<xs:attribute ref="lido:sortorder"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="attributionQualifierActor" type="lido:conceptMixedComplexType" minOccurs="0" maxOccurs="unbounded" id="attributionQualifierActor">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">An index element qualifying the attribution of an
actor.<br/>
Applicable when the attribution is uncertain or in dispute, when
there is more than one actor, or when the attribution otherwise requires
explanation.<br/>
Examples may include <em>attributed to</em>, <em>studio of</em>, or <em>style
of</em>.</tei:ab>
<tei:ab type="label">Attribution Qualifier Actor</tei:ab>
<tei:ab type="dataValues">Controlled terminology</tei:ab>
<tei:ab type="recommendation">Linked open vocabulary for
<tei:ref target="../../documents/terminology-recommendation.html#attributionQualifierActor">Attribution Qualifier Actor</tei:ref></tei:ab>
</xs:documentation>
<xs:appinfo>
<sch:pattern>
<sch:rule context="lido:attributionQualifierActor">
<sch:extends rule="sch_MixedContent"/>
<sch:extends rule="sch_SKOS"/>
</sch:rule>
</sch:pattern>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="extentActor" type="lido:conceptMixedComplexType" minOccurs="0" maxOccurs="unbounded" id="extentActor">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">An index element for the specific part of
the object/work contributed by a particular actor in the respective
event.<br/>
Applicable if there is more than one actor.</tei:ab>
<!-- Example: -->
<tei:ab type="label">Extent Actor</tei:ab>
<tei:ab type="dataValues">Controlled terminology</tei:ab>
<tei:ab type="recommendation">Linked open vocabulary for
<tei:ref target="../../documents/terminology-recommendation.html#extentActor">Extent Actor</tei:ref></tei:ab>
</xs:documentation>
<xs:appinfo>
<sch:pattern>
<sch:rule context="lido:extentActor">
<sch:extends rule="sch_MixedContent"/>
<sch:extends rule="sch_SKOS"/>
</sch:rule>
</sch:pattern>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="sourceActorInRole" type="lido:textComplexType" minOccurs="0" maxOccurs="unbounded" id="sourceActorInRole">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">A text element identifying the source of the provided information about
an actor and the role or attribution of this actor related to the event in focus.<br/>
Whenever possible, a published source should be given.
</tei:ab>
<tei:ab type="label">Source Actor in Role</tei:ab>
<tei:ab type="dataValues">Free text</tei:ab>
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="actorInRoleSetComplexType" id="actorInRoleSetComplexType">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">Defines display and index elements for an
actor with role information.</tei:ab>
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="displayActorInRole" type="lido:textComplexType" minOccurs="0" maxOccurs="unbounded" id="displayActorInRole">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">A display element for an actor and the specific role or activity performed by the actor,
corresponding to the subsequent <tei:ref target="#actorInRole">Actor in Role</tei:ref> element.<br/>
May include name and brief biographical information on the actor.<br/>
Repeated for language variants only.</tei:ab>
<tei:ab type="label">Display Actor in Role</tei:ab>
<tei:ab type="dataValues">Free text</tei:ab>
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="actorInRole" type="lido:actorInRoleComplexType" minOccurs="0" id="actorInRole">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">A wrapper for information about an actor and the
role or activity performed by this actor in context of the event.<br/>
Includes information about attribution and extent, where applicable.
</tei:ab>
<tei:ab type="label">Actor in Role</tei:ab>
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="actorSetComplexType" id="actorSetComplexType">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">Defines display and index elements for an actor.</tei:ab>
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="displayActor" type="lido:textComplexType" minOccurs="0" maxOccurs="unbounded" id="displayActor">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">A display element for an actor, corresponding to the subsequent <tei:ref target="#actor_actorSetComplexType">Actor</tei:ref> element.<br/>
Repeated for language variants only.</tei:ab>
<tei:ab type="label">Display Actor</tei:ab>
<tei:ab type="dataValues">Free text</tei:ab>
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="actor" type="lido:actorComplexType" minOccurs="0" id="actor_actorSetComplexType">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">A wrapper for identifying and indexing information
about an actor with role statement.</tei:ab>
<tei:ab type="label">Actor</tei:ab>
</xs:documentation>
<xs:appinfo>
<sch:pattern>
<sch:rule context="lido:actor">
<sch:extends rule="sch_OWL"/>
</sch:rule>
</sch:pattern>
</xs:appinfo>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:attribute name="addedSearchTerm" default="no" id="addedSearchTerm">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">An attribute indicating that the term in the index element has
been added to enhance retrieval options. The term may be a synonym, a generic
term, or an equivalent term in an additional language, taken from a local or
public controlled vocabulary.</tei:ab>
<tei:ab type="dataValues">Controlled values</tei:ab>
</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="yes"/>
<xs:enumeration value="no"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:element name="administrativeMetadata" type="lido:administrativeMetadataComplexType" id="administrativeMetadata">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">Aggregates the administrative metadata for an object/work record.<br/>
Repeated once for each language for multilingual resources.<br/>
Please note that the repeatability can vary depending on whether the element is used as root element (not repeatable) or as a child element (repeatable).</tei:ab>
<tei:ab type="label">Administrative Metadata</tei:ab>
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="administrativeMetadataComplexType" id="administrativeMetadataComplexType">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">Defines the administrative metadata for an object/work record.</tei:ab>
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element ref="lido:rightsWorkWrap" minOccurs="0"/>
<xs:element ref="lido:recordWrap"/>
<xs:element ref="lido:resourceWrap" minOccurs="0"/>
</xs:sequence>
<xs:attribute ref="xml:lang" use="required"/>
</xs:complexType>
<xs:complexType name="appellationComplexType" id="appellationComplexType">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">Defines appellation information about an
individual entity, for instance a name or title, including the preference role, such as
<em>preferred</em> or <em>alternative</em>.</tei:ab>
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="appellationValue" maxOccurs="unbounded" id="appellationValue">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">A text element for the name of an individual entity, like the
title of a work, a proper name of an actor, or a place name.<br/>
Repeated to record different sources for multiple appellations.</tei:ab>
<tei:ab type="label">Appellation Value</tei:ab>
<tei:ab type="dataValues">Free text</tei:ab>
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute ref="lido:pref"/>
<xs:attributeGroup ref="lido:textAttributesSet"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="sourceAppellation" minOccurs="0" maxOccurs="unbounded" id="sourceAppellation">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">A text element identifying the source of the appellation, generally a
published source.</tei:ab>
<tei:ab type="label">Source Appellation</tei:ab>
<tei:ab type="dataValues">Free text</tei:ab>
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute ref="xml:lang"/>
<xs:attribute ref="lido:encodinganalog"/>
<xs:attribute ref="lido:label"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:element name="classificationWrap" id="classificationWrap">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">A wrapper for assignments of the object/work in focus to
one or more classification schemes, and the type of scheme used.</tei:ab>
<tei:ab type="label">Classification Wrapper</tei:ab>
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="classification" minOccurs="0" maxOccurs="unbounded" id="classification">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">An index element assigning an object/work to
a classification or other vocabulary scheme that groups similar
objects together on the basis of defined characteristics.<br/>
Repeated if the object/work is assigned to multiple schemes.</tei:ab>
<tei:ab type="label">Classification</tei:ab>
<tei:ab type="dataValues">Controlled terminology</tei:ab>
<tei:ab type="recommendation">Linked open vocabulary for
<tei:ref target="../../documents/terminology-recommendation.html#classification">Classification</tei:ref>
</tei:ab>
</xs:documentation>
<xs:appinfo>
<sch:pattern>
<sch:rule context="lido:classification">
<sch:extends rule="sch_SKOS"/>
</sch:rule>
</sch:pattern>
</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="lido:conceptComplexType">
<xs:attribute ref="lido:type" id="classification_type">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">An attribute for the particular kind of scheme
used for the classification of an object/work, whether it is, for instance,
based on object genres or subject categories.</tei:ab>
<tei:ab type="dataValues">Controlled terminology</tei:ab>
<tei:ab type="recommendation">LIDO Terminology for
<tei:ref target="../../documents/terminology-recommendation.html#classification_type">Type of Classification</tei:ref></tei:ab>
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute ref="lido:sortorder"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:complexType name="conceptComplexType" mixed="false" id="conceptComplexType">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">Defines identifiers and terms for a generic concept.<br/>
A concept is an abstract entity existing in the mind as a unit of thought,
expressed by one or more terms.</tei:ab>
</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:restriction base="lido:conceptMixedComplexType">
<xs:group ref="lido:conceptElementsSet"/>
</xs:restriction>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="dateComplexType" id="dateComplexType">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">Defines an expression of the date.</tei:ab>
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="earliestDate" minOccurs="0" id="earliestDate">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">An index element for the expression of an exact or estimated date, for
instance a year or calendar date, that delimits the beginning of a date span.
</tei:ab>
<tei:ab type="label">Earliest Date</tei:ab>
<tei:ab type="dataValues">Controlled format</tei:ab>
<tei:ab type="recommendation"><tei:ref target="https://www.iso.org/iso-8601-date-and-time-format.html">ISO 8601: Representation of dates and times</tei:ref>.
</tei:ab>
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute ref="lido:type" id="earliestDate_type">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">An attribute for the kind of earliest date,
whether it is <em>exact</em> or <em>estimated</em>.</tei:ab>
<tei:ab type="dataValues">Controlled terminology</tei:ab>
<tei:ab type="recommendation">LIDO Terminology for <tei:ref target="../../documents/terminology-recommendation.html#earliestDate_type">Type of Earliest Date</tei:ref></tei:ab>
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute ref="lido:source"/>
<xs:attribute ref="lido:encodinganalog"/>
<xs:attribute ref="lido:label"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="latestDate" minOccurs="0" id="latestDate">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">An index element for the expression of the exact or approximate date, for
instance a year or calendar date, that delimits the end of a date span.</tei:ab>
<tei:ab type="label">Latest Date</tei:ab>
<tei:ab type="dataValues">Controlled format</tei:ab>
<tei:ab type="recommendation"><tei:ref target="https://www.iso.org/iso-8601-date-and-time-format.html">
ISO 8601: Representation of dates and times</tei:ref>.</tei:ab>
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute ref="lido:type" id="latestDate_type">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">An attribute for the kind
of latest date, whether it is, for instance, <em>exact</em> or
<em>estimated</em>.</tei:ab>
<tei:ab type="dataValues">Controlled terminology</tei:ab>
<tei:ab type="recommendation">LIDO Terminology for
<tei:ref target="../../documents/terminology-recommendation.html#latestDate_type">Type of Latest Date</tei:ref></tei:ab>
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute ref="lido:source"/>
<xs:attribute ref="lido:encodinganalog"/>
<xs:attribute ref="lido:label"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="dateSetComplexType" id="dateSetComplexType">
<xs:annotation>
<xs:documentation>
<tei:ab type="description"> Defines display and index elements for date
information.</tei:ab>
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="displayDate" type="lido:textComplexType" minOccurs="0" maxOccurs="unbounded" id="displayDate">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">A display element for date information, corresponding to the subsequent <tei:ref target="#date">Date</tei:ref> element.<br/>
Repeated for language variants only.</tei:ab>
<tei:ab type="label">Display Date</tei:ab>
<tei:ab type="dataValues">Free text</tei:ab>
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="date" type="lido:dateComplexType" minOccurs="0" id="date">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">A wrapper for the expression of a date by providing a set of years as earliest and latest date
delimiting the respective span of time, usually given in the proleptic Gregorian calendar.<br/>
If it is an exact date, possibly with time, repeat the same date (and time) in <tei:ref target="#earliestDate">Earliest Date</tei:ref>
and <tei:ref target="#latestDate">Latest Date</tei:ref> elements.</tei:ab>
<tei:ab type="label">Date</tei:ab>
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:element name="descriptiveMetadata" type="lido:descriptiveMetadataComplexType" id="descriptiveMetadata">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">Aggregates the descriptive metadata of an object/work record.<br/>
The attribute xml:lang is mandatory to state the language of the metadata.<br/>
Repeated for fully multilingual resources, once for each language.<br/>
Please note that the repeatability can vary depending on whether the element is used as root element (not repeatable)
or as a child element (repeatable).</tei:ab>
<tei:ab type="label">Descriptive Metadata</tei:ab>
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="descriptiveMetadataComplexType" id="descriptiveMetadataComplexType">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">Defines the descriptive metadata for an object/work
record.</tei:ab>
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element ref="lido:objectClassificationWrap">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">A wrapper for classification statements about the
object/work in focus, including object/work type and classification.</tei:ab>
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="lido:objectIdentificationWrap"/>
<xs:element ref="lido:eventWrap" minOccurs="0"/>
<xs:element ref="lido:objectRelationWrap" minOccurs="0"/>
</xs:sequence>
<xs:attribute ref="xml:lang" use="required"/>
</xs:complexType>
<xs:complexType name="descriptiveNoteComplexType" id="descriptiveNoteComplexType">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">Defines any textual description, including
description identifier, descriptive note and sources.</tei:ab>
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="descriptiveNoteID" type="lido:identifierComplexType" minOccurs="0" maxOccurs="unbounded" id="descriptiveNoteID">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">An identifier for an external resource describing
the element in focus.<br/>
The reference resource may be any kind of resource, preferably web-accessible.</tei:ab>
<tei:ab type="note">The referenced resource may be any kind of document,
preferably web-accessible.</tei:ab>
<tei:ab type="label">Description/Descriptive Note Identifier</tei:ab>
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="descriptiveNoteValue" type="lido:textComplexType" minOccurs="0" maxOccurs="unbounded" id="descriptiveNoteValue">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">A textual description of the element in focus,
such as an object/work or an event, usually a brief essay-like text.<br/>
Repeated for language variants only.</tei:ab>
<tei:ab type="label">Description/Descriptive Note</tei:ab>
<tei:ab type="dataValues">Free text</tei:ab>
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="sourceDescriptiveNote" type="lido:textComplexType" minOccurs="0" maxOccurs="unbounded" id="sourceDescriptiveNote">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">A text element identifying the source of the descriptive note, generally a
published source.</tei:ab>
<tei:ab type="label">Source Description/Descriptive Note</tei:ab>
<tei:ab type="dataValues">Free text</tei:ab>
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute ref="lido:type" id="descriptiveNote_type">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">An attribute for the particular kind of descriptive note.<br/>
Note that this type attribute is primarily intended for use in application profiles.</tei:ab>
<tei:ab type="dataValues">Controlled terminology</tei:ab>
<tei:ab type="recommendation">To be determined by application profiles.</tei:ab>
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute ref="lido:sortorder"/>
</xs:complexType>
<xs:element name="displayStateEditionWrap" id="displayStateEditionWrap">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">A wrapper for the display of state and edition
information on the object/work.</tei:ab>
<tei:ab type="label">Display State/Edition Wrapper</tei:ab>
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="displayState" type="lido:textComplexType" minOccurs="0" maxOccurs="unbounded" id="displayState">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">A display element for a description of the
state of the object/work, used primarily for prints and other
multiples, including state identification and known states, as
appropriate.<br/>
Repeated for language variants only.</tei:ab>
<tei:ab type="label">Display State</tei:ab>
<tei:ab type="dataValues">Free text</tei:ab>
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="displayEdition" type="lido:textComplexType" minOccurs="0" maxOccurs="unbounded" id="displayEdition">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">A display element for indicating a particular
edition to which the object/work belongs, used primarily for prints
and other multiples.<br/>
Repeated for language variants only.</tei:ab>
<tei:ab type="label">Display Edition</tei:ab>
<tei:ab type="dataValues">Free text</tei:ab>
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="sourceStateEdition" type="lido:textComplexType" minOccurs="0" maxOccurs="unbounded" id="sourceStateEdition">
<xs:annotation>
<xs:documentation>
<tei:ab type="description">A text element identifying the source of the provided information about
the state or edition of the entity in focus.</tei:ab>
<tei:ab type="label">Source Display State/Edition</tei:ab>
<tei:ab type="dataValues">Free text</tei:ab>
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:attribute name="encodinganalog" type="xs:string" id="encodinganalog">
<xs:annotation>