-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathconformance_point_document.xsd
executable file
·585 lines (583 loc) · 33.5 KB
/
conformance_point_document.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
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema targetNamespace="http://www.archives.gov/NARAvideoMD/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.archives.gov/NARAvideoMD/" elementFormDefault="qualified">
<!--
To be resolved:
What is the namespace for NARAVideoMD?
Is NARAVideoMD the final name of the schema?
Is the ANALOGDIGITALFLAG attribute in or out? (it seems redundant to other data and possibly the scope of the standard)
I change the 'tool' element to 'codingHistory'.
Is file/files the appropriate name for the initial element? This implies the standard is restricted to file-based objects. We could use something more generic like object/objects.
Currently when a set of 'file' elements are grouped together in a 'files' element, then 'accessConsideration' and 'organization' may be used to describe the entire set of contained files to reduce redundancy. Are there other elements that could be used to describe an entire set of files rather than individual files only.
-->
<xsd:element name="NARAVIDEOMD" type="nara.video.type">
<xsd:annotation>
<xsd:documentation>NARAVIDEOMD: NARA AudioVisual Metadata Extension Schema. NARAVIDEOMD contains technical and process metadata that describes a digital video object.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:complexType name="nara.video.type">
<xsd:annotation>
<xsd:documentation>NARAVIDEOMD may either contain a 'file' or 'files'. The 'files' element is a container for multiple 'file' elements. Use 'files' only when a single media representation is comprised of multiple files.</xsd:documentation>
</xsd:annotation>
<xsd:choice>
<xsd:element name="files" type="files.type"/>
<xsd:element name="file" type="file.type"/>
</xsd:choice>
<xsd:attribute name="recordCreation" type="xsd:dateTime">
<xsd:annotation>
<xsd:documentation>This optional attribute is intended to store a timestamp referring to when the record was initially created.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="profile" type="xsd:string">
<xsd:annotation>
<xsd:documentation>This optional attribute may be use to identify </xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="version" type="xsd:string"/>
</xsd:complexType>
<xsd:complexType name="files.type">
<xsd:sequence>
<xsd:element name="file" type="file.type" maxOccurs="unbounded"/>
<xsd:element name="accessConsideration" type="access.consideration.type" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="organization" type="organization.type" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="file.type">
<xsd:annotation>
<xsd:documentation>A type for describing technical characteristics of a video file.</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="filename" type="xsd:string"/>
<xsd:element name="identifier" type="identifier.type" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="access" type="access.consideration.type" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="organization" type="organization.type" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="date" type="date.type" minOccurs="0" maxOccurs="unbounded"/>
<xsd:choice>
<xsd:annotation>
<xsd:documentation>Based on pbcore:instantiationPhysical / pbcore:instantiationDigital</xsd:documentation>
</xsd:annotation>
<xsd:element name="mimetype" type="xsd:string"/>
<xsd:element name="physicalFormat" type="xsd:string"/>
</xsd:choice>
<xsd:element name="duration" type="duration.type" minOccurs="0"/>
<xsd:element name="language" type="language.type" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="security" type="security.type" minOccurs="0"/>
<xsd:element name="size" type="size.type" minOccurs="0"/>
<xsd:element name="dataRate" type="datarate.type" minOccurs="0"/>
<xsd:element name="timecode" type="timecode.info.type" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="use" type="use.type" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="color" type="color.type" minOccurs="0"/>
<xsd:element name="frame" type="frame.type" minOccurs="0"/>
<xsd:element name="frameRate" type="framerate.type" minOccurs="0"/>
<xsd:element name="format" type="formatType" minOccurs="0"/>
<xsd:element name="location" type="location.type" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="checksum" type="checksum.type" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="sound" type="sound.type" minOccurs="0"/>
<xsd:choice minOccurs="0" maxOccurs="unbounded">
<xsd:element name="codec" type="codec.type"/>
<xsd:element name="track" type="track.type"/>
</xsd:choice>
<xsd:element name="captureHistory" type="captureHistoryType" minOccurs="0"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="track.type">
<xsd:sequence>
<xsd:element name="identifier" type="identifier.type" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="date" type="date.type" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="duration" type="duration.type" minOccurs="0"/>
<xsd:element name="language" type="language.type" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="size" type="size.type" minOccurs="0"/>
<xsd:element name="dataRate" type="datarate.type" minOccurs="0"/>
<xsd:element name="timecode" type="timecode.info.type" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="use" type="use.type" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="color" type="color.type" minOccurs="0"/>
<xsd:element name="frame" type="frame.type" minOccurs="0"/>
<xsd:element name="frameRate" type="framerate.type" minOccurs="0"/>
<xsd:element name="checksum" type="checksum.type" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="sound" type="sound.type" minOccurs="0"/>
<xsd:element name="codec" type="codec.type" minOccurs="0"/>
<xsd:element name="bitsPerSample" type="xsd:nonNegativeInteger" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>The number of bits of sample depth, e.g., 8, 24, etc.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="bitsPerPixelStored" type="xsd:decimal" minOccurs="0"/>
<xsd:element name="compressionRatio" type="xsd:decimal" minOccurs="0"/>
<xsd:element name="frameCount" type="xsd:nonNegativeInteger" minOccurs="0"/>
<xsd:element name="samplingRate" type="variable.rate.type" minOccurs="0"/>
<xsd:element name="samplingCount" type="xsd:nonNegativeInteger" minOccurs="0"/>
<xsd:element name="sampling" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation>The video sampling format used in a digital video
file. (in terms of luminance and chrominance), e.g., 4:2:0, 4:2:2,
2:4:4, etc.)</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="sampleCount" type="xsd:nonNegativeInteger" minOccurs="0"/>
<xsd:element name="signalFormat" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation>The signal format of a video source item e.g. NTSC, PAL, SECAM.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="num" type="xsd:string"/>
<xsd:attribute name="type" type="xsd:string"/>
</xsd:complexType>
<xsd:complexType name="codingHistoryType">
<xsd:annotation>
<xsd:documentation></xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="role" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation>The 'role' element defines the generic use or task performed by a given generation of the media or tool used in the processing of the media. Values may include: 'source object', 'playback device', 'capture device', 'capture software', 'operating system', etc.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="description" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation>A free text string for internal use to clarify technical aspects of the coding history record. This string may not contain commas (use semicolons instead) or line breaks.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="manufacturer" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation>The manufacturer of the tape, file, device, tool, software or piece of technology described in the coding history record.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="modelName" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation>The name of the model of the tape, file, device, tool, software or piece of technology described in the coding history record. For products use the commericial name of the product, for tape formats use the name of the physical format (suggested vocabulary: http://metadataregistry.org/concept/list/vocabulary_id/145.html)</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="serialNumber" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation>When applicable, this element may store the serial number of the object described in the coding history record.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="videoEncoding" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation>The codec identifier of the video encoding. It is recommended to express video encoding using the fourCC (four character code). See: http://www.fourcc.org/codecs.php.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="audioEncoding" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation>The codec identifier of the audio encoding. It is recommended to express video encoding using the twoCC (two character code) or fourCC (four character code).</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="videoBitDepth" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation>This element expresses the sampling size of the encoding video data. Express as the bit depth used per channel rather than per pixel.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="audioBitDepth" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation>This element expresses the sampling size of the encoding video data. Express as the bit depth used per channel rather than per stream.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="signal" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation>The 'signal' element describes any standardized audiovisual interface that is used to transmit the signal between tools or elements. Examples include 'SDI', 'HD-SDI', 'Component', 'Composite', 'IEEE 1394'.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="version" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation>The 'version' element expresses the version number of the software, tool, or object used in the process.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="captureHistoryType">
<xsd:annotation>
<xsd:documentation>info about the way the file was created</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="digitizationDate" type="xsd:string" minOccurs="0"/><!-- IDIT -->
<xsd:element name="digitizationEngineer" type="xsd:string" minOccurs="0"/><!-- ITCH -->
<xsd:element name="source" type="xsd:string"><!-- maps to ISRC, ISRF. to be continued -->
<xsd:annotation>
<xsd:documentation></xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="codingHistory" type="codingHistoryType" minOccurs="0" maxOccurs="unbounded"><!-- map to IMIT -->
<xsd:annotation>
<xsd:documentation></xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="processingActions" type="string.with.annotation.ref.type" minOccurs="0" maxOccurs="unbounded"><!-- map to IMIT -->
<xsd:annotation>
<xsd:documentation></xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="specificationCompliance" type="string.with.annotation.ref.type" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation></xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="validation" type="string.with.annotation.ref.type" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation></xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="formatType">
<xsd:sequence>
<xsd:element name="annotation" type="xsd:string" minOccurs="0"/>
<xsd:element name="creatorApp" type="string.version" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Name of the creator of the compression application.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="creatorLib" type="string.version" minOccurs="0"/>
<xsd:element name="creatorLibDate" type="xsd:string" minOccurs="0"/>
<xsd:element name="creatorLibSettings" type="xsd:string" minOccurs="0"/>
<xsd:element name="name" type="xsd:string"/>
<xsd:element name="encodingDate" type="xsd:string" minOccurs="0"/>
<xsd:element name="taggedDate" type="xsd:string" minOccurs="0"/>
<xsd:element name="commercialName" type="xsd:string" minOccurs="0"/>
<xsd:element name="mimetype" type="xsd:string" minOccurs="0"/>
<xsd:element name="profile" type="xsd:string" minOccurs="0"/>
<xsd:element name="settings" type="xsd:string" minOccurs="0"/>
<xsd:element name="version" type="xsd:string" minOccurs="0"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="codec.type">
<xsd:complexContent>
<xsd:extension base="formatType">
<xsd:sequence>
<xsd:element name="codecID" type="xsd:string" minOccurs="0"/>
<xsd:element name="channelCount" type="xsd:nonNegativeInteger" minOccurs="0"/>
<xsd:element name="endianness" type="xsd:string" minOccurs="0"/>
<xsd:element name="quality" type="quality.type" minOccurs="0"/>
<xsd:element name="scanType" type="xsd:string" minOccurs="0"/>
<xsd:element name="scanOrder" type="xsd:string" minOccurs="0"/>
<xsd:element name="sign" type="sign.type" minOccurs="0"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="string.version">
<xsd:simpleContent>
<xsd:extension base="xsd:string">
<xsd:attribute name="version"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<xsd:complexType name="string.other">
<xsd:simpleContent>
<xsd:extension base="xsd:string">
<xsd:attribute name="other">
<xsd:annotation>
<xsd:documentation>Denotes a value not contained in a restrictive vocabulary when the value is set to 'Other'.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<xsd:complexType name="string.other.type">
<xsd:simpleContent>
<xsd:extension base="xsd:string">
<xsd:attribute name="other">
<xsd:annotation>
<xsd:documentation>Denotes a value not contained in a restrictive vocabulary when the value is set to 'Other'.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="type"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<xsd:complexType name="variable.rate.type">
<xsd:simpleContent>
<xsd:extension base="xsd:decimal">
<xsd:attribute name="maximum" type="xsd:decimal"/>
<xsd:attribute name="minimum" type="xsd:decimal"/>
<xsd:attribute name="nominal" type="xsd:decimal">
<xsd:annotation>
<xsd:documentation>The nominal attribute is used to express any nominal value of rate expressed within the file (which may not be the actually rate), such as a nominal data rate expressed in the header of an mpeg2.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="mode">
<xsd:annotation>
<xsd:documentation>Indicator that the measurement is fixed or variable.</xsd:documentation>
</xsd:annotation>
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="Fixed"/>
<xsd:enumeration value="Variable"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<xsd:complexType name="identifier.type">
<xsd:simpleContent>
<xsd:extension base="string.with.annotation.ref.type">
<xsd:annotation>
<xsd:documentation>The type of tracking code, e.g., system number, actual shelf numbers, bar-code, file identifier, track identifier, etc. Use the type attribute to declare the source or authority of the identifier.</xsd:documentation>
<xsd:documentation>Based on pbcore:instantiationIdentifer / pbcore:essenceTrackIdentifier</xsd:documentation>
</xsd:annotation>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<xsd:complexType name="date.type">
<xsd:annotation>
<xsd:documentation>For management of any dates associated with the file, including creation or modification dates or dates embedded within the file.</xsd:documentation>
<xsd:documentation>Based on pbcore:instantiationDate</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:extension base="xsd:dateTime">
<xsd:attribute name="annotation" type="xsd:string"/>
<xsd:attribute name="type" type="xsd:string"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<xsd:complexType name="duration.type">
<xsd:annotation>
<xsd:documentation>Elapsed time of the entire file, expressed using ISO 8601 syntax; see http://www.w3.org/TR/NOTE-datetime.</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:extension base="xsd:string"/>
</xsd:simpleContent>
</xsd:complexType>
<xsd:complexType name="language.type">
<xsd:simpleContent>
<xsd:extension base="xsd:string"/>
</xsd:simpleContent>
</xsd:complexType>
<xsd:complexType name="security.type">
<xsd:annotation>
<xsd:documentation>Type of security applied to a digital video file e.g. password, encryption, hidden, etc.... </xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:extension base="xsd:string"/>
</xsd:simpleContent>
</xsd:complexType>
<xsd:complexType name="size.type">
<xsd:annotation>
<xsd:documentation>The size of the file or track measured in bytes.</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:extension base="xsd:nonNegativeInteger"/>
</xsd:simpleContent>
</xsd:complexType>
<xsd:complexType name="datarate.type">
<xsd:simpleContent>
<xsd:extension base="variable.rate.type">
<xsd:annotation>
<xsd:documentation>Data rate of the compressed data over time expressed in bytes per second.</xsd:documentation>
</xsd:annotation>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<xsd:complexType name="timecode.info.type">
<xsd:annotation>
<xsd:documentation>Storage of the initial timecode value (if present).</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:extension base="xsd:string">
<xsd:attribute name="recordMethod" type="xsd:string">
<xsd:annotation>
<xsd:documentation>Method for recording timecode on the video source item</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="type" type="xsd:string">
<xsd:annotation>
<xsd:documentation>Type of timecode recorded on video source item, e.g., SMPTE dropframe, SMPTE nondropframe, etc..</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<xsd:complexType name="use.type"><!-- updated with NARA vocab -->
<xsd:annotation>
<xsd:documentation>Use of the digital video file, e.g. Master, Service, Preview, etc..... Use Other if none of the preceding values pertains and clarify the use in the otherUse element</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:restriction base="string.other">
<xsd:enumeration value="Preservation Master"/>
<xsd:enumeration value="Reproduction Master"/>
<xsd:enumeration value="Distribution Copy - ARC/OPA"/>
<xsd:enumeration value="Other"/>
<xsd:enumeration value="Master"/>
<xsd:enumeration value="Service"/>
<xsd:enumeration value="Service_High"/>
<xsd:enumeration value="Service_Low"/>
<xsd:enumeration value="Preview"/>
<xsd:enumeration value="Other"/>
</xsd:restriction>
</xsd:simpleContent>
</xsd:complexType>
<xsd:complexType name="color.type">
<xsd:annotation>
<xsd:documentation>Presented color of the digital video file. Use Other if none of the preceding values pertains and clarify the color in the otherColor element</xsd:documentation>
<xsd:documentation>The definition and vocabulary are adopted from PBCore.</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:restriction base="string.other">
<xsd:enumeration value="B&W"/>
<xsd:enumeration value="Color"/>
<xsd:enumeration value="Grayscale"/>
<xsd:enumeration value="B&W with grayscale sequences"/>
<xsd:enumeration value="B&W with color sequences"/>
<xsd:enumeration value="Grayscale with B&W sequences"/>
<xsd:enumeration value="Grayscale with color sequences"/>
<xsd:enumeration value="Color with B&W sequences"/>
<xsd:enumeration value="Color with grayscale sequences"/>
<xsd:enumeration value="Other"/>
</xsd:restriction>
</xsd:simpleContent>
</xsd:complexType>
<xsd:complexType name="frame.type">
<xsd:annotation>
<xsd:documentation>frame.type: Complex Type for recording the size of a frame in a digital video file. frame.type has 6 elements pixelsHorizontal, pixelsVertical, PAR, DAR and rotation.</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="pixelsHorizontal" type="xsd:nonNegativeInteger" minOccurs="0">
<xsd:annotation>
<xsd:documentation>The horizontal dimension of a frame in pixels.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="pixelsVertical" type="xsd:nonNegativeInteger" minOccurs="0">
<xsd:annotation>
<xsd:documentation>The vertical dimension of a frame in pixels.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="PAR" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Pixel aspect ratio (present as a ratio or decimal).</xsd:documentation></xsd:annotation>
</xsd:element>
<xsd:element name="DAR" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Display aspect ratio (present as a ratio or decimal such as 4/3 or 6/9 or 1.33333).</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="rotation" type="xsd:decimal" minOccurs="0">
<xsd:annotation>
<xsd:documentation>The rotation in a decimal value (express of a percentage of clockwise rotation).</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="framerate.type">
<xsd:simpleContent>
<xsd:restriction base="variable.rate.type">
<xsd:annotation>
<xsd:documentation>The number of frames per second at which the video source item was digitized.</xsd:documentation>
</xsd:annotation>
</xsd:restriction>
</xsd:simpleContent>
</xsd:complexType>
<xsd:complexType name="location.type">
<xsd:annotation>
<xsd:documentation>Location of the referenced file</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:restriction base="string.other.type">
<!-- move this list to restrict the location@type not the location
<xsd:enumeration value="URN"/>
<xsd:enumeration value="URL"/>
<xsd:enumeration value="PURL"/>
<xsd:enumeration value="HANDLE"/>
<xsd:enumeration value="DOI"/>
<xsd:enumeration value="OTHER"/>
-->
</xsd:restriction>
</xsd:simpleContent>
</xsd:complexType>
<xsd:simpleType name="sound.type">
<xsd:annotation>
<xsd:documentation>Indicator of the presence of sound in the file or track. The sound field indicates whether a representation of sound is present in a file or track; for example, a 4 track DV file may have 4 audio tracks but only have a representative sound recording on the first two tracks and no audio recording on the last two tracks.</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="Yes"/>
<xsd:enumeration value="No"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="quality.type">
<xsd:restriction base="xsd:NMTOKEN">
<xsd:enumeration value="Lossless"/>
<xsd:enumeration value="Lossy"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="sign.type">
<xsd:annotation>
<xsd:documentation>Order of bit significance in a byte from left to right.</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="Little"/>
<xsd:enumeration value="Big"/>
<xsd:enumeration value="Mixed"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:complexType name="string.with.annotation.ref.type">
<xsd:simpleContent>
<xsd:extension base="xsd:string">
<xsd:attribute name="annotation" type="xsd:string"/>
<xsd:attribute name="ref" type="xsd:string"/>
<xsd:attribute name="type" type="xsd:string"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<xsd:complexType name="checksum.type">
<xsd:annotation>
<xsd:documentation>checksum.type: Complex Type for recording the type of messageDigest used for a file. checksum.</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:extension base="xsd:string">
<xsd:attribute name="algorithm" type="xsd:string" use="required">
<xsd:annotation>
<xsd:documentation>Type of messageDigest used.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="dateTime" type="xsd:dateTime">
<xsd:annotation>
<xsd:documentation>The datetime when the checksum was calculated and applied</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<xsd:complexType name="access.consideration.type">
<xsd:annotation>
<xsd:documentation></xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="type" type="xsd:string" minOccurs="0"/>
<xsd:element name="contact_reference" type="xsd:string" minOccurs="0"/>
<xsd:element name="statement" type="xsd:string" minOccurs="0"/>
<xsd:element name="comment" type="xsd:string" minOccurs="0"/>
<xsd:element name="expiration_date" type="xsd:string" minOccurs="0"/>
<xsd:element name="documentation_date" type="xsd:string" minOccurs="0"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="organization.type">
<xsd:annotation>
<xsd:documentation></xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="organization_main" minOccurs="1">
<xsd:annotation>
<xsd:documentation></xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:element name="name" type="xsd:string"/>
<xsd:element name="role" type="xsd:string" minOccurs="0"/>
<xsd:element name="role_note" type="xsd:string" minOccurs="0"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="organization_division" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation></xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:element name="name" type="xsd:string"/>
<xsd:element name="role" type="xsd:string" minOccurs="0"/>
<xsd:element name="role_note" type="xsd:string" minOccurs="0"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:schema>