1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669 | <?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" targetNamespace="http://www.jlabs.or.jp/2012/XMLSchema" xmlns:jam="http://www.jlabs.or.jp/2012/XMLSchema"
xmlns:ns1="urn:itut:iptv:am1:2010" xmlns:ns2="urn:itut:iptv:am:mpeg7:2010">
<xs:element name="AMReportPackage">
<xs:complexType>
<xs:sequence>
<xs:element ref="jam:SubscriberID" maxOccurs="1" minOccurs="0">
<xs:annotation>
<xs:documentation>String[255]</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="jam:TerminalDeviceID"/>
<xs:element name="MeasurementReport" maxOccurs="unbounded" minOccurs="0">
<xs:annotation>
<xs:documentation>One MeasurmentReport contains one event.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:choice>
<xs:element ref="jam:DeviceInformation">
<xs:annotation>
<xs:documentation>Except the case of PermissionLevel 0, one Audience Measurement File must contain one DeviceInformation.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="jam:UserSettingInfo">
<xs:annotation>
<xs:documentation>Except the case of PermissionLevel 0, one Audience Measurement File must contain one UserSettingInfo.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ChannelStartEvent" minOccurs="0">
<xs:annotation>
<xs:documentation>Indicates that a channel start event has taken place.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="jam:LinearTVEventType">
<xs:sequence>
<xs:element ref="jam:StartNavMethod"/>
<xs:element ref="jam:ChannelInfo"/>
<xs:element minOccurs="0" ref="jam:ViewMode"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="ChannelStopEvent" minOccurs="0">
<xs:complexType>
<xs:complexContent>
<xs:extension base="jam:LinearTVEventType">
<xs:sequence>
<xs:element ref="jam:StopNavMethod"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="RecStartEvent" minOccurs="0">
<xs:annotation>
<xs:documentation>Indicates that a content recoding event has taken place.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="jam:RecEventType">
<xs:sequence>
<xs:element ref="jam:StartRecMethod"/>
<xs:element ref="jam:ChannelInfo"/>
<xs:element name="TargetDeviceLocation" type="jam:RecLocation">
<xs:annotation>
<xs:documentation>int 0 - 63 0 = built-in HDD 1 = external HDD connected by USB 2 = Other in-home device (DLNA uploading recording) 63 =
unknown</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute ref="jam:ScheduleID"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="RecStopEvent" minOccurs="0">
<xs:complexType>
<xs:complexContent>
<xs:extension base="jam:RecEventType">
<xs:sequence>
<xs:element ref="jam:StopRecMethod"/>
<xs:element maxOccurs="1" minOccurs="0" ref="jam:ErrorCode"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element minOccurs="0" name="RecFailureEvent">
<xs:complexType>
<xs:complexContent>
<xs:extension base="jam:RecEventType">
<xs:sequence>
<xs:element ref="jam:ErrorCode"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:element name="StoredContentEvent" type="jam:StoredContentEventType" minOccurs="0">
<xs:annotation>
<xs:documentation>This event indicates any operation such as Playback, playback, pause, stop, fast-forward, rewind, deletion of the content, copy of the content, and
move of the content.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="jam:DisplayStatus" minOccurs="0"/>
<xs:element minOccurs="0" name="PowerOnEvent" type="jam:PowerOnOffEventType" maxOccurs="1"/>
<xs:element minOccurs="0" name="PowerOffEvent" type="jam:PowerOnOffEventType" maxOccurs="1"/>
</xs:choice>
<xs:attribute ref="jam:MeasurementRequestID"/>
<xs:attribute name="MeasurementReportTriggerTime" type="xs:dateTime" use="required">
<xs:annotation>
<xs:documentation>The time of each event.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element ref="jam:RecScheduleList" minOccurs="0">
<xs:annotation>
<xs:documentation>List of programmed recording which is valid at the report timing. Content or channel information, recording schedule information, and periodic recording
information will be included.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="MeasurementReportCreationSenderTime" use="required" type="xs:dateTime">
<xs:annotation>
<xs:documentation>Sender time of the report.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="TVInformation">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="TVManuf" type="xs:hexBinary">
<xs:annotation>
<xs:documentation>HexBinaly 2 byte, Vender ID of TV is acquired through the Plag and Play information.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="TVModel" type="xs:hexBinary">
<xs:annotation>
<xs:documentation>HexBinaly 2 byte</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element maxOccurs="1" minOccurs="0" name="TVSerialNum" type="xs:hexBinary">
<xs:annotation>
<xs:documentation>HexBinaly 4 byte</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="STBInformation">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="1" name="STBManuf" type="xs:hexBinary">
<xs:annotation>
<xs:documentation>HexBinaly 3 Byte, OUI of the STB</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="1" name="STBModel" type="xs:string">
<xs:annotation>
<xs:documentation/>
</xs:annotation>
</xs:element>
<xs:element maxOccurs="1" minOccurs="1" name="STBSerialNum" type="xs:hexBinary">
<xs:annotation>
<xs:documentation>HexBinaly 6 byte</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="UserSettingInfo">
<xs:complexType>
<xs:sequence>
<xs:element name="PermissionLevel" type="xs:int">
<xs:annotation>
<xs:documentation>Indicates user's PermissionLevel of audience measurement.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="OperatorID" minOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>String[3]. Identifier of the service operator.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="ValidChannel">
<xs:complexType>
<xs:sequence>
<xs:element name="numOfChannels" type="xs:int">
<xs:annotation>
<xs:documentation>int 0-255 Num of channels.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ChannelList" type="xs:hexBinary" maxOccurs="1" minOccurs="0">
<xs:annotation>
<xs:documentation>String[2040] indicates the list of valid channels as the consecutive strings of NetworkID (2byte) and serviceID (2byte).</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="UserPreferences" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:sequence maxOccurs="unbounded">
<xs:element ref="jam:UserPreference"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element minOccurs="0" ref="jam:UISettings"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="UISettings">
<xs:annotation>
<xs:documentation/>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="UIName">
<xs:annotation>
<xs:documentation>ASCII String[64] e.g.,: com.appdeveloper.HomeUI</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="Version" type="xs:string"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="UIType">
<xs:annotation>
<xs:documentation>ASCII String[16]: The identifier of specific UI setting such as "ActiveUI", "SimpleUI", "2012modelUI", etc.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string"> </xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="MyChannelSetting">
<xs:annotation>
<xs:documentation>ASCII String[16]: Whether the STB is "Favorite Channel filter mode" or not. The returning value must "Enable", "Disable", or "Unknown".</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="MyChannelsInfo" type="xs:hexBinary" use="optional">
<xs:annotation>
<xs:documentation>String[400]: Channel list of user's favorite channel filter. (Up to 50 channels.)</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DeviceInformation">
<xs:complexType>
<xs:sequence>
<xs:annotation>
<xs:documentation/>
</xs:annotation>
<xs:element ref="jam:TVInformation" minOccurs="0"/>
<xs:element ref="jam:STBInformation"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="SubscriberID" type="jam:UserID">
<xs:annotation>
<xs:documentation/>
</xs:annotation>
</xs:element>
<xs:simpleType name="UserID">
<xs:annotation>
<xs:documentation>String[255]</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:element name="TerminalDeviceID" type="xs:string">
<xs:annotation>
<xs:documentation>MAC Address of the STB</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ControlDevice">
<xs:annotation>
<xs:documentation>int 0 - 63 0 = Remote 1 = STB Front Panel 33 = System event (Non user input) 34 = Any network devices (PC, Tablet, Mobile, etc.) 63 = Unknown</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:int"> </xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="DisplayStatus">
<xs:annotation>
<xs:documentation>int 0-63 0 = STB's output is displayed to any display device (mainly TV). 1 = STB's output is not displayed to any display device. 63 = Display status is
unknown.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:int"> </xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="ChannelInfo">
<xs:annotation>
<xs:documentation/>
</xs:annotation>
<xs:complexType>
<xs:attribute name="NetworkID" type="xs:hexBinary" use="required">
<xs:annotation>
<xs:documentation>2Byte HexBinary 0x0000 - 0xffff</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ServiceID" type="xs:hexBinary" use="required">
<xs:annotation>
<xs:documentation>2Byte HexBinary 0x0000 - 0xffff</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ShortName" type="xs:string">
<xs:annotation>
<xs:documentation>String[20]</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="RecSchedule">
<xs:complexType>
<xs:sequence>
<xs:element name="ScheduledTime">
<xs:annotation>
<xs:documentation>Target date and time of the programmed recording.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" ref="jam:DayOfTheWeek">
<xs:annotation>
<xs:documentation/>
</xs:annotation>
</xs:element>
<xs:element name="From" type="xs:date" maxOccurs="0" minOccurs="0"/>
<xs:element name="Until" type="xs:date" maxOccurs="0" minOccurs="0"/>
</xs:sequence>
<xs:attributeGroup ref="jam:ScheduledTime"/>
</xs:complexType>
</xs:element>
<xs:element ref="jam:ChannelInfo">
<xs:annotation>
<xs:documentation>Channel information of the content</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element maxOccurs="99" minOccurs="0" ref="jam:ContentInfo">
<xs:annotation>
<xs:documentation>Content information of programmed recording. If the recording is set by the pair of starting time and ending time, this information will not be exist.
If the recording is set by Content ID, this information should be exist.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="jam:RecScheduleMethod"/>
</xs:sequence>
<xs:attribute ref="jam:ScheduleID"/>
<xs:attribute name="Time" type="xs:dateTime" use="required">
<xs:annotation>
<xs:documentation>Date and time information at which user adds the scheduled recording.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:complexType name="LinearTVEventType">
<xs:attribute ref="jam:ServiceInstanceID"/>
</xs:complexType>
<xs:attribute name="ReferrerAppID" type="xs:string">
<xs:annotation>
<xs:documentation>ASCII String[64] When LocalApp or RemoteApp is set as the NavMethod, the application's ID should be set to this attribute. e.g.,:
com.hogehoge.foo.epgapp.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ReferrerScreenID" type="xs:string">
<xs:annotation>
<xs:documentation>ASCII String[64] The identifier of the screen which causes the event. e.g: TopPage, SearchResult, EPGGrid </xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ReferrerAppDomain" type="xs:string">
<xs:annotation>
<xs:documentation>ASCII String[64]</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ReferrerAppVer" type="xs:string">
<xs:annotation>
<xs:documentation>ACSII String[64] e.g: 1.1, 1.1.23RC </xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attributeGroup name="Referrer">
<xs:attribute ref="jam:ReferrerAppID"/>
<xs:attribute ref="jam:ReferrerScreenID"/>
<xs:attribute ref="jam:ReferrerAppDomain"/>
<xs:attribute ref="jam:ReferrerAppVer"/>
</xs:attributeGroup>
<xs:element name="ViewMode" type="xs:int">
<xs:annotation>
<xs:documentation>int 0 - 63 0 = not displayed 1 = full-screen 2 = Picture-In-Picture 63 = unknown</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="RecEventType">
<xs:attribute ref="jam:ServiceInstanceID"/>
</xs:complexType>
<xs:element name="StartNavMethod">
<xs:annotation>
<xs:documentation>int 0 - 63 0 = Up/Down arrow, etc. 1 = Channel surfing 2 = Scheduled channel change (Programmed channel change, etc.) 3 = EPG 4 = Last channel 6 = Specified channel input
method (e.g. 3 digit input, preset channel input) 32 = Channel change from local (running on the STB)application 33 = Channel change from remote (running on the smart phone, tablet,
etc.) application 63 = unknown</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:int">
<xs:attributeGroup ref="jam:Referrer"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="StopNavMethod">
<xs:annotation>
<xs:documentation>int 0 - 63 0 = Up/Down arrow, etc. 1 = Channel surfing 2 = Scheduled channel change (Programmed channel change, etc.) 3 = EPG 6 = Specified channel input method (e.g., 3
digit input, preset channel input) 32 = Channel change from local (running on the STB) application 33 = Channel change from remote (running on the smart phone, tablet, etc.) application
61 = Other reason 62 = Channel stop caused by power off 63 = unknown</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="StartRecMethod">
<xs:annotation>
<xs:documentation>int 0 - 63 0 = Instant recording start caused by the user's direct input 1 = Scheduled recording start 4 = Recording start based on the content recommendation 32 =
Channel recording caused by local (running on the STB) application 33 = Channel recording caused by remote (running on the smart phone, tablet, etc.) application 63= unknown
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:int">
<xs:attributeGroup ref="jam:Referrer"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="StopRecMethod" type="xs:int">
<xs:annotation>
<xs:documentation>int 0 - 63 0 = Error 1 = Recording is completed 2 = Recording is terminated by user/system operation 63= unknown</xs:documentation>
</xs:annotation>
</xs:element>
<xs:simpleType name="RecLocation">
<xs:annotation>
<xs:documentation/>
</xs:annotation>
<xs:restriction base="xs:int"/>
</xs:simpleType>
<xs:attribute name="ServiceInstanceID" type="xs:int">
<xs:annotation>
<xs:documentation>int 0-63 0: No tuner used 1-50: Identifier of the tunner 51-62: Reserved 63: unknown </xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:complexType name="ScheduleChangeEventType">
<xs:sequence>
<xs:element ref="jam:ControlDevice"/>
</xs:sequence>
<xs:attribute name="Time" type="xs:dateTime" use="required"/>
<xs:attribute name="Priority" type="xs:int">
<xs:annotation>
<xs:documentation>int 0-100 Priority of recording set by user or STB. </xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:attributeGroup name="ScheduledTimeOfDay">
<xs:attribute name="StartTime" type="xs:time"/>
<xs:attribute name="EndTime" type="xs:time"/>
</xs:attributeGroup>
<xs:element name="ContentInfo">
<xs:complexType>
<xs:sequence>
<xs:element ref="jam:ContentTitle"/>
<xs:element maxOccurs="3" minOccurs="0" ref="jam:Genre"/>
</xs:sequence>
<xs:attribute name="ContentID" type="xs:normalizedString" use="optional">
<xs:annotation>
<xs:documentation>Program ID specified by the recording/scheduled recording.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="StoredContentInfo">
<xs:complexType>
<xs:sequence>
<xs:element name="RecordedDate" minOccurs="1">
<xs:annotation>
<xs:documentation>Date and time information at which the content is recorded.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attributeGroup ref="jam:StoredContentTime"/>
</xs:complexType>
</xs:element>
<xs:element minOccurs="0" ref="jam:ContentTitle">
<xs:annotation>
<xs:documentation/>
</xs:annotation>
</xs:element>
<xs:element maxOccurs="3" minOccurs="0" ref="jam:Genre"/>
</xs:sequence>
<xs:attribute name="ContentID" type="xs:hexBinary" use="optional">
<xs:annotation>
<xs:documentation>Program ID specified by the recording/scheduled recording.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:complexType name="StoredContentEventType">
<xs:sequence>
<xs:element ref="jam:ChannelInfo" minOccurs="1"/>
<xs:element ref="jam:StoredContentInfo">
<xs:annotation>
<xs:documentation/>
</xs:annotation>
</xs:element>
<xs:sequence maxOccurs="unbounded">
<xs:element name="StoredContentOperation" type="jam:Operation">
<xs:annotation>
<xs:documentation>Identifies to indicates the user operation. PLAY PAUSE FF RW STOP DEL COPY MOVE </xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:sequence>
</xs:complexType>
<xs:attributeGroup name="ScheduledTime">
<xs:attribute name="Start" type="xs:dateTime" use="required">
<xs:annotation>
<xs:documentation/>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Duration" type="xs:duration" use="required">
<xs:annotation>
<xs:documentation>e.g., PT1H59M59S, PT2H</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="ContentAbsoluteTime">
<xs:annotation>
<xs:documentation>Elapsed time from the beginning of the content. (The begening of the content is 00:00:00.)</xs:documentation>
</xs:annotation>
<xs:attribute name="time" type="xs:time"/>
</xs:attributeGroup>
<xs:complexType name="Operation">
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attributeGroup ref="jam:ContentAbsoluteTime"/>
<xs:attribute name="Scale" type="xs:float" use="optional">
<xs:annotation>
<xs:documentation/>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:element name="UserPreference">
<xs:annotation>
<xs:documentation>Indicates the user's preference to specified genre. (5: Very favorable, 4: Favorable, 3: Neutral, 2: Unfavorable, 1: Very unfavorable)</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:int">
<xs:attribute ref="jam:GenreLevel1"/>
<xs:attribute ref="jam:GenreLevel2"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:attributeGroup name="DeliveryWindowTime">
<xs:attribute name="StartDeliveryWindowTime" type="xs:time"/>
<xs:attribute name="EndDeliveryWindowTime" type="xs:time"/>
</xs:attributeGroup>
<xs:element name="DayOfTheWeek">
<xs:complexType>
<xs:attribute name="All" type="xs:boolean">
<xs:annotation>
<xs:documentation/>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Sun" type="xs:boolean"/>
<xs:attribute name="Mon" type="xs:boolean"/>
<xs:attribute name="Tue" type="xs:boolean"/>
<xs:attribute name="Wed" type="xs:boolean"/>
<xs:attribute name="Thu" type="xs:boolean"/>
<xs:attribute name="Fri" type="xs:boolean"/>
<xs:attribute name="Sat" type="xs:boolean"/>
</xs:complexType>
</xs:element>
<xs:element name="RecScheduleList">
<xs:complexType>
<xs:sequence maxOccurs="unbounded">
<xs:element ref="jam:RecSchedule"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="RecScheduleMethod">
<xs:annotation>
<xs:documentation>Indicates the method used to schedule addition. int 0 - 63 1 = Recording menu 3 = Automatic scheduling based on the user's keyword 4 = Automatic scheduling without user's
input. (Automatic recommendation, etc.) 32 = LocalApp: Scheduling from local (running on the STB)application 33 = RemoteApp: Scheduling from remote (running on the smart phone, tablet,
etc.) application 63= unknown</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:int">
<xs:attributeGroup ref="jam:Referrer"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:attribute name="ScheduleID" type="xs:hexBinary">
<xs:annotation>
<xs:documentation>HexBinary 2 byte Identifier of each recording shedule.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:complexType name="PowerOnOffEventType">
<xs:sequence>
<xs:element ref="jam:ControlDevice"/>
</xs:sequence>
</xs:complexType>
<xs:attribute name="Start" type="xs:dateTime"/>
<xs:attributeGroup name="StoredContentTime">
<xs:attribute ref="jam:Start" use="required"/>
<xs:attribute name="duration" type="xs:duration" use="required">
<xs:annotation>
<xs:documentation>e.g.,: PT1H59M59S, PT2H</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
<xs:element name="ErrorCode" type="xs:int">
<xs:annotation>
<xs:documentation>int 0-65535</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ContentTitle" type="xs:string">
<xs:annotation>
<xs:documentation>String[80]</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Genre">
<xs:annotation>
<xs:documentation/>
</xs:annotation>
<xs:complexType>
<xs:attribute ref="jam:GenreLevel1"/>
<xs:attribute ref="jam:GenreLevel2"/>
</xs:complexType>
</xs:element>
<xs:attribute name="GenreLevel1" type="xs:string">
<xs:annotation>
<xs:documentation>String[1]</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="GenreLevel2" type="xs:string">
<xs:annotation>
<xs:documentation>String[1]</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="MeasurementRequestID" type="xs:int">
<xs:annotation>
<xs:documentation>int 0-255</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:schema>
|