xsd-reader 0.0.1 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +14 -0
- data/README.md +5 -4
- data/lib/xsd_reader/choice.rb +0 -3
- data/lib/xsd_reader/complex_content.rb +5 -0
- data/lib/xsd_reader/element.rb +2 -6
- data/lib/xsd_reader/extension.rb +8 -0
- data/lib/xsd_reader/import.rb +56 -0
- data/lib/xsd_reader/schema.rb +35 -0
- data/lib/xsd_reader/shared.rb +95 -58
- data/lib/xsd_reader/simple_type.rb +7 -0
- data/lib/xsd_reader/xml.rb +35 -2
- data/lib/xsd_reader.rb +3 -0
- data/spec/attribute_spec.rb +12 -12
- data/spec/element_spec.rb +28 -25
- data/spec/examples/ddex-v32/ddex.xsd +2116 -0
- data/spec/examples/ddex-v32/ddexC.xsd +5240 -0
- data/spec/examples/ddex-v32/ern-main.xsd +2980 -0
- data/spec/examples/ddex-v32/iso3166a2.xsd +1230 -0
- data/spec/examples/ddex-v32/iso4217a.xsd +900 -0
- data/spec/examples/ddex-v32/iso639a2.xsd +935 -0
- data/spec/examples/ddex-v36/avs.xsd +11257 -0
- data/spec/examples/{ddex-ern-v36.xsd → ddex-v36/ddex-ern-v36.xsd} +0 -0
- data/spec/extension_spec.rb +29 -0
- data/spec/import_spec.rb +48 -0
- data/spec/schema_spec.rb +63 -9
- data/spec/xml_spec.rb +7 -7
- data/spec/xsd_reader_spec.rb +172 -39
- data/xsd-reader.gemspec +2 -1
- metadata +28 -2
@@ -0,0 +1,2116 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<xs:schema attributeFormDefault="unqualified" elementFormDefault="unqualified" targetNamespace="http://ddex.net/xml/20100712/ddex" xmlns:ddex="http://ddex.net/xml/20100712/ddex" xmlns:iso3166a2="http://ddex.net/xml/20100712/iso3166a2" xmlns:iso4217a="http://ddex.net/xml/20100712/iso4217a" xmlns:iso639a2="http://ddex.net/xml/20100712/iso639a2" xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
3
|
+
<xs:import namespace="http://ddex.net/xml/20100712/iso3166a2" schemaLocation="iso3166a2.xsd" />
|
4
|
+
<xs:import namespace="http://ddex.net/xml/20100712/iso4217a" schemaLocation="iso4217a.xsd" />
|
5
|
+
<xs:import namespace="http://ddex.net/xml/20100712/iso639a2" schemaLocation="iso639a2.xsd" />
|
6
|
+
<xs:annotation>
|
7
|
+
<xs:documentation>(c) 2006-2010 DDEX, LLC</xs:documentation>
|
8
|
+
</xs:annotation>
|
9
|
+
<xs:simpleType name="AdministratingRecordCompanyRole">
|
10
|
+
<xs:annotation>
|
11
|
+
<xs:documentation>A role played by a Party responsible for administering Rights in a Resource or a Release.</xs:documentation>
|
12
|
+
</xs:annotation>
|
13
|
+
<xs:restriction base="xs:string">
|
14
|
+
<xs:enumeration value="DesignatedDsrMessageRecipient" />
|
15
|
+
<xs:enumeration value="RightsAdministrator" />
|
16
|
+
<xs:enumeration value="RoyaltyAdministrator" />
|
17
|
+
<xs:enumeration value="Unknown" />
|
18
|
+
</xs:restriction>
|
19
|
+
</xs:simpleType>
|
20
|
+
<xs:simpleType name="ArtistRole">
|
21
|
+
<xs:annotation>
|
22
|
+
<xs:documentation>A role of a principal Contributor in relation to a Performance or a Fixation.</xs:documentation>
|
23
|
+
</xs:annotation>
|
24
|
+
<xs:restriction base="xs:string">
|
25
|
+
<xs:enumeration value="Actor" />
|
26
|
+
<xs:enumeration value="Adapter" />
|
27
|
+
<xs:enumeration value="Architect" />
|
28
|
+
<xs:enumeration value="Arranger" />
|
29
|
+
<xs:enumeration value="Artist" />
|
30
|
+
<xs:enumeration value="AssociatedPerformer" />
|
31
|
+
<xs:enumeration value="Author" />
|
32
|
+
<xs:enumeration value="Band" />
|
33
|
+
<xs:enumeration value="Cartoonist" />
|
34
|
+
<xs:enumeration value="Choir" />
|
35
|
+
<xs:enumeration value="Choreographer" />
|
36
|
+
<xs:enumeration value="Composer" />
|
37
|
+
<xs:enumeration value="ComposerLyricist" />
|
38
|
+
<xs:enumeration value="ComputerGraphicCreator" />
|
39
|
+
<xs:enumeration value="Conductor" />
|
40
|
+
<xs:enumeration value="Contributor" />
|
41
|
+
<xs:enumeration value="Designer" />
|
42
|
+
<xs:enumeration value="Director" />
|
43
|
+
<xs:enumeration value="Ensemble" />
|
44
|
+
<xs:enumeration value="FeaturedArtist" />
|
45
|
+
<xs:enumeration value="FilmDirector" />
|
46
|
+
<xs:enumeration value="GraphicArtist" />
|
47
|
+
<xs:enumeration value="GraphicDesigner" />
|
48
|
+
<xs:enumeration value="Journalist" />
|
49
|
+
<xs:enumeration value="Librettist" />
|
50
|
+
<xs:enumeration value="Lyricist" />
|
51
|
+
<xs:enumeration value="MainArtist" />
|
52
|
+
<xs:enumeration value="MusicPublisher" />
|
53
|
+
<xs:enumeration value="NonLyricAuthor" />
|
54
|
+
<xs:enumeration value="Orchestra" />
|
55
|
+
<xs:enumeration value="OriginalPublisher" />
|
56
|
+
<xs:enumeration value="Painter" />
|
57
|
+
<xs:enumeration value="Photographer" />
|
58
|
+
<xs:enumeration value="PhotographyDirector" />
|
59
|
+
<xs:enumeration value="Playwright" />
|
60
|
+
<xs:enumeration value="PrimaryMusician" />
|
61
|
+
<xs:enumeration value="Producer" />
|
62
|
+
<xs:enumeration value="Programmer" />
|
63
|
+
<xs:enumeration value="ScreenplayAuthor" />
|
64
|
+
<xs:enumeration value="Soloist" />
|
65
|
+
<xs:enumeration value="StudioPersonnel" />
|
66
|
+
<xs:enumeration value="SubArranger" />
|
67
|
+
<xs:enumeration value="SubPublisher" />
|
68
|
+
<xs:enumeration value="SubstitutedPublisher" />
|
69
|
+
<xs:enumeration value="Translator" />
|
70
|
+
<xs:enumeration value="Unknown" />
|
71
|
+
<xs:enumeration value="UserDefined" />
|
72
|
+
</xs:restriction>
|
73
|
+
</xs:simpleType>
|
74
|
+
<xs:simpleType name="AudioCodecType">
|
75
|
+
<xs:annotation>
|
76
|
+
<xs:documentation>A Type of AudioCodec.</xs:documentation>
|
77
|
+
</xs:annotation>
|
78
|
+
<xs:restriction base="xs:string">
|
79
|
+
<xs:enumeration value="AAC" />
|
80
|
+
<xs:enumeration value="ADPCM" />
|
81
|
+
<xs:enumeration value="MP2" />
|
82
|
+
<xs:enumeration value="MP3" />
|
83
|
+
<xs:enumeration value="PCM" />
|
84
|
+
<xs:enumeration value="QCELP" />
|
85
|
+
<xs:enumeration value="RealAudio" />
|
86
|
+
<xs:enumeration value="Unknown" />
|
87
|
+
<xs:enumeration value="UserDefined" />
|
88
|
+
<xs:enumeration value="Vorbis" />
|
89
|
+
<xs:enumeration value="WMA" />
|
90
|
+
</xs:restriction>
|
91
|
+
</xs:simpleType>
|
92
|
+
<xs:simpleType name="CalculationType">
|
93
|
+
<xs:annotation>
|
94
|
+
<xs:documentation>A Type of Calculation used to determine an actual Amount paid.</xs:documentation>
|
95
|
+
</xs:annotation>
|
96
|
+
<xs:restriction base="xs:string" />
|
97
|
+
</xs:simpleType>
|
98
|
+
<xs:simpleType name="CarrierType">
|
99
|
+
<xs:annotation>
|
100
|
+
<xs:documentation>A Type of Carrier used for a Fixation.</xs:documentation>
|
101
|
+
</xs:annotation>
|
102
|
+
<xs:restriction base="xs:string">
|
103
|
+
<xs:enumeration value="12InchDiscoSingleRemix" />
|
104
|
+
<xs:enumeration value="33rpm10InchLP" />
|
105
|
+
<xs:enumeration value="33rpm10InchSingle" />
|
106
|
+
<xs:enumeration value="33rpm12InchLP" />
|
107
|
+
<xs:enumeration value="33rpm12InchLp20Tracks" />
|
108
|
+
<xs:enumeration value="33rpm12InchMaxiSingle" />
|
109
|
+
<xs:enumeration value="33rpm12InchSingle" />
|
110
|
+
<xs:enumeration value="33rpm7InchLP" />
|
111
|
+
<xs:enumeration value="33rpm7InchSingle" />
|
112
|
+
<xs:enumeration value="45rpm10InchLP" />
|
113
|
+
<xs:enumeration value="45rpm10InchMaxiSingle" />
|
114
|
+
<xs:enumeration value="45rpm10InchSingle" />
|
115
|
+
<xs:enumeration value="45rpm12InchLP" />
|
116
|
+
<xs:enumeration value="45rpm12InchMaxiSingle" />
|
117
|
+
<xs:enumeration value="45rpm12InchSingle" />
|
118
|
+
<xs:enumeration value="45rpm7InchEP" />
|
119
|
+
<xs:enumeration value="45rpm7InchSingle" />
|
120
|
+
<xs:enumeration value="7InchMaxiSingleRemix" />
|
121
|
+
<xs:enumeration value="BluRay" />
|
122
|
+
<xs:enumeration value="CD" />
|
123
|
+
<xs:enumeration value="CdCompilation" />
|
124
|
+
<xs:enumeration value="CdEp" />
|
125
|
+
<xs:enumeration value="CdEpEnhanced" />
|
126
|
+
<xs:enumeration value="CdExtraCompilation" />
|
127
|
+
<xs:enumeration value="CdExtraEP" />
|
128
|
+
<xs:enumeration value="CdExtraLP" />
|
129
|
+
<xs:enumeration value="CdExtraMaxiRemix" />
|
130
|
+
<xs:enumeration value="CdExtraMaxiSingle" />
|
131
|
+
<xs:enumeration value="CdExtraSingle" />
|
132
|
+
<xs:enumeration value="CdExtraSingle2Tracks" />
|
133
|
+
<xs:enumeration value="CdLp" />
|
134
|
+
<xs:enumeration value="CdLp5Inch" />
|
135
|
+
<xs:enumeration value="CdLpEnhanced" />
|
136
|
+
<xs:enumeration value="CdLpPlusCdVideo" />
|
137
|
+
<xs:enumeration value="CdLpPlusDvdAudio" />
|
138
|
+
<xs:enumeration value="CdLpPlusDvdVideo" />
|
139
|
+
<xs:enumeration value="CdLpPlusWeb" />
|
140
|
+
<xs:enumeration value="CdMaxiSingle" />
|
141
|
+
<xs:enumeration value="CdMaxiSingle3Inch" />
|
142
|
+
<xs:enumeration value="CdMaxiSingleEnhanced" />
|
143
|
+
<xs:enumeration value="CdMaxiSingleRemix" />
|
144
|
+
<xs:enumeration value="CdPlusCdBonus" />
|
145
|
+
<xs:enumeration value="CdPlusDvdBonus" />
|
146
|
+
<xs:enumeration value="CdRom" />
|
147
|
+
<xs:enumeration value="CdSingle" />
|
148
|
+
<xs:enumeration value="CdSingle3Inch" />
|
149
|
+
<xs:enumeration value="CdSingle5Inch" />
|
150
|
+
<xs:enumeration value="CdVideo5LpNTSC" />
|
151
|
+
<xs:enumeration value="CdVideo5LpPAL" />
|
152
|
+
<xs:enumeration value="CdVideoAudioCompatible" />
|
153
|
+
<xs:enumeration value="CombiPack" />
|
154
|
+
<xs:enumeration value="DCC" />
|
155
|
+
<xs:enumeration value="DccCompilation" />
|
156
|
+
<xs:enumeration value="DualDisc" />
|
157
|
+
<xs:enumeration value="DVD" />
|
158
|
+
<xs:enumeration value="DvdAudio" />
|
159
|
+
<xs:enumeration value="DvdAudio5MaxiSingle" />
|
160
|
+
<xs:enumeration value="DvdAudioLP" />
|
161
|
+
<xs:enumeration value="DvdAudioSingle" />
|
162
|
+
<xs:enumeration value="DvdRom" />
|
163
|
+
<xs:enumeration value="DvdSingle" />
|
164
|
+
<xs:enumeration value="DvdVideo" />
|
165
|
+
<xs:enumeration value="DvdVideo5MaxiSingleNTSC" />
|
166
|
+
<xs:enumeration value="DvdVideo5MaxiSinglePAL" />
|
167
|
+
<xs:enumeration value="DvdVideo5SingleNTSC" />
|
168
|
+
<xs:enumeration value="DvdVideo5SinglePAL" />
|
169
|
+
<xs:enumeration value="DvdVideoLpNTSC" />
|
170
|
+
<xs:enumeration value="DvdVideoLpPAL" />
|
171
|
+
<xs:enumeration value="DvdVideoLpPlusCdLpOrCdSingle" />
|
172
|
+
<xs:enumeration value="FanPack" />
|
173
|
+
<xs:enumeration value="HdDvdVideoLp" />
|
174
|
+
<xs:enumeration value="LaserDiscLp12InchNTSC" />
|
175
|
+
<xs:enumeration value="LpCompIdenticalToCdComp" />
|
176
|
+
<xs:enumeration value="LpCompilation" />
|
177
|
+
<xs:enumeration value="LpIdenticalToCD" />
|
178
|
+
<xs:enumeration value="MC" />
|
179
|
+
<xs:enumeration value="McCompIdenticalToCdComp" />
|
180
|
+
<xs:enumeration value="McCompilation" />
|
181
|
+
<xs:enumeration value="McDoubleLP" />
|
182
|
+
<xs:enumeration value="McEP" />
|
183
|
+
<xs:enumeration value="McIdenticalToCD" />
|
184
|
+
<xs:enumeration value="McLP" />
|
185
|
+
<xs:enumeration value="McMaxiSingle" />
|
186
|
+
<xs:enumeration value="McRemix" />
|
187
|
+
<xs:enumeration value="McSingle" />
|
188
|
+
<xs:enumeration value="McSingleIdenticalToCDS" />
|
189
|
+
<xs:enumeration value="MemoryDeviceAudioLP" />
|
190
|
+
<xs:enumeration value="MemoryDeviceMixLP" />
|
191
|
+
<xs:enumeration value="MemoryDeviceVideoLP" />
|
192
|
+
<xs:enumeration value="Merchandise" />
|
193
|
+
<xs:enumeration value="MiniDisc" />
|
194
|
+
<xs:enumeration value="MiniDiscCompilation" />
|
195
|
+
<xs:enumeration value="MiniDiscEP" />
|
196
|
+
<xs:enumeration value="MiniDiscMaxiRemix" />
|
197
|
+
<xs:enumeration value="MiniDiscSingleMaxiSingle" />
|
198
|
+
<xs:enumeration value="PrePaidCard" />
|
199
|
+
<xs:enumeration value="SACD" />
|
200
|
+
<xs:enumeration value="SacdCompilation" />
|
201
|
+
<xs:enumeration value="SacdLpStereo" />
|
202
|
+
<xs:enumeration value="SacdLpStereoCdAudio" />
|
203
|
+
<xs:enumeration value="SacdLpStereoSurround" />
|
204
|
+
<xs:enumeration value="SacdLpStereoSurroundCdAudio" />
|
205
|
+
<xs:enumeration value="SacdLpSurroundCdAudio" />
|
206
|
+
<xs:enumeration value="SacdPlusDvdVideo" />
|
207
|
+
<xs:enumeration value="VhsNTSC" />
|
208
|
+
<xs:enumeration value="VhsPAL" />
|
209
|
+
<xs:enumeration value="VhsPlusCdLp" />
|
210
|
+
<xs:enumeration value="VhsSECAM" />
|
211
|
+
</xs:restriction>
|
212
|
+
</xs:simpleType>
|
213
|
+
<xs:simpleType name="CodingType">
|
214
|
+
<xs:annotation>
|
215
|
+
<xs:documentation>A Type of coding used to encode a Resource.</xs:documentation>
|
216
|
+
</xs:annotation>
|
217
|
+
<xs:restriction base="xs:string">
|
218
|
+
<xs:enumeration value="Lossless" />
|
219
|
+
<xs:enumeration value="Lossy" />
|
220
|
+
</xs:restriction>
|
221
|
+
</xs:simpleType>
|
222
|
+
<xs:simpleType name="CollectionCollectionReference">
|
223
|
+
<xs:annotation>
|
224
|
+
<xs:documentation>A Reference to a Collection which is contained within a specific Collection.</xs:documentation>
|
225
|
+
</xs:annotation>
|
226
|
+
<xs:restriction base="xs:IDREF">
|
227
|
+
<xs:pattern value="X[\d\-_a-zA-Z]+" />
|
228
|
+
</xs:restriction>
|
229
|
+
</xs:simpleType>
|
230
|
+
<xs:simpleType name="CollectionReference">
|
231
|
+
<xs:annotation>
|
232
|
+
<xs:documentation>A Reference to a Collection.</xs:documentation>
|
233
|
+
</xs:annotation>
|
234
|
+
<xs:restriction base="xs:ID">
|
235
|
+
<xs:pattern value="X[\d\-_a-zA-Z]+" />
|
236
|
+
</xs:restriction>
|
237
|
+
</xs:simpleType>
|
238
|
+
<xs:simpleType name="CollectionResourceReference">
|
239
|
+
<xs:annotation>
|
240
|
+
<xs:documentation>A Reference to a Resource which is contained within a specific Collection.</xs:documentation>
|
241
|
+
</xs:annotation>
|
242
|
+
<xs:restriction base="xs:IDREF">
|
243
|
+
<xs:pattern value="A[\d\-_a-zA-Z]+" />
|
244
|
+
</xs:restriction>
|
245
|
+
</xs:simpleType>
|
246
|
+
<xs:simpleType name="CollectionType">
|
247
|
+
<xs:annotation>
|
248
|
+
<xs:documentation>A Type of Collection.</xs:documentation>
|
249
|
+
</xs:annotation>
|
250
|
+
<xs:restriction base="xs:string">
|
251
|
+
<xs:enumeration value="AudioChapter" />
|
252
|
+
<xs:enumeration value="Episode" />
|
253
|
+
<xs:enumeration value="MedleySegment" />
|
254
|
+
<xs:enumeration value="PotpourriSegment" />
|
255
|
+
<xs:enumeration value="Season" />
|
256
|
+
<xs:enumeration value="Series" />
|
257
|
+
<xs:enumeration value="VideoChapter" />
|
258
|
+
</xs:restriction>
|
259
|
+
</xs:simpleType>
|
260
|
+
<xs:simpleType name="CommercialModelType">
|
261
|
+
<xs:annotation>
|
262
|
+
<xs:documentation>A Type of CommercialModel (e.g. SubscriptionModel and PayAsYouGoModel). The CommercialModelType indicates how a Consumer pays for a Service or Release.</xs:documentation>
|
263
|
+
</xs:annotation>
|
264
|
+
<xs:restriction base="xs:string">
|
265
|
+
<xs:enumeration value="AdvertisementSupportedModel" />
|
266
|
+
<xs:enumeration value="AsPerContract" />
|
267
|
+
<xs:enumeration value="FreeOfChargeModel" />
|
268
|
+
<xs:enumeration value="PayAsYouGoModel" />
|
269
|
+
<xs:enumeration value="SubscriptionModel" />
|
270
|
+
<xs:enumeration value="Unknown" />
|
271
|
+
<xs:enumeration value="UserDefined" />
|
272
|
+
</xs:restriction>
|
273
|
+
</xs:simpleType>
|
274
|
+
<xs:simpleType name="CreationType">
|
275
|
+
<xs:annotation>
|
276
|
+
<xs:documentation>A Type of Creation.</xs:documentation>
|
277
|
+
</xs:annotation>
|
278
|
+
<xs:restriction base="xs:string">
|
279
|
+
<xs:enumeration value="MusicalWork" />
|
280
|
+
<xs:enumeration value="Release" />
|
281
|
+
<xs:enumeration value="Resource" />
|
282
|
+
</xs:restriction>
|
283
|
+
</xs:simpleType>
|
284
|
+
<xs:simpleType name="CueOrigin">
|
285
|
+
<xs:annotation>
|
286
|
+
<xs:documentation>A Type of Cue according to its origin.</xs:documentation>
|
287
|
+
</xs:annotation>
|
288
|
+
<xs:restriction base="xs:string">
|
289
|
+
<xs:enumeration value="LibraryMusic" />
|
290
|
+
<xs:enumeration value="PreexistingMusic" />
|
291
|
+
<xs:enumeration value="SpeciallyCommissionedMusic" />
|
292
|
+
<xs:enumeration value="Unknown" />
|
293
|
+
<xs:enumeration value="UserDefined" />
|
294
|
+
</xs:restriction>
|
295
|
+
</xs:simpleType>
|
296
|
+
<xs:simpleType name="CueResourceReference">
|
297
|
+
<xs:annotation>
|
298
|
+
<xs:documentation>A Reference to a Resource which is contained within a specific Cue.</xs:documentation>
|
299
|
+
</xs:annotation>
|
300
|
+
<xs:restriction base="xs:IDREF">
|
301
|
+
<xs:pattern value="A[\d\-_a-zA-Z]+" />
|
302
|
+
</xs:restriction>
|
303
|
+
</xs:simpleType>
|
304
|
+
<xs:simpleType name="CueSheetReference">
|
305
|
+
<xs:annotation>
|
306
|
+
<xs:documentation>A Reference to a CueSheet.</xs:documentation>
|
307
|
+
</xs:annotation>
|
308
|
+
<xs:restriction base="xs:ID">
|
309
|
+
<xs:pattern value="Q[\d\-_a-zA-Z]+" />
|
310
|
+
</xs:restriction>
|
311
|
+
</xs:simpleType>
|
312
|
+
<xs:simpleType name="CueSheetType">
|
313
|
+
<xs:annotation>
|
314
|
+
<xs:documentation>A Type of CueSheet.</xs:documentation>
|
315
|
+
</xs:annotation>
|
316
|
+
<xs:restriction base="xs:string">
|
317
|
+
<xs:enumeration value="AverageCueSheet" />
|
318
|
+
<xs:enumeration value="CompositeCueSheet" />
|
319
|
+
<xs:enumeration value="StandardCueSheet" />
|
320
|
+
<xs:enumeration value="SummarisedCueSheet" />
|
321
|
+
<xs:enumeration value="SurrogateCueSheet" />
|
322
|
+
</xs:restriction>
|
323
|
+
</xs:simpleType>
|
324
|
+
<xs:simpleType name="CueUseType">
|
325
|
+
<xs:annotation>
|
326
|
+
<xs:documentation>A Type of use of a Cue.</xs:documentation>
|
327
|
+
</xs:annotation>
|
328
|
+
<xs:restriction base="xs:string">
|
329
|
+
<xs:enumeration value="AudioLogo" />
|
330
|
+
<xs:enumeration value="Background" />
|
331
|
+
<xs:enumeration value="Bumper" />
|
332
|
+
<xs:enumeration value="EssentialPart" />
|
333
|
+
<xs:enumeration value="FilmTheme" />
|
334
|
+
<xs:enumeration value="IndistinguishableBackground" />
|
335
|
+
<xs:enumeration value="OnScreenMusic" />
|
336
|
+
<xs:enumeration value="RolledUpCue" />
|
337
|
+
<xs:enumeration value="Theme" />
|
338
|
+
<xs:enumeration value="UserDefined" />
|
339
|
+
</xs:restriction>
|
340
|
+
</xs:simpleType>
|
341
|
+
<xs:simpleType name="CueWorkReference">
|
342
|
+
<xs:annotation>
|
343
|
+
<xs:documentation>A Reference to a Work which is contained within a specific Cue.</xs:documentation>
|
344
|
+
</xs:annotation>
|
345
|
+
<xs:restriction base="xs:IDREF">
|
346
|
+
<xs:pattern value="W[\d\-_a-zA-Z]+" />
|
347
|
+
</xs:restriction>
|
348
|
+
</xs:simpleType>
|
349
|
+
<xs:simpleType name="DataMismatchResponseType">
|
350
|
+
<xs:annotation>
|
351
|
+
<xs:documentation>A Type of action that is a response to a DataMismatch.</xs:documentation>
|
352
|
+
</xs:annotation>
|
353
|
+
<xs:restriction base="xs:string">
|
354
|
+
<xs:enumeration value="AdditionalInformationOnly" />
|
355
|
+
<xs:enumeration value="DataMismatchConfirmation" />
|
356
|
+
<xs:enumeration value="DataMismatchOutOfScope" />
|
357
|
+
<xs:enumeration value="DataMismatchRaisedCommercialDispute" />
|
358
|
+
<xs:enumeration value="NoReaction" />
|
359
|
+
<xs:enumeration value="UserDefined" />
|
360
|
+
</xs:restriction>
|
361
|
+
</xs:simpleType>
|
362
|
+
<xs:simpleType name="DataMismatchStatus">
|
363
|
+
<xs:annotation>
|
364
|
+
<xs:documentation>A status of a DataMismatch.</xs:documentation>
|
365
|
+
</xs:annotation>
|
366
|
+
<xs:restriction base="xs:string">
|
367
|
+
<xs:enumeration value="AdditionalInformationOnly" />
|
368
|
+
<xs:enumeration value="Corrected" />
|
369
|
+
<xs:enumeration value="Fatal" />
|
370
|
+
<xs:enumeration value="NotCorrected" />
|
371
|
+
<xs:enumeration value="UserDefined" />
|
372
|
+
</xs:restriction>
|
373
|
+
</xs:simpleType>
|
374
|
+
<xs:simpleType name="DataMismatchType">
|
375
|
+
<xs:annotation>
|
376
|
+
<xs:documentation>A Type of DataMismatch.</xs:documentation>
|
377
|
+
</xs:annotation>
|
378
|
+
<xs:restriction base="xs:string">
|
379
|
+
<xs:enumeration value="AdditionalInformationOnly" />
|
380
|
+
<xs:enumeration value="ChoreographyConflict" />
|
381
|
+
<xs:enumeration value="ContradictoryData" />
|
382
|
+
<xs:enumeration value="DuplicatedData" />
|
383
|
+
<xs:enumeration value="IdentifierSyntaxMismatch" />
|
384
|
+
<xs:enumeration value="MathematicalInconsistency" />
|
385
|
+
<xs:enumeration value="MissingContractuallyMandatoryInformation" />
|
386
|
+
<xs:enumeration value="MissingMandatoryInformation" />
|
387
|
+
<xs:enumeration value="MissingReferencedMusicalWorkInformation" />
|
388
|
+
<xs:enumeration value="MissingReferencedReleaseInformation" />
|
389
|
+
<xs:enumeration value="MissingReferencedResourceInformation" />
|
390
|
+
<xs:enumeration value="MissingReferencedTechnicalResourceDetailInformation" />
|
391
|
+
<xs:enumeration value="MissingResourceFile" />
|
392
|
+
<xs:enumeration value="TypographicMismatch" />
|
393
|
+
<xs:enumeration value="UnexpectedAllowedValue" />
|
394
|
+
<xs:enumeration value="UnexpectedMessageIntermediary" />
|
395
|
+
<xs:enumeration value="UnexpectedMessageRecipient" />
|
396
|
+
<xs:enumeration value="UnexpectedMessageSender" />
|
397
|
+
<xs:enumeration value="UserDefined" />
|
398
|
+
<xs:enumeration value="XmlFormatError" />
|
399
|
+
<xs:enumeration value="XmlRangeError" />
|
400
|
+
</xs:restriction>
|
401
|
+
</xs:simpleType>
|
402
|
+
<xs:simpleType name="DdexPartyId">
|
403
|
+
<xs:annotation>
|
404
|
+
<xs:documentation>An Identifier of a Party according to the DdexPartyId standard DDEX-DPID.</xs:documentation>
|
405
|
+
</xs:annotation>
|
406
|
+
<xs:restriction base="xs:string" />
|
407
|
+
</xs:simpleType>
|
408
|
+
<xs:simpleType name="DealReleaseReference">
|
409
|
+
<xs:annotation>
|
410
|
+
<xs:documentation>A Reference to a Release which is included in a specific Deal.</xs:documentation>
|
411
|
+
</xs:annotation>
|
412
|
+
<xs:restriction base="xs:IDREF">
|
413
|
+
<xs:pattern value="R[\d\-_a-zA-Z]+" />
|
414
|
+
</xs:restriction>
|
415
|
+
</xs:simpleType>
|
416
|
+
<xs:simpleType name="DealResourceReference">
|
417
|
+
<xs:annotation>
|
418
|
+
<xs:documentation>A Reference to a Resource which is contained within a specific Deal.</xs:documentation>
|
419
|
+
</xs:annotation>
|
420
|
+
<xs:restriction base="xs:IDREF">
|
421
|
+
<xs:pattern value="A[\d\-_a-zA-Z]+" />
|
422
|
+
</xs:restriction>
|
423
|
+
</xs:simpleType>
|
424
|
+
<xs:simpleType name="DealTechnicalResourceDetailsReference">
|
425
|
+
<xs:annotation>
|
426
|
+
<xs:documentation>A Reference to a Resource which is contained within a specific Deal.</xs:documentation>
|
427
|
+
</xs:annotation>
|
428
|
+
<xs:restriction base="xs:IDREF">
|
429
|
+
<xs:pattern value="T[\d\-_a-zA-Z]+" />
|
430
|
+
</xs:restriction>
|
431
|
+
</xs:simpleType>
|
432
|
+
<xs:simpleType name="DeclinationConditionReference">
|
433
|
+
<xs:annotation>
|
434
|
+
<xs:documentation>A Reference to a LicenseOrClaimCondition which is contained within a specific declination.</xs:documentation>
|
435
|
+
</xs:annotation>
|
436
|
+
<xs:restriction base="xs:IDREF">
|
437
|
+
<xs:pattern value="E[\d\-_a-zA-Z]+" />
|
438
|
+
</xs:restriction>
|
439
|
+
</xs:simpleType>
|
440
|
+
<xs:simpleType name="DeclinationReleaseReference">
|
441
|
+
<xs:annotation>
|
442
|
+
<xs:documentation>A Reference to a Release which is contained within a specific declination.</xs:documentation>
|
443
|
+
</xs:annotation>
|
444
|
+
<xs:restriction base="xs:IDREF">
|
445
|
+
<xs:pattern value="A[\d\-_a-zA-Z]+" />
|
446
|
+
</xs:restriction>
|
447
|
+
</xs:simpleType>
|
448
|
+
<xs:simpleType name="DeclinationResourceReference">
|
449
|
+
<xs:annotation>
|
450
|
+
<xs:documentation>A Reference to a Resource which is contained within a specific declination.</xs:documentation>
|
451
|
+
</xs:annotation>
|
452
|
+
<xs:restriction base="xs:IDREF">
|
453
|
+
<xs:pattern value="A[\d\-_a-zA-Z]+" />
|
454
|
+
</xs:restriction>
|
455
|
+
</xs:simpleType>
|
456
|
+
<xs:simpleType name="DeclinationRightShareReference">
|
457
|
+
<xs:annotation>
|
458
|
+
<xs:documentation>A Reference to a RightShare which is contained within a specific declination.</xs:documentation>
|
459
|
+
</xs:annotation>
|
460
|
+
<xs:restriction base="xs:IDREF">
|
461
|
+
<xs:pattern value="S[\d\-_a-zA-Z]+" />
|
462
|
+
</xs:restriction>
|
463
|
+
</xs:simpleType>
|
464
|
+
<xs:simpleType name="DeclinationWorkReference">
|
465
|
+
<xs:annotation>
|
466
|
+
<xs:documentation>A Reference to a Work which is contained within a specific declination.</xs:documentation>
|
467
|
+
</xs:annotation>
|
468
|
+
<xs:restriction base="xs:IDREF">
|
469
|
+
<xs:pattern value="W[\d\-_a-zA-Z]+" />
|
470
|
+
</xs:restriction>
|
471
|
+
</xs:simpleType>
|
472
|
+
<xs:simpleType name="DeductionRateType">
|
473
|
+
<xs:annotation>
|
474
|
+
<xs:documentation>A Type of DeductionRate.</xs:documentation>
|
475
|
+
</xs:annotation>
|
476
|
+
<xs:restriction base="xs:string">
|
477
|
+
<xs:enumeration value="PennyRate" />
|
478
|
+
<xs:enumeration value="PercentageRate" />
|
479
|
+
<xs:enumeration value="UserDefined" />
|
480
|
+
</xs:restriction>
|
481
|
+
</xs:simpleType>
|
482
|
+
<xs:simpleType name="DeliveryActionType">
|
483
|
+
<xs:annotation>
|
484
|
+
<xs:documentation>A Type of action requested for deliveries.</xs:documentation>
|
485
|
+
</xs:annotation>
|
486
|
+
<xs:restriction base="xs:string">
|
487
|
+
<xs:enumeration value="ChangeDeliveryLimits" />
|
488
|
+
<xs:enumeration value="RestartDeliveryWithLimits" />
|
489
|
+
<xs:enumeration value="RestartDeliveryWithPreviousLimits" />
|
490
|
+
<xs:enumeration value="StopDelivery" />
|
491
|
+
</xs:restriction>
|
492
|
+
</xs:simpleType>
|
493
|
+
<xs:simpleType name="DescriptorSyntax">
|
494
|
+
<xs:annotation>
|
495
|
+
<xs:documentation>A Type of a Descriptor according to how it is defined syntactically.</xs:documentation>
|
496
|
+
</xs:annotation>
|
497
|
+
<xs:restriction base="xs:string" />
|
498
|
+
</xs:simpleType>
|
499
|
+
<xs:simpleType name="DistributionChannelType">
|
500
|
+
<xs:annotation>
|
501
|
+
<xs:documentation>A Type of DistributionChannel used to disseminate a Service or Release to a Consumer.</xs:documentation>
|
502
|
+
</xs:annotation>
|
503
|
+
<xs:restriction base="xs:string">
|
504
|
+
<xs:enumeration value="AsPerContract" />
|
505
|
+
<xs:enumeration value="Cable" />
|
506
|
+
<xs:enumeration value="Internet" />
|
507
|
+
<xs:enumeration value="InternetAndMobile" />
|
508
|
+
<xs:enumeration value="IPTV" />
|
509
|
+
<xs:enumeration value="MobileTelephone" />
|
510
|
+
<xs:enumeration value="OnDemandStream" />
|
511
|
+
<xs:enumeration value="PeerToPeer" />
|
512
|
+
<xs:enumeration value="Physical" />
|
513
|
+
<xs:enumeration value="Satellite" />
|
514
|
+
<xs:enumeration value="Unknown" />
|
515
|
+
<xs:enumeration value="UserDefined" />
|
516
|
+
</xs:restriction>
|
517
|
+
</xs:simpleType>
|
518
|
+
<xs:simpleType name="DrmEnforcementType">
|
519
|
+
<xs:annotation>
|
520
|
+
<xs:documentation>A Type of DRM enforcement.</xs:documentation>
|
521
|
+
</xs:annotation>
|
522
|
+
<xs:restriction base="xs:string">
|
523
|
+
<xs:enumeration value="DrmEnforced" />
|
524
|
+
<xs:enumeration value="NotDrmEnforced" />
|
525
|
+
</xs:restriction>
|
526
|
+
</xs:simpleType>
|
527
|
+
<xs:simpleType name="DrmPlatformType">
|
528
|
+
<xs:annotation>
|
529
|
+
<xs:documentation>A Type of DrmPlatform.</xs:documentation>
|
530
|
+
</xs:annotation>
|
531
|
+
<xs:restriction base="xs:string">
|
532
|
+
<xs:enumeration value="3Day" />
|
533
|
+
<xs:enumeration value="Fairplay" />
|
534
|
+
<xs:enumeration value="OMA" />
|
535
|
+
<xs:enumeration value="Unknown" />
|
536
|
+
<xs:enumeration value="UserDefined" />
|
537
|
+
<xs:enumeration value="WindowsMediaDRM" />
|
538
|
+
</xs:restriction>
|
539
|
+
</xs:simpleType>
|
540
|
+
<xs:simpleType name="DsrMessageType">
|
541
|
+
<xs:annotation>
|
542
|
+
<xs:documentation>A Type of Message in the DSR DdexMessageSuite.</xs:documentation>
|
543
|
+
</xs:annotation>
|
544
|
+
<xs:restriction base="xs:string" />
|
545
|
+
</xs:simpleType>
|
546
|
+
<xs:simpleType name="ErnMessageType">
|
547
|
+
<xs:annotation>
|
548
|
+
<xs:documentation>A Type of Message in the ERN DdexMessageSuite.</xs:documentation>
|
549
|
+
</xs:annotation>
|
550
|
+
<xs:restriction base="xs:string">
|
551
|
+
<xs:enumeration value="NewReleaseMessage" />
|
552
|
+
<xs:enumeration value="NewDealMessage" />
|
553
|
+
<xs:enumeration value="MusicalWorkLicenseInformationMessage" />
|
554
|
+
<xs:enumeration value="NewReleaseMessage" />
|
555
|
+
</xs:restriction>
|
556
|
+
</xs:simpleType>
|
557
|
+
<xs:simpleType name="ExpressionType">
|
558
|
+
<xs:annotation>
|
559
|
+
<xs:documentation>A Type of expression indicating how it should be perceived.</xs:documentation>
|
560
|
+
</xs:annotation>
|
561
|
+
<xs:restriction base="xs:string">
|
562
|
+
<xs:enumeration value="Informative" />
|
563
|
+
<xs:enumeration value="Instructive" />
|
564
|
+
</xs:restriction>
|
565
|
+
</xs:simpleType>
|
566
|
+
<xs:simpleType name="ExternallyLinkedResourceType">
|
567
|
+
<xs:annotation>
|
568
|
+
<xs:documentation>A Type of Resource pointed to by an ExternalLink.</xs:documentation>
|
569
|
+
</xs:annotation>
|
570
|
+
<xs:restriction base="xs:string">
|
571
|
+
<xs:enumeration value="AdditionalMetadata" />
|
572
|
+
<xs:enumeration value="Logo" />
|
573
|
+
<xs:enumeration value="PromotionalImage" />
|
574
|
+
<xs:enumeration value="PromotionalInformation" />
|
575
|
+
<xs:enumeration value="PromotionalItem" />
|
576
|
+
<xs:enumeration value="Unknown" />
|
577
|
+
<xs:enumeration value="UserDefined" />
|
578
|
+
</xs:restriction>
|
579
|
+
</xs:simpleType>
|
580
|
+
<xs:simpleType name="FileStatus">
|
581
|
+
<xs:annotation>
|
582
|
+
<xs:documentation>A status of a File in terms of its validity.</xs:documentation>
|
583
|
+
</xs:annotation>
|
584
|
+
<xs:restriction base="xs:string">
|
585
|
+
<xs:enumeration value="FileMissing" />
|
586
|
+
<xs:enumeration value="FileOK" />
|
587
|
+
<xs:enumeration value="HashSumWrong" />
|
588
|
+
<xs:enumeration value="SignatureWrong" />
|
589
|
+
</xs:restriction>
|
590
|
+
</xs:simpleType>
|
591
|
+
<xs:simpleType name="HashSum">
|
592
|
+
<xs:annotation>
|
593
|
+
<xs:documentation>A value calculated from digital data that serves to distinguish it from other digital data.</xs:documentation>
|
594
|
+
</xs:annotation>
|
595
|
+
<xs:restriction base="xs:string" />
|
596
|
+
</xs:simpleType>
|
597
|
+
<xs:simpleType name="HashSumAlgorithmType">
|
598
|
+
<xs:annotation>
|
599
|
+
<xs:documentation>A Type of HashSumAlgorithm.</xs:documentation>
|
600
|
+
</xs:annotation>
|
601
|
+
<xs:restriction base="xs:string">
|
602
|
+
<xs:enumeration value="MD4" />
|
603
|
+
<xs:enumeration value="MD5" />
|
604
|
+
<xs:enumeration value="SHA" />
|
605
|
+
<xs:enumeration value="SHA1" />
|
606
|
+
<xs:enumeration value="UserDefined" />
|
607
|
+
</xs:restriction>
|
608
|
+
</xs:simpleType>
|
609
|
+
<xs:simpleType name="ImageCodecType">
|
610
|
+
<xs:annotation>
|
611
|
+
<xs:documentation>A Type of ImageCodec.</xs:documentation>
|
612
|
+
</xs:annotation>
|
613
|
+
<xs:restriction base="xs:string">
|
614
|
+
<xs:enumeration value="GIF" />
|
615
|
+
<xs:enumeration value="JPEG" />
|
616
|
+
<xs:enumeration value="JPEG2000" />
|
617
|
+
<xs:enumeration value="PNG" />
|
618
|
+
<xs:enumeration value="TIFF" />
|
619
|
+
<xs:enumeration value="Unknown" />
|
620
|
+
<xs:enumeration value="UserDefined" />
|
621
|
+
</xs:restriction>
|
622
|
+
</xs:simpleType>
|
623
|
+
<xs:simpleType name="ImageType">
|
624
|
+
<xs:annotation>
|
625
|
+
<xs:documentation>A Type of Image.</xs:documentation>
|
626
|
+
</xs:annotation>
|
627
|
+
<xs:restriction base="xs:string">
|
628
|
+
<xs:enumeration value="BackCoverImage" />
|
629
|
+
<xs:enumeration value="BookletBackImage" />
|
630
|
+
<xs:enumeration value="BookletFrontImage" />
|
631
|
+
<xs:enumeration value="DocumentImage" />
|
632
|
+
<xs:enumeration value="FrontCoverImage" />
|
633
|
+
<xs:enumeration value="Icon" />
|
634
|
+
<xs:enumeration value="Logo" />
|
635
|
+
<xs:enumeration value="Photograph" />
|
636
|
+
<xs:enumeration value="Poster" />
|
637
|
+
<xs:enumeration value="TrayImage" />
|
638
|
+
<xs:enumeration value="Unknown" />
|
639
|
+
<xs:enumeration value="UserDefined" />
|
640
|
+
<xs:enumeration value="VideoScreenCapture" />
|
641
|
+
<xs:enumeration value="Wallpaper" />
|
642
|
+
</xs:restriction>
|
643
|
+
</xs:simpleType>
|
644
|
+
<xs:simpleType name="InvoiceAvailabilityStatus">
|
645
|
+
<xs:annotation>
|
646
|
+
<xs:documentation>A status of the availability of a Invoice.</xs:documentation>
|
647
|
+
</xs:annotation>
|
648
|
+
<xs:restriction base="xs:string">
|
649
|
+
<xs:enumeration value="InvoiceAvailable" />
|
650
|
+
<xs:enumeration value="InvoiceNotAvailable" />
|
651
|
+
</xs:restriction>
|
652
|
+
</xs:simpleType>
|
653
|
+
<xs:simpleType name="InvoiceSupportInformationLicenseOrClaimReference">
|
654
|
+
<xs:annotation>
|
655
|
+
<xs:documentation>A Reference to a License or Claim which is contained within a specific InvoiceSupportInformation.</xs:documentation>
|
656
|
+
</xs:annotation>
|
657
|
+
<xs:restriction base="xs:IDREF">
|
658
|
+
<xs:pattern value="L[\d\-_a-zA-Z]+" />
|
659
|
+
</xs:restriction>
|
660
|
+
</xs:simpleType>
|
661
|
+
<xs:simpleType name="LicenseOrClaimConditionReference">
|
662
|
+
<xs:annotation>
|
663
|
+
<xs:documentation>A Reference to a LicenseOrClaimCondition.</xs:documentation>
|
664
|
+
</xs:annotation>
|
665
|
+
<xs:restriction base="xs:ID">
|
666
|
+
<xs:pattern value="E[\d\-_a-zA-Z]+" />
|
667
|
+
</xs:restriction>
|
668
|
+
</xs:simpleType>
|
669
|
+
<xs:simpleType name="LicenseOrClaimReference">
|
670
|
+
<xs:annotation>
|
671
|
+
<xs:documentation>A Reference to a LicenseOrClaim.</xs:documentation>
|
672
|
+
</xs:annotation>
|
673
|
+
<xs:restriction base="xs:ID">
|
674
|
+
<xs:pattern value="L[\d\-_a-zA-Z]+" />
|
675
|
+
</xs:restriction>
|
676
|
+
</xs:simpleType>
|
677
|
+
<xs:simpleType name="LicenseOrClaimReferenceToLicenseOrClaimCondition">
|
678
|
+
<xs:annotation>
|
679
|
+
<xs:documentation>A Reference to a LicenseOrClaimCondition which is contained within a specific License or Claim.</xs:documentation>
|
680
|
+
</xs:annotation>
|
681
|
+
<xs:restriction base="xs:IDREF">
|
682
|
+
<xs:pattern value="E[\d\-_a-zA-Z]+" />
|
683
|
+
</xs:restriction>
|
684
|
+
</xs:simpleType>
|
685
|
+
<xs:simpleType name="LicenseOrClaimRefusalReason">
|
686
|
+
<xs:annotation>
|
687
|
+
<xs:documentation>A Type of reason for a refusing a License or Claim.</xs:documentation>
|
688
|
+
</xs:annotation>
|
689
|
+
<xs:restriction base="xs:string">
|
690
|
+
<xs:enumeration value="AgreementOfAdditionalProvisionsRequired" />
|
691
|
+
<xs:enumeration value="CorrectionOfAdvancePaymentRequired" />
|
692
|
+
<xs:enumeration value="CorrectionOfGuaranteeRequired" />
|
693
|
+
<xs:enumeration value="CorrectionOfLicenseeRequired" />
|
694
|
+
<xs:enumeration value="CorrectionOfMostFavoredNationClauseRequired" />
|
695
|
+
<xs:enumeration value="CorrectionOfNumberOfResourcesRequired" />
|
696
|
+
<xs:enumeration value="CorrectionOfPlayingTimeRequired" />
|
697
|
+
<xs:enumeration value="CorrectionOfPublisherInformationRequired" />
|
698
|
+
<xs:enumeration value="CorrectionOfPublisherPercentageRequired" />
|
699
|
+
<xs:enumeration value="CorrectionOfRateRequired" />
|
700
|
+
<xs:enumeration value="CorrectionOfReleaseCreatorInformationRequired" />
|
701
|
+
<xs:enumeration value="CorrectionOfReleaseDateRequired" />
|
702
|
+
<xs:enumeration value="CorrectionOfReleaseTitleRequired" />
|
703
|
+
<xs:enumeration value="CorrectionOfWorkContributorRequired" />
|
704
|
+
<xs:enumeration value="CorrectionOfWorkTitleRequired" />
|
705
|
+
<xs:enumeration value="DealExpired" />
|
706
|
+
<xs:enumeration value="DifferentWork" />
|
707
|
+
<xs:enumeration value="DirectLicense" />
|
708
|
+
<xs:enumeration value="DuplicateLicense" />
|
709
|
+
<xs:enumeration value="DuplicateRequest" />
|
710
|
+
<xs:enumeration value="InsufficientInformation" />
|
711
|
+
<xs:enumeration value="MedleyRequest" />
|
712
|
+
<xs:enumeration value="NoOptIn" />
|
713
|
+
<xs:enumeration value="NoPublisherClaim" />
|
714
|
+
<xs:enumeration value="PublisherNotRepresented" />
|
715
|
+
<xs:enumeration value="ReleaseWithdrawn" />
|
716
|
+
<xs:enumeration value="RelinquishedClaim" />
|
717
|
+
<xs:enumeration value="UserDefined" />
|
718
|
+
<xs:enumeration value="WorkDeletedFromRelease" />
|
719
|
+
<xs:enumeration value="WorkInPublicDomain" />
|
720
|
+
<xs:enumeration value="WorkNotUsed" />
|
721
|
+
</xs:restriction>
|
722
|
+
</xs:simpleType>
|
723
|
+
<xs:simpleType name="LicenseOrClaimReleaseReference">
|
724
|
+
<xs:annotation>
|
725
|
+
<xs:documentation>A Reference to a Release which is contained within a specific License or Claim.</xs:documentation>
|
726
|
+
</xs:annotation>
|
727
|
+
<xs:restriction base="xs:IDREF">
|
728
|
+
<xs:pattern value="R[\d\-_a-zA-Z]+" />
|
729
|
+
</xs:restriction>
|
730
|
+
</xs:simpleType>
|
731
|
+
<xs:simpleType name="LicenseOrClaimResourceReference">
|
732
|
+
<xs:annotation>
|
733
|
+
<xs:documentation>A Reference to a Resource which is contained within a specific License or Claim.</xs:documentation>
|
734
|
+
</xs:annotation>
|
735
|
+
<xs:restriction base="xs:IDREF">
|
736
|
+
<xs:pattern value="A[\d\-_a-zA-Z]+" />
|
737
|
+
</xs:restriction>
|
738
|
+
</xs:simpleType>
|
739
|
+
<xs:simpleType name="LicenseOrClaimRightShareReference">
|
740
|
+
<xs:annotation>
|
741
|
+
<xs:documentation>A Reference to a RightShare which is contained within a specific License or Claim.</xs:documentation>
|
742
|
+
</xs:annotation>
|
743
|
+
<xs:restriction base="xs:IDREF">
|
744
|
+
<xs:pattern value="S[\d\-_a-zA-Z]+" />
|
745
|
+
</xs:restriction>
|
746
|
+
</xs:simpleType>
|
747
|
+
<xs:simpleType name="LicenseOrClaimWorkReference">
|
748
|
+
<xs:annotation>
|
749
|
+
<xs:documentation>A Reference to a Work which is contained within a specific License or Claim.</xs:documentation>
|
750
|
+
</xs:annotation>
|
751
|
+
<xs:restriction base="xs:IDREF">
|
752
|
+
<xs:pattern value="W[\d\-_a-zA-Z]+" />
|
753
|
+
</xs:restriction>
|
754
|
+
</xs:simpleType>
|
755
|
+
<xs:simpleType name="LicenseStatus">
|
756
|
+
<xs:annotation>
|
757
|
+
<xs:documentation>A legal status of a License for a Claim.</xs:documentation>
|
758
|
+
</xs:annotation>
|
759
|
+
<xs:restriction base="xs:string">
|
760
|
+
<xs:enumeration value="Active" />
|
761
|
+
<xs:enumeration value="Pending" />
|
762
|
+
<xs:enumeration value="Revoked" />
|
763
|
+
</xs:restriction>
|
764
|
+
</xs:simpleType>
|
765
|
+
<xs:simpleType name="LicensingProcessStatus">
|
766
|
+
<xs:annotation>
|
767
|
+
<xs:documentation>An operational status of a licensing process.</xs:documentation>
|
768
|
+
</xs:annotation>
|
769
|
+
<xs:restriction base="xs:string">
|
770
|
+
<xs:enumeration value="Pending" />
|
771
|
+
<xs:enumeration value="Processed" />
|
772
|
+
<xs:enumeration value="ThirdPartyInformationRequested" />
|
773
|
+
</xs:restriction>
|
774
|
+
</xs:simpleType>
|
775
|
+
<xs:simpleType name="LocalCollectionAnchor">
|
776
|
+
<xs:annotation>
|
777
|
+
<xs:documentation>A LocalAnchor which acts as a local Identifier of a Collection. This LocalAnchor is a string starting with the letter X.</xs:documentation>
|
778
|
+
</xs:annotation>
|
779
|
+
<xs:restriction base="xs:ID">
|
780
|
+
<xs:pattern value="X[\d\-_a-zA-Z]+" />
|
781
|
+
</xs:restriction>
|
782
|
+
</xs:simpleType>
|
783
|
+
<xs:simpleType name="LocalCollectionAnchorReference">
|
784
|
+
<xs:annotation>
|
785
|
+
<xs:documentation>A LocalAnchorReference which acts as a reference to a local Identifier of a Collection. This LocalAnchorReference is a string starting with the letter X.</xs:documentation>
|
786
|
+
</xs:annotation>
|
787
|
+
<xs:restriction base="xs:IDREF">
|
788
|
+
<xs:pattern value="X[\d\-_a-zA-Z]+" />
|
789
|
+
</xs:restriction>
|
790
|
+
</xs:simpleType>
|
791
|
+
<xs:simpleType name="LocalCueSheetAnchor">
|
792
|
+
<xs:annotation>
|
793
|
+
<xs:documentation>A LocalAnchor which acts as a local Identifier of a CueSheet. This LocalAnchor is a string starting with the letter Q.</xs:documentation>
|
794
|
+
</xs:annotation>
|
795
|
+
<xs:restriction base="xs:ID">
|
796
|
+
<xs:pattern value="Q[\d\-_a-zA-Z]+" />
|
797
|
+
</xs:restriction>
|
798
|
+
</xs:simpleType>
|
799
|
+
<xs:simpleType name="LocalCueSheetAnchorReference">
|
800
|
+
<xs:annotation>
|
801
|
+
<xs:documentation>A LocalAnchorReference which acts as a reference to a local Identifier of a CueSheet. This LocalAnchorReference is a string starting with the letter Q.</xs:documentation>
|
802
|
+
</xs:annotation>
|
803
|
+
<xs:restriction base="xs:IDREF">
|
804
|
+
<xs:pattern value="Q[\d\-_a-zA-Z]+" />
|
805
|
+
</xs:restriction>
|
806
|
+
</xs:simpleType>
|
807
|
+
<xs:simpleType name="LocalLicenseOrClaimAnchor">
|
808
|
+
<xs:annotation>
|
809
|
+
<xs:documentation>A LocalAnchor which acts as a local Identifier of a LicenseOrClaim. This LocalAnchor is a string starting with the letter L.</xs:documentation>
|
810
|
+
</xs:annotation>
|
811
|
+
<xs:restriction base="xs:ID">
|
812
|
+
<xs:pattern value="L[\d\-_a-zA-Z]+" />
|
813
|
+
</xs:restriction>
|
814
|
+
</xs:simpleType>
|
815
|
+
<xs:simpleType name="LocalLicenseOrClaimAnchorReference">
|
816
|
+
<xs:annotation>
|
817
|
+
<xs:documentation>A LocalAnchorReference which acts as a reference to a local Identifier of a LicenseOrClaim. This LocalAnchorReference is a string starting with the letter L.</xs:documentation>
|
818
|
+
</xs:annotation>
|
819
|
+
<xs:restriction base="xs:IDREF">
|
820
|
+
<xs:pattern value="L[\d\-_a-zA-Z]+" />
|
821
|
+
</xs:restriction>
|
822
|
+
</xs:simpleType>
|
823
|
+
<xs:simpleType name="LocalLicenseOrClaimConditionAnchor">
|
824
|
+
<xs:annotation>
|
825
|
+
<xs:documentation>A LocalAnchor which acts as a local Identifier of a LicenseOrClaimCondition. This LocalAnchor is a string starting with the letter E.</xs:documentation>
|
826
|
+
</xs:annotation>
|
827
|
+
<xs:restriction base="xs:ID">
|
828
|
+
<xs:pattern value="E[\d\-_a-zA-Z]+" />
|
829
|
+
</xs:restriction>
|
830
|
+
</xs:simpleType>
|
831
|
+
<xs:simpleType name="LocalLicenseOrClaimConditionAnchorReference">
|
832
|
+
<xs:annotation>
|
833
|
+
<xs:documentation>A LocalAnchorReference which acts as a reference to a local Identifier of a LicenseOrClaimCondition. This LocalAnchorReference is a string starting with the letter E.</xs:documentation>
|
834
|
+
</xs:annotation>
|
835
|
+
<xs:restriction base="xs:IDREF">
|
836
|
+
<xs:pattern value="E[\d\-_a-zA-Z]+" />
|
837
|
+
</xs:restriction>
|
838
|
+
</xs:simpleType>
|
839
|
+
<xs:simpleType name="LocalMusicalWorkAnchor">
|
840
|
+
<xs:annotation>
|
841
|
+
<xs:documentation>A LocalAnchor which acts as a local Identifier of a MusicalWork. This LocalAnchor is a string starting with the letter W.</xs:documentation>
|
842
|
+
</xs:annotation>
|
843
|
+
<xs:restriction base="xs:ID">
|
844
|
+
<xs:pattern value="W[\d\-_a-zA-Z]+" />
|
845
|
+
</xs:restriction>
|
846
|
+
</xs:simpleType>
|
847
|
+
<xs:simpleType name="LocalMusicalWorkAnchorReference">
|
848
|
+
<xs:annotation>
|
849
|
+
<xs:documentation>A LocalAnchorReference which acts as a reference to a local Identifier of a MusicalWork. This LocalAnchorReference is a string starting with the letter W.</xs:documentation>
|
850
|
+
</xs:annotation>
|
851
|
+
<xs:restriction base="xs:IDREF">
|
852
|
+
<xs:pattern value="W[\d\-_a-zA-Z]+" />
|
853
|
+
</xs:restriction>
|
854
|
+
</xs:simpleType>
|
855
|
+
<xs:simpleType name="LocalReleaseAnchor">
|
856
|
+
<xs:annotation>
|
857
|
+
<xs:documentation>A LocalAnchor which acts as a local Identifier of a Release. This LocalAnchor is a string starting with the letter R.</xs:documentation>
|
858
|
+
</xs:annotation>
|
859
|
+
<xs:restriction base="xs:ID">
|
860
|
+
<xs:pattern value="R[\d\-_a-zA-Z]+" />
|
861
|
+
</xs:restriction>
|
862
|
+
</xs:simpleType>
|
863
|
+
<xs:simpleType name="LocalReleaseAnchorReference">
|
864
|
+
<xs:annotation>
|
865
|
+
<xs:documentation>A LocalAnchorReference which acts as a reference to a local Identifier of a Release. This LocalAnchorReference is a string starting with the letter R.</xs:documentation>
|
866
|
+
</xs:annotation>
|
867
|
+
<xs:restriction base="xs:IDREF">
|
868
|
+
<xs:pattern value="R[\d\-_a-zA-Z]+" />
|
869
|
+
</xs:restriction>
|
870
|
+
</xs:simpleType>
|
871
|
+
<xs:simpleType name="LocalResourceAnchor">
|
872
|
+
<xs:annotation>
|
873
|
+
<xs:documentation>A LocalAnchor which acts as a local Identifier of a Resource. This LocalAnchor is a string starting with the letter A.</xs:documentation>
|
874
|
+
</xs:annotation>
|
875
|
+
<xs:restriction base="xs:ID">
|
876
|
+
<xs:pattern value="A[\d\-_a-zA-Z]+" />
|
877
|
+
</xs:restriction>
|
878
|
+
</xs:simpleType>
|
879
|
+
<xs:simpleType name="LocalResourceAnchorReference">
|
880
|
+
<xs:annotation>
|
881
|
+
<xs:documentation>A LocalAnchorReference which acts as a reference to a local Identifier of a Resource. This LocalAnchorReference is a string starting with the letter A.</xs:documentation>
|
882
|
+
</xs:annotation>
|
883
|
+
<xs:restriction base="xs:IDREF">
|
884
|
+
<xs:pattern value="A[\d\-_a-zA-Z]+" />
|
885
|
+
</xs:restriction>
|
886
|
+
</xs:simpleType>
|
887
|
+
<xs:simpleType name="LocalRightShareAnchor">
|
888
|
+
<xs:annotation>
|
889
|
+
<xs:documentation>A LocalAnchor which acts as a local Identifier of a RightShare. This LocalAnchor is a string starting with the letter S.</xs:documentation>
|
890
|
+
</xs:annotation>
|
891
|
+
<xs:restriction base="xs:ID">
|
892
|
+
<xs:pattern value="S[\d\-_a-zA-Z]+" />
|
893
|
+
</xs:restriction>
|
894
|
+
</xs:simpleType>
|
895
|
+
<xs:simpleType name="LocalRightShareAnchorReference">
|
896
|
+
<xs:annotation>
|
897
|
+
<xs:documentation>A LocalAnchorReference which acts as a reference to a local Identifier of a RightShare. This LocalAnchorReference is a string starting with the letter S.</xs:documentation>
|
898
|
+
</xs:annotation>
|
899
|
+
<xs:restriction base="xs:IDREF">
|
900
|
+
<xs:pattern value="S[\d\-_a-zA-Z]+" />
|
901
|
+
</xs:restriction>
|
902
|
+
</xs:simpleType>
|
903
|
+
<xs:simpleType name="LocalTechnicalResourceDetailsAnchor">
|
904
|
+
<xs:annotation>
|
905
|
+
<xs:documentation>A LocalAnchor which acts as a local Identifier of a TechnicalResourceDetails Composite. This LocalAnchor is a string starting with the letter T.</xs:documentation>
|
906
|
+
</xs:annotation>
|
907
|
+
<xs:restriction base="xs:ID">
|
908
|
+
<xs:pattern value="T[\d\-_a-zA-Z]+" />
|
909
|
+
</xs:restriction>
|
910
|
+
</xs:simpleType>
|
911
|
+
<xs:simpleType name="LocalTechnicalResourceDetailsAnchorReference">
|
912
|
+
<xs:annotation>
|
913
|
+
<xs:documentation>A LocalAnchorReference which acts as a reference to a local Identifier of a TechnicalResourceDetails Composite. This LocalAnchorReference is a string starting with the letter T.</xs:documentation>
|
914
|
+
</xs:annotation>
|
915
|
+
<xs:restriction base="xs:IDREF">
|
916
|
+
<xs:pattern value="T[\d\-_a-zA-Z]+" />
|
917
|
+
</xs:restriction>
|
918
|
+
</xs:simpleType>
|
919
|
+
<xs:simpleType name="MessageActionType">
|
920
|
+
<xs:annotation>
|
921
|
+
<xs:documentation>A Type of action requested in a Message.</xs:documentation>
|
922
|
+
</xs:annotation>
|
923
|
+
<xs:restriction base="xs:string">
|
924
|
+
<xs:enumeration value="BackCatalogDelivery" />
|
925
|
+
<xs:enumeration value="HighPriorityDelivery" />
|
926
|
+
<xs:enumeration value="NewReleaseDelivery" />
|
927
|
+
<xs:enumeration value="ReDelivery" />
|
928
|
+
<xs:enumeration value="TakeDown" />
|
929
|
+
<xs:enumeration value="UserDefined" />
|
930
|
+
</xs:restriction>
|
931
|
+
</xs:simpleType>
|
932
|
+
<xs:simpleType name="MessageContentRevenueType">
|
933
|
+
<xs:annotation>
|
934
|
+
<xs:documentation>A Type of revenue to which the content of the Message relates.</xs:documentation>
|
935
|
+
</xs:annotation>
|
936
|
+
<xs:restriction base="xs:string">
|
937
|
+
<xs:enumeration value="NonTransactionalRevenue" />
|
938
|
+
<xs:enumeration value="TransactionalRevenue" />
|
939
|
+
<xs:enumeration value="UserDefined" />
|
940
|
+
</xs:restriction>
|
941
|
+
</xs:simpleType>
|
942
|
+
<xs:simpleType name="MessageControlType">
|
943
|
+
<xs:annotation>
|
944
|
+
<xs:documentation>A Type of Message according to its operational status.</xs:documentation>
|
945
|
+
</xs:annotation>
|
946
|
+
<xs:restriction base="xs:string">
|
947
|
+
<xs:enumeration value="LiveMessage" />
|
948
|
+
<xs:enumeration value="TestMessage" />
|
949
|
+
</xs:restriction>
|
950
|
+
</xs:simpleType>
|
951
|
+
<xs:simpleType name="MessageType">
|
952
|
+
<xs:annotation>
|
953
|
+
<xs:documentation>A Type of Message in a DDEX namespace.</xs:documentation>
|
954
|
+
</xs:annotation>
|
955
|
+
<xs:restriction base="xs:string">
|
956
|
+
<xs:enumeration value="SalesReportToRecordCompanyMessage" />
|
957
|
+
<xs:enumeration value="SalesReportToSocietyMessage" />
|
958
|
+
<xs:enumeration value="InvoiceMessage" />
|
959
|
+
<xs:enumeration value="SalesReportMessage" />
|
960
|
+
<xs:enumeration value="NewReleaseMessage" />
|
961
|
+
<xs:enumeration value="NewReleaseMessageTEST" />
|
962
|
+
<xs:enumeration value="NewDealMessage" />
|
963
|
+
<xs:enumeration value="MusicalWorkLicenseInformationMessage" />
|
964
|
+
<xs:enumeration value="NewReleaseMessage" />
|
965
|
+
<xs:enumeration value="DataMismatchMessage" />
|
966
|
+
<xs:enumeration value="DataMismatchResponseMessage" />
|
967
|
+
<xs:enumeration value="FtpManifestMessage" />
|
968
|
+
<xs:enumeration value="FtpAcknowledgementMessage" />
|
969
|
+
<xs:enumeration value="LicenseOrClaimRequestMessage" />
|
970
|
+
<xs:enumeration value="LicenseOrClaimRequestCancellationMessage" />
|
971
|
+
<xs:enumeration value="LicenseOrClaimMessage" />
|
972
|
+
<xs:enumeration value="LicenseOrClaimConfirmationMessage" />
|
973
|
+
<xs:enumeration value="LicensingProcessStatusRequestMessage" />
|
974
|
+
<xs:enumeration value="LicensingProcessStatusMessage" />
|
975
|
+
<xs:enumeration value="LicensingInformationRequestMessage" />
|
976
|
+
<xs:enumeration value="LicenseOrClaimRevocationMessage" />
|
977
|
+
<xs:enumeration value="SalesReportMessage" />
|
978
|
+
<xs:enumeration value="WsAcknowledgementMessage" />
|
979
|
+
<xs:enumeration value="FtpAcknowledgementMessage" />
|
980
|
+
<xs:enumeration value="ManifestMessage" />
|
981
|
+
<xs:enumeration value="ReleaseStatusInformationMessage" />
|
982
|
+
<xs:enumeration value="SupplyChainStatusMessage" />
|
983
|
+
<xs:enumeration value="ReleaseAvailabilityMessage" />
|
984
|
+
<xs:enumeration value="InformationAboutAvailableReleaseRequestMessage" />
|
985
|
+
<xs:enumeration value="DeliveryFrequencyChangeRequestMessage" />
|
986
|
+
<xs:enumeration value="ReportRequestMessage" />
|
987
|
+
<xs:enumeration value="ReportDeliveryMessage" />
|
988
|
+
<xs:enumeration value ="ReleaseAvailabilityResponseMessage" />
|
989
|
+
<xs:enumeration value ="OrderedReleaseInQueueRequestMessage" />
|
990
|
+
<xs:enumeration value ="OrderedReleaseInQueueResponseMessage" />
|
991
|
+
<xs:enumeration value ="RedeliveryRequestMessage" />
|
992
|
+
<xs:enumeration value ="RedeliveryResponseMessage" />
|
993
|
+
<xs:enumeration value ="InformationAboutAvailableReleaseResponseMessage" />
|
994
|
+
<xs:enumeration value ="DeliveryFrequencyChangeResponseMessage" />
|
995
|
+
<xs:enumeration value ="ReportResponseMessage" />
|
996
|
+
<xs:enumeration value ="ReleaseAvailabilityRequestMessage" />
|
997
|
+
<xs:enumeration value ="ReleaseStatusRequestMessage" />
|
998
|
+
<xs:enumeration value ="ReleaseSupplyChainStatusRequestMessage" />
|
999
|
+
<xs:enumeration value ="ReleaseSupplyChainStatusResponseMessage" />
|
1000
|
+
<xs:enumeration value ="AllOrderedReleasesInQueueResponseMessage" />
|
1001
|
+
<xs:enumeration value ="AllOrderedReleasesInQueueRequestMessage" />
|
1002
|
+
<xs:enumeration value="ManifestMessage" />
|
1003
|
+
<xs:enumeration value="SalesReportDeliveryMessage" />
|
1004
|
+
<xs:enumeration value="InvoiceDeliveryMessage" />
|
1005
|
+
<xs:enumeration value="SalesReportRequestMessage" />
|
1006
|
+
<xs:enumeration value="InvoiceRequestMessage" />
|
1007
|
+
<xs:enumeration value="InvoiceAcknowledgementRequestMessage" />
|
1008
|
+
<xs:enumeration value="SalesReportDeliveryAcknowledgementMessage" />
|
1009
|
+
<xs:enumeration value="InvoiceDeliveryAcknowledgementMessage" />
|
1010
|
+
</xs:restriction>
|
1011
|
+
</xs:simpleType>
|
1012
|
+
<xs:simpleType name="MidiType">
|
1013
|
+
<xs:annotation>
|
1014
|
+
<xs:documentation>A Type of MIDI.</xs:documentation>
|
1015
|
+
</xs:annotation>
|
1016
|
+
<xs:restriction base="xs:string">
|
1017
|
+
<xs:enumeration value="MonophonicMidi" />
|
1018
|
+
<xs:enumeration value="PolyphonicMidi" />
|
1019
|
+
<xs:enumeration value="Unknown" />
|
1020
|
+
<xs:enumeration value="UserDefined" />
|
1021
|
+
</xs:restriction>
|
1022
|
+
</xs:simpleType>
|
1023
|
+
<xs:simpleType name="MusicalWorkContributorRole">
|
1024
|
+
<xs:annotation>
|
1025
|
+
<xs:documentation>A role played by a Contributor in relation to a MusicalWork.</xs:documentation>
|
1026
|
+
</xs:annotation>
|
1027
|
+
<xs:restriction base="xs:string">
|
1028
|
+
<xs:enumeration value="Adapter" />
|
1029
|
+
<xs:enumeration value="Arranger" />
|
1030
|
+
<xs:enumeration value="AssociatedPerformer" />
|
1031
|
+
<xs:enumeration value="Author" />
|
1032
|
+
<xs:enumeration value="Composer" />
|
1033
|
+
<xs:enumeration value="ComposerLyricist" />
|
1034
|
+
<xs:enumeration value="Contributor" />
|
1035
|
+
<xs:enumeration value="Librettist" />
|
1036
|
+
<xs:enumeration value="Lyricist" />
|
1037
|
+
<xs:enumeration value="MusicPublisher" />
|
1038
|
+
<xs:enumeration value="NonLyricAuthor" />
|
1039
|
+
<xs:enumeration value="OriginalPublisher" />
|
1040
|
+
<xs:enumeration value="SubArranger" />
|
1041
|
+
<xs:enumeration value="SubPublisher" />
|
1042
|
+
<xs:enumeration value="SubstitutedPublisher" />
|
1043
|
+
<xs:enumeration value="Translator" />
|
1044
|
+
<xs:enumeration value="Unknown" />
|
1045
|
+
<xs:enumeration value="UserDefined" />
|
1046
|
+
</xs:restriction>
|
1047
|
+
</xs:simpleType>
|
1048
|
+
<xs:simpleType name="MusicalWorkReference">
|
1049
|
+
<xs:annotation>
|
1050
|
+
<xs:documentation>A Reference to a MusicalWork.</xs:documentation>
|
1051
|
+
</xs:annotation>
|
1052
|
+
<xs:restriction base="xs:ID">
|
1053
|
+
<xs:pattern value="W[\d\-_a-zA-Z]+" />
|
1054
|
+
</xs:restriction>
|
1055
|
+
</xs:simpleType>
|
1056
|
+
<xs:simpleType name="MusicalWorkRightsClaimType">
|
1057
|
+
<xs:annotation>
|
1058
|
+
<xs:documentation>A Type of RightsClaim related to a MusicalWork.</xs:documentation>
|
1059
|
+
</xs:annotation>
|
1060
|
+
<xs:restriction base="xs:string">
|
1061
|
+
<xs:enumeration value="CopyrightControl" />
|
1062
|
+
<xs:enumeration value="NonMemberClaim" />
|
1063
|
+
<xs:enumeration value="PublicDomain" />
|
1064
|
+
<xs:enumeration value="SocietyClaim" />
|
1065
|
+
<xs:enumeration value="Unknown" />
|
1066
|
+
</xs:restriction>
|
1067
|
+
</xs:simpleType>
|
1068
|
+
<xs:simpleType name="MusicalWorkType">
|
1069
|
+
<xs:annotation>
|
1070
|
+
<xs:documentation>A Type of MusicalWork.</xs:documentation>
|
1071
|
+
</xs:annotation>
|
1072
|
+
<xs:restriction base="xs:string">
|
1073
|
+
<xs:enumeration value="AdaptedInOriginalLanguage" />
|
1074
|
+
<xs:enumeration value="AdaptedInstrumentalWork" />
|
1075
|
+
<xs:enumeration value="AdaptedWithNewLyrics" />
|
1076
|
+
<xs:enumeration value="ArrangedWithNewMusic" />
|
1077
|
+
<xs:enumeration value="CompositeMusicalWork" />
|
1078
|
+
<xs:enumeration value="DramaticoMusicalWork" />
|
1079
|
+
<xs:enumeration value="LyricRemoval" />
|
1080
|
+
<xs:enumeration value="LyricReplacement" />
|
1081
|
+
<xs:enumeration value="LyricTranslation" />
|
1082
|
+
<xs:enumeration value="Mashup" />
|
1083
|
+
<xs:enumeration value="Medley" />
|
1084
|
+
<xs:enumeration value="MultimediaProductionWork" />
|
1085
|
+
<xs:enumeration value="MusicalWorkMovement" />
|
1086
|
+
<xs:enumeration value="MusicalWorkWithSamples" />
|
1087
|
+
<xs:enumeration value="MusicArrangement" />
|
1088
|
+
<xs:enumeration value="MusicArrangementOfText" />
|
1089
|
+
<xs:enumeration value="OriginalLyricsArrangement" />
|
1090
|
+
<xs:enumeration value="OriginalMusicAdaptation" />
|
1091
|
+
<xs:enumeration value="OriginalMusicalWork" />
|
1092
|
+
<xs:enumeration value="Potpourri" />
|
1093
|
+
<xs:enumeration value="ProductionMusicLibraryWork" />
|
1094
|
+
<xs:enumeration value="RadioProductionWork" />
|
1095
|
+
<xs:enumeration value="TheaterProductionWork" />
|
1096
|
+
<xs:enumeration value="TvProductionWork" />
|
1097
|
+
<xs:enumeration value="Unknown" />
|
1098
|
+
<xs:enumeration value="UnspecifiedArrangement" />
|
1099
|
+
<xs:enumeration value="UnspecifiedMusicalWorkExcerpt" />
|
1100
|
+
<xs:enumeration value="UserDefined" />
|
1101
|
+
<xs:enumeration value="VideoProductionWork" />
|
1102
|
+
</xs:restriction>
|
1103
|
+
</xs:simpleType>
|
1104
|
+
<xs:simpleType name="NewReleaseMessageStatus">
|
1105
|
+
<xs:annotation>
|
1106
|
+
<xs:documentation>A status of a NewReleaseMessage.</xs:documentation>
|
1107
|
+
</xs:annotation>
|
1108
|
+
<xs:restriction base="xs:string">
|
1109
|
+
<xs:enumeration value="NewReleaseMessageNotProvided" />
|
1110
|
+
<xs:enumeration value="NewReleaseMessageProvided" />
|
1111
|
+
</xs:restriction>
|
1112
|
+
</xs:simpleType>
|
1113
|
+
<xs:simpleType name="NonIsoTerritoryCode">
|
1114
|
+
<xs:annotation>
|
1115
|
+
<xs:documentation>A TerritoryId which is not a TerritoryId according to the ISO 3166-1 standard.</xs:documentation>
|
1116
|
+
</xs:annotation>
|
1117
|
+
<xs:restriction base="xs:string">
|
1118
|
+
<xs:enumeration value="Worldwide">
|
1119
|
+
<xs:annotation>
|
1120
|
+
<xs:documentation>An Identifier which identifies all Territories in the world.</xs:documentation>
|
1121
|
+
</xs:annotation>
|
1122
|
+
</xs:enumeration>
|
1123
|
+
</xs:restriction>
|
1124
|
+
</xs:simpleType>
|
1125
|
+
<xs:simpleType name="OperatingSystemType">
|
1126
|
+
<xs:annotation>
|
1127
|
+
<xs:documentation>A Type of OperatingSystem.</xs:documentation>
|
1128
|
+
</xs:annotation>
|
1129
|
+
<xs:restriction base="xs:string">
|
1130
|
+
<xs:enumeration value="MacOS" />
|
1131
|
+
<xs:enumeration value="MsWindows" />
|
1132
|
+
<xs:enumeration value="Symbian" />
|
1133
|
+
<xs:enumeration value="Unknown" />
|
1134
|
+
</xs:restriction>
|
1135
|
+
</xs:simpleType>
|
1136
|
+
<xs:simpleType name="OrderType">
|
1137
|
+
<xs:annotation>
|
1138
|
+
<xs:documentation>A Type of order.</xs:documentation>
|
1139
|
+
</xs:annotation>
|
1140
|
+
<xs:restriction base="xs:string">
|
1141
|
+
<xs:enumeration value="BackCatalogOrder" />
|
1142
|
+
<xs:enumeration value="ExpressOrder" />
|
1143
|
+
<xs:enumeration value="HardDiskOrder" />
|
1144
|
+
<xs:enumeration value="MetadataOnlyOrder" />
|
1145
|
+
<xs:enumeration value="NewReleaseOrder" />
|
1146
|
+
<xs:enumeration value="OffCycleRushOrder" />
|
1147
|
+
<xs:enumeration value="PreOrder" />
|
1148
|
+
<xs:enumeration value="ReDeliveryOrder" />
|
1149
|
+
<xs:enumeration value="TakeDownOrder" />
|
1150
|
+
<xs:enumeration value="UserDefined" />
|
1151
|
+
</xs:restriction>
|
1152
|
+
</xs:simpleType>
|
1153
|
+
<xs:simpleType name="ParentalWarningType">
|
1154
|
+
<xs:annotation>
|
1155
|
+
<xs:documentation>A Type of Creation according to advice which it carries about the level of explicitness or offensiveness of its content.</xs:documentation>
|
1156
|
+
</xs:annotation>
|
1157
|
+
<xs:restriction base="xs:string">
|
1158
|
+
<xs:enumeration value="Explicit" />
|
1159
|
+
<xs:enumeration value="ExplicitContentEdited" />
|
1160
|
+
<xs:enumeration value="NoAdviceAvailable" />
|
1161
|
+
<xs:enumeration value="NotExplicit" />
|
1162
|
+
<xs:enumeration value="Unknown" />
|
1163
|
+
<xs:enumeration value="UserDefined" />
|
1164
|
+
</xs:restriction>
|
1165
|
+
</xs:simpleType>
|
1166
|
+
<xs:simpleType name="PercentageType">
|
1167
|
+
<xs:annotation>
|
1168
|
+
<xs:documentation>A Type of PercentageRate.</xs:documentation>
|
1169
|
+
</xs:annotation>
|
1170
|
+
<xs:restriction base="xs:string">
|
1171
|
+
<xs:enumeration value="PercentageOfFreeGoodsPermitted" />
|
1172
|
+
<xs:enumeration value="PercentageOfGrossRevenue" />
|
1173
|
+
<xs:enumeration value="PercentageOfNetRevenue" />
|
1174
|
+
<xs:enumeration value="PercentageOfNetSales" />
|
1175
|
+
<xs:enumeration value="PercentageOfPriceConsumerPaid" />
|
1176
|
+
<xs:enumeration value="PercentageOfStatutoryRoyaltyRate" />
|
1177
|
+
</xs:restriction>
|
1178
|
+
</xs:simpleType>
|
1179
|
+
<xs:simpleType name="PriceRangeType">
|
1180
|
+
<xs:annotation>
|
1181
|
+
<xs:documentation>A Type of Price according to its value range.</xs:documentation>
|
1182
|
+
</xs:annotation>
|
1183
|
+
<xs:restriction base="xs:string" />
|
1184
|
+
</xs:simpleType>
|
1185
|
+
<xs:simpleType name="PriceType">
|
1186
|
+
<xs:annotation>
|
1187
|
+
<xs:documentation>A Type of Price.</xs:documentation>
|
1188
|
+
</xs:annotation>
|
1189
|
+
<xs:restriction base="xs:string" />
|
1190
|
+
</xs:simpleType>
|
1191
|
+
<xs:simpleType name="Priority">
|
1192
|
+
<xs:annotation>
|
1193
|
+
<xs:documentation>A Type of priority.</xs:documentation>
|
1194
|
+
</xs:annotation>
|
1195
|
+
<xs:restriction base="xs:string">
|
1196
|
+
<xs:enumeration value="High" />
|
1197
|
+
<xs:enumeration value="Low" />
|
1198
|
+
<xs:enumeration value="Normal" />
|
1199
|
+
</xs:restriction>
|
1200
|
+
</xs:simpleType>
|
1201
|
+
<xs:simpleType name="ProductType">
|
1202
|
+
<xs:annotation>
|
1203
|
+
<xs:documentation>A Type of Product.</xs:documentation>
|
1204
|
+
</xs:annotation>
|
1205
|
+
<xs:restriction base="xs:string">
|
1206
|
+
<xs:enumeration value="AudioProduct" />
|
1207
|
+
<xs:enumeration value="GraphicsProduct" />
|
1208
|
+
<xs:enumeration value="MixedMediaBundleProduct" />
|
1209
|
+
<xs:enumeration value="MobileProduct" />
|
1210
|
+
<xs:enumeration value="UserDefined" />
|
1211
|
+
<xs:enumeration value="VideoProduct" />
|
1212
|
+
</xs:restriction>
|
1213
|
+
</xs:simpleType>
|
1214
|
+
<xs:simpleType name="Purpose">
|
1215
|
+
<xs:annotation>
|
1216
|
+
<xs:documentation>A Type of use that is the purpose of an action.</xs:documentation>
|
1217
|
+
</xs:annotation>
|
1218
|
+
<xs:restriction base="xs:string">
|
1219
|
+
<xs:enumeration value="BackgroundMusic" />
|
1220
|
+
<xs:enumeration value="ChannelTrailerMusic" />
|
1221
|
+
<xs:enumeration value="Extract" />
|
1222
|
+
<xs:enumeration value="FilmTrailerMusic" />
|
1223
|
+
<xs:enumeration value="ForegroundMusic" />
|
1224
|
+
<xs:enumeration value="TrailerMusic" />
|
1225
|
+
<xs:enumeration value="UserDefined" />
|
1226
|
+
</xs:restriction>
|
1227
|
+
</xs:simpleType>
|
1228
|
+
<xs:simpleType name="RatingAgency">
|
1229
|
+
<xs:annotation>
|
1230
|
+
<xs:documentation>An Organization that issues ParentalWarnings.</xs:documentation>
|
1231
|
+
</xs:annotation>
|
1232
|
+
<xs:restriction base="xs:string">
|
1233
|
+
<xs:enumeration value="AFR" />
|
1234
|
+
<xs:enumeration value="BBFC" />
|
1235
|
+
<xs:enumeration value="BFCO" />
|
1236
|
+
<xs:enumeration value="BFSC" />
|
1237
|
+
<xs:enumeration value="BMUKK" />
|
1238
|
+
<xs:enumeration value="CBFC" />
|
1239
|
+
<xs:enumeration value="CCC" />
|
1240
|
+
<xs:enumeration value="CCE" />
|
1241
|
+
<xs:enumeration value="CHVRS" />
|
1242
|
+
<xs:enumeration value="CNC" />
|
1243
|
+
<xs:enumeration value="DJCTQ" />
|
1244
|
+
<xs:enumeration value="Eirin" />
|
1245
|
+
<xs:enumeration value="FCB" />
|
1246
|
+
<xs:enumeration value="Filmtilsynet" />
|
1247
|
+
<xs:enumeration value="FPB" />
|
1248
|
+
<xs:enumeration value="FSK" />
|
1249
|
+
<xs:enumeration value="IFCO" />
|
1250
|
+
<xs:enumeration value="INCAA" />
|
1251
|
+
<xs:enumeration value="KMRB" />
|
1252
|
+
<xs:enumeration value="KR" />
|
1253
|
+
<xs:enumeration value="KRRIT" />
|
1254
|
+
<xs:enumeration value="LSF" />
|
1255
|
+
<xs:enumeration value="MBU" />
|
1256
|
+
<xs:enumeration value="MDA" />
|
1257
|
+
<xs:enumeration value="MDCB" />
|
1258
|
+
<xs:enumeration value="MFCB" />
|
1259
|
+
<xs:enumeration value="MIC" />
|
1260
|
+
<xs:enumeration value="MPAA" />
|
1261
|
+
<xs:enumeration value="MTRCB" />
|
1262
|
+
<xs:enumeration value="NBC" />
|
1263
|
+
<xs:enumeration value="NFVCB" />
|
1264
|
+
<xs:enumeration value="NICAM" />
|
1265
|
+
<xs:enumeration value="NKC" />
|
1266
|
+
<xs:enumeration value="OFLC" />
|
1267
|
+
<xs:enumeration value="OFRB" />
|
1268
|
+
<xs:enumeration value="RDCQ" />
|
1269
|
+
<xs:enumeration value="RTC" />
|
1270
|
+
<xs:enumeration value="SBB" />
|
1271
|
+
<xs:enumeration value="Smais" />
|
1272
|
+
<xs:enumeration value="SPIO-JK" />
|
1273
|
+
<xs:enumeration value="TELA" />
|
1274
|
+
<xs:enumeration value="UserDefined" />
|
1275
|
+
<xs:enumeration value="VET" />
|
1276
|
+
</xs:restriction>
|
1277
|
+
</xs:simpleType>
|
1278
|
+
<xs:simpleType name="ReasonType">
|
1279
|
+
<xs:annotation>
|
1280
|
+
<xs:documentation>A Type of reason.</xs:documentation>
|
1281
|
+
</xs:annotation>
|
1282
|
+
<xs:restriction base="xs:string">
|
1283
|
+
<xs:enumeration value="ChartReporting" />
|
1284
|
+
<xs:enumeration value="RoyaltyReporting" />
|
1285
|
+
<xs:enumeration value="UserDefined" />
|
1286
|
+
</xs:restriction>
|
1287
|
+
</xs:simpleType>
|
1288
|
+
<xs:simpleType name="RedeliveryReasonType">
|
1289
|
+
<xs:annotation>
|
1290
|
+
<xs:documentation>A reason for a redelivery.</xs:documentation>
|
1291
|
+
</xs:annotation>
|
1292
|
+
<xs:restriction base="xs:string">
|
1293
|
+
<xs:enumeration value="BinaryCorrupted" />
|
1294
|
+
<xs:enumeration value="MetadataInadequate" />
|
1295
|
+
<xs:enumeration value="PackageIncomplete" />
|
1296
|
+
<xs:enumeration value="ProcessingErrorAtReleaseDistributor" />
|
1297
|
+
<xs:enumeration value="UserDefined" />
|
1298
|
+
</xs:restriction>
|
1299
|
+
</xs:simpleType>
|
1300
|
+
<xs:simpleType name="ReferenceUnit">
|
1301
|
+
<xs:annotation>
|
1302
|
+
<xs:documentation>A unit to which a Quantity refers.</xs:documentation>
|
1303
|
+
</xs:annotation>
|
1304
|
+
<xs:restriction base="xs:string">
|
1305
|
+
<xs:enumeration value="PerLicense" />
|
1306
|
+
<xs:enumeration value="PerUse" />
|
1307
|
+
</xs:restriction>
|
1308
|
+
</xs:simpleType>
|
1309
|
+
<xs:simpleType name="ReleaseAvailabilityStatus">
|
1310
|
+
<xs:annotation>
|
1311
|
+
<xs:documentation>A status of the availability of a Release.</xs:documentation>
|
1312
|
+
</xs:annotation>
|
1313
|
+
<xs:restriction base="xs:string">
|
1314
|
+
<xs:enumeration value="AvailableForDSP" />
|
1315
|
+
<xs:enumeration value="NotClearedForDSP" />
|
1316
|
+
<xs:enumeration value="NotClearedForTerritory" />
|
1317
|
+
<xs:enumeration value="UserDefined" />
|
1318
|
+
</xs:restriction>
|
1319
|
+
</xs:simpleType>
|
1320
|
+
<xs:simpleType name="ReleaseReference">
|
1321
|
+
<xs:annotation>
|
1322
|
+
<xs:documentation>An Identifier of a Release which is specific to a DdexMessage.</xs:documentation>
|
1323
|
+
</xs:annotation>
|
1324
|
+
<xs:restriction base="xs:ID">
|
1325
|
+
<xs:pattern value="R[\d\-_a-zA-Z]+" />
|
1326
|
+
</xs:restriction>
|
1327
|
+
</xs:simpleType>
|
1328
|
+
<xs:simpleType name="ReleaseRelationshipType">
|
1329
|
+
<xs:annotation>
|
1330
|
+
<xs:documentation>A Type of relationship between two Releases.</xs:documentation>
|
1331
|
+
</xs:annotation>
|
1332
|
+
<xs:restriction base="xs:string">
|
1333
|
+
<xs:enumeration value="HasArtistFromEnsemble" />
|
1334
|
+
<xs:enumeration value="HasArtistFromSameEnsemble" />
|
1335
|
+
<xs:enumeration value="HasEnsembleWithArtist" />
|
1336
|
+
<xs:enumeration value="HasSameArtist" />
|
1337
|
+
<xs:enumeration value="HasSameRecordingProject" />
|
1338
|
+
<xs:enumeration value="HasSimilarContent" />
|
1339
|
+
<xs:enumeration value="IsDigitalEquivalentToPhysical" />
|
1340
|
+
<xs:enumeration value="IsEquivalentToAudio" />
|
1341
|
+
<xs:enumeration value="IsEquivalentToVideo" />
|
1342
|
+
<xs:enumeration value="IsExtendedFromAlbum" />
|
1343
|
+
<xs:enumeration value="IsFromAudio" />
|
1344
|
+
<xs:enumeration value="IsFromVideo" />
|
1345
|
+
<xs:enumeration value="IsParentRelease" />
|
1346
|
+
<xs:enumeration value="IsPhysicalEquivalentToDigital" />
|
1347
|
+
<xs:enumeration value="IsReleaseFromRelease" />
|
1348
|
+
<xs:enumeration value="IsShortenedFromAlbum" />
|
1349
|
+
<xs:enumeration value="Unknown" />
|
1350
|
+
<xs:enumeration value="UserDefined" />
|
1351
|
+
</xs:restriction>
|
1352
|
+
</xs:simpleType>
|
1353
|
+
<xs:simpleType name="ReleaseResourceType">
|
1354
|
+
<xs:annotation>
|
1355
|
+
<xs:documentation>A Type of Resource in the context of a Release.</xs:documentation>
|
1356
|
+
</xs:annotation>
|
1357
|
+
<xs:restriction base="xs:string">
|
1358
|
+
<xs:enumeration value="PrimaryResource" />
|
1359
|
+
<xs:enumeration value="SecondaryResource" />
|
1360
|
+
</xs:restriction>
|
1361
|
+
</xs:simpleType>
|
1362
|
+
<xs:simpleType name="ReleaseType">
|
1363
|
+
<xs:annotation>
|
1364
|
+
<xs:documentation>A Type of Release according to its content, Duration and/or number of components. Note: a ReleaseType is the form in which a ReleaseCreator anticipates offering a Release to Consumers.</xs:documentation>
|
1365
|
+
</xs:annotation>
|
1366
|
+
<xs:restriction base="xs:string">
|
1367
|
+
<xs:enumeration value="AdvertisementVideo" />
|
1368
|
+
<xs:enumeration value="Album" />
|
1369
|
+
<xs:enumeration value="AlertToneRelease" />
|
1370
|
+
<xs:enumeration value="Animation" />
|
1371
|
+
<xs:enumeration value="AsPerContract" />
|
1372
|
+
<xs:enumeration value="AudioClipRelease" />
|
1373
|
+
<xs:enumeration value="BackCoverImageRelease" />
|
1374
|
+
<xs:enumeration value="BookletBackImageRelease" />
|
1375
|
+
<xs:enumeration value="BookletFrontImageRelease" />
|
1376
|
+
<xs:enumeration value="BookletRelease" />
|
1377
|
+
<xs:enumeration value="Bundle" />
|
1378
|
+
<xs:enumeration value="ConcertVideo" />
|
1379
|
+
<xs:enumeration value="CorporateFilm" />
|
1380
|
+
<xs:enumeration value="Documentary" />
|
1381
|
+
<xs:enumeration value="DocumentImageRelease" />
|
1382
|
+
<xs:enumeration value="EBookRelease" />
|
1383
|
+
<xs:enumeration value="Episode" />
|
1384
|
+
<xs:enumeration value="FeatureFilm" />
|
1385
|
+
<xs:enumeration value="FrontCoverImageRelease" />
|
1386
|
+
<xs:enumeration value="IconRelease" />
|
1387
|
+
<xs:enumeration value="InfomercialVideo" />
|
1388
|
+
<xs:enumeration value="InteractiveBookletRelease" />
|
1389
|
+
<xs:enumeration value="KaraokeRelease" />
|
1390
|
+
<xs:enumeration value="LiveEventVideo" />
|
1391
|
+
<xs:enumeration value="LogoRelease" />
|
1392
|
+
<xs:enumeration value="LongFormMusicalWorkVideoRelease" />
|
1393
|
+
<xs:enumeration value="LongFormNonMusicalWorkVideoRelease" />
|
1394
|
+
<xs:enumeration value="LyricSheetRelease" />
|
1395
|
+
<xs:enumeration value="MusicalWorkBasedGameRelease" />
|
1396
|
+
<xs:enumeration value="MusicalWorkClipRelease" />
|
1397
|
+
<xs:enumeration value="MusicalWorkReadalongVideoRelease" />
|
1398
|
+
<xs:enumeration value="MusicalWorkTrailerRelease" />
|
1399
|
+
<xs:enumeration value="MusicalWorkVideoChapterRelease" />
|
1400
|
+
<xs:enumeration value="News" />
|
1401
|
+
<xs:enumeration value="NonMusicalWorkBasedGameRelease" />
|
1402
|
+
<xs:enumeration value="NonMusicalWorkClipRelease" />
|
1403
|
+
<xs:enumeration value="NonMusicalWorkReadalongVideoRelease" />
|
1404
|
+
<xs:enumeration value="NonMusicalWorkTrailerRelease" />
|
1405
|
+
<xs:enumeration value="NonMusicalWorkVideoChapterRelease" />
|
1406
|
+
<xs:enumeration value="NonSerialAudioVisualRecording" />
|
1407
|
+
<xs:enumeration value="PhotographRelease" />
|
1408
|
+
<xs:enumeration value="RingbackToneRelease" />
|
1409
|
+
<xs:enumeration value="RingtoneRelease" />
|
1410
|
+
<xs:enumeration value="ScreensaverRelease" />
|
1411
|
+
<xs:enumeration value="Season" />
|
1412
|
+
<xs:enumeration value="Series" />
|
1413
|
+
<xs:enumeration value="SheetMusicRelease" />
|
1414
|
+
<xs:enumeration value="ShortFormMusicalWorkVideoRelease" />
|
1415
|
+
<xs:enumeration value="ShortFormNonMusicalWorkVideoRelease" />
|
1416
|
+
<xs:enumeration value="Single" />
|
1417
|
+
<xs:enumeration value="SingleResourceRelease" />
|
1418
|
+
<xs:enumeration value="TrackRelease" />
|
1419
|
+
<xs:enumeration value="TrailerVideo" />
|
1420
|
+
<xs:enumeration value="TrayImageRelease" />
|
1421
|
+
<xs:enumeration value="Unknown" />
|
1422
|
+
<xs:enumeration value="UserDefined" />
|
1423
|
+
<xs:enumeration value="VideoChapterRelease" />
|
1424
|
+
<xs:enumeration value="VideoClipRelease" />
|
1425
|
+
<xs:enumeration value="VideoScreenCaptureRelease" />
|
1426
|
+
<xs:enumeration value="VideoSingle" />
|
1427
|
+
<xs:enumeration value="WallpaperRelease" />
|
1428
|
+
</xs:restriction>
|
1429
|
+
</xs:simpleType>
|
1430
|
+
<xs:simpleType name="ReportFormat">
|
1431
|
+
<xs:annotation>
|
1432
|
+
<xs:documentation>A Type of Report according to its FileFormat.</xs:documentation>
|
1433
|
+
</xs:annotation>
|
1434
|
+
<xs:restriction base="xs:string">
|
1435
|
+
<xs:enumeration value="ASCII" />
|
1436
|
+
<xs:enumeration value="CSV" />
|
1437
|
+
<xs:enumeration value="Excel2000" />
|
1438
|
+
<xs:enumeration value="Excel2007" />
|
1439
|
+
<xs:enumeration value="Excel2010" />
|
1440
|
+
<xs:enumeration value="UserDefined" />
|
1441
|
+
<xs:enumeration value="XML" />
|
1442
|
+
</xs:restriction>
|
1443
|
+
</xs:simpleType>
|
1444
|
+
<xs:simpleType name="ReportType">
|
1445
|
+
<xs:annotation>
|
1446
|
+
<xs:documentation>A Type of Report.</xs:documentation>
|
1447
|
+
</xs:annotation>
|
1448
|
+
<xs:restriction base="xs:string">
|
1449
|
+
<xs:enumeration value="AllOrderedReleasesInQueueRequestCall" />
|
1450
|
+
<xs:enumeration value="DeliveryFrequencyRequestCall" />
|
1451
|
+
<xs:enumeration value="InformationAboutAvailableReleaseCall" />
|
1452
|
+
<xs:enumeration value="OrderedReleasesInQueueRequestCall" />
|
1453
|
+
<xs:enumeration value="RedeliveryRequestCall" />
|
1454
|
+
<xs:enumeration value="ReleaseAvailabilityCall" />
|
1455
|
+
<xs:enumeration value="ReleaseAvailabilityRequestCall" />
|
1456
|
+
<xs:enumeration value="ReleaseStatusInformationCall" />
|
1457
|
+
<xs:enumeration value="ReleaseStatusRequestCall" />
|
1458
|
+
<xs:enumeration value="ReleaseSupplyChainRequestCall" />
|
1459
|
+
<xs:enumeration value="ReportDeliveryCall" />
|
1460
|
+
<xs:enumeration value="ReportRequestCall" />
|
1461
|
+
<xs:enumeration value="SupplyChainStatusCall" />
|
1462
|
+
<xs:enumeration value="UserDefined" />
|
1463
|
+
</xs:restriction>
|
1464
|
+
</xs:simpleType>
|
1465
|
+
<xs:simpleType name="RepresentativeImageReference">
|
1466
|
+
<xs:annotation>
|
1467
|
+
<xs:documentation>A Reference to a Image which is represents a specific Resource .</xs:documentation>
|
1468
|
+
</xs:annotation>
|
1469
|
+
<xs:restriction base="xs:IDREF">
|
1470
|
+
<xs:pattern value="A[\d\-_a-zA-Z]+" />
|
1471
|
+
</xs:restriction>
|
1472
|
+
</xs:simpleType>
|
1473
|
+
<xs:simpleType name="RequestConditionReference">
|
1474
|
+
<xs:annotation>
|
1475
|
+
<xs:documentation>A Reference to a LicenseOrClaimCondition which is contained within a specific request.</xs:documentation>
|
1476
|
+
</xs:annotation>
|
1477
|
+
<xs:restriction base="xs:IDREF">
|
1478
|
+
<xs:pattern value="E[\d\-_a-zA-Z]+" />
|
1479
|
+
</xs:restriction>
|
1480
|
+
</xs:simpleType>
|
1481
|
+
<xs:simpleType name="RequestedActionType">
|
1482
|
+
<xs:annotation>
|
1483
|
+
<xs:documentation>A Type of action requested.</xs:documentation>
|
1484
|
+
</xs:annotation>
|
1485
|
+
<xs:restriction base="xs:string">
|
1486
|
+
<xs:enumeration value="AdditionalInformationOnly" />
|
1487
|
+
<xs:enumeration value="CorrectAndInform" />
|
1488
|
+
<xs:enumeration value="CorrectAndResend" />
|
1489
|
+
<xs:enumeration value="NoAction" />
|
1490
|
+
<xs:enumeration value="UserDefined" />
|
1491
|
+
</xs:restriction>
|
1492
|
+
</xs:simpleType>
|
1493
|
+
<xs:simpleType name="RequestReleaseReference">
|
1494
|
+
<xs:annotation>
|
1495
|
+
<xs:documentation>A Reference to a Release which is contained within a specific request.</xs:documentation>
|
1496
|
+
</xs:annotation>
|
1497
|
+
<xs:restriction base="xs:IDREF">
|
1498
|
+
<xs:pattern value="R[\d\-_a-zA-Z]+" />
|
1499
|
+
</xs:restriction>
|
1500
|
+
</xs:simpleType>
|
1501
|
+
<xs:simpleType name="RequestResourceReference">
|
1502
|
+
<xs:annotation>
|
1503
|
+
<xs:documentation>A Reference to a Resource which is contained within a specific request.</xs:documentation>
|
1504
|
+
</xs:annotation>
|
1505
|
+
<xs:restriction base="xs:IDREF">
|
1506
|
+
<xs:pattern value="A[\d\-_a-zA-Z]+" />
|
1507
|
+
</xs:restriction>
|
1508
|
+
</xs:simpleType>
|
1509
|
+
<xs:simpleType name="RequestRightShareReference">
|
1510
|
+
<xs:annotation>
|
1511
|
+
<xs:documentation>A Reference to a RightShare which is contained within a specific request.</xs:documentation>
|
1512
|
+
</xs:annotation>
|
1513
|
+
<xs:restriction base="xs:IDREF">
|
1514
|
+
<xs:pattern value="S[\d\-_a-zA-Z]+" />
|
1515
|
+
</xs:restriction>
|
1516
|
+
</xs:simpleType>
|
1517
|
+
<xs:simpleType name="RequestWorkReference">
|
1518
|
+
<xs:annotation>
|
1519
|
+
<xs:documentation>A Reference to a Work which is contained within a specific request.</xs:documentation>
|
1520
|
+
</xs:annotation>
|
1521
|
+
<xs:restriction base="xs:IDREF">
|
1522
|
+
<xs:pattern value="W[\d\-_a-zA-Z]+" />
|
1523
|
+
</xs:restriction>
|
1524
|
+
</xs:simpleType>
|
1525
|
+
<xs:simpleType name="ResourceContainedResourceReference">
|
1526
|
+
<xs:annotation>
|
1527
|
+
<xs:documentation>A Reference to a Resource which is contained within a specific Resource .</xs:documentation>
|
1528
|
+
</xs:annotation>
|
1529
|
+
<xs:restriction base="xs:IDREF">
|
1530
|
+
<xs:pattern value="A[\d\-_a-zA-Z]+" />
|
1531
|
+
</xs:restriction>
|
1532
|
+
</xs:simpleType>
|
1533
|
+
<xs:simpleType name="ResourceContributorRole">
|
1534
|
+
<xs:annotation>
|
1535
|
+
<xs:documentation>A role played by a Contributor in relation to a Fixation of an abstract Creation.</xs:documentation>
|
1536
|
+
</xs:annotation>
|
1537
|
+
<xs:restriction base="xs:string">
|
1538
|
+
<xs:enumeration value="Actor" />
|
1539
|
+
<xs:enumeration value="Architect" />
|
1540
|
+
<xs:enumeration value="Artist" />
|
1541
|
+
<xs:enumeration value="AssociatedPerformer" />
|
1542
|
+
<xs:enumeration value="Band" />
|
1543
|
+
<xs:enumeration value="BookPublisher" />
|
1544
|
+
<xs:enumeration value="Cartoonist" />
|
1545
|
+
<xs:enumeration value="Choir" />
|
1546
|
+
<xs:enumeration value="Choreographer" />
|
1547
|
+
<xs:enumeration value="ComputerGraphicCreator" />
|
1548
|
+
<xs:enumeration value="Conductor" />
|
1549
|
+
<xs:enumeration value="Contributor" />
|
1550
|
+
<xs:enumeration value="CostumeDesigner" />
|
1551
|
+
<xs:enumeration value="Designer" />
|
1552
|
+
<xs:enumeration value="Ensemble" />
|
1553
|
+
<xs:enumeration value="FeaturedArtist" />
|
1554
|
+
<xs:enumeration value="FilmDirector" />
|
1555
|
+
<xs:enumeration value="FilmDistributor" />
|
1556
|
+
<xs:enumeration value="FilmEditor" />
|
1557
|
+
<xs:enumeration value="FilmProducer" />
|
1558
|
+
<xs:enumeration value="FilmSoundEngineer" />
|
1559
|
+
<xs:enumeration value="GraphicArtist" />
|
1560
|
+
<xs:enumeration value="GraphicDesigner" />
|
1561
|
+
<xs:enumeration value="Journalist" />
|
1562
|
+
<xs:enumeration value="MainArtist" />
|
1563
|
+
<xs:enumeration value="NewspaperPublisher" />
|
1564
|
+
<xs:enumeration value="Orchestra" />
|
1565
|
+
<xs:enumeration value="Painter" />
|
1566
|
+
<xs:enumeration value="PeriodicalPublisher" />
|
1567
|
+
<xs:enumeration value="Photographer" />
|
1568
|
+
<xs:enumeration value="PhotographyDirector" />
|
1569
|
+
<xs:enumeration value="PrimaryMusician" />
|
1570
|
+
<xs:enumeration value="Producer" />
|
1571
|
+
<xs:enumeration value="Programmer" />
|
1572
|
+
<xs:enumeration value="RightsControllerOnProduct" />
|
1573
|
+
<xs:enumeration value="ScreenplayAuthor" />
|
1574
|
+
<xs:enumeration value="SetDesigner" />
|
1575
|
+
<xs:enumeration value="Soloist" />
|
1576
|
+
<xs:enumeration value="StageDirector" />
|
1577
|
+
<xs:enumeration value="StudioPersonnel" />
|
1578
|
+
<xs:enumeration value="SubtitlesEditor" />
|
1579
|
+
<xs:enumeration value="SubtitlesTranslator" />
|
1580
|
+
<xs:enumeration value="Unknown" />
|
1581
|
+
<xs:enumeration value="UserDefined" />
|
1582
|
+
</xs:restriction>
|
1583
|
+
</xs:simpleType>
|
1584
|
+
<xs:simpleType name="ResourceGroupResourceReference">
|
1585
|
+
<xs:annotation>
|
1586
|
+
<xs:documentation>A Reference to a Resource which is contained within a specific group of Resources.</xs:documentation>
|
1587
|
+
</xs:annotation>
|
1588
|
+
<xs:restriction base="xs:IDREF">
|
1589
|
+
<xs:pattern value="A[\d\-_a-zA-Z]+" />
|
1590
|
+
</xs:restriction>
|
1591
|
+
</xs:simpleType>
|
1592
|
+
<xs:simpleType name="ResourceMusicalWorkReference">
|
1593
|
+
<xs:annotation>
|
1594
|
+
<xs:documentation>A Reference to a MusicalWork which is contained within a specific Resource.</xs:documentation>
|
1595
|
+
</xs:annotation>
|
1596
|
+
<xs:restriction base="xs:IDREF">
|
1597
|
+
<xs:pattern value="W[\d\-_a-zA-Z]+" />
|
1598
|
+
</xs:restriction>
|
1599
|
+
</xs:simpleType>
|
1600
|
+
<xs:simpleType name="ResourceReference">
|
1601
|
+
<xs:annotation>
|
1602
|
+
<xs:documentation>An Identifier of a Resource which is specific to a DdexMessage.</xs:documentation>
|
1603
|
+
</xs:annotation>
|
1604
|
+
<xs:restriction base="xs:ID">
|
1605
|
+
<xs:pattern value="A[\d\-_a-zA-Z]+" />
|
1606
|
+
</xs:restriction>
|
1607
|
+
</xs:simpleType>
|
1608
|
+
<xs:simpleType name="ResourceReleaseReference">
|
1609
|
+
<xs:annotation>
|
1610
|
+
<xs:documentation>A Reference to a Release which is included in a specific Resource.</xs:documentation>
|
1611
|
+
</xs:annotation>
|
1612
|
+
<xs:restriction base="xs:IDREF">
|
1613
|
+
<xs:pattern value="R[\d\-_a-zA-Z]+" />
|
1614
|
+
</xs:restriction>
|
1615
|
+
</xs:simpleType>
|
1616
|
+
<xs:simpleType name="ResourceType">
|
1617
|
+
<xs:annotation>
|
1618
|
+
<xs:documentation>A Type of Resource.</xs:documentation>
|
1619
|
+
</xs:annotation>
|
1620
|
+
<xs:restriction base="xs:string">
|
1621
|
+
<xs:enumeration value="Image" />
|
1622
|
+
<xs:enumeration value="MIDI" />
|
1623
|
+
<xs:enumeration value="SheetMusic" />
|
1624
|
+
<xs:enumeration value="Software" />
|
1625
|
+
<xs:enumeration value="SoundRecording" />
|
1626
|
+
<xs:enumeration value="Text" />
|
1627
|
+
<xs:enumeration value="UserDefinedResource" />
|
1628
|
+
<xs:enumeration value="Video" />
|
1629
|
+
</xs:restriction>
|
1630
|
+
</xs:simpleType>
|
1631
|
+
<xs:simpleType name="RightsControllerRole">
|
1632
|
+
<xs:annotation>
|
1633
|
+
<xs:documentation>A role of a RightsController.</xs:documentation>
|
1634
|
+
</xs:annotation>
|
1635
|
+
<xs:restriction base="xs:string">
|
1636
|
+
<xs:enumeration value="AdministratingRecordCompany" />
|
1637
|
+
<xs:enumeration value="RightsAdministrator" />
|
1638
|
+
<xs:enumeration value="RightsController" />
|
1639
|
+
<xs:enumeration value="RoyaltyAdministrator" />
|
1640
|
+
<xs:enumeration value="Unknown" />
|
1641
|
+
</xs:restriction>
|
1642
|
+
</xs:simpleType>
|
1643
|
+
<xs:simpleType name="RightsCoverage">
|
1644
|
+
<xs:annotation>
|
1645
|
+
<xs:documentation>A Type of Right which is covered.</xs:documentation>
|
1646
|
+
</xs:annotation>
|
1647
|
+
<xs:restriction base="xs:string">
|
1648
|
+
<xs:enumeration value="MakeAvailableRight" />
|
1649
|
+
<xs:enumeration value="MechanicalRight" />
|
1650
|
+
<xs:enumeration value="PerformingRight" />
|
1651
|
+
<xs:enumeration value="ReproductionRight" />
|
1652
|
+
<xs:enumeration value="SynchronizationRight" />
|
1653
|
+
</xs:restriction>
|
1654
|
+
</xs:simpleType>
|
1655
|
+
<xs:simpleType name="RightShareReference">
|
1656
|
+
<xs:annotation>
|
1657
|
+
<xs:documentation>A Reference to a RightShare.</xs:documentation>
|
1658
|
+
</xs:annotation>
|
1659
|
+
<xs:restriction base="xs:ID">
|
1660
|
+
<xs:pattern value="S[\d\-_a-zA-Z]+" />
|
1661
|
+
</xs:restriction>
|
1662
|
+
</xs:simpleType>
|
1663
|
+
<xs:simpleType name="RightShareReleaseReference">
|
1664
|
+
<xs:annotation>
|
1665
|
+
<xs:documentation>A Reference to a Release which is contained within a specific RightShare.</xs:documentation>
|
1666
|
+
</xs:annotation>
|
1667
|
+
<xs:restriction base="xs:IDREF">
|
1668
|
+
<xs:pattern value="R[\d\-_a-zA-Z]+" />
|
1669
|
+
</xs:restriction>
|
1670
|
+
</xs:simpleType>
|
1671
|
+
<xs:simpleType name="RightShareResourceReference">
|
1672
|
+
<xs:annotation>
|
1673
|
+
<xs:documentation>A Reference to a Resource which is contained within a specific RightShare.</xs:documentation>
|
1674
|
+
</xs:annotation>
|
1675
|
+
<xs:restriction base="xs:IDREF">
|
1676
|
+
<xs:pattern value="A[\d\-_a-zA-Z]+" />
|
1677
|
+
</xs:restriction>
|
1678
|
+
</xs:simpleType>
|
1679
|
+
<xs:simpleType name="RightShareWorkReference">
|
1680
|
+
<xs:annotation>
|
1681
|
+
<xs:documentation>A Reference to a Work which is contained within a specific RightShare.</xs:documentation>
|
1682
|
+
</xs:annotation>
|
1683
|
+
<xs:restriction base="xs:IDREF">
|
1684
|
+
<xs:pattern value="W[\d\-_a-zA-Z]+" />
|
1685
|
+
</xs:restriction>
|
1686
|
+
</xs:simpleType>
|
1687
|
+
<xs:simpleType name="RoyaltyRateCalculationType">
|
1688
|
+
<xs:annotation>
|
1689
|
+
<xs:documentation>A Type of RoyaltyRate according to the calculation method.</xs:documentation>
|
1690
|
+
</xs:annotation>
|
1691
|
+
<xs:restriction base="xs:string">
|
1692
|
+
<xs:enumeration value="ControlledCompositionRoyaltyRate" />
|
1693
|
+
<xs:enumeration value="ControlledShareRoyaltyRate" />
|
1694
|
+
<xs:enumeration value="MinimumStatutoryRoyaltyRate" />
|
1695
|
+
<xs:enumeration value="NegotiatedRoyaltyRate" />
|
1696
|
+
<xs:enumeration value="ReducedRoyaltyRate" />
|
1697
|
+
<xs:enumeration value="ReducedStatutoryRoyaltyRate" />
|
1698
|
+
<xs:enumeration value="StatutoryRoyaltyRate" />
|
1699
|
+
</xs:restriction>
|
1700
|
+
</xs:simpleType>
|
1701
|
+
<xs:simpleType name="RoyaltyRateType">
|
1702
|
+
<xs:annotation>
|
1703
|
+
<xs:documentation>A Type of RoyaltyRate.</xs:documentation>
|
1704
|
+
</xs:annotation>
|
1705
|
+
<xs:restriction base="xs:string">
|
1706
|
+
<xs:enumeration value="PennyRate" />
|
1707
|
+
<xs:enumeration value="PercentageRoyaltyRate" />
|
1708
|
+
<xs:enumeration value="UserDefined" />
|
1709
|
+
</xs:restriction>
|
1710
|
+
</xs:simpleType>
|
1711
|
+
<xs:simpleType name="SalesReportAvailabilityStatus">
|
1712
|
+
<xs:annotation>
|
1713
|
+
<xs:documentation>A status of the availability of a SalesReport.</xs:documentation>
|
1714
|
+
</xs:annotation>
|
1715
|
+
<xs:restriction base="xs:string">
|
1716
|
+
<xs:enumeration value="SalesReportAvailable" />
|
1717
|
+
<xs:enumeration value="SalesReportNotAvailable" />
|
1718
|
+
</xs:restriction>
|
1719
|
+
</xs:simpleType>
|
1720
|
+
<xs:simpleType name="SheetMusicCodecType">
|
1721
|
+
<xs:annotation>
|
1722
|
+
<xs:documentation>A Type of SheetMusicCodec.</xs:documentation>
|
1723
|
+
</xs:annotation>
|
1724
|
+
<xs:restriction base="xs:string" />
|
1725
|
+
</xs:simpleType>
|
1726
|
+
<xs:simpleType name="SheetMusicType">
|
1727
|
+
<xs:annotation>
|
1728
|
+
<xs:documentation>A Type of SheetMusic.</xs:documentation>
|
1729
|
+
</xs:annotation>
|
1730
|
+
<xs:restriction base="xs:string" />
|
1731
|
+
</xs:simpleType>
|
1732
|
+
<xs:simpleType name="SICI">
|
1733
|
+
<xs:annotation>
|
1734
|
+
<xs:documentation>A Serial Item and Contribution Identifier, the ANSI/NISO Z39.56-1996 StandardIdentifier for components of serials.</xs:documentation>
|
1735
|
+
</xs:annotation>
|
1736
|
+
<xs:restriction base="xs:string" />
|
1737
|
+
</xs:simpleType>
|
1738
|
+
<xs:simpleType name="SoftwareType">
|
1739
|
+
<xs:annotation>
|
1740
|
+
<xs:documentation>A Type of Software.</xs:documentation>
|
1741
|
+
</xs:annotation>
|
1742
|
+
<xs:restriction base="xs:string">
|
1743
|
+
<xs:enumeration value="InteractiveBooklet" />
|
1744
|
+
<xs:enumeration value="MusicalWorkBasedGame" />
|
1745
|
+
<xs:enumeration value="NonMusicalWorkBasedGame" />
|
1746
|
+
<xs:enumeration value="Screensaver" />
|
1747
|
+
<xs:enumeration value="Unknown" />
|
1748
|
+
<xs:enumeration value="UserDefined" />
|
1749
|
+
</xs:restriction>
|
1750
|
+
</xs:simpleType>
|
1751
|
+
<xs:simpleType name="SoundProcessorType">
|
1752
|
+
<xs:annotation>
|
1753
|
+
<xs:documentation>A Type of sound processor.</xs:documentation>
|
1754
|
+
</xs:annotation>
|
1755
|
+
<xs:restriction base="xs:string">
|
1756
|
+
<xs:enumeration value="MidiProcessor" />
|
1757
|
+
<xs:enumeration value="Unknown" />
|
1758
|
+
<xs:enumeration value="UserDefined" />
|
1759
|
+
</xs:restriction>
|
1760
|
+
</xs:simpleType>
|
1761
|
+
<xs:simpleType name="SoundRecordingCollectionReference">
|
1762
|
+
<xs:annotation>
|
1763
|
+
<xs:documentation>A Reference to a Collection which is contained within a specific Release.</xs:documentation>
|
1764
|
+
</xs:annotation>
|
1765
|
+
<xs:restriction base="xs:IDREF">
|
1766
|
+
<xs:pattern value="X[\d\-_a-zA-Z]+" />
|
1767
|
+
</xs:restriction>
|
1768
|
+
</xs:simpleType>
|
1769
|
+
<xs:simpleType name="SoundRecordingType">
|
1770
|
+
<xs:annotation>
|
1771
|
+
<xs:documentation>A Type of SoundRecording.</xs:documentation>
|
1772
|
+
</xs:annotation>
|
1773
|
+
<xs:restriction base="xs:string">
|
1774
|
+
<xs:enumeration value="MusicalWorkReadalongSoundRecording" />
|
1775
|
+
<xs:enumeration value="MusicalWorkSoundRecording" />
|
1776
|
+
<xs:enumeration value="NonMusicalWorkReadalongSoundRecording" />
|
1777
|
+
<xs:enumeration value="NonMusicalWorkSoundRecording" />
|
1778
|
+
<xs:enumeration value="Unknown" />
|
1779
|
+
<xs:enumeration value="UserDefined" />
|
1780
|
+
</xs:restriction>
|
1781
|
+
</xs:simpleType>
|
1782
|
+
<xs:simpleType name="SupplyChainStatus">
|
1783
|
+
<xs:annotation>
|
1784
|
+
<xs:documentation>A status of a Release in a supply chain.</xs:documentation>
|
1785
|
+
</xs:annotation>
|
1786
|
+
<xs:restriction base="xs:string">
|
1787
|
+
<xs:enumeration value="DeliveredToReleaseDistributor" />
|
1788
|
+
<xs:enumeration value="InDeliveryToReleaseDistributor" />
|
1789
|
+
<xs:enumeration value="InPreparationForDeliveryToReleaseDistributor" />
|
1790
|
+
<xs:enumeration value="OrderPlacedForReleaseDistributor" />
|
1791
|
+
<xs:enumeration value="ProcessingErrorAtReleaseCreator" />
|
1792
|
+
<xs:enumeration value="ProcessingErrorAtReleaseDistributor" />
|
1793
|
+
<xs:enumeration value="ReleaseMadeAvailableToConsumers" />
|
1794
|
+
<xs:enumeration value="ReleaseNotAvailable" />
|
1795
|
+
<xs:enumeration value="ReleaseReceivedByReleaseDistributor" />
|
1796
|
+
<xs:enumeration value="ReleaseStagedForPublication" />
|
1797
|
+
<xs:enumeration value="ReleaseTakenDown" />
|
1798
|
+
<xs:enumeration value="SuccessfullyIngestedByReleaseDistributor" />
|
1799
|
+
<xs:enumeration value="UserDefined" />
|
1800
|
+
</xs:restriction>
|
1801
|
+
</xs:simpleType>
|
1802
|
+
<xs:simpleType name="TaxScope">
|
1803
|
+
<xs:annotation>
|
1804
|
+
<xs:documentation>A Type of Tax according to its scope.</xs:documentation>
|
1805
|
+
</xs:annotation>
|
1806
|
+
<xs:restriction base="xs:string">
|
1807
|
+
<xs:enumeration value="CombinedTax" />
|
1808
|
+
<xs:enumeration value="FederalTax" />
|
1809
|
+
<xs:enumeration value="LocalTax" />
|
1810
|
+
<xs:enumeration value="ProvincialTax" />
|
1811
|
+
<xs:enumeration value="StateTax" />
|
1812
|
+
<xs:enumeration value="UserDefined" />
|
1813
|
+
</xs:restriction>
|
1814
|
+
</xs:simpleType>
|
1815
|
+
<xs:simpleType name="TaxType">
|
1816
|
+
<xs:annotation>
|
1817
|
+
<xs:documentation>A Type of Tax.</xs:documentation>
|
1818
|
+
</xs:annotation>
|
1819
|
+
<xs:restriction base="xs:string">
|
1820
|
+
<xs:enumeration value="CombinedTax" />
|
1821
|
+
<xs:enumeration value="SalesTax" />
|
1822
|
+
<xs:enumeration value="ServiceTax" />
|
1823
|
+
<xs:enumeration value="SourceTax" />
|
1824
|
+
<xs:enumeration value="UserDefined" />
|
1825
|
+
</xs:restriction>
|
1826
|
+
</xs:simpleType>
|
1827
|
+
<xs:simpleType name="TechnicalResourceDetailsReference">
|
1828
|
+
<xs:annotation>
|
1829
|
+
<xs:documentation>An Identifier of a Composite specifying technical details of a Resource which is specific to a DdexMessage.</xs:documentation>
|
1830
|
+
</xs:annotation>
|
1831
|
+
<xs:restriction base="xs:ID">
|
1832
|
+
<xs:pattern value="T[\d\-_a-zA-Z]+" />
|
1833
|
+
</xs:restriction>
|
1834
|
+
</xs:simpleType>
|
1835
|
+
<xs:simpleType name="TextCodecType">
|
1836
|
+
<xs:annotation>
|
1837
|
+
<xs:documentation>A Type of TextCodec.</xs:documentation>
|
1838
|
+
</xs:annotation>
|
1839
|
+
<xs:restriction base="xs:string">
|
1840
|
+
<xs:enumeration value="ASCII" />
|
1841
|
+
<xs:enumeration value="HTML" />
|
1842
|
+
<xs:enumeration value="PDF" />
|
1843
|
+
<xs:enumeration value="PostScript" />
|
1844
|
+
<xs:enumeration value="RTF" />
|
1845
|
+
<xs:enumeration value="Unknown" />
|
1846
|
+
<xs:enumeration value="UserDefined" />
|
1847
|
+
</xs:restriction>
|
1848
|
+
</xs:simpleType>
|
1849
|
+
<xs:simpleType name="TextType">
|
1850
|
+
<xs:annotation>
|
1851
|
+
<xs:documentation>A Type of Text.</xs:documentation>
|
1852
|
+
</xs:annotation>
|
1853
|
+
<xs:restriction base="xs:string">
|
1854
|
+
<xs:enumeration value="EBook" />
|
1855
|
+
<xs:enumeration value="LinerNotes" />
|
1856
|
+
<xs:enumeration value="LyricText" />
|
1857
|
+
<xs:enumeration value="NonInteractiveBooklet" />
|
1858
|
+
<xs:enumeration value="TextDocument" />
|
1859
|
+
<xs:enumeration value="Unknown" />
|
1860
|
+
<xs:enumeration value="UserDefined" />
|
1861
|
+
</xs:restriction>
|
1862
|
+
</xs:simpleType>
|
1863
|
+
<xs:simpleType name="ThemeType">
|
1864
|
+
<xs:annotation>
|
1865
|
+
<xs:documentation>A Type of Theme.</xs:documentation>
|
1866
|
+
</xs:annotation>
|
1867
|
+
<xs:restriction base="xs:string">
|
1868
|
+
<xs:enumeration value="ClosingTheme" />
|
1869
|
+
<xs:enumeration value="MainTheme" />
|
1870
|
+
<xs:enumeration value="OpeningTheme" />
|
1871
|
+
<xs:enumeration value="SegmentTheme" />
|
1872
|
+
<xs:enumeration value="TitleTheme" />
|
1873
|
+
<xs:enumeration value="UserDefined" />
|
1874
|
+
</xs:restriction>
|
1875
|
+
</xs:simpleType>
|
1876
|
+
<xs:simpleType name="TitleType">
|
1877
|
+
<xs:annotation>
|
1878
|
+
<xs:documentation>A Type of Title which defines its origin, form or the function it fulfils in relation to a Creation. Note: A Title may fulfil more than one role. Example: "Help" may be both the OriginalTitle and the DisplayTitle for the well-known Beatles song.</xs:documentation>
|
1879
|
+
</xs:annotation>
|
1880
|
+
<xs:restriction base="xs:string">
|
1881
|
+
<xs:enumeration value="AbbreviatedDisplayTitle" />
|
1882
|
+
<xs:enumeration value="AlternativeTitle" />
|
1883
|
+
<xs:enumeration value="DisplayTitle" />
|
1884
|
+
<xs:enumeration value="FirstLineOfText" />
|
1885
|
+
<xs:enumeration value="FormalTitle" />
|
1886
|
+
<xs:enumeration value="GroupingTitle" />
|
1887
|
+
<xs:enumeration value="IncorrectTitle" />
|
1888
|
+
<xs:enumeration value="MisspelledTitle" />
|
1889
|
+
<xs:enumeration value="OriginalTitle" />
|
1890
|
+
<xs:enumeration value="SearchTitle" />
|
1891
|
+
<xs:enumeration value="SortingTitle" />
|
1892
|
+
<xs:enumeration value="TitleAsPart" />
|
1893
|
+
<xs:enumeration value="TitleWithoutPunctuation" />
|
1894
|
+
<xs:enumeration value="TranslatedTitle" />
|
1895
|
+
<xs:enumeration value="Unknown" />
|
1896
|
+
<xs:enumeration value="UserDefined" />
|
1897
|
+
</xs:restriction>
|
1898
|
+
</xs:simpleType>
|
1899
|
+
<xs:simpleType name="UnitOfBitRate">
|
1900
|
+
<xs:annotation>
|
1901
|
+
<xs:documentation>A UnitOfMeasure for a BitRate.</xs:documentation>
|
1902
|
+
</xs:annotation>
|
1903
|
+
<xs:restriction base="xs:string">
|
1904
|
+
<xs:enumeration value="bps" />
|
1905
|
+
<xs:enumeration value="Gbps" />
|
1906
|
+
<xs:enumeration value="kbps" />
|
1907
|
+
<xs:enumeration value="Mbps" />
|
1908
|
+
</xs:restriction>
|
1909
|
+
</xs:simpleType>
|
1910
|
+
<xs:simpleType name="UnitOfExtent">
|
1911
|
+
<xs:annotation>
|
1912
|
+
<xs:documentation>A UnitOfMeasure for an Extent.</xs:documentation>
|
1913
|
+
</xs:annotation>
|
1914
|
+
<xs:restriction base="xs:string">
|
1915
|
+
<xs:enumeration value="cm" />
|
1916
|
+
<xs:enumeration value="Inch" />
|
1917
|
+
<xs:enumeration value="mm" />
|
1918
|
+
<xs:enumeration value="PercentOfScreen" />
|
1919
|
+
<xs:enumeration value="Pixel" />
|
1920
|
+
</xs:restriction>
|
1921
|
+
</xs:simpleType>
|
1922
|
+
<xs:simpleType name="UnitOfFrameRate">
|
1923
|
+
<xs:annotation>
|
1924
|
+
<xs:documentation>A UnitOfMeasure for a FrameRate.</xs:documentation>
|
1925
|
+
</xs:annotation>
|
1926
|
+
<xs:restriction base="xs:string">
|
1927
|
+
<xs:enumeration value="Hz(interlaced)" />
|
1928
|
+
<xs:enumeration value="Hz(non-interlaced)" />
|
1929
|
+
</xs:restriction>
|
1930
|
+
</xs:simpleType>
|
1931
|
+
<xs:simpleType name="UnitOfFrequency">
|
1932
|
+
<xs:annotation>
|
1933
|
+
<xs:documentation>A UnitOfMeasure for a frequency.</xs:documentation>
|
1934
|
+
</xs:annotation>
|
1935
|
+
<xs:restriction base="xs:string">
|
1936
|
+
<xs:enumeration value="GHz" />
|
1937
|
+
<xs:enumeration value="Hz" />
|
1938
|
+
<xs:enumeration value="kHz" />
|
1939
|
+
<xs:enumeration value="MHz" />
|
1940
|
+
</xs:restriction>
|
1941
|
+
</xs:simpleType>
|
1942
|
+
<xs:simpleType name="UpdateIndicator">
|
1943
|
+
<xs:annotation>
|
1944
|
+
<xs:documentation>A Type of Message according to whether the Message contains original data or updates to previously sent data.</xs:documentation>
|
1945
|
+
</xs:annotation>
|
1946
|
+
<xs:restriction base="xs:string">
|
1947
|
+
<xs:enumeration value="OriginalMessage" />
|
1948
|
+
<xs:enumeration value="UpdateMessage" />
|
1949
|
+
</xs:restriction>
|
1950
|
+
</xs:simpleType>
|
1951
|
+
<xs:simpleType name="UserInterfaceType">
|
1952
|
+
<xs:annotation>
|
1953
|
+
<xs:documentation>A Type of physical interface by which a Consumer uses a Service or Release.</xs:documentation>
|
1954
|
+
</xs:annotation>
|
1955
|
+
<xs:restriction base="xs:string">
|
1956
|
+
<xs:enumeration value="AsPerContract" />
|
1957
|
+
<xs:enumeration value="ConnectedDevice" />
|
1958
|
+
<xs:enumeration value="GameConsole" />
|
1959
|
+
<xs:enumeration value="Jukebox" />
|
1960
|
+
<xs:enumeration value="KaraokeMachine" />
|
1961
|
+
<xs:enumeration value="Kiosk" />
|
1962
|
+
<xs:enumeration value="LocalStorageJukebox" />
|
1963
|
+
<xs:enumeration value="PersonalComputer" />
|
1964
|
+
<xs:enumeration value="PhysicalMediaWriter" />
|
1965
|
+
<xs:enumeration value="PortableDevice" />
|
1966
|
+
<xs:enumeration value="RemoteStorageJukebox" />
|
1967
|
+
<xs:enumeration value="Unknown" />
|
1968
|
+
<xs:enumeration value="UserDefined" />
|
1969
|
+
</xs:restriction>
|
1970
|
+
</xs:simpleType>
|
1971
|
+
<xs:simpleType name="UseType">
|
1972
|
+
<xs:annotation>
|
1973
|
+
<xs:documentation>A Type of a nature of a Service, or a Release, as used by a Consumer.</xs:documentation>
|
1974
|
+
</xs:annotation>
|
1975
|
+
<xs:restriction base="xs:string">
|
1976
|
+
<xs:enumeration value="AsPerContract" />
|
1977
|
+
<xs:enumeration value="ConditionalDownload" />
|
1978
|
+
<xs:enumeration value="ContentInfluencedStream" />
|
1979
|
+
<xs:enumeration value="Display" />
|
1980
|
+
<xs:enumeration value="Download" />
|
1981
|
+
<xs:enumeration value="Narrowcast" />
|
1982
|
+
<xs:enumeration value="NonInteractiveStream" />
|
1983
|
+
<xs:enumeration value="OnDemandStream" />
|
1984
|
+
<xs:enumeration value="PermanentDownload" />
|
1985
|
+
<xs:enumeration value="PlayInPublic" />
|
1986
|
+
<xs:enumeration value="Podcast" />
|
1987
|
+
<xs:enumeration value="Print" />
|
1988
|
+
<xs:enumeration value="Rent" />
|
1989
|
+
<xs:enumeration value="TimeInfluencedStream" />
|
1990
|
+
<xs:enumeration value="Unknown" />
|
1991
|
+
<xs:enumeration value="UseAsAlertTone" />
|
1992
|
+
<xs:enumeration value="UseAsKaraoke" />
|
1993
|
+
<xs:enumeration value="UseAsRingbackTone" />
|
1994
|
+
<xs:enumeration value="UseAsRingtone" />
|
1995
|
+
<xs:enumeration value="UseAsScreensaver" />
|
1996
|
+
<xs:enumeration value="UserDefined" />
|
1997
|
+
<xs:enumeration value="UserMakeAvailableLabelProvided" />
|
1998
|
+
<xs:enumeration value="UserMakeAvailableUserProvided" />
|
1999
|
+
<xs:enumeration value="Webcast" />
|
2000
|
+
</xs:restriction>
|
2001
|
+
</xs:simpleType>
|
2002
|
+
<xs:simpleType name="ValueType">
|
2003
|
+
<xs:annotation>
|
2004
|
+
<xs:documentation>A Type of RoyaltyRate.</xs:documentation>
|
2005
|
+
</xs:annotation>
|
2006
|
+
<xs:restriction base="xs:string">
|
2007
|
+
<xs:enumeration value="Calculated" />
|
2008
|
+
<xs:enumeration value="Maximum" />
|
2009
|
+
<xs:enumeration value="Minimum" />
|
2010
|
+
</xs:restriction>
|
2011
|
+
</xs:simpleType>
|
2012
|
+
<xs:simpleType name="VideoCodecType">
|
2013
|
+
<xs:annotation>
|
2014
|
+
<xs:documentation>A Type of VideoCodec.</xs:documentation>
|
2015
|
+
</xs:annotation>
|
2016
|
+
<xs:restriction base="xs:string">
|
2017
|
+
<xs:enumeration value="AVC" />
|
2018
|
+
<xs:enumeration value="H.261" />
|
2019
|
+
<xs:enumeration value="H.263" />
|
2020
|
+
<xs:enumeration value="MPEG-1" />
|
2021
|
+
<xs:enumeration value="MPEG-2" />
|
2022
|
+
<xs:enumeration value="MPEG-4" />
|
2023
|
+
<xs:enumeration value="QuickTime" />
|
2024
|
+
<xs:enumeration value="RealVideo" />
|
2025
|
+
<xs:enumeration value="Unknown" />
|
2026
|
+
<xs:enumeration value="UserDefined" />
|
2027
|
+
<xs:enumeration value="WMV" />
|
2028
|
+
</xs:restriction>
|
2029
|
+
</xs:simpleType>
|
2030
|
+
<xs:simpleType name="VideoCueSheetReference">
|
2031
|
+
<xs:annotation>
|
2032
|
+
<xs:documentation>A Reference to a CueSheet which is contained within a specific Video.</xs:documentation>
|
2033
|
+
</xs:annotation>
|
2034
|
+
<xs:restriction base="xs:IDREF">
|
2035
|
+
<xs:pattern value="Q[\d\-_a-zA-Z]+" />
|
2036
|
+
</xs:restriction>
|
2037
|
+
</xs:simpleType>
|
2038
|
+
<xs:simpleType name="VideoDefinitionType">
|
2039
|
+
<xs:annotation>
|
2040
|
+
<xs:documentation>A Type of resolution (or definition) in which a Video is provided.</xs:documentation>
|
2041
|
+
</xs:annotation>
|
2042
|
+
<xs:restriction base="xs:string">
|
2043
|
+
<xs:enumeration value="HighDefinition" />
|
2044
|
+
<xs:enumeration value="StandardDefinition" />
|
2045
|
+
</xs:restriction>
|
2046
|
+
</xs:simpleType>
|
2047
|
+
<xs:simpleType name="VideoType">
|
2048
|
+
<xs:annotation>
|
2049
|
+
<xs:documentation>A Type of Video.</xs:documentation>
|
2050
|
+
</xs:annotation>
|
2051
|
+
<xs:restriction base="xs:string">
|
2052
|
+
<xs:enumeration value="AdvertisementVideo" />
|
2053
|
+
<xs:enumeration value="Animation" />
|
2054
|
+
<xs:enumeration value="ConcertClip" />
|
2055
|
+
<xs:enumeration value="ConcertVideo" />
|
2056
|
+
<xs:enumeration value="CorporateFilm" />
|
2057
|
+
<xs:enumeration value="Documentary" />
|
2058
|
+
<xs:enumeration value="Episode" />
|
2059
|
+
<xs:enumeration value="FeatureFilm" />
|
2060
|
+
<xs:enumeration value="InfomercialVideo" />
|
2061
|
+
<xs:enumeration value="Karaoke" />
|
2062
|
+
<xs:enumeration value="LiveEventVideo" />
|
2063
|
+
<xs:enumeration value="LongFormMusicalWorkVideo" />
|
2064
|
+
<xs:enumeration value="LongFormNonMusicalWorkVideo" />
|
2065
|
+
<xs:enumeration value="Menu" />
|
2066
|
+
<xs:enumeration value="MusicalWorkClip" />
|
2067
|
+
<xs:enumeration value="MusicalWorkReadalongVideo" />
|
2068
|
+
<xs:enumeration value="MusicalWorkTrailer" />
|
2069
|
+
<xs:enumeration value="MusicalWorkVideoChapter" />
|
2070
|
+
<xs:enumeration value="News" />
|
2071
|
+
<xs:enumeration value="NonMusicalWorkClip" />
|
2072
|
+
<xs:enumeration value="NonMusicalWorkReadalongVideo" />
|
2073
|
+
<xs:enumeration value="NonMusicalWorkTrailer" />
|
2074
|
+
<xs:enumeration value="NonMusicalWorkVideoChapter" />
|
2075
|
+
<xs:enumeration value="NonSerialAudioVisualRecording" />
|
2076
|
+
<xs:enumeration value="Season" />
|
2077
|
+
<xs:enumeration value="Series" />
|
2078
|
+
<xs:enumeration value="ShortFormMusicalWorkVideo" />
|
2079
|
+
<xs:enumeration value="ShortFormNonMusicalWorkVideo" />
|
2080
|
+
<xs:enumeration value="TrailerVideo" />
|
2081
|
+
<xs:enumeration value="Unknown" />
|
2082
|
+
<xs:enumeration value="UserDefined" />
|
2083
|
+
<xs:enumeration value="VideoChapter" />
|
2084
|
+
</xs:restriction>
|
2085
|
+
</xs:simpleType>
|
2086
|
+
<xs:simpleType name="VisualPerceptionType">
|
2087
|
+
<xs:annotation>
|
2088
|
+
<xs:documentation>A Type of MusicalCreation according to how it is experienced in an AudioVisual Creation.</xs:documentation>
|
2089
|
+
</xs:annotation>
|
2090
|
+
<xs:restriction base="xs:string">
|
2091
|
+
<xs:enumeration value="Background" />
|
2092
|
+
<xs:enumeration value="UserDefined" />
|
2093
|
+
<xs:enumeration value="Visual" />
|
2094
|
+
</xs:restriction>
|
2095
|
+
</xs:simpleType>
|
2096
|
+
<xs:simpleType name="VocalType">
|
2097
|
+
<xs:annotation>
|
2098
|
+
<xs:documentation>A Type of a MusicalCreation according to the occurrence of vocals.</xs:documentation>
|
2099
|
+
</xs:annotation>
|
2100
|
+
<xs:restriction base="xs:string">
|
2101
|
+
<xs:enumeration value="Instrumental" />
|
2102
|
+
<xs:enumeration value="UserDefined" />
|
2103
|
+
<xs:enumeration value="Vocal" />
|
2104
|
+
</xs:restriction>
|
2105
|
+
</xs:simpleType>
|
2106
|
+
<xs:simpleType name="WsMessageStatus">
|
2107
|
+
<xs:annotation>
|
2108
|
+
<xs:documentation>A status of a WsMessage.</xs:documentation>
|
2109
|
+
</xs:annotation>
|
2110
|
+
<xs:restriction base="xs:string">
|
2111
|
+
<xs:enumeration value="NoValidMessageReceived" />
|
2112
|
+
<xs:enumeration value="ValidMessageQueuedForProcessing" />
|
2113
|
+
<xs:enumeration value="ValidMessageReceived" />
|
2114
|
+
</xs:restriction>
|
2115
|
+
</xs:simpleType>
|
2116
|
+
</xs:schema>
|