-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmetadata.xhtml
2224 lines (1923 loc) · 95.6 KB
/
metadata.xhtml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!-- wp:columns -->
<div class="wp-block-columns"><!-- wp:column {"width":66.66} -->
<div class="wp-block-column" style="flex-basis:66.66%"><!-- wp:paragraph -->
<p>This page lists and briefly describes all generic, and application domain specific XML and JSON Schemas and Classification Schemes published by DVB. These files are available under the URL root <a href="/metadata/">/metadata/</a>. Presence of an XML or JSON document under that URL root implies its status as a formal DVB publication.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Where DVB uses URNs to identify DVB metadata definitions, these URNs conform to clauses 5 and 7 of <a href="https://www.etsi.org/deliver/etsi_ts/102800_102899/102851/01.03.01_60/ts_102851v010301p.pdf">ETSI TS 102 851</a>.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Compared to the metadata definition files that can be obtained from the <a href="https://www.etsi.org/standards/">ETSI website</a> in ZIP files along with the specification documents, the file location attributes in some files available from the DVB website have been modified. This was done to accommodate the structure of the DVB website, and for instance document authors' convenience by enabling automatic handling of the files by authoring tools. These modifications do hence not affect instance documents in any way.</p>
<!-- /wp:paragraph --></div>
<!-- /wp:column -->
<!-- wp:column {"width":33.33} -->
<div class="wp-block-column" style="flex-basis:33.33%"><!-- wp:heading {"level":4} -->
<h4>Jump to section</h4>
<!-- /wp:heading -->
<!-- wp:list -->
<ul>
<li><a href="#DVB-CI_Plus-Metadata-Definitions">DVB CI-Plus Metadata Definitions</a></li>
<li><a href="#DVB-CSS-Metadata-Definitions">DVB CSS Metadata Definitions</a></li>
<li><a href="#DVB-IPTV-Metadata-Definitions">DVB IPTV Metadata Definitions</a></li>
<li><a href="#Metadata-Definitions-for-Globally-Executable-MHP-GEM-Multimedia-Home-Platform-DVB_MHP-and-Other-Technologies">Metadata Definitions for Globally Executable MHP (GEM), Multimedia Home Platform (DVB-MHP), and Other Technologies</a></li>
<li><a href="#DVB-File-Format-Metadata-Definitions">DVB File Format Metadata Definitions</a></li>
</ul>
<!-- /wp:list --></div>
<!-- /wp:column --></div>
<!-- /wp:columns -->
<!-- wp:columns -->
<div class="wp-block-columns"><!-- wp:column {"width":66.66} -->
<div class="wp-block-column" style="flex-basis:66.66%"><!-- wp:heading {"level":3} -->
<h3>Third Party Files</h3>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>DVB's metadata definitions build upon metadata definitions from other organizations and standards by reusing elements from them. For this to be supported by authoring tools, all files referenced by the DVB files must also be available to the authoring tool. Most often, these other organizations also make their files available online. DVB provides these files for completeness, and they are not to be considered canonical. If, for any of them, you are aware of an official online location that could be referenced instead, please contact us at <a href="mailto:[email protected]">[email protected]</a>. For convenience, all necessary metadata definitions from other organisations (whether available from their originating organization or from the DVB website) are also listed in the XML catalog files and included in the <a href="/metadata/DVB.zip">complete DVB metadata ZIP archive</a>.</p>
<!-- /wp:paragraph -->
<!-- wp:heading {"level":3} -->
<h3>Installation and Use</h3>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>To further help authoring automation, <a href="https://en.wikipedia.org/wiki/XML_Catalog">XML catalog</a> files are also provided. These will help authoring tools to make use of DVB metadata definitions for document validation, content completion, etc. To directly use the files provided from the DVB website, simply add the URL of the <a href="/metadata/catalog.xml">top-level XML catalog file</a> to the list of XML catalog files consulted by your authoring tool. For as long as you have an Internet connection, you will now be able to make use of all DVB metadata definitions to the extent provided by your authoring tool. If you want to be able to use the DVB metadata files also when offline, download the <a href="/metadata/DVB.zip">complete DVB metadata ZIP archive</a>, unpack it in a convenient location on your system, and add the file DVB/metadata/catalog.xml to the list of XML catalog files consulted by your authoring tool. Even when offline, you will now be able to make use of all DVB metadata definitions to the extent provided by your authoring tool.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p><b>Generic Metadata Definitions</b><br/>Generic metadata definitions are applicable to more than one application domain, and are thus generally referenced by application specific metadata definitions.</p>
<!-- /wp:paragraph --></div>
<!-- /wp:column -->
<!-- wp:column {"width":33.33} -->
<div class="wp-block-column" style="flex-basis:33.33%"></div>
<!-- /wp:column --></div>
<!-- /wp:columns -->
<!-- wp:heading {"level":3} -->
<h3>XML Schemas</h3>
<!-- /wp:heading -->
<!-- wp:heading {"level":4} -->
<h4>DVB Classification Scheme schema</h4>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>This schema defines a schema for authoring classification schemes. It is derived from the TV-Anytime CS schema in that the form of the termIDType is restricted by a pattern, and the TextualType is extended by an optional language attribute. It however is backwards compatible with the TV-Anytime schema, and CS entries can therefore be referenced using the tva:controlledTermType.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>All DVB classification schemes, whether generic or domain specific, are instance documents of this schema.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Latest version: <a href="/metadata/schema/dvbCSschema.xsd">permalink</a></p>
<!-- /wp:paragraph -->
<!-- wp:table {"className":"table table-sm"} -->
<figure class="wp-block-table table table-sm">
<table>
<thead><tr><th>URI</th><th>DVB Standard(s)</th><th>Description</th></tr></thead>
<tbody>
<tr>
<td><a href="/metadata/schema/2007/dvbCSschema.xsd">urn:dvb:metadata:schema:dvbCSschema:2007</a></td>
<td>none</td>
<td>Initial version</td>
</tr>
</tbody>
</table>
</figure>
<!-- /wp:table -->
<!-- wp:heading {"level":3} -->
<h3>Classification Schemes</h3>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>This section lists all XML Classification Schemes (CS) defined by DVB in alphabetical order. These CS are written against the urn:dvb:metadata:schema:dvbCSschema:2007 namespace.</p>
<!-- /wp:paragraph -->
<!-- wp:heading {"level":4} -->
<h4>Audio codec classification scheme</h4>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>This CS complements the MPEG-7 Audio Coding Format CS by adding the DVB defined audio codecs not part of the MPEG-7CS:</p>
<!-- /wp:paragraph -->
<!-- wp:list -->
<ul>
<li>MPEG-4 DVB Audio</li>
<li>MPEG-4 High Efficiency Advanced Audio Profile</li>
<li>MPEG-4 High Efficiency Advanced Audio v2 Profile</li>
<li>AMR DVB</li>
<li>AC-3</li>
<li>AC-4</li>
<li>DTS</li>
<li>MPEG-H 3D</li>
<li>AVS3 part 3</li>
</ul>
<!-- /wp:list -->
<!-- wp:paragraph -->
<p>Latest version: <a href="/metadata/cs/AudioCodecCS.xml">permalink</a></p>
<!-- /wp:paragraph -->
<!-- wp:table {"className":"table table-sm"} -->
<figure class="wp-block-table table table-sm">
<table>
<thead><tr><th>URI</th><th>DVB Standard(s)</th><th>Description</th></tr></thead>
<tbody>
<tr>
<td><a href="/metadata/cs/2007/AudioCodecCS.xml">urn:dvb:metadata:cs:AudioCodecCS:2007</a></td>
<td>none</td>
<td>Initial version</td>
</tr>
<tr>
<td><a href="/metadata/cs/2020/AudioCodecCS.xml">urn:dvb:metadata:cs:AudioCodecCS:2020</a></td>
<td>none</td>
<td>adds AC-4, DTS, and MPEG-H 3D according to <a href="https://www.etsi.org/deliver/etsi_ts/101100_101199/101154/02.06.01_60/ts_101154v020601p.pdf">ETSI TS 101 154 v2.6.1</a></td>
</tr>
<tr>
<td><a href="/metadata/cs/2024/AudioCodecCS.xml">urn:dvb:metadata:cs:AudioCodecCS:2024</a></td>
<td>none</td>
<td>adds AVS3 part 3 according to next version of ETSI TS 101 154 (currently DVB bluebook A001)</td>
</tr>
</tbody>
</table>
</figure>
<!-- /wp:table -->
<!-- wp:heading {"level":4} -->
<h4>Audio conformance points classification scheme</h4>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>This CS Lists audio conformance points for broadcast receivers and bitstreams, and DASH players and bitstreams. All conformance points are defined in ETSI TS 101 154 and ETSI TS 103 285 respectively.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Latest version: <a href="/metadata/cs/AudioConformancePointsCS.xml">permalink</a></p>
<!-- /wp:paragraph -->
<!-- wp:table {"className":"table table-sm"} -->
<figure class="wp-block-table table table-sm">
<table>
<thead><tr><th>URI</th><th>DVB Standard(s)</th><th>Description</th></tr></thead>
<tbody>
<tr>
<td><a href="/metadata/cs/2017/AudioConformancePointsCS.xml">urn:dvb:metadata:cs:AudioConformancePointsCS:2017</a></td>
<td>none</td>
<td>Initial version</td>
</tr>
<tr>
<td><a href="/metadata/cs/2024/AudioConformancePointsCS.xml">urn:dvb:metadata:cs:AudioConformancePointsCS:2024</a></td>
<td>none</td>
<td>adds AVS3 part 3 according to next version of ETSI TS 101 154 (currently DVB bluebook A001)</td>
</tr>
</tbody>
</table>
</figure>
<!-- /wp:table -->
<!-- wp:heading {"level":4} -->
<h4 id="generic-cs-bcgtype">BCG type classification scheme</h4>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>This CS lists the types of content described by Broadband Content Guides (BCG). Currently the following types are defined:</p>
<!-- /wp:paragraph -->
<!-- wp:list -->
<ul><li>BCG for live TV programs</li><li>BCG for Content on Demand (CoD) programs</li><li>BCG for downloadable content</li></ul>
<!-- /wp:list -->
<!-- wp:paragraph -->
<p>Latest version: <a href="/metadata/cs/BCGTypeCS.xml">permalink</a></p>
<!-- /wp:paragraph -->
<!-- wp:table {"className":"table table-sm"} -->
<figure class="wp-block-table table table-sm">
<table>
<thead>
<tr><th>URI</th><th>DVB Standard(s)</th><th>Description</th></tr>
</thead>
<tbody>
<tr>
<td><a href="/metadata/cs/2007/BCGTypeCS.xml">urn:dvb:metadata:cs:BCGTypeCS:2007</a></td>
<td>none</td>
<td>Initial version</td>
</tr>
</tbody>
</table>
</figure>
<!-- /wp:table -->
<!-- wp:heading {"level":4} -->
<h4>Colorimetry classification scheme</h4>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>This CS lists the colorimetry (colour space) options that can be applied to video content.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Latest version: <a href="/metadata/cs/ColorimetryCS.xml">permalink</a></p>
<!-- /wp:paragraph -->
<!-- wp:table {"className":"table table-sm"} -->
<figure class="wp-block-table table table-sm">
<table>
<thead><tr><th>URI</th><th>DVB Standard(s)</th><th>Description</th></tr></thead>
<tbody>
<tr>
<td><a href="/metadata/cs/2020/ColorimetryCS.xml">urn:dvb:metadata:cs:ColorimetryCS:2020</a></td>
<td>A177r2</td>
<td>Initial version</td>
</tr>
</tbody>
</table>
</figure>
<!-- /wp:table -->
<!-- wp:heading {"level":4} -->
<h4>Content Subject classification scheme</h4>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>This CS lists the type or subject of the program.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Latest version: <a href="/metadata/cs/DVBContentSubjectCS.xml">permalink</a></p>
<!-- /wp:paragraph -->
<!-- wp:table {"className":"table table-sm"} -->
<figure class="wp-block-table table table-sm">
<table>
<thead><tr><th>URI</th><th>DVB Standard(s)</th><th>Description</th></tr></thead>
<tbody>
<tr>
<td><a href="/metadata/cs/2019/DVBContentSubjectCS-2019.xml">urn:dvb:metadata:cs:ContentSubject:2019</a></td>
<td>A177</td>
<td>Initial version</td>
</tr>
</tbody>
</table>
</figure>
<!-- /wp:table -->
<!-- wp:heading {"level":4} -->
<h4>How Related classification scheme</h4>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>This CS lists the role of a graphical image or icon within a service.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Latest version: <a href="/metadata/cs/DVBHowRelatedCS.xml">permalink</a></p>
<!-- /wp:paragraph -->
<!-- wp:table {"className":"table table-sm"} -->
<figure class="wp-block-table table table-sm">
<table>
<thead><tr><th>URI</th><th>DVB Standard(s)</th><th>Description</th></tr></thead>
<tbody>
<tr>
<td><a href="/metadata/cs/2019/DVBHowRelatedCS-2019.xml">urn:dvb:metadata:cs:HowRelatedCS:2019</a></td>
<td>A177</td>
<td>Initial version</td>
</tr>
<tr>
<td><a href="/metadata/cs/2020/DVBHowRelatedCS-2020.xml">urn:dvb:metadata:cs:HowRelatedCS:2020</a></td>
<td>A177r1<br/>ETSI TS 103 770 v1.1.1</td>
<td>Added content finished banner</td>
</tr>
<tr>
<td><a href="/metadata/cs/2021/DVBHowRelatedCS-2021.xml">urn:dvb:metadata:cs:HowRelatedCS:2021</a></td>
<td>A177r2</td>
<td>Bump namespace version</td>
</tr>
<tr>
<td><a href="/metadata/cs/2024/DVBHowRelatedCS-2021.xml">urn:dvb:metadata:cs:HowRelatedCS:2021</a></td>
<td>A177r6</td>
<td>Add service banner</td>
</tr>
</tbody>
</table>
</figure>
<!-- /wp:table -->
<!-- wp:heading {"level":4} -->
<h4>Linked Application classification scheme</h4>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>This CS defines the starting type of an application related to the service.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Latest version: <a href="/metadata/cs/DVBLinkedApplicationCS.xml">permalink</a></p>
<!-- /wp:paragraph -->
<!-- wp:table {"className":"table table-sm"} -->
<figure class="wp-block-table table table-sm">
<table>
<thead><tr><th>URI</th><th>DVB Standard(s)</th><th>Description</th></tr></thead>
<tbody>
<tr>
<td><a href="/metadata/cs/2019/DVBLinkedApplicationCS-2019.xml">urn:dvb:metadata:cs:LinkedApplicationCS:2019</a></td>
<td>A177</td>
<td>Initial version</td>
</tr>
<tr>
<td><a href="/metadata/cs/2024/DVBLinkedApplicationCS-2019.xml">urn:dvb:metadata:cs:LinkedApplicationCS:2019</a></td>
<td>A177r6</td>
<td>Add service provider homepage application</td>
</tr>
</tbody>
</table>
</figure>
<!-- /wp:table -->
<!-- wp:heading {"level":4} -->
<h4>Parental guidance classification scheme</h4>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>This CS lists the parental guidance restriction recommendations for currently 21 regions. It will be extended to further regions and content as new services and applications emerge.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Latest version: <a href="/metadata/cs/ParentalGuidanceCS.xml">permalink</a></p>
<!-- /wp:paragraph -->
<!-- wp:table {"className":"table table-sm"} -->
<figure class="wp-block-table table table-sm">
<table>
<thead><tr><th>URI</th><th>DVB Standard(s)</th><th>Description</th></tr></thead>
<tbody>
<tr>
<td><a href="/metadata/cs/2005/ParentalGuidanceCS.xml">urn:dvb:metadata:cs:ParentalGuidanceCS:2005</a></td>
<td>none</td>
<td>Initial version</td>
</tr>
<tr>
<td><a href="/metadata/cs/2007/ParentalGuidanceCS.xml">urn:dvb:metadata:cs:ParentalGuidanceCS:2007</a></td>
<td>none</td>
<td>minor editorials on text content</td>
</tr>
</tbody>
</table>
</figure>
<!-- /wp:table -->
<!-- wp:heading {"level":4} -->
<h4>Recording Information classification scheme</h4>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>This CS defines the options permitted for recording of a service or programs within a service.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Latest version: <a href="/metadata/cs/DVBRecordingInfoCS.xml">permalink</a></p>
<!-- /wp:paragraph -->
<!-- wp:table {"className":"table table-sm"} -->
<figure class="wp-block-table table table-sm">
<table>
<thead><tr><th>URI</th><th>DVB Standard(s)</th><th>Description</th></tr></thead>
<tbody>
<tr>
<td><a href="/metadata/cs/2019/DVBRecordingInfoCS-2019.xml">urn:dvb:metadata:cs:RecordingInfoCS:2019</a></td>
<td>A177</td>
<td>Initial version</td>
</tr>
</tbody>
</table>
</figure>
<!-- /wp:table -->
<!-- wp:heading {"level":4} -->
<h4>Service Type classification scheme</h4>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>This CS defines delivery type of a service.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Latest version: <a href="/metadata/cs/DVBServiceTypeCS.xml">permalink</a></p>
<!-- /wp:paragraph -->
<!-- wp:table {"className":"table table-sm"} -->
<figure class="wp-block-table table table-sm"><table><thead><tr><th>URI</th><th>DVB Standard(s)</th><th>Description</th></tr></thead><tbody><tr><td><a href="/metadata/cs/2019/DVBServiceTypeCS-2019.xml">urn:dvb:metadata:cs:ServiceTypeCS:2019</a></td><td>A177</td><td>Initial version</td></tr><tr><td><a href="/metadata/cs/2022/DVBServiceTypeCS-2019.xml">urn:dvb:metadata:cs:ServiceTypeCS:2019</a></td><td>A177r4</td><td>Updated with 'radio' service types</td></tr></tbody></table></figure>
<!-- /wp:table -->
<!-- wp:heading {"level":4} -->
<h4>Video codec classification scheme</h4>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>This CS complements the MPEG-7 Visual Coding Format CS by adding the DVB defined video codecs not part of the MPEG-7CS:</p>
<!-- /wp:paragraph -->
<!-- wp:list -->
<ul>
<li>ISO/IEC 14496-10 video codec (also known as H.264/AVC)</li>
<li>VC-1</li>
<li>H.262</li>
<li>H.264 Scalable High Profile</li>
<li>H.264 Stereo High Profile</li>
<li>H.265</li>
<li>H.266</li>
<li>AVS3 part 2 video</li>
</ul>
<!-- /wp:list -->
<!-- wp:paragraph -->
<p>Latest version: <a href="/metadata/cs/VideoCodecCS.xml">permalink</a></p>
<!-- /wp:paragraph -->
<!-- wp:table {"className":"table table-sm"} -->
<figure class="wp-block-table table table-sm">
<table>
<thead><tr><th>URI</th> <th>DVB Standard(s)</th><th>Description</th></tr></thead>
<tbody>
<tr>
<td><a href="/metadata/cs/2007/VideoCodecCS.xml">urn:dvb:metadata:cs:VideoCodecCS:2007</a></td>
<td>none</td>
<td>Initial version</td>
</tr>
<tr>
<td><a href="/metadata/cs/2020/VideoCodecCS.xml">urn:dvb:metadata:cs:VideoCodecCS:2020</a></td>
<td>none</td>
<td>adds H.262, H.264 Scalable High Profile, H.264 Stereo High
Profile, and H.265 according to
<a href="https://www.etsi.org/deliver/etsi_ts/101100_101199/101154/02.06.01_60/ts_101154v020601p.pdf"
>ETSI TS 101 154 v2.6.1</a></td>
</tr>
<tr>
<td><a href="/metadata/cs/2021/VideoCodecCS.xml">urn:dvb:metadata:cs:VideoCodecCS:2021</a></td>
<td>none</td>
<td>Adds H.265 8K</td>
</tr>
<tr>
<td><a href="/metadata/cs/2022/VideoCodecCS.xml">urn:dvb:metadata:cs:VideoCodecCS:2022</a></td>
<td>none</td>
<td>Adds AVS3 and VVC</td>
</tr>
</tbody>
</table>
</figure>
<!-- /wp:table -->
<!-- wp:heading {"level":4} -->
<h4>Video conformance points classification scheme</h4>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>This CS Lists video conformance points for broadcast receivers and bitstreams, and DASH players and bitstreams. All conformance points are defined in ETSI TS 101 154 and ETSI TS 103 285 respectively.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Latest version: <a href="/metadata/cs/VideoConformancePointsCS.xml">permalink</a></p>
<!-- /wp:paragraph -->
<!-- wp:table {"className":"table table-sm"} -->
<figure class="wp-block-table table table-sm">
<table>
<thead><tr><th>URI</th><th>DVB Standard(s)</th><th>Description</th></tr></thead>
<tbody>
<tr>
<td><a href="/metadata/cs/2017/VideoConformancePointsCS.xml">urn:dvb:metadata:cs:VideoConformancePointsCS:2017</a></td>
<td>none</td>
<td>Initial version</td>
</tr>
<tr>
<td><a href="/metadata/cs/2021/VideoConformancePointsCS.xml">urn:dvb:metadata:cs:VideoConformancePointsCS:2021</a></td>
<td>none</td>
<td>Adds H.265 8K</td>
</tr>
<tr>
<td><a href="/metadata/cs/2022/VideoConformancePointsCS.xml">urn:dvb:metadata:cs:VideoConformancePointsCS:2022</a></td>
<td>none</td>
<td>Adds AVS3 and VVC</td>
</tr>
</tbody>
</table>
</figure>
<!-- /wp:table -->
<!-- wp:block {"ref":7534} /-->
<!-- wp:heading -->
<h2 id="DVB-CI_Plus-Metadata-Definitions">DVB CI-Plus Metadata Definitions</h2>
<!-- /wp:heading -->
<!-- wp:heading {"level":3} -->
<h3 id="ciplus-by-spec">Metadata definitions by specification version</h3>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>This section lists the metadata definitions associated with each published specification document. Links to the specification documents are provided, and a zip archive containing all files for each specification document is also provided.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>In case you are looking for details about a particular metadata definition, you will find these in the <a href="#ciplus-detailed">next section</a>.</p>
<!-- /wp:paragraph -->
<!-- wp:heading {"level":4} -->
<h4>ETSI TS 103 205 v1.1.1</h4>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>Specification document: <a href="https://www.etsi.org/deliver/etsi_ts/103200_103299/103205/01.01.01_60/ts_103205v010101p.pdf">TS 103 205 v1.1.1</a></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>All files for this version: <a href="https://www.etsi.org/deliver/etsi_ts/103200_103299/103205/01.01.01_60/ts_103205v010101p0.zip">ts_103205v010101p0.zip</a></p>
<!-- /wp:paragraph -->
<!-- wp:table {"className":"table table-sm"} -->
<figure class="wp-block-table table table-sm">
<table>
<thead><tr><th>Type</th><th>URI</th><th>Description</th></tr></thead>
<tbody>
<tr>
<td>W3C XML Schema</td>
<td><a href="/metadata/ciplus/2013/osdt_2013.xsd">urn:dvb:metadata:ciplus:osdt:2013</a></td>
<td><a href="#ciplus-osdt">File info</a></td>
</tr>
</tbody>
</table>
</figure>
<!-- /wp:table -->
<!-- wp:heading {"level":4} -->
<h4>ETSI TS 103 205 v1.2.1</h4>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>Specification document: <a href="https://www.etsi.org/deliver/etsi_ts/103200_103299/103205/01.02.01_60/ts_103205v010201p.pdf">TS 103 205 v1.2.1</a></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>All files for this version: <a href="https://www.etsi.org/deliver/etsi_ts/103200_103299/103205/01.02.01_60/ts_103205v010201p0.zip">ts_103205v010201p0.zip</a></p>
<!-- /wp:paragraph -->
<!-- wp:table {"className":"table table-sm"} -->
<figure class="wp-block-table table table-sm">
<table>
<thead><tr><th>Type</th><th>URI</th><th>Description</th></tr></thead>
<tbody>
<tr>
<td>W3C XML Schema</td>
<td><a href="/metadata/ciplus/2015/osdt_2015.xsd">urn:dvb:metadata:ciplus:osdt:2015</a></td>
<td><a href="#ciplus-osdt">File info</a></td>
</tr>
</tbody>
</table>
</figure>
<!-- /wp:table -->
<!-- wp:heading {"level":3} -->
<h3 id="ciplus-detailed">Detailed descriptions of metadata definitions</h3>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>This section briefly describes each metadata definition, lists all versions of each definition that have been published, and indicates with which specification version(s) each metadata definition is associated.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>In case you are looking for details about a particular specification document, you will find these in the <a href="#ciplus-by-spec">previous section</a>.</p>
<!-- /wp:paragraph -->
<!-- wp:heading {"level":4} -->
<h4 id="ciplus-osdt">Online SDT (OSDT)</h4>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>The Online SDT (OSDT) is an XML structure that contains a list of IP-delivered services available from a DVB CI-Plus Common Interface Conditional Access Module (CICAM). See annex D of TS 103 205.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Latest version: <a href="/metadata/ciplus/osdt.xsd">permalink</a></p>
<!-- /wp:paragraph -->
<!-- wp:table {"className":"table table-sm"} -->
<figure class="wp-block-table table table-sm">
<table>
<thead><tr><th>URI</th><th>DVB Standard(s)</th><th>Description</th></tr></thead>
<tbody>
<tr>
<td><a href="/metadata/ciplus/2013/osdt_2013.xsd">urn:dvb:metadata:ciplus:osdt:2013</a></td>
<td><a href="https://www.etsi.org/deliver/etsi_ts/103200_103299/103205/01.01.01_60/ts_103205v010101p.pdf">TS 103 205 v1.1.1</a></td>
<td>Initial version</td>
</tr>
<tr>
<td><a href="/metadata/ciplus/2015/osdt_2015.xsd">urn:dvb:metadata:ciplus:osdt:2015</a></td>
<td><a href="https://www.etsi.org/deliver/etsi_ts/103200_103299/103205/01.02.01_60/ts_103205v010201p.pdf">TS 103 205 v1.2.1</a></td>
<td>Added extension point in IPServiceListType</td>
</tr>
</tbody>
</table>
</figure>
<!-- /wp:table -->
<!-- wp:block {"ref":7534} /-->
<!-- wp:heading -->
<h2 id="DVB-CSS-Metadata-Definitions">DVB CSS Metadata Definitions</h2>
<!-- /wp:heading -->
<!-- wp:heading {"level":3} -->
<h3 id="css-by-spec">Metadata definitions by specification version</h3>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>This section lists the metadata definitions associated with each published specification document. Links to the specification documents are provided, and a zip archive containing all files for each specification document is also provided.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>In case you are looking for details about a particular metadata definition, you will find these in the <a href="#css-detailed">next section</a>.</p>
<!-- /wp:paragraph -->
<!-- wp:heading {"level":4} -->
<h4 id="css-spec-1-1-1">ETSI TS 103 286-2 v1.1.1</h4>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>Specification document: <a href="https://www.etsi.org/deliver/etsi_ts/103200_103299/10328602/01.01.01_60/ts_10328602v010101p.pdf">TS 103 286-2 v1.1.1</a></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>All files for this version: <a href="https://www.etsi.org/deliver/etsi_ts/103200_103299/10328602/01.01.01_60/ts_10328602v010101p0.zip">ts_10328602v010101p0.zip</a></p>
<!-- /wp:paragraph -->
<!-- wp:table {"className":"table table-sm"} -->
<figure class="wp-block-table table table-sm">
<table>
<thead><tr><th>Type</th><th>URI</th><th>Description</th></tr></thead>
<tbody>
<tr>
<td>W3C XML Schema</td>
<td><a href="/metadata/css/ts_10328602v010101p0/dash-css-schema.xsd">urn:dvb:css:dash:2014</a></td>
<td><a href="#css-xsd-dash">File info</a></td>
</tr>
<tr>
<td>JSON Schema</td>
<td><a href="/metadata/css/ts_10328602v010101p0/css-core-1.1.1.json">http://www.dvb.org/metadata/css/ts_10328602v010101p0/css-core-1.1.1.json</a></td>
<td><a href="#css-json-core">File info</a></td>
</tr>
<tr>
<td>JSON Schema</td>
<td><a href="/metadata/css/ts_10328602v010101p0/css-cii.cii-1.1.1.json">http://www.dvb.org/metadata/css/ts_10328602v010101p0/css-cii.cii-1.1.1.json</a></td>
<td><a href="#css-json-cii-cii">File info</a></td>
</tr>
<tr>
<td>JSON Schema</td>
<td><a href="/metadata/css/ts_10328602v010101p0/css-ts.setup-data-1.1.1.json">http://www.dvb.org/metadata/css/ts_10328602v010101p0/css-ts.setup-data-1.1.1.json</a></td>
<td><a href="#css-json-ts-setup-data">File info</a></td>
</tr>
<tr>
<td>JSON Schema</td>
<td><a href="/metadata/css/ts_10328602v010101p0/css-ts.ct-1.1.1.json">http://www.dvb.org/metadata/css/ts_10328602v010101p0/css-ts.ct-1.1.1.json</a></td>
<td><a href="#css-json-ts-ct">File info</a></td>
</tr>
<tr>
<td>JSON Schema</td>
<td><a href="/metadata/css/ts_10328602v010101p0/css-ts.apteptlpt-1.1.1.json">http://www.dvb.org/metadata/css/ts_10328602v010101p0/css-ts.apteptlpt-1.1.1.json</a></td>
<td><a href="#css-json-ts-apteptlpt">File info</a></td>
</tr>
<tr>
<td>JSON Schema</td>
<td><a href="/metadata/css/ts_10328602v010101p0/css-te.tess-1.1.1.json">http://www.dvb.org/metadata/css/ts_10328602v010101p0/css-te.tess-1.1.1.json</a></td>
<td><a href="#css-json-te-tess">File info</a></td>
</tr>
<tr>
<td>JSON Schema</td>
<td><a href="/metadata/css/ts_10328602v010101p0/css-te.tesm-1.1.1.json">http://www.dvb.org/metadata/css/ts_10328602v010101p0/css-te.tesm-1.1.1.json</a></td>
<td><a href="#css-json-te-tesm">File info</a></td>
</tr>
<tr>
<td>JSON Schema</td>
<td><a href="/metadata/css/ts_10328602v010101p0/css-te.ten-1.1.1.json">http://www.dvb.org/metadata/css/ts_10328602v010101p0/css-te.ten-1.1.1.json</a></td>
<td><a href="#css-json-te-ten">File info</a></td>
</tr>
<tr>
<td>JSON Schema</td>
<td><a href="/metadata/css/ts_10328602v010101p0/css-mrs.mi-1.1.1.json">http://www.dvb.org/metadata/css/ts_10328602v010101p0/css-mrs.mi-1.1.1.json</a></td>
<td><a href="#css-json-mrs-mi">File info</a></td>
</tr>
</tbody>
</table>
</figure>
<!-- /wp:table -->
<!-- wp:paragraph -->
<p>These schemas pre-date the creation of dvb.org/metadata. Their 'id' fields therefore do not correctly reference the URLs at which they are hosted. They are otherwise identical to the schemas published in v1.2.1</p>
<!-- /wp:paragraph -->
<!-- wp:heading {"level":4} -->
<h4 id="css-spec-1-2-1">ETSI TS 103 286-2 v1.2.1</h4>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>Specification document: <a href="https://www.etsi.org/deliver/etsi_ts/103200_103299/10328602/01.02.01_60/ts_10328602v010201p.pdf">TS 103 286-2 v1.2.1</a></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>All files for this version: <a href="https://www.etsi.org/deliver/etsi_ts/103200_103299/10328602/01.02.01_60/ts_10328602v010201p0.zip">ts_10328602v010201p0.zip</a></p>
<!-- /wp:paragraph -->
<!-- wp:table {"className":"table table-sm"} -->
<figure class="wp-block-table table table-sm">
<table>
<thead><tr><th>Type</th><th>URI</th><th>Description</th></tr></thead>
<tbody>
<tr>
<td>W3C XML Schema</td>
<td><a href="/metadata/css/ts_10328602v010201p0/dash-css-schema.xsd">urn:dvb:css:dash:2014</a></td>
<td><a href="#css-xsd-dash">File info</a></td>
</tr>
<tr>
<td>JSON Schema</td>
<td><a href="/metadata/css/ts_10328602v010201p0/css-core-1.1.1.json">http://www.dvb.org/metadata/css/ts_10328602v010201p0/css-core-1.1.1.json</a></td>
<td><a href="#css-json-core">File info</a></td>
</tr>
<tr>
<td>JSON Schema</td>
<td><a href="/metadata/css/ts_10328602v010201p0/css-cii.cii-1.1.1.json">http://www.dvb.org/metadata/css/ts_10328602v010201p0/css-cii.cii-1.1.1.json</a></td>
<td><a href="#css-json-cii-cii">File info</a></td>
</tr>
<tr>
<td>JSON Schema</td>
<td><a href="/metadata/css/ts_10328602v010201p0/css-ts.setup-data-1.1.1.json">http://www.dvb.org/metadata/css/ts_10328602v010201p0/css-ts.setup-data-1.1.1.json</a></td>
<td><a href="#css-json-ts-setup-data">File info</a></td>
</tr>
<tr>
<td>JSON Schema</td>
<td><a href="/metadata/css/ts_10328602v010201p0/css-ts.ct-1.1.1.json">http://www.dvb.org/metadata/css/ts_10328602v010201p0/css-ts.ct-1.1.1.json</a></td>
<td><a href="#css-json-ts-ct">File info</a></td>
</tr>
<tr>
<td>JSON Schema</td>
<td><a href="/metadata/css/ts_10328602v010201p0/css-ts.apteptlpt-1.1.1.json">http://www.dvb.org/metadata/css/ts_10328602v010201p0/css-ts.apteptlpt-1.1.1.json</a></td>
<td><a href="#css-json-ts-apteptlpt">File info</a></td>
</tr>
<tr>
<td>JSON Schema</td>
<td><a href="/metadata/css/ts_10328602v010201p0/css-te.tess-1.1.1.json">http://www.dvb.org/metadata/css/ts_10328602v010201p0/css-te.tess-1.1.1.json</a></td>
<td><a href="#css-json-te-tess">File info</a></td>
</tr>
<tr>
<td>JSON Schema</td>
<td><a href="/metadata/css/ts_10328602v010201p0/css-te.tesm-1.1.1.json">http://www.dvb.org/metadata/css/ts_10328602v010201p0/css-te.tesm-1.1.1.json</a></td>
<td><a href="#css-json-te-tesm">File info</a></td>
</tr>
<tr>
<td>JSON Schema</td>
<td><a href="/metadata/css/ts_10328602v010201p0/css-te.ten-1.1.1.json">http://www.dvb.org/metadata/css/ts_10328602v010201p0/css-te.ten-1.1.1.json</a></td>
<td><a href="#css-json-te-ten">File info</a></td>
</tr>
<tr>
<td>JSON Schema</td>
<td><a href="/metadata/css/ts_10328602v010201p0/css-mrs.mi-1.1.1.json">http://www.dvb.org/metadata/css/ts_10328602v010201p0/css-mrs.mi-1.1.1.json</a></td>
<td><a href="#css-json-mrs-mi">File info</a></td>
</tr>
</tbody>
</table>
</figure>
<!-- /wp:table -->
<!-- wp:heading {"level":3} -->
<h3 id="css-detailed">Detailed descriptions of metadata definitions</h3>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>This section briefly describes each metadata definition, lists all versions of each definition that have been published, and indicates with which specification version(s) each metadata definition is associated.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>In case you are looking for details about a particular specification document, you will find these in the <a href="#css-by-spec">previous section</a>.</p>
<!-- /wp:paragraph -->
<!-- wp:heading {"level":4} -->
<h4 id="css-xsd-dash">XML Schemas</h4>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>DASH MPD Schema extension for carriage of MRS URL and CI Ancillary Data</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>See annex E.2 of TS 103 286-2. This schema extends the MPEG DASH MPD schema to allow carriage of the URL for a Material Resolution Server (MRS) and CI ancillary data that are passed by the TV Device to a Companion Screen Application via the CSS-CII protocol</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Latest version: <a href="/metadata/css/ts_10328602v010101p0/dash-css-schema.xsd">permalink</a></p>
<!-- /wp:paragraph -->
<!-- wp:table {"className":"table table-sm"} -->
<figure class="wp-block-table table table-sm">
<table>
<thead><tr><th>URI</th><th>DVB Standard(s)</th><th>Description</th></tr></thead>
<tbody>
<tr>
<td><a href="/metadata/css/dash-css-schema.xsd">urn:dvb:dash:2014</a></td>
<td><a href="#css-spec-1-1-1">TS 103 286-2 v1.1.1</a><br/><a href="#css-spec-1-2-1">TS 103 286-2 v1.2.1</a></td>
<td>Initial version</td>
</tr>
</tbody>
</table>
</figure>
<!-- /wp:table -->
<!-- wp:heading {"level":4} -->
<h4 id="css-json-core">JSON Schemas</h4>
<!-- /wp:heading -->
<!-- wp:heading {"level":5} -->
<h5>Schema for common data types used in schemas for other JSON messages</h5>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>This schema is referenced by JSON schemas for protocol messages for the CSS-CII, CSS-TS, CSS-TE and CSS-MRS protocols.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Schema latest version: <a href="/metadata/css/css-core.json">permalink</a></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Schema version 1.1.1: <a href="/metadata/css/css-core-1.1.1.json">permalink</a></p>
<!-- /wp:paragraph -->
<!-- wp:table {"className":"table table-sm"} -->
<figure class="wp-block-table table table-sm">
<table>
<thead><tr><th>URI</th><th>DVB Standard(s)</th><th>Description</th></tr></thead>
<tbody>
<tr>
<td><a href="/metadata/css/ts_10328602v010101p0/css-core-1.1.1.json">http://www.dvb.org/metadata/css/ts_10328602v010101p0/css-core-1.1.1.json</a></td>
<td><a href="#css-spec-1-1-1">TS 103 286-2 v1.1.1</a></td>
<td>Initial version.</td>
</tr>
<tr>
<td><a href="/metadata/css/ts_10328602v010201p0/css-core-1.1.1.json">http://www.dvb.org/metadata/css/ts_10328602v010201p0/css-core-1.1.1.json</a></td>
<td><a href="#css-spec-1-2-1">TS 103 286-2 v1.2.1</a></td>
<td>Corrected schema location URI.</td>
</tr>
</tbody>
</table>
</figure>
<!-- /wp:table -->
<!-- wp:heading {"level":5} -->
<h5 id="css-json-cii-cii">Schema for a "Content Identification and other Information" JSON message</h5>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>This message is sent from TV Device to Companion Screen Application as part of the CSS-CII protocol. It conveys a content identifier and other information relating to the state of media presentation of the TV Device.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Schema latest version: <a href="/metadata/css/css-cii.cii.json">permalink</a></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Schema version 1.1.1: <a href="/metadata/css/css-cii.cii-1.1.1.json">permalink</a></p>
<!-- /wp:paragraph -->
<!-- wp:table {"className":"table table-sm"} -->
<figure class="wp-block-table table table-sm">
<table>
<thead><tr><th>URI</th><th>DVB Standard(s)</th><th>Description</th></tr></thead>
<tbody>
<tr>
<td><a href="/metadata/css/ts_10328602v010101p0/css-cii.cii-1.1.1.json">http://www.dvb.org/metadata/css/ts_10328602v010101p0/css-cii.cii-1.1.1.json</a></td>
<td><a href="#css-spec-1-1-1">TS 103 286-2 v1.1.1</a></td>
<td>Initial version.</td>
</tr>
<tr>
<td><a href="/metadata/css/ts_10328602v010201p0/css-cii.cii-1.1.1.json">http://www.dvb.org/metadata/css/ts_10328602v010201p0/css-cii.cii-1.1.1.json</a></td>
<td><a href="#css-spec-1-2-1">TS 103 286-2 v1.2.1</a></td>
<td>Corrected schema location URI.</td>
</tr>
</tbody>
</table>
</figure>
<!-- /wp:table -->
<!-- wp:heading {"level":5} -->
<h5 id="css-json-ts-setup-data">Schema for a "Setup Data" JSON message</h5>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>This message is sent from TV Device to Companion Screen Application as part of the CSS-TS protocol. It is used at the beginning of the protocol session to specify the timeline that the TV Device is to derive and convey to the Companion Screen Application via subsequent "Control Timestamp" messages.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Schema latest version: <a href="/metadata/css/css-ts.setup-data.json">permalink</a></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Schema version 1.1.1: <a href="/metadata/css/css-ts.setup-data-1.1.1.json">permalink</a></p>
<!-- /wp:paragraph -->
<!-- wp:table {"className":"table table-sm"} -->
<figure class="wp-block-table table table-sm">
<table>
<thead><tr><th>URI</th><th>DVB Standard(s)</th><th>Description</th></tr></thead>
<tbody>
<tr>
<td><a href="/metadata/css/ts_10328602v010101p0/css-ts.setup-data-1.1.1.json">http://www.dvb.org/metadata/css/ts_10328602v010101p0/css-ts.setup-data-1.1.1.json</a></td>
<td><a href="#css-spec-1-1-1">TS 103 286-2 v1.1.1</a></td>
<td>Initial version.</td>
</tr>
<tr>
<td><a href="/metadata/css/ts_10328602v010201p0/css-ts.setup-data-1.1.1.json">http://www.dvb.org/metadata/css/ts_10328602v010201p0/css-ts.setup-data-1.1.1.json</a></td>
<td><a href="#css-spec-1-2-1">TS 103 286-2 v1.2.1</a></td>
<td>Corrected schema location URI.</td>
</tr>
</tbody>
</table>
</figure>
<!-- /wp:table -->
<!-- wp:heading {"level":5} -->
<h5 id="css-json-ts-ct">Schema for a "Control Timestamp" JSON message</h5>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>This message is sent from TV Device to Companion Screen Application as part of the CSS-TS protocol. It describes the state (position and speed) of the timeline for the media being presented by the TV.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Schema latest version: <a href="/metadata/css/css-ts.ct.json">permalink</a></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>Schema version 1.1.1: <a href="/metadata/css/css-ts.ct-1.1.1.json">permalink</a></p>
<!-- /wp:paragraph -->
<!-- wp:table {"className":"table table-sm"} -->
<figure class="wp-block-table table table-sm">
<table>
<thead><tr><th>URI</th><th>DVB Standard(s)</th><th>Description</th></tr></thead>
<tbody>
<tr>
<td><a href="/metadata/css/ts_10328602v010101p0/css-ts.ct-1.1.1.json">http://www.dvb.org/metadata/css/ts_10328602v010101p0/css-ts.ct-1.1.1.json</a></td>
<td><a href="#css-spec-1-1-1">TS 103 286-2 v1.1.1</a></td>
<td>Initial version.</td>
</tr>
<tr>
<td><a href="/metadata/css/ts_10328602v010201p0/css-ts.ct-1.1.1.json">http://www.dvb.org/metadata/css/ts_10328602v010201p0/css-ts.ct-1.1.1.json</a></td>
<td><a href="#css-spec-1-2-1">TS 103 286-2 v1.2.1</a></td>
<td>Corrected schema location URI.</td>
</tr>
</tbody>
</table>
</figure>
<!-- /wp:table -->
<!-- wp:heading {"level":5} -->
<h5 id="css-json-ts-apteptlpt">Schema for an "Actual, Earliest and Latest Presentation Timestamp" JSON message</h5>
<!-- /wp:heading -->
<!-- wp:paragraph -->