-
Notifications
You must be signed in to change notification settings - Fork 7
/
ebucore.xsd
8220 lines (8201 loc) · 301 KB
/
ebucore.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"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:ebucore="urn:ebu:metadata-schema:ebucore"
xmlns:dc="http://purl.org/dc/elements/1.1/" targetNamespace="urn:ebu:metadata-schema:ebucore"
elementFormDefault="qualified" version="1.10">
<import namespace="http://www.w3.org/XML/1998/namespace"
schemaLocation="http://www.w3.org/2001/xml.xsd"/>
<import namespace="http://purl.org/dc/elements/1.1/"
schemaLocation="http://dublincore.org/schemas/xmls/simpledc20021212.xsd"/>
<!--import namespace="http://www.w3.org/XML/1998/namespace"
schemaLocation="xml.xsd"/>
<import namespace="http://purl.org/dc/elements/1.1/"
schemaLocation="simpledc20021212.xsd"/-->
<annotation>
<documentation> The following Creative Commons Rights apply to the use of this EBU resource:
http://creativecommons.org/licenses/by-nc-sa/3.0/ Owner: EBU Technical Department
Author: Jean-Pierre Evain Contact: evain@ebu.ch </documentation>
</annotation>
<annotation>
<documentation>THE ROOT ELEMENT OF EBUCORE IS EBUCOREMAIN, which should be your starting
point for browsing the documentation!</documentation>
</annotation>
<annotation>
<documentation> What is new in version 1.10 ?</documentation>
<documentation> GENERAL ENRICHMENT </documentation>
<documentation> - change sequence into choice as a structure for coreMetadata and format to allow any order for the elements</documentation>
<documentation> - add publicationDuration to publicationEvent for better TV-Anytime mapping</documentation>
<documentation> - clarify the equivalence between gopSize and iFrameSize in VideoFormat</documentation>
<documentation> - change cardinality of date released to unbounded</documentation>
<documentation> - change cardinality of elements under location</documentation>
<documentation> - add year, date and time to the date attribute group</documentation>
<documentation> - add new hasManifestation element for the purpose of complying with FIAF guidelines and mapping to EN 15744</documentation>
<documentation> - add a characterName element to the ContactDetails element, typically for use when the Role is of type Actor/Actress. This is also more specific and clearer than StageName</documentation>
<documentation> - add a new date "deleted"</documentation>
<documentation> - add a new date "produced"</documentation>
<documentation> - add new technicalAttributeTimecode</documentation>
<documentation> - add relations hasTrackPart and isTrackPartOf. This applies also to timeline track parts with the appropriate track type.</documentation>
<documentation> - add a relation isDerivedFrom to define a relation to a parent resource for content provenance purposes.</documentation>
<documentation> - add hasRelatedPublicationEvent to publicationEvent.</documentation>
<documentation> - add two new topic and theme elements.</documentation>
<documentation> - add date/planned for better mapping to other schemas</documentation>
<documentation> - add element textLineBoxPosition to the textLine element to define the position of a textLine in a picture</documentation>
<documentation> - add element artefactBoxPosition to the artefact element to define the position of an artefact in a picture</documentation>
<documentation> - add a rightsEncoding elements to the rights element</documentation>
<documentation> CORRECTIONS </documentation>
<documentation> Corrected mispelling of heigth to height.</documentation>
</annotation>
<element name="ebuCoreMain" type="ebucore:ebuCoreMainType"/>
<complexType name="ebuCoreMainType">
<annotation>
<documentation>The root element of EBUCore.</documentation>
</annotation>
<sequence>
<element name="coreMetadata" type="ebucore:coreMetadataType">
<annotation>
<documentation>The body of EBUCore's descriptive metadata. coreMetadata is used
to describe a so-called "root" item. The same coreMetadata is also used to
describe elements / "parts" of this item (see the "part" element).
</documentation>
</annotation>
</element>
<element name="metadataProvider" type="ebucore:entityType" minOccurs="0">
<annotation>
<documentation>Identifies the metadata provider, e.g. the contributing archive.
The organisation Id or name provide the archive ID or name required for e.g.
OAI metadata harvesting operation. </documentation>
</annotation>
</element>
</sequence>
<attribute name="schema">
<annotation>
<documentation> The name of the schema for e.g. OAI management. </documentation>
</annotation>
</attribute>
<attribute name="version" default="1.8">
<annotation>
<documentation> The version of the schema for e.g. OAI management. </documentation>
</annotation>
</attribute>
<attribute name="dateLastModified" type="date">
<annotation>
<documentation> The date of edition of the current metadata instance for e.g. OAI
management </documentation>
</annotation>
</attribute>
<attribute name="timeLastModified" type="time">
<annotation>
<documentation> The time of edition of the current metadata instance for e.g. OAI
management </documentation>
</annotation>
</attribute>
<attribute name="documentId" type="NMTOKEN">
<annotation>
<documentation> The unique Identifier of the metadata instance for e.g. OAI
management </documentation>
</annotation>
</attribute>
<attribute name="documentLocation" type="anyURI">
<annotation>
<documentation> A location at which the document containing the metadata instance
can be found </documentation>
</annotation>
</attribute>
<attribute ref="xml:lang">
<annotation>
<documentation> An attribute to specify the dominant language used to express
metadata information in the document, which can be superceded each time an
language attribute or element is available a different levels of description
granularity </documentation>
</annotation>
</attribute>
<attribute name="writingLibraryName" type="string">
<annotation>
<documentation> To provide information on the name of a tool used to generate data
</documentation>
</annotation>
</attribute>
<attribute name="writingLibraryVersion" type="string">
<annotation>
<documentation> To provide information on the version of a tool used to generate
data </documentation>
</annotation>
</attribute>
<attributeGroup ref="ebucore:typeGroup">
<annotation>
<documentation>To allow defining a type of description associated with the metadata
document.</documentation>
</annotation>
</attributeGroup>
</complexType>
<complexType name="coreMetadataType">
<annotation>
<documentation>The document containing all the core descriptive information regarding
the resource</documentation>
</annotation>
<choice minOccurs="0" maxOccurs="unbounded">
<element name="title" type="ebucore:titleType" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation>A Title is the ‘main’ name given to a resource e.g. a media item,
a media object, or a sequence as specified by the associated title type. It
corresponds for a series to the series title, for a programme to the
programme title, for an item to the item title, etc. Titles are recorded as
they appear. The Title is the name by which a resource is formally known and
that everyone should use to refer to or search for that particular resource.
The Title may be provided in several languages. If present, the date
attributes indicate when the Title was attributed, used and/or deprecated. </documentation>
<documentation> dc:title is used to provide the main title by which the resource
is known. The title can be provided in different languages. The language in
which the title is provided can be provided using dc:elementType’s lang
attribute. </documentation>
</annotation>
</element>
<element name="alternativeTitle" type="ebucore:alternativeTitleType" minOccurs="0"
maxOccurs="unbounded">
<annotation>
<documentation>An Alternative Title is the name other than the ‘main’ Title
given to a resource. The type of title is defined by the typeGroup of
attributes. The status of the title is defined by the statusGroup of
attributes. Alternative Titles are recorded as they appear. An Alternative
Title may be attributed to a resource for several reasons described using
the status (e.g. working title) and type (e.g. series title) attributes. The
alternativeTitle may be provided in several languages. It is sometimes
common practice to put dates into the alternativeTitle. If present, the date
(indicating when the alternativeTitle was attributed and used or deprecated)
in the date attributes should be consistent. </documentation>
<documentation> dc:alternativeTitle is used to provide an alternative title by
which the resource is known. The alternative title of a particular type can
be provided in different languages. The language in which the title is
provided can be provided using dc:elementType’s lang attribute.
</documentation>
</annotation>
</element>
<element name="creator" type="ebucore:entityType" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation> The descriptor creator identifies an ‘entity’ (a person, group
of persons or organisation) primarily responsible for creating the content
of the resource - behind the camera. Different roles may be considered as
representing a creator, e.g. a producer, an author, etc. Creator is a
sub-class of Contributor. </documentation>
</annotation>
</element>
<element name="subject" type="ebucore:subjectType" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation> The subject addressed by the intellectual content of the resource.
Typically, a subject is expressed by keywords, key phrases. Free text,
controlled vocabularies, authorities, or formal classification schemes
(codes) may be employed when selecting descriptive subject terms. Persons as
subjects are also placed here. IMPORTANT NOTE: The "genre" of the content is
defined under element “ebucore:type/ebucore:genre” </documentation>
<documentation>dc:subject is used to express the subject in the form of free
text optionally in different languages.</documentation>
</annotation>
</element>
<element name="topic" type="ebucore:topicType" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation> The topic covered by the intellectual content of the resource.</documentation>
</annotation>
</element>
<element name="theme" type="ebucore:themeType" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation> The topic covered by the intellectual content of the resource.</documentation>
</annotation>
</element>
<element name="description" type="ebucore:descriptionType" minOccurs="0"
maxOccurs="unbounded">
<annotation>
<documentation>Free-form text or a narrative to report general notes, abstracts,
or summaries about the intellectual content of a resource. The information
may be in the form of a paragraph giving an individual program description,
anecdotal interpretations, or brief content reviews. The description may
also consist of outlines, lists, bullet points, edit decision lists,
indexes, or tables of content, a reference to a graphical representation of
content or even a pointer (URI, URL) to an external resource. A running
order can also be provided as a description. For a Radio or television
programme a running order can be used as description. A description can be
provided in different languages. </documentation>
<documentation> dc:description is used to provide the text of a description of
the resource, which can be provided in different languages. </documentation>
</annotation>
</element>
<element name="publisher" type="ebucore:entityType" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation>A publisher is a person, an organisation, or a service.
Typically, the name of a Publisher should be used to indicate the entity
primarily responsible for distributing or making a resource available to
others e.g. by broadcasting, selling, leasing, renting and other modes of
distribution.</documentation>
</annotation>
</element>
<element name="contributor" type="ebucore:entityType" minOccurs="0"
maxOccurs="unbounded">
<annotation>
<documentation> The descriptor contributor identifies a person or organisation
that has made substantial creative contributions to the content of a
resource. Refers particularly (but not only) to participation in front of
the camera. If in doubt whether an entity is a creator or contributor use
the element contributor.</documentation>
</annotation>
</element>
<element name="date" type="ebucore:dateType" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation> Dates associated with events occurring during the life of the
resource. Typically, Date will be associated with the creation, modification
or availability of the resource.</documentation>
</annotation>
</element>
<element name="type" type="ebucore:typeType" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation>The nature or genre of the resource. Type includes terms
describing general categories, functions, genres, or aggregation levels for
content. Recommended best practice is to select a value from a controlled
vocabulary. To describe the physical or digital manifestation of the
resource, use the FORMAT element.</documentation>
</annotation>
</element>
<element name="format" type="ebucore:formatType" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation> The physical or digital manifestation of the resource. Use the
descriptor Format to identify the format of a particular resource as it
exists in its physical or digital form. Physical form = an actual physical
form that occupies physical space, e.g. a tape. Digital form = a digital
file residing on a server or hard drive. Format may be used to determine the
software, hardware or other equipment needed to display or operate the
resource.</documentation>
</annotation>
</element>
<element name="identifier" type="ebucore:identifierType" minOccurs="0"
maxOccurs="unbounded">
<annotation>
<documentation> A unique, unambiguous reference or identifier for a resource
within a given context. Best practice is to identify the resource (whether
analogue or digital) by means of a string or number corresponding to an
established or formal identification system if one exists. Otherwise, use an
identification method that is in use within your agency, station, production
company, office, or institution. It is also possible to enter more than one,
different but still unique, identifier for the same
resource.</documentation>
</annotation>
</element>
<element ref="dc:source" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation>Reference to the resource (s) from which the current resource is
derived in whole or in part. If no label or number is available, the title
and/or the statement of responsibility etc. of the digitized recording is
recorded here. For a digitized radio programme the production number is
normally given here. The Recommended best practice is to use a unique
identifier to identify the physical source that has been used to create the
digital resource. In the case of a digitized analogue recording, it is the
recording used for digitization which is the source. For commercial
recordings the label and number is normally given here. Example: Eurovision
feed 2007-07-16T19:20:30.45+01:00</documentation>
</annotation>
</element>
<element name="language" type="ebucore:languageType" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation> Identifies languages and their use in the intellectual content
of the resource. Recommended best practice for the values of the Language
element is defined by RFC 5646. More contextual information can be provided
using the “note” attribute.</documentation>
</annotation>
</element>
<element name="relation" type="ebucore:relationType" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation> Recommended best practice is to reference the resource (to which
the current resource under description is related) by means of a string or
number conforming to a formal identification system. The Relation element is
used to show express a custom relation to another resource. A resource can
be identified by its title, or an identifier (possibly a URI). The related
item has its own separate metadata record. Relation is used to provide a
name, an identification number or ID, or a locator where the related item
can be found. The type of relation is defined a term like in the
https://www.ebu.ch/metadata/cs/ebu_HowRelatedCS.xml controlled vocabulary.
</documentation>
</annotation>
</element>
<element name="isRelatedTo" type="ebucore:relationType" minOccurs="0"
maxOccurs="unbounded">
<annotation>
<documentation> Recommended best practice is to reference the resource (to which
the current resource under description is related) by means of a string or
number conforming to a formal identification system. isRelatedTo is used to
show a generic relation of a resource with another resource. For example,
"IsPartOf" is used to show the relation between a part of a radio programme
and the whole programme or between a track and a record album. A resource
can be identified by its title, or an identifier (possibly a URI). The
related item has its own separate metadata record. Relation is used to
provide a name, an identification number or ID, or a locator where the
related item can be found.</documentation>
</annotation>
</element>
<element name="isNextInSequence" type="ebucore:relationType" minOccurs="0"
maxOccurs="unbounded">
<annotation>
<documentation>A relation use to link a resource to another following resource
in an ordered sequence</documentation>
</annotation>
</element>
<element name="followsInSequence" type="ebucore:relationType" minOccurs="0"
maxOccurs="unbounded">
<annotation>
<documentation>A relation use to link a resource to another preceding resource
in an ordered sequence</documentation>
</annotation>
</element>
<element name="isVersionOf" type="ebucore:relationType" minOccurs="0"
maxOccurs="unbounded">
<annotation>
<documentation> A reference to the resource that the current resource is a
version of </documentation>
</annotation>
</element>
<element name="hasVersion" type="ebucore:relationType" minOccurs="0"
maxOccurs="unbounded">
<annotation>
<documentation> A reference to another version of the resource </documentation>
</annotation>
</element>
<element name="isReplacedBy" type="ebucore:relationType" minOccurs="0"
maxOccurs="unbounded">
<annotation>
<documentation> A reference to a resource replacing the current resource
</documentation>
</annotation>
</element>
<element name="replaces" type="ebucore:relationType" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation> A reference to a resource that the current resource replaces
</documentation>
</annotation>
</element>
<element name="isRequiredBy" type="ebucore:relationType" minOccurs="0"
maxOccurs="unbounded">
<annotation>
<documentation> A reference to a resource requiring the current resource
</documentation>
</annotation>
</element>
<element name="requires" type="ebucore:relationType" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation> A reference to a resource that the current resource requires
</documentation>
</annotation>
</element>
<element name="isPartOf" type="ebucore:relationType" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation> A reference to a resource that the current resource is a part of
</documentation>
</annotation>
</element>
<element name="hasPart" type="ebucore:relationType" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation> A reference to a resource that forms part of the current
resource </documentation>
</annotation>
</element>
<element name="hasTrackPart" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation> An element to identify a part of a track by a title, a start
time and an end time in both the media source and media destination.
A timeline track part is a specific type of track part.</documentation>
</annotation>
<complexType>
<complexContent>
<extension base="ebucore:relationType">
<sequence>
<element name="trackPartTitle" type="ebucore:alternativeTitleType">
<annotation>
<documentation> To provide a title for a track part.
</documentation>
</annotation>
</element>
<element name="destinationId" type="anyURI" minOccurs="0">
<annotation>
<documentation> Tor provide an identifier associated with
the target resource. </documentation>
</annotation>
</element>
<element name="destinationStart" type="ebucore:timeType"
minOccurs="0">
<annotation>
<documentation> To provide a reference start time in the
target resource. </documentation>
</annotation>
</element>
<element name="destinationEnd" type="ebucore:timeType" minOccurs="0">
<annotation>
<documentation> To provide a reference end time in the
target resource. </documentation>
</annotation>
</element>
<element name="sourceId" type="anyURI" minOccurs="0">
<annotation>
<documentation> Tor provide an identifier associated with
the source. </documentation>
</annotation>
</element>
<element name="sourceStart" type="ebucore:timeType" minOccurs="0">
<annotation>
<documentation> To provide a reference start time at the
source. </documentation>
</annotation>
</element>
<element name="sourceEnd" type="ebucore:timeType" minOccurs="0">
<annotation>
<documentation> To provide a reference end time at the
source. </documentation>
</annotation>
</element>
</sequence>
</extension>
</complexContent>
</complexType>
</element>
<element name="isTrackPartOf" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation> An element to identify a part of a track by a title, a start
time and an end time in both the media source and media destination.
A timeline track part is a specific type of track part.</documentation>
</annotation>
<complexType>
<complexContent>
<extension base="ebucore:relationType">
<sequence>
<element name="trackPartTitle" type="ebucore:alternativeTitleType">
<annotation>
<documentation> To provide a title for a track part.
</documentation>
</annotation>
</element>
<element name="destinationId" type="anyURI" minOccurs="0">
<annotation>
<documentation> Tor provide an identifier associated with
the target resource. </documentation>
</annotation>
</element>
<element name="destinationStart" type="ebucore:timeType"
minOccurs="0">
<annotation>
<documentation> To provide a reference start time in the
target resource. </documentation>
</annotation>
</element>
<element name="destinationEnd" type="ebucore:timeType" minOccurs="0">
<annotation>
<documentation> To provide a reference end time in the
target resource. </documentation>
</annotation>
</element>
<element name="sourceId" type="anyURI" minOccurs="0">
<annotation>
<documentation> Tor provide an identifier associated with
the source. </documentation>
</annotation>
</element>
<element name="sourceStart" type="ebucore:timeType" minOccurs="0">
<annotation>
<documentation> To provide a reference start time at the
source. </documentation>
</annotation>
</element>
<element name="sourceEnd" type="ebucore:timeType" minOccurs="0">
<annotation>
<documentation> To provide a reference end time at the
source. </documentation>
</annotation>
</element>
</sequence>
</extension>
</complexContent>
</complexType>
</element>
<element name="references" type="ebucore:relationType" minOccurs="0"
maxOccurs="unbounded">
<annotation>
<documentation> A reference to a resource that the current resource references
</documentation>
</annotation>
</element>
<element name="isFormatOf" type="ebucore:relationType" minOccurs="0"
maxOccurs="unbounded">
<annotation>
<documentation> A reference to a resource with which the current resource shares
a format </documentation>
</annotation>
</element>
<element name="hasFormat" type="ebucore:relationType" minOccurs="0"
maxOccurs="unbounded">
<annotation>
<documentation> A format in which the resource is also available
</documentation>
</annotation>
</element>
<element name="isEpisodeOf" type="ebucore:relationType" minOccurs="0"
maxOccurs="unbounded">
<annotation>
<documentation> A reference to a series the current resource is an episode of
</documentation>
</annotation>
</element>
<element name="isSeasonOf" type="ebucore:relationType" minOccurs="0"
maxOccurs="unbounded">
<annotation>
<documentation>A reference to a series the current resource is a season of
</documentation>
</annotation>
</element>
<element name="hasEpisode" type="ebucore:relationType" minOccurs="0"
maxOccurs="unbounded">
<annotation>
<documentation> A reference to a series the current resource is an episode of
</documentation>
</annotation>
</element>
<element name="hasSeason" type="ebucore:relationType" minOccurs="0"
maxOccurs="unbounded">
<annotation>
<documentation>A reference to a series the current resource is a season of
</documentation>
</annotation>
</element>
<element name="hasSeries" type="ebucore:relationType" minOccurs="0"
maxOccurs="unbounded">
<annotation>
<documentation>A reference to a brand the current resource is a series of
</documentation>
</annotation>
</element>
<element name="isSeriesOf" type="ebucore:relationType" minOccurs="0"
maxOccurs="unbounded">
<annotation>
<documentation>A reference to a brand the current resource is a series of
</documentation>
</annotation>
</element>
<element name="isMemberOf" type="ebucore:relationType" minOccurs="0"
maxOccurs="unbounded">
<annotation>
<documentation> A reference to a group e.g. a brand, the current resource is an
member of </documentation>
</annotation>
</element>
<element name="hasMember" type="ebucore:relationType" minOccurs="0"
maxOccurs="unbounded">
<annotation>
<documentation> A reference to members of a group </documentation>
</annotation>
</element>
<element name="sameAs" type="ebucore:relationType" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation>To indicate that two resources are identical.</documentation>
</annotation>
</element>
<element name="hasParent" type="ebucore:relationType" minOccurs="0"
maxOccurs="unbounded">
<annotation>
<documentation> A reference to a Parent resource </documentation>
</annotation>
</element>
<element name="isParentOf" type="ebucore:relationType" minOccurs="0"
maxOccurs="unbounded">
<annotation>
<documentation> A reference to a Child resource </documentation>
</annotation>
</element>
<element name="hasChild" type="ebucore:relationType" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation> A reference to a Child resource </documentation>
</annotation>
</element>
<element name="isChildOf" type="ebucore:relationType" minOccurs="0"
maxOccurs="unbounded">
<annotation>
<documentation> A reference to a Parent resource </documentation>
</annotation>
</element>
<element name="hasMaster" type="ebucore:relationType" minOccurs="0"
maxOccurs="unbounded">
<annotation>
<documentation> A reference to a related Master resource </documentation>
</annotation>
</element>
<element name="isMasterOf" type="ebucore:relationType" minOccurs="0"
maxOccurs="unbounded">
<annotation>
<documentation> A reference to a resource derived from a Master </documentation>
</annotation>
</element>
<element name="isDerivedFrom" type="ebucore:relationType" minOccurs="0"
maxOccurs="unbounded">
<annotation>
<documentation> A reference to a parent resource from which the current resource was derived. This can be used for provenance purposes. </documentation>
</annotation>
</element>
<element name="hasManifestation" type="ebucore:manifestationType" minOccurs="0"
maxOccurs="unbounded">
<annotation>
<documentation>
A manifestation is the physical embodiment of work e.g. a tape, a file...
</documentation>
</annotation>
</element>
<element name="coverage" type="ebucore:coverageType" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation>Coverage is used to show various time and place aspects of the
subject of the content. Coverage will typically include spatial location (a
place name or geographic coordinates), temporal period (a period label,
date, or date range) or jurisdiction (such as a named administrative
entity). Recommended best practice is to select a value from a controlled
vocabulary (for example, the Thesaurus of Geographic Names) and that, where
appropriate, named places or time periods be used in preference to numeric
identifiers such as sets of coordinates or date ranges.</documentation>
</annotation>
</element>
<element name="rights" type="ebucore:rightsType" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation>An all-purpose field to identify information (rights management
statement or reference to a service providing such information e.g. via a
URL) about copyright, intellectual property rights or other property rights
held in and over a resource, stating whether access is open or restricted in
some way. If dates, times, territories and availability periods are
associated with a right, they should be included. If the Rights element is
absent, no assumptions can be made about the status of these and other
rights with respect to the resource.</documentation>
</annotation>
</element>
<element name="version" type="ebucore:versionType" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation xml:lang="en">UK Version, US Version, home video version, etc.
Mapping to Dublin Core would be made using a description element. There can
be mutiple type fo version references.</documentation>
</annotation>
</element>
<element name="publicationHistory" type="ebucore:publicationHistoryType" minOccurs="0"
maxOccurs="unbounded">
<annotation>
<documentation> To provide information on the publication history.
</documentation>
</annotation>
</element>
<element name="planning" type="ebucore:planningType" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation> To provide a planning. </documentation>
</annotation>
</element>
<element minOccurs="0" maxOccurs="unbounded" ref="dc:contributor">
<annotation>
<documentation> An element to provide rating values attributed by reviewers to
evaluate the media resource. </documentation>
</annotation>
</element>
<element name="audienceRating" type="ebucore:ratingType" minOccurs="0"
maxOccurs="unbounded">
<annotation>
<documentation> An element to define the audience rating for a media
resource.</documentation>
</annotation>
</element>
<element name="event" type="ebucore:eventType" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation> An element to define an event associated with a media
resource.</documentation>
</annotation>
</element>
<element name="artefact" type="ebucore:artefactType" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation> To identify and describe artefacts present in a media resource
or part of a media resource. </documentation>
</annotation>
</element>
<element name="animal" type="ebucore:animalType" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation> To identify and describe animals associated with a media resource. </documentation>
</annotation>
</element>
<element name="props" type="ebucore:propsType" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation> To identify and describe props present in a media resource or
part of a media resource. </documentation>
</annotation>
</element>
<element name="costume" type="ebucore:costumeType" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation> To identify and describe costume and wardrobe items present in a
media resource or part of a media resource. </documentation>
</annotation>
</element>
<element name="food" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation> To identify and describe food or derived products present in a
media resource or part of a media resource. </documentation>
</annotation>
<complexType>
<complexContent>
<extension base="ebucore:artefactType"/>
</complexContent>
</complexType>
</element>
<element name="textLine" type="ebucore:textLineType" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation> To provide text associated with a content, a scene or a part.
Additional information can be provided on the source of the text as well as
a relation to a contributor. </documentation>
</annotation>
</element>
<element name="emotion" type="ebucore:emotionType" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation> To identify emotions associated with a person or character
within a scene or a part. </documentation>
</annotation>
</element>
<element name="action" type="ebucore:actionType" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation> To identify actions associated with a person or character within
a scene or a part. </documentation>
</annotation>
</element>
<element name="part" type="ebucore:partType" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation>To identify parts/segments/fragments within the resource. See
http://www.movielabs.com/md/ratings/v2.2.5/html/Summary.html</documentation>
</annotation>
</element>
</choice>
</complexType>
<complexType name="manifestationType">
<sequence>
<element name="manifestationTitle" type="ebucore:titleType" minOccurs="0"
maxOccurs="unbounded"/>
<element name="manifestationId" type="ebucore:identifierType" minOccurs="0"
maxOccurs="unbounded"/>
<element name="manifestationDate" type="ebucore:dateType" minOccurs="0"
maxOccurs="unbounded"/>
<element name="manifestationPublicationHistory" type="ebucore:publicationHistoryType"
minOccurs="0" maxOccurs="unbounded"/>
</sequence>
<attributeGroup ref="ebucore:typeGroup"/>
<attributeGroup ref="ebucore:formatGroup"/>
<attribute name="manifestationId"/>
</complexType>
<complexType name="emotionType">
<sequence>
<annotation>
<documentation> To describe an emotion and establish a link to a person/character.
</documentation>
</annotation>
<element name="relatedAgent" type="ebucore:entityType">
<annotation>
<documentation> To identify the person/character associated with the emotion.
</documentation>
</annotation>
</element>
<element name="timestamp" type="ebucore:timeType">
<annotation>
<documentation> A timestamp to precisely define a time point when the emotion
was expressed.. </documentation>
</annotation>
</element>
</sequence>
<attributeGroup ref="ebucore:typeGroup">
<annotation>
<documentation> To identify the type of emotion. </documentation>
</annotation>
</attributeGroup>
</complexType>
<complexType name="actionType">
<sequence>
<annotation>
<documentation> To describe an action and establish a link to a person/character.
</documentation>
</annotation>
<element name="relatedAgent" type="ebucore:entityType">
<annotation>
<documentation> To identify the person/character associated with the ACtion.
</documentation>
</annotation>
</element>
<element name="timestamp" type="ebucore:timeType">
<annotation>
<documentation> A timestamp to precisely define a time point when the action
happened.. </documentation>
</annotation>
</element>
</sequence>
<attributeGroup ref="ebucore:typeGroup">
<annotation>
<documentation> To identify the type of action. </documentation>
</annotation>
</attributeGroup>
</complexType>
<complexType name="textLineType">
<sequence>
<element name="textLink" type="anyURI">
<annotation>
<documentation> A link to an external web resource containing the text.</documentation>
</annotation>
</element>
<element name="text" type="string">
<annotation>
<documentation> The text content.</documentation>
</annotation>
</element>
<element name="relatedAgent" type="ebucore:entityType">
<annotation>
<documentation>
A description of an agent referenced or associated with the text.
</documentation>
</annotation>
</element>
<element name="timestamp" type="ebucore:timeType">
<annotation>
<documentation> A timestamp to precisely define a time point when the text was
used. </documentation>
</annotation>
</element>
<element name="textLineBoxartefacttyPosition" minOccurs="0">
<annotation>
<documentation>
to describe the position of text on the screen.
</documentation>
</annotation>
<complexType>
<sequence>
<element name="leftTopCornerLineNumber" type="nonNegativeInteger" minOccurs="0">
<annotation>
<documentation>
To define the line number of the left top corner position of the text box.
</documentation>
</annotation>
</element>
<element name="leftTopCornerPixelNumber" type="nonNegativeInteger" minOccurs="0">
<annotation>
<documentation>
To define the pixel number of the left top corner position of the text box.
</documentation>
</annotation>
</element>
<element name="height" type="nonNegativeInteger" minOccurs="0">
<annotation>
<documentation>
The line number defining the height of the text box.
</documentation>
</annotation>
</element>
<element name="width" type="nonNegativeInteger" minOccurs="0">
<annotation>
<documentation>
The pixel number defining the width of the text box.
</documentation>
</annotation>
</element>
</sequence>
</complexType>
</element>
</sequence>
<attribute name="textLineId" type="string">
<annotation>
<documentation> An Id attributed to the text line </documentation>
</annotation>
</attribute>
<attribute name="order" type="string">
<annotation>
<documentation> The order in which text appears in the content/part/scene.
</documentation>
</annotation>
</attribute>
<attribute ref="xml:lang">
<annotation>
<documentation> The language used for the text line </documentation>
</annotation>
</attribute>
<attributeGroup ref="ebucore:typeGroup">
<annotation>
<documentation> To define the type / source of text e.g. speech to text
</documentation>
</annotation>
</attributeGroup>
</complexType>
<complexType name="artefactType">
<annotation>
<documentation> A complexType to describe artefacts.</documentation>
</annotation>
<sequence>
<element name="artefactName" type="ebucore:elementType" minOccurs="0"
maxOccurs="unbounded">
<annotation>
<documentation>
To provide a name for the artefact.
</documentation>
</annotation>
</element>
<element name="artefactModel" type="string" minOccurs="0">
<annotation>
<documentation>
To provide the model of the artefact.
</documentation>
</annotation>
</element>
<element name="artefactDescription" type="ebucore:elementType" minOccurs="0"
maxOccurs="unbounded">
<annotation>
<documentation>
To provide a description of the artefact.
</documentation>
</annotation>
</element>
<element name="artefactBrand" minOccurs="0">
<annotation>
<documentation>
To provide the brand of the artefact.
</documentation>
</annotation>
<complexType>
<simpleContent>
<extension base="string">
<attributeGroup ref="ebucore:typeGroup"/>
</extension>
</simpleContent>
</complexType>
</element>
<element name="artefacttype" minOccurs="0">
<annotation>
<documentation>
To provide the type of an artefact.
</documentation>
</annotation>
<complexType>
<simpleContent>
<extension base="string">
<attributeGroup ref="ebucore:typeGroup"/>
</extension>
</simpleContent>
</complexType>
</element>
<element name="artefactColour" type="string" minOccurs="0">
<annotation>
<documentation>
To provide the colour of the artefact.
</documentation>
</annotation>
</element>
<element name="artefactWeight" type="string" minOccurs="0">
<annotation>
<documentation>
To provide the weight of the artefact.
</documentation>
</annotation>
</element>
<element name="artefactReference" type="string" minOccurs="0">
<annotation>
<documentation>
To provide the reference associated with the artefact.
</documentation>
</annotation>
</element>
<element name="artefactPrice" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation>