File: rfc8846.html

package info (click to toggle)
doc-rfc 20230121-1
  • links: PTS, VCS
  • area: non-free
  • in suites: bookworm, forky, sid, trixie
  • size: 1,609,944 kB
file content (5477 lines) | stat: -rw-r--r-- 248,737 bytes parent folder | download
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
<!DOCTYPE html>
<html lang="en" class="RFC">
<head>
<meta charset="utf-8">
<meta content="Common,Latin" name="scripts">
<meta content="initial-scale=1.0" name="viewport">
<title>RFC 8846: An XML Schema for the Controlling Multiple Streams for Telepresence (CLUE) Data Model</title>
<meta content="Roberta Presta" name="author">
<meta content="Simon Pietro Romano" name="author">
<meta content='
       
This document provides an XML schema file 
for the definition of CLUE data model types. The term "CLUE" stands for 
"Controlling Multiple Streams for Telepresence" and is the name of 
the IETF working group in which this document, as well as other 
companion documents, has been developed. The document defines a coherent
structure for information associated with the description of a 
telepresence scenario. 
 
    ' name="description">
<meta content="xml2rfc 3.5.0" name="generator">
<meta content="CLUE" name="keyword">
<meta content="Telepresence" name="keyword">
<meta content="Data Model" name="keyword">
<meta content="Framework" name="keyword">
<meta content="8846" name="rfc.number">
<!-- Generator version information:
  xml2rfc 3.5.0
    Python 3.6.10
    appdirs 1.4.4
    ConfigArgParse 1.2.3
    google-i18n-address 2.3.5
    html5lib 1.0.1
    intervaltree 3.0.2
    Jinja2 2.11.2
    kitchen 1.2.6
    lxml 4.4.2
    pycairo 1.19.0
    pycountry 19.8.18
    pyflakes 2.1.1
    PyYAML 5.3.1
    requests 2.22.0
    setuptools 40.6.2
    six 1.14.0
    WeasyPrint 51
-->
<link href="rfc8846.xml" rel="alternate" type="application/rfc+xml">
<link href="#copyright" rel="license">
<style type="text/css">/*

  NOTE: Changes at the bottom of this file overrides some earlier settings.

  Once the style has stabilized and has been adopted as an official RFC style,
  this can be consolidated so that style settings occur only in one place, but
  for now the contents of this file consists first of the initial CSS work as
  provided to the RFC Formatter (xml2rfc) work, followed by itemized and
  commented changes found necssary during the development of the v3
  formatters.

*/

/* fonts */
@import url('https://fonts.googleapis.com/css?family=Noto+Sans'); /* Sans-serif */
@import url('https://fonts.googleapis.com/css?family=Noto+Serif'); /* Serif (print) */
@import url('https://fonts.googleapis.com/css?family=Roboto+Mono'); /* Monospace */

@viewport {
  zoom: 1.0;
  width: extend-to-zoom;
}
@-ms-viewport {
  width: extend-to-zoom;
  zoom: 1.0;
}
/* general and mobile first */
html {
}
body {
  max-width: 90%;
  margin: 1.5em auto;
  color: #222;
  background-color: #fff;
  font-size: 14px;
  font-family: 'Noto Sans', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
}
.ears {
  display: none;
}

/* headings */
#title, h1, h2, h3, h4, h5, h6 {
  margin: 1em 0 0.5em;
  font-weight: bold;
  line-height: 1.3;
}
#title {
  clear: both;
  border-bottom: 1px solid #ddd;
  margin: 0 0 0.5em 0;
  padding: 1em 0 0.5em;
}
.author {
  padding-bottom: 4px;
}
h1 {
  font-size: 26px;
  margin: 1em 0;
}
h2 {
  font-size: 22px;
  margin-top: -20px;  /* provide offset for in-page anchors */
  padding-top: 33px;
}
h3 {
  font-size: 18px;
  margin-top: -36px;  /* provide offset for in-page anchors */
  padding-top: 42px;
}
h4 {
  font-size: 16px;
  margin-top: -36px;  /* provide offset for in-page anchors */
  padding-top: 42px;
}
h5, h6 {
  font-size: 14px;
}
#n-copyright-notice {
  border-bottom: 1px solid #ddd;
  padding-bottom: 1em;
  margin-bottom: 1em;
}
/* general structure */
p {
  padding: 0;
  margin: 0 0 1em 0;
  text-align: left;
}
div, span {
  position: relative;
}
div {
  margin: 0;
}
.alignRight.art-text {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 3px;
  padding: 1em 1em 0;
  margin-bottom: 1.5em;
}
.alignRight.art-text pre {
  padding: 0;
}
.alignRight {
  margin: 1em 0;
}
.alignRight > *:first-child {
  border: none;
  margin: 0;
  float: right;
  clear: both;
}
.alignRight > *:nth-child(2) {
  clear: both;
  display: block;
  border: none;
}
svg {
  display: block;
}
.alignCenter.art-text {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 3px;
  padding: 1em 1em 0;
  margin-bottom: 1.5em;
}
.alignCenter.art-text pre {
  padding: 0;
}
.alignCenter {
  margin: 1em 0;
}
.alignCenter > *:first-child {
  border: none;
  /* this isn't optimal, but it's an existence proof.  PrinceXML doesn't
     support flexbox yet.
  */
  display: table;
  margin: 0 auto;
}

/* lists */
ol, ul {
  padding: 0;
  margin: 0 0 1em 2em;
}
ol ol, ul ul, ol ul, ul ol {
  margin-left: 1em;
}
li {
  margin: 0 0 0.25em 0;
}
.ulCompact li {
  margin: 0;
}
ul.empty, .ulEmpty {
  list-style-type: none;
}
ul.empty li, .ulEmpty li {
  margin-top: 0.5em;
}
ul.compact, .ulCompact,
ol.compact, .olCompact {
  line-height: 100%;
  margin: 0 0 0 2em;
}

/* definition lists */
dl {
}
dl > dt {
  float: left;
  margin-right: 1em;
}
/* 
dl.nohang > dt {
  float: none;
}
*/
dl > dd {
  margin-bottom: .8em;
  min-height: 1.3em;
}
dl.compact > dd, .dlCompact > dd {
  margin-bottom: 0em;
}
dl > dd > dl {
  margin-top: 0.5em;
  margin-bottom: 0em;
}

/* links */
a {
  text-decoration: none;
}
a[href] {
  color: #22e; /* Arlen: WCAG 2019 */
}
a[href]:hover {
  background-color: #f2f2f2;
}
figcaption a[href],
a[href].selfRef {
  color: #222;
}
/* XXX probably not this:
a.selfRef:hover {
  background-color: transparent;
  cursor: default;
} */

/* Figures */
tt, code, pre, code {
  background-color: #f9f9f9;
  font-family: 'Roboto Mono', monospace;
}
pre {
  border: 1px solid #eee;
  margin: 0;
  padding: 1em;
}
img {
  max-width: 100%;
}
figure {
  margin: 0;
}
figure blockquote {
  margin: 0.8em 0.4em 0.4em;
}
figcaption {
  font-style: italic;
  margin: 0 0 1em 0;
}
@media screen {
  pre {
    overflow-x: auto;
    max-width: 100%;
    max-width: calc(100% - 22px);
  }
}

/* aside, blockquote */
aside, blockquote {
  margin-left: 0;
  padding: 1.2em 2em;
}
blockquote {
  background-color: #f9f9f9;
  color: #111; /* Arlen: WCAG 2019 */
  border: 1px solid #ddd;
  border-radius: 3px;
  margin: 1em 0;
}
cite {
  display: block;
  text-align: right;
  font-style: italic;
}

/* tables */
table {
  width: 100%;
  margin: 0 0 1em;
  border-collapse: collapse;
  border: 1px solid #eee;
}
th, td {
  text-align: left;
  vertical-align: top;
  padding: 0.5em 0.75em;
}
th {
  text-align: left;
  background-color: #e9e9e9;
}
tr:nth-child(2n+1) > td {
  background-color: #f5f5f5;
}
table caption {
  font-style: italic;
  margin: 0;
  padding: 0;
  text-align: left;
}
table p {
  /* XXX to avoid bottom margin on table row signifiers. If paragraphs should
     be allowed within tables more generally, it would be far better to select on a class. */
  margin: 0;
}

/* pilcrow */
a.pilcrow {
  color: #666; /* Arlen: AHDJ 2019 */
  text-decoration: none;
  visibility: hidden;
  user-select: none;
  -ms-user-select: none;
  -o-user-select:none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
@media screen {
  aside:hover > a.pilcrow,
  p:hover > a.pilcrow,
  blockquote:hover > a.pilcrow,
  div:hover > a.pilcrow,
  li:hover > a.pilcrow,
  pre:hover > a.pilcrow {
    visibility: visible;
  }
  a.pilcrow:hover {
    background-color: transparent;
  }
}

/* misc */
hr {
  border: 0;
  border-top: 1px solid #eee;
}
.bcp14 {
  font-variant: small-caps;
}

.role {
  font-variant: all-small-caps;
}

/* info block */
#identifiers {
  margin: 0;
  font-size: 0.9em;
}
#identifiers dt {
  width: 3em;
  clear: left;
}
#identifiers dd {
  float: left;
  margin-bottom: 0;
}
#identifiers .authors .author {
  display: inline-block;
  margin-right: 1.5em;
}
#identifiers .authors .org {
  font-style: italic;
}

/* The prepared/rendered info at the very bottom of the page */
.docInfo {
  color: #666; /* Arlen: WCAG 2019 */
  font-size: 0.9em;
  font-style: italic;
  margin-top: 2em;
}
.docInfo .prepared {
  float: left;
}
.docInfo .prepared {
  float: right;
}

/* table of contents */
#toc  {
  padding: 0.75em 0 2em 0;
  margin-bottom: 1em;
}
nav.toc ul {
  margin: 0 0.5em 0 0;
  padding: 0;
  list-style: none;
}
nav.toc li {
  line-height: 1.3em;
  margin: 0.75em 0;
  padding-left: 1.2em;
  text-indent: -1.2em;
}
/* references */
.references dt {
  text-align: right;
  font-weight: bold;
  min-width: 7em;
}
.references dd {
  margin-left: 8em;
  overflow: auto;
}

.refInstance {
  margin-bottom: 1.25em;
}

.references .ascii {
  margin-bottom: 0.25em;
}

/* index */
.index ul {
  margin: 0 0 0 1em;
  padding: 0;
  list-style: none;
}
.index ul ul {
  margin: 0;
}
.index li {
  margin: 0;
  text-indent: -2em;
  padding-left: 2em;
  padding-bottom: 5px;
}
.indexIndex {
  margin: 0.5em 0 1em;
}
.index a {
  font-weight: 700;
}
/* make the index two-column on all but the smallest screens */
@media (min-width: 600px) {
  .index ul {
    -moz-column-count: 2;
    -moz-column-gap: 20px;
  }
  .index ul ul {
    -moz-column-count: 1;
    -moz-column-gap: 0;
  }
}

/* authors */
address.vcard {
  font-style: normal;
  margin: 1em 0;
}

address.vcard .nameRole {
  font-weight: 700;
  margin-left: 0;
}
address.vcard .label {
  font-family: "Noto Sans",Arial,Helvetica,sans-serif;
  margin: 0.5em 0;
}
address.vcard .type {
  display: none;
}
.alternative-contact {
  margin: 1.5em 0 1em;
}
hr.addr {
  border-top: 1px dashed;
  margin: 0;
  color: #ddd;
  max-width: calc(100% - 16px);
}

/* temporary notes */
.rfcEditorRemove::before {
  position: absolute;
  top: 0.2em;
  right: 0.2em;
  padding: 0.2em;
  content: "The RFC Editor will remove this note";
  color: #9e2a00; /* Arlen: WCAG 2019 */
  background-color: #ffd; /* Arlen: WCAG 2019 */
}
.rfcEditorRemove {
  position: relative;
  padding-top: 1.8em;
  background-color: #ffd; /* Arlen: WCAG 2019 */
  border-radius: 3px;
}
.cref {
  background-color: #ffd; /* Arlen: WCAG 2019 */
  padding: 2px 4px;
}
.crefSource {
  font-style: italic;
}
/* alternative layout for smaller screens */
@media screen and (max-width: 1023px) {
  body {
    padding-top: 2em;
  }
  #title {
    padding: 1em 0;
  }
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 20px;
    margin-top: -18px;  /* provide offset for in-page anchors */
    padding-top: 38px;
  }
  #identifiers dd {
    max-width: 60%;
  }
  #toc {
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    padding: 0;
    margin: 0;
    background-color: inherit;
    border-bottom: 1px solid #ccc;
  }
  #toc h2 {
    margin: -1px 0 0 0;
    padding: 4px 0 4px 6px;
    padding-right: 1em;
    min-width: 190px;
    font-size: 1.1em;
    text-align: right;
    background-color: #444;
    color: white;
    cursor: pointer;
  }
  #toc h2::before { /* css hamburger */
    float: right;
    position: relative;
    width: 1em;
    height: 1px;
    left: -164px;
    margin: 6px 0 0 0;
    background: white none repeat scroll 0 0;
    box-shadow: 0 4px 0 0 white, 0 8px 0 0 white;
    content: "";
  }
  #toc nav {
    display: none;
    padding: 0.5em 1em 1em;
    overflow: auto;
    height: calc(100vh - 48px);
    border-left: 1px solid #ddd;
  }
}

/* alternative layout for wide screens */
@media screen and (min-width: 1024px) {
  body {
    max-width: 724px;
    margin: 42px auto;
    padding-left: 1.5em;
    padding-right: 29em;
  }
  #toc {
    position: fixed;
    top: 42px;
    right: 42px;
    width: 25%;
    margin: 0;
    padding: 0 1em;
    z-index: 1;
  }
  #toc h2 {
    border-top: none;
    border-bottom: 1px solid #ddd;
    font-size: 1em;
    font-weight: normal;
    margin: 0;
    padding: 0.25em 1em 1em 0;
  }
  #toc nav {
    display: block;
    height: calc(90vh - 84px);
    bottom: 0;
    padding: 0.5em 0 0;
    overflow: auto;
  }
  img { /* future proofing */
    max-width: 100%;
    height: auto;
  }
}

/* pagination */
@media print {
  body {

    width: 100%;
  }
  p {
    orphans: 3;
    widows: 3;
  }
  #n-copyright-notice {
    border-bottom: none;
  }
  #toc, #n-introduction {
    page-break-before: always;
  }
  #toc {
    border-top: none;
    padding-top: 0;
  }
  figure, pre {
    page-break-inside: avoid;
  }
  figure {
    overflow: scroll;
  }
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
  h2+*, h3+*, h4+*, h5+*, h6+* {
    page-break-before: avoid;
  }
  pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 10pt;
  }
  table {
    border: 1px solid #ddd;
  }
  td {
    border-top: 1px solid #ddd;
  }
}

/* This is commented out here, as the string-set: doesn't
   pass W3C validation currently */
/*
.ears thead .left {
  string-set: ears-top-left content();
}

.ears thead .center {
  string-set: ears-top-center content();
}

.ears thead .right {
  string-set: ears-top-right content();
}

.ears tfoot .left {
  string-set: ears-bottom-left content();
}

.ears tfoot .center {
  string-set: ears-bottom-center content();
}

.ears tfoot .right {
  string-set: ears-bottom-right content();
}
*/

@page :first {
  padding-top: 0;
  @top-left {
    content: normal;
    border: none;
  }
  @top-center {
    content: normal;
    border: none;
  }
  @top-right {
    content: normal;
    border: none;
  }
}

@page {
  size: A4;
  margin-bottom: 45mm;
  padding-top: 20px;
  /* The follwing is commented out here, but set appropriately by in code, as
     the content depends on the document */
  /*
  @top-left {
    content: 'Internet-Draft';
    vertical-align: bottom;
    border-bottom: solid 1px #ccc;
  }
  @top-left {
    content: string(ears-top-left);
    vertical-align: bottom;
    border-bottom: solid 1px #ccc;
  }
  @top-center {
    content: string(ears-top-center);
    vertical-align: bottom;
    border-bottom: solid 1px #ccc;
  }
  @top-right {
    content: string(ears-top-right);
    vertical-align: bottom;
    border-bottom: solid 1px #ccc;
  }
  @bottom-left {
    content: string(ears-bottom-left);
    vertical-align: top;
    border-top: solid 1px #ccc;
  }
  @bottom-center {
    content: string(ears-bottom-center);
    vertical-align: top;
    border-top: solid 1px #ccc;
  }
  @bottom-right {
      content: '[Page ' counter(page) ']';
      vertical-align: top;
      border-top: solid 1px #ccc;
  }
  */

}

/* Changes introduced to fix issues found during implementation */
/* Make sure links are clickable even if overlapped by following H* */
a {
  z-index: 2;
}
/* Separate body from document info even without intervening H1 */
section {
  clear: both;
}


/* Top align author divs, to avoid names without organization dropping level with org names */
.author {
  vertical-align: top;
}

/* Leave room in document info to show Internet-Draft on one line */
#identifiers dt {
  width: 8em;
}

/* Don't waste quite as much whitespace between label and value in doc info */
#identifiers dd {
  margin-left: 1em;
}

/* Give floating toc a background color (needed when it's a div inside section */
#toc {
  background-color: white;
}

/* Make the collapsed ToC header render white on gray also when it's a link */
@media screen and (max-width: 1023px) {
  #toc h2 a,
  #toc h2 a:link,
  #toc h2 a:focus,
  #toc h2 a:hover,
  #toc a.toplink,
  #toc a.toplink:hover {
    color: white;
    background-color: #444;
    text-decoration: none;
  }
}

/* Give the bottom of the ToC some whitespace */
@media screen and (min-width: 1024px) {
  #toc {
    padding: 0 0 1em 1em;
  }
}

/* Style section numbers with more space between number and title */
.section-number {
  padding-right: 0.5em;
}

/* prevent monospace from becoming overly large */
tt, code, pre, code {
  font-size: 95%;
}

/* Fix the height/width aspect for ascii art*/
pre.sourcecode,
.art-text pre {
  line-height: 1.12;
}


/* Add styling for a link in the ToC that points to the top of the document */
a.toplink {
  float: right;
  margin-right: 0.5em;
}

/* Fix the dl styling to match the RFC 7992 attributes */
dl > dt,
dl.dlParallel > dt {
  float: left;
  margin-right: 1em;
}
dl.dlNewline > dt {
  float: none;
}

/* Provide styling for table cell text alignment */
table td.text-left,
table th.text-left {
  text-align: left;
}
table td.text-center,
table th.text-center {
  text-align: center;
}
table td.text-right,
table th.text-right {
  text-align: right;
}

/* Make the alternative author contact informatio look less like just another
   author, and group it closer with the primary author contact information */
.alternative-contact {
  margin: 0.5em 0 0.25em 0;
}
address .non-ascii {
  margin: 0 0 0 2em;
}

/* With it being possible to set tables with alignment
  left, center, and right, { width: 100%; } does not make sense */
table {
  width: auto;
}

/* Avoid reference text that sits in a block with very wide left margin,
   because of a long floating dt label.*/
.references dd {
  overflow: visible;
}

/* Control caption placement */
caption {
  caption-side: bottom;
}

/* Limit the width of the author address vcard, so names in right-to-left
   script don't end up on the other side of the page. */

address.vcard {
  max-width: 30em;
  margin-right: auto;
}

/* For address alignment dependent on LTR or RTL scripts */
address div.left {
  text-align: left;
}
address div.right {
  text-align: right;
}

/* Provide table alignment support.  We can't use the alignX classes above
   since they do unwanted things with caption and other styling. */
table.right {
 margin-left: auto;
 margin-right: 0;
}
table.center {
 margin-left: auto;
 margin-right: auto;
}
table.left {
 margin-left: 0;
 margin-right: auto;
}

/* Give the table caption label the same styling as the figcaption */
caption a[href] {
  color: #222;
}

@media print {
  .toplink {
    display: none;
  }

  /* avoid overwriting the top border line with the ToC header */
  #toc {
    padding-top: 1px;
  }

  /* Avoid page breaks inside dl and author address entries */
  .vcard {
    page-break-inside: avoid;
  }

}
/* Tweak the bcp14 keyword presentation */
.bcp14 {
  font-variant: small-caps;
  font-weight: bold;
  font-size: 0.9em;
}
/* Tweak the invisible space above H* in order not to overlay links in text above */
 h2 {
  margin-top: -18px;  /* provide offset for in-page anchors */
  padding-top: 31px;
 }
 h3 {
  margin-top: -18px;  /* provide offset for in-page anchors */
  padding-top: 24px;
 }
 h4 {
  margin-top: -18px;  /* provide offset for in-page anchors */
  padding-top: 24px;
 }
/* Float artwork pilcrow to the right */
@media screen {
  .artwork a.pilcrow {
    display: block;
    line-height: 0.7;
    margin-top: 0.15em;
  }
}
/* Make pilcrows on dd visible */
@media screen {
  dd:hover > a.pilcrow {
    visibility: visible;
  }
}
/* Make the placement of figcaption match that of a table's caption
   by removing the figure's added bottom margin */
.alignLeft.art-text,
.alignCenter.art-text,
.alignRight.art-text {
   margin-bottom: 0;
}
.alignLeft,
.alignCenter,
.alignRight {
  margin: 1em 0 0 0;
}
/* In print, the pilcrow won't show on hover, so prevent it from taking up space,
   possibly even requiring a new line */
@media print {
  a.pilcrow {
    display: none;
  }
}
/* Styling for the external metadata */
div#external-metadata {
  background-color: #eee;
  padding: 0.5em;
  margin-bottom: 0.5em;
  display: none;
}
div#internal-metadata {
  padding: 0.5em;                       /* to match the external-metadata padding */
}
/* Styling for title RFC Number */
h1#rfcnum {
  clear: both;
  margin: 0 0 -1em;
  padding: 1em 0 0 0;
}
/* Make .olPercent look the same as <ol><li> */
dl.olPercent > dd {
  margin-bottom: 0.25em;
  min-height: initial;
}
/* Give aside some styling to set it apart */
aside {
  border-left: 1px solid #ddd;
  margin: 1em 0 1em 2em;
  padding: 0.2em 2em;
}
aside > dl,
aside > ol,
aside > ul,
aside > table,
aside > p {
  margin-bottom: 0.5em;
}
/* Additional page break settings */
@media print {
  figcaption, table caption {
    page-break-before: avoid;
  }
}
/* Font size adjustments for print */
@media print {
  body  { font-size: 10pt;      line-height: normal; max-width: 96%; }
  h1    { font-size: 1.72em;    padding-top: 1.5em; } /* 1*1.2*1.2*1.2 */
  h2    { font-size: 1.44em;    padding-top: 1.5em; } /* 1*1.2*1.2 */
  h3    { font-size: 1.2em;     padding-top: 1.5em; } /* 1*1.2 */
  h4    { font-size: 1em;       padding-top: 1.5em; }
  h5, h6 { font-size: 1em;      margin: initial; padding: 0.5em 0 0.3em; }
}
/* Sourcecode margin in print, when there's no pilcrow */
@media print {
  .artwork,
  .sourcecode {
    margin-bottom: 1em;
  }
}
/* Avoid narrow tables forcing too narrow table captions, which may render badly */
table {
  min-width: 20em;
}
/* ol type a */
ol.type-a { list-style-type: lower-alpha; }
ol.type-A { list-style-type: upper-alpha; }
ol.type-i { list-style-type: lower-roman; }
ol.type-I { list-style-type: lower-roman; }
/* Apply the print table and row borders in general, on request from the RPC,
and increase the contrast between border and odd row background sligthtly */
table {
  border: 1px solid #ddd;
}
td {
  border-top: 1px solid #ddd;
}
tr:nth-child(2n+1) > td {
  background-color: #f8f8f8;
}
/* Use style rules to govern display of the TOC. */
@media screen and (max-width: 1023px) {
  #toc nav { display: none; }
  #toc.active nav { display: block; }
}
/* Add support for keepWithNext */
.keepWithNext {
  break-after: avoid-page;
  break-after: avoid-page;
}
/* Add support for keepWithPrevious */
.keepWithPrevious {
  break-before: avoid-page;
}
/* Change the approach to avoiding breaks inside artwork etc. */
figure, pre, table, .artwork, .sourcecode  {
  break-before: avoid-page;
  break-after: auto;
}
/* Avoid breaks between <dt> and <dd> */
dl {
  break-before: auto;
  break-inside: auto;
}
dt {
  break-before: auto;
  break-after: avoid-page;
}
dd {
  break-before: avoid-page;
  break-after: auto;
  orphans: 3;
  widows: 3
}
span.break, dd.break {
  margin-bottom: 0;
  min-height: 0;
  break-before: auto;
  break-inside: auto;
  break-after: auto;
}
/* Undo break-before ToC */
@media print {
  #toc {
    break-before: auto;
  }
}
/* Text in compact lists should not get extra bottim margin space,
   since that would makes the list not compact */
ul.compact p, .ulCompact p,
ol.compact p, .olCompact p {
 margin: 0;
}
/* But the list as a whole needs the extra space at the end */
section ul.compact,
section .ulCompact,
section ol.compact,
section .olCompact {
  margin-bottom: 1em;                    /* same as p not within ul.compact etc. */
}
/* The tt and code background above interferes with for instance table cell
   backgrounds.  Changed to something a bit more selective. */
tt, code {
  background-color: transparent;
}
p tt, p code, li tt, li code {
  background-color: #f8f8f8;
}
/* Tweak the pre margin -- 0px doesn't come out well */
pre {
   margin-top: 0.5px;
}
/* Tweak the comact list text */
ul.compact, .ulCompact,
ol.compact, .olCompact,
dl.compact, .dlCompact {
  line-height: normal;
}
/* Don't add top margin for nested lists */
li > ul, li > ol, li > dl,
dd > ul, dd > ol, dd > dl,
dl > dd > dl {
  margin-top: initial;
}
/* Elements that should not be rendered on the same line as a <dt> */
/* This should match the element list in writer.text.TextWriter.render_dl() */
dd > div.artwork:first-child,
dd > aside:first-child,
dd > figure:first-child,
dd > ol:first-child,
dd > div:first-child > pre.sourcecode,
dd > table:first-child,
dd > ul:first-child {
  clear: left;
}
/* fix for weird browser behaviour when <dd/> is empty */
dt+dd:empty::before{
  content: "\00a0";
}
</style>
<link href="rfc-local.css" rel="stylesheet" type="text/css">
<link href="https://dx.doi.org/10.17487/rfc8846" rel="alternate">
  <link href="urn:issn:2070-1721" rel="alternate">
  <link href="https://datatracker.ietf.org/doc/draft-ietf-clue-data-model-schema-17" rel="prev">
  </head>
<body>
<script src="https://www.rfc-editor.org/js/metadata.min.js"></script>
<table class="ears">
<thead><tr>
<td class="left">RFC 8846</td>
<td class="center">An XML Schema for the CLUE Data Model</td>
<td class="right">January 2021</td>
</tr></thead>
<tfoot><tr>
<td class="left">Presta &amp; Romano</td>
<td class="center">Standards Track</td>
<td class="right">[Page]</td>
</tr></tfoot>
</table>
<div id="external-metadata" class="document-information"></div>
<div id="internal-metadata" class="document-information">
<dl id="identifiers">
<dt class="label-stream">Stream:</dt>
<dd class="stream">Internet Engineering Task Force (IETF)</dd>
<dt class="label-rfc">RFC:</dt>
<dd class="rfc"><a href="https://www.rfc-editor.org/rfc/rfc8846" class="eref">8846</a></dd>
<dt class="label-category">Category:</dt>
<dd class="category">Standards Track</dd>
<dt class="label-published">Published:</dt>
<dd class="published">
<time datetime="2021-01" class="published">January 2021</time>
    </dd>
<dt class="label-issn">ISSN:</dt>
<dd class="issn">2070-1721</dd>
<dt class="label-authors">Authors:</dt>
<dd class="authors">
<div class="author">
      <div class="author-name">R. Presta</div>
<div class="org">University of Napoli</div>
</div>
<div class="author">
      <div class="author-name">S P. Romano</div>
<div class="org">University of Napoli</div>
</div>
</dd>
</dl>
</div>
<h1 id="rfcnum">RFC 8846</h1>
<h1 id="title">An XML Schema for the Controlling Multiple Streams for Telepresence (CLUE) Data Model</h1>
<section id="section-abstract">
      <h2 id="abstract"><a href="#abstract" class="selfRef">Abstract</a></h2>
<p id="section-abstract-1">
This document provides an XML schema file 
for the definition of CLUE data model types. The term "CLUE" stands for 
"Controlling Multiple Streams for Telepresence" and is the name of 
the IETF working group in which this document, as well as other 
companion documents, has been developed. The document defines a coherent
structure for information associated with the description of a 
telepresence scenario.<a href="#section-abstract-1" class="pilcrow">¶</a></p>
</section>
<div id="status-of-memo">
<section id="section-boilerplate.1">
        <h2 id="name-status-of-this-memo">
<a href="#name-status-of-this-memo" class="section-name selfRef">Status of This Memo</a>
        </h2>
<p id="section-boilerplate.1-1">
            This is an Internet Standards Track document.<a href="#section-boilerplate.1-1" class="pilcrow">¶</a></p>
<p id="section-boilerplate.1-2">
            This document is a product of the Internet Engineering Task Force
            (IETF).  It represents the consensus of the IETF community.  It has
            received public review and has been approved for publication by
            the Internet Engineering Steering Group (IESG).  Further
            information on Internet Standards is available in Section 2 of 
            RFC 7841.<a href="#section-boilerplate.1-2" class="pilcrow">¶</a></p>
<p id="section-boilerplate.1-3">
            Information about the current status of this document, any
            errata, and how to provide feedback on it may be obtained at
            <span><a href="https://www.rfc-editor.org/info/rfc8846">https://www.rfc-editor.org/info/rfc8846</a></span>.<a href="#section-boilerplate.1-3" class="pilcrow">¶</a></p>
</section>
</div>
<div id="copyright">
<section id="section-boilerplate.2">
        <h2 id="name-copyright-notice">
<a href="#name-copyright-notice" class="section-name selfRef">Copyright Notice</a>
        </h2>
<p id="section-boilerplate.2-1">
            Copyright (c) 2021 IETF Trust and the persons identified as the
            document authors. All rights reserved.<a href="#section-boilerplate.2-1" class="pilcrow">¶</a></p>
<p id="section-boilerplate.2-2">
            This document is subject to BCP 78 and the IETF Trust's Legal
            Provisions Relating to IETF Documents
            (<span><a href="https://trustee.ietf.org/license-info">https://trustee.ietf.org/license-info</a></span>) in effect on the date of
            publication of this document. Please review these documents
            carefully, as they describe your rights and restrictions with
            respect to this document. Code Components extracted from this
            document must include Simplified BSD License text as described in
            Section 4.e of the Trust Legal Provisions and are provided without
            warranty as described in the Simplified BSD License.<a href="#section-boilerplate.2-2" class="pilcrow">¶</a></p>
</section>
</div>
<div id="toc">
<section id="section-toc.1">
        <a href="#" onclick="scroll(0,0)" class="toplink">▲</a><h2 id="name-table-of-contents">
<a href="#name-table-of-contents" class="section-name selfRef">Table of Contents</a>
        </h2>
<nav class="toc"><ul class="compact ulEmpty toc">
<li class="compact ulEmpty toc" id="section-toc.1-1.1">
            <p id="section-toc.1-1.1.1" class="keepWithNext"><a href="#section-1" class="xref">1</a>.  <a href="#name-introduction" class="xref">Introduction</a><a href="#section-toc.1-1.1.1" class="pilcrow">¶</a></p>
</li>
          <li class="compact ulEmpty toc" id="section-toc.1-1.2">
            <p id="section-toc.1-1.2.1" class="keepWithNext"><a href="#section-2" class="xref">2</a>.  <a href="#name-terminology" class="xref">Terminology</a><a href="#section-toc.1-1.2.1" class="pilcrow">¶</a></p>
</li>
          <li class="compact ulEmpty toc" id="section-toc.1-1.3">
            <p id="section-toc.1-1.3.1" class="keepWithNext"><a href="#section-3" class="xref">3</a>.  <a href="#name-definitions" class="xref">Definitions</a><a href="#section-toc.1-1.3.1" class="pilcrow">¶</a></p>
</li>
          <li class="compact ulEmpty toc" id="section-toc.1-1.4">
            <p id="section-toc.1-1.4.1"><a href="#section-4" class="xref">4</a>.  <a href="#name-xml-schema" class="xref">XML Schema</a><a href="#section-toc.1-1.4.1" class="pilcrow">¶</a></p>
</li>
          <li class="compact ulEmpty toc" id="section-toc.1-1.5">
            <p id="section-toc.1-1.5.1"><a href="#section-5" class="xref">5</a>.  <a href="#name-mediacaptures" class="xref">&lt;mediaCaptures&gt;</a><a href="#section-toc.1-1.5.1" class="pilcrow">¶</a></p>
</li>
          <li class="compact ulEmpty toc" id="section-toc.1-1.6">
            <p id="section-toc.1-1.6.1"><a href="#section-6" class="xref">6</a>.  <a href="#name-encodinggroups" class="xref">&lt;encodingGroups&gt;</a><a href="#section-toc.1-1.6.1" class="pilcrow">¶</a></p>
</li>
          <li class="compact ulEmpty toc" id="section-toc.1-1.7">
            <p id="section-toc.1-1.7.1"><a href="#section-7" class="xref">7</a>.  <a href="#name-capturescenes" class="xref">&lt;captureScenes&gt;</a><a href="#section-toc.1-1.7.1" class="pilcrow">¶</a></p>
</li>
          <li class="compact ulEmpty toc" id="section-toc.1-1.8">
            <p id="section-toc.1-1.8.1"><a href="#section-8" class="xref">8</a>.  <a href="#name-simultaneoussets" class="xref">&lt;simultaneousSets&gt;</a><a href="#section-toc.1-1.8.1" class="pilcrow">¶</a></p>
</li>
          <li class="compact ulEmpty toc" id="section-toc.1-1.9">
            <p id="section-toc.1-1.9.1"><a href="#section-9" class="xref">9</a>.  <a href="#name-globalviews" class="xref">&lt;globalViews&gt;</a><a href="#section-toc.1-1.9.1" class="pilcrow">¶</a></p>
</li>
          <li class="compact ulEmpty toc" id="section-toc.1-1.10">
            <p id="section-toc.1-1.10.1"><a href="#section-10" class="xref">10</a>. <a href="#name-captureencodings" class="xref">&lt;captureEncodings&gt;</a><a href="#section-toc.1-1.10.1" class="pilcrow">¶</a></p>
</li>
          <li class="compact ulEmpty toc" id="section-toc.1-1.11">
            <p id="section-toc.1-1.11.1"><a href="#section-11" class="xref">11</a>. <a href="#name-mediacapture" class="xref">&lt;mediaCapture&gt;</a><a href="#section-toc.1-1.11.1" class="pilcrow">¶</a></p>
<ul class="compact ulEmpty toc">
<li class="compact ulEmpty toc" id="section-toc.1-1.11.2.1">
                <p id="section-toc.1-1.11.2.1.1"><a href="#section-11.1" class="xref">11.1</a>.  <a href="#name-captureid-attribute" class="xref">captureID Attribute</a><a href="#section-toc.1-1.11.2.1.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.11.2.2">
                <p id="section-toc.1-1.11.2.2.1"><a href="#section-11.2" class="xref">11.2</a>.  <a href="#name-mediatype-attribute" class="xref">mediaType Attribute</a><a href="#section-toc.1-1.11.2.2.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.11.2.3">
                <p id="section-toc.1-1.11.2.3.1"><a href="#section-11.3" class="xref">11.3</a>.  <a href="#name-capturesceneidref" class="xref">&lt;captureSceneIDREF&gt;</a><a href="#section-toc.1-1.11.2.3.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.11.2.4">
                <p id="section-toc.1-1.11.2.4.1"><a href="#section-11.4" class="xref">11.4</a>.  <a href="#name-encgroupidref" class="xref">&lt;encGroupIDREF&gt;</a><a href="#section-toc.1-1.11.2.4.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.11.2.5">
                <p id="section-toc.1-1.11.2.5.1"><a href="#section-11.5" class="xref">11.5</a>.  <a href="#name-spatialinformation" class="xref">&lt;spatialInformation&gt;</a><a href="#section-toc.1-1.11.2.5.1" class="pilcrow">¶</a></p>
<ul class="compact ulEmpty toc">
<li class="compact ulEmpty toc" id="section-toc.1-1.11.2.5.2.1">
                    <p id="section-toc.1-1.11.2.5.2.1.1"><a href="#section-11.5.1" class="xref">11.5.1</a>.  <a href="#name-captureorigin" class="xref">&lt;captureOrigin&gt;</a><a href="#section-toc.1-1.11.2.5.2.1.1" class="pilcrow">¶</a></p>
</li>
                  <li class="compact ulEmpty toc" id="section-toc.1-1.11.2.5.2.2">
                    <p id="section-toc.1-1.11.2.5.2.2.1"><a href="#section-11.5.2" class="xref">11.5.2</a>.  <a href="#name-capturearea" class="xref">&lt;captureArea&gt;</a><a href="#section-toc.1-1.11.2.5.2.2.1" class="pilcrow">¶</a></p>
</li>
                </ul>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.11.2.6">
                <p id="section-toc.1-1.11.2.6.1"><a href="#section-11.6" class="xref">11.6</a>.  <a href="#name-nonspatiallydefinable" class="xref">&lt;nonSpatiallyDefinable&gt;</a><a href="#section-toc.1-1.11.2.6.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.11.2.7">
                <p id="section-toc.1-1.11.2.7.1"><a href="#section-11.7" class="xref">11.7</a>.  <a href="#name-content" class="xref">&lt;content&gt;</a><a href="#section-toc.1-1.11.2.7.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.11.2.8">
                <p id="section-toc.1-1.11.2.8.1"><a href="#section-11.8" class="xref">11.8</a>.  <a href="#name-synchronizationid" class="xref">&lt;synchronizationID&gt;</a><a href="#section-toc.1-1.11.2.8.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.11.2.9">
                <p id="section-toc.1-1.11.2.9.1"><a href="#section-11.9" class="xref">11.9</a>.  <a href="#name-allowsubsetchoice" class="xref">&lt;allowSubsetChoice&gt;</a><a href="#section-toc.1-1.11.2.9.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.11.2.10">
                <p id="section-toc.1-1.11.2.10.1"><a href="#section-11.10" class="xref">11.10</a>. <a href="#name-policy" class="xref">&lt;policy&gt;</a><a href="#section-toc.1-1.11.2.10.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.11.2.11">
                <p id="section-toc.1-1.11.2.11.1"><a href="#section-11.11" class="xref">11.11</a>. <a href="#name-maxcaptures" class="xref">&lt;maxCaptures&gt;</a><a href="#section-toc.1-1.11.2.11.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.11.2.12">
                <p id="section-toc.1-1.11.2.12.1"><a href="#section-11.12" class="xref">11.12</a>. <a href="#name-individual" class="xref">&lt;individual&gt;</a><a href="#section-toc.1-1.11.2.12.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.11.2.13">
                <p id="section-toc.1-1.11.2.13.1"><a href="#section-11.13" class="xref">11.13</a>. <a href="#name-description" class="xref">&lt;description&gt;</a><a href="#section-toc.1-1.11.2.13.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.11.2.14">
                <p id="section-toc.1-1.11.2.14.1"><a href="#section-11.14" class="xref">11.14</a>. <a href="#name-priority" class="xref">&lt;priority&gt;</a><a href="#section-toc.1-1.11.2.14.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.11.2.15">
                <p id="section-toc.1-1.11.2.15.1"><a href="#section-11.15" class="xref">11.15</a>. <a href="#name-lang" class="xref">&lt;lang&gt;</a><a href="#section-toc.1-1.11.2.15.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.11.2.16">
                <p id="section-toc.1-1.11.2.16.1"><a href="#section-11.16" class="xref">11.16</a>. <a href="#name-mobility" class="xref">&lt;mobility&gt;</a><a href="#section-toc.1-1.11.2.16.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.11.2.17">
                <p id="section-toc.1-1.11.2.17.1"><a href="#section-11.17" class="xref">11.17</a>. <a href="#name-relatedto" class="xref">&lt;relatedTo&gt;</a><a href="#section-toc.1-1.11.2.17.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.11.2.18">
                <p id="section-toc.1-1.11.2.18.1"><a href="#section-11.18" class="xref">11.18</a>. <a href="#name-view" class="xref">&lt;view&gt;</a><a href="#section-toc.1-1.11.2.18.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.11.2.19">
                <p id="section-toc.1-1.11.2.19.1"><a href="#section-11.19" class="xref">11.19</a>. <a href="#name-presentation" class="xref">&lt;presentation&gt;</a><a href="#section-toc.1-1.11.2.19.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.11.2.20">
                <p id="section-toc.1-1.11.2.20.1"><a href="#section-11.20" class="xref">11.20</a>. <a href="#name-embeddedtext" class="xref">&lt;embeddedText&gt;</a><a href="#section-toc.1-1.11.2.20.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.11.2.21">
                <p id="section-toc.1-1.11.2.21.1"><a href="#section-11.21" class="xref">11.21</a>. <a href="#name-capturedpeople" class="xref">&lt;capturedPeople&gt;</a><a href="#section-toc.1-1.11.2.21.1" class="pilcrow">¶</a></p>
<ul class="compact ulEmpty toc">
<li class="compact ulEmpty toc" id="section-toc.1-1.11.2.21.2.1">
                    <p id="section-toc.1-1.11.2.21.2.1.1"><a href="#section-11.21.1" class="xref">11.21.1</a>.  <a href="#name-personidref" class="xref">&lt;personIDREF&gt;</a><a href="#section-toc.1-1.11.2.21.2.1.1" class="pilcrow">¶</a></p>
</li>
                </ul>
</li>
            </ul>
</li>
          <li class="compact ulEmpty toc" id="section-toc.1-1.12">
            <p id="section-toc.1-1.12.1"><a href="#section-12" class="xref">12</a>. <a href="#name-audio-captures" class="xref">Audio Captures</a><a href="#section-toc.1-1.12.1" class="pilcrow">¶</a></p>
<ul class="compact ulEmpty toc">
<li class="compact ulEmpty toc" id="section-toc.1-1.12.2.1">
                <p id="section-toc.1-1.12.2.1.1"><a href="#section-12.1" class="xref">12.1</a>.  <a href="#name-sensitivitypattern" class="xref">&lt;sensitivityPattern&gt;</a><a href="#section-toc.1-1.12.2.1.1" class="pilcrow">¶</a></p>
</li>
            </ul>
</li>
          <li class="compact ulEmpty toc" id="section-toc.1-1.13">
            <p id="section-toc.1-1.13.1"><a href="#section-13" class="xref">13</a>. <a href="#name-video-captures" class="xref">Video Captures</a><a href="#section-toc.1-1.13.1" class="pilcrow">¶</a></p>
</li>
          <li class="compact ulEmpty toc" id="section-toc.1-1.14">
            <p id="section-toc.1-1.14.1"><a href="#section-14" class="xref">14</a>. <a href="#name-text-captures" class="xref">Text Captures</a><a href="#section-toc.1-1.14.1" class="pilcrow">¶</a></p>
</li>
          <li class="compact ulEmpty toc" id="section-toc.1-1.15">
            <p id="section-toc.1-1.15.1"><a href="#section-15" class="xref">15</a>. <a href="#name-other-capture-types" class="xref">Other Capture Types</a><a href="#section-toc.1-1.15.1" class="pilcrow">¶</a></p>
</li>
          <li class="compact ulEmpty toc" id="section-toc.1-1.16">
            <p id="section-toc.1-1.16.1"><a href="#section-16" class="xref">16</a>. <a href="#name-capturescene" class="xref">&lt;captureScene&gt;</a><a href="#section-toc.1-1.16.1" class="pilcrow">¶</a></p>
<ul class="compact ulEmpty toc">
<li class="compact ulEmpty toc" id="section-toc.1-1.16.2.1">
                <p id="section-toc.1-1.16.2.1.1"><a href="#section-16.1" class="xref">16.1</a>.  <a href="#name-sceneinformation" class="xref">&lt;sceneInformation&gt;</a><a href="#section-toc.1-1.16.2.1.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.16.2.2">
                <p id="section-toc.1-1.16.2.2.1"><a href="#section-16.2" class="xref">16.2</a>.  <a href="#name-sceneviews" class="xref">&lt;sceneViews&gt;</a><a href="#section-toc.1-1.16.2.2.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.16.2.3">
                <p id="section-toc.1-1.16.2.3.1"><a href="#section-16.3" class="xref">16.3</a>.  <a href="#name-sceneid-attribute" class="xref">sceneID Attribute</a><a href="#section-toc.1-1.16.2.3.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.16.2.4">
                <p id="section-toc.1-1.16.2.4.1"><a href="#section-16.4" class="xref">16.4</a>.  <a href="#name-scale-attribute" class="xref">scale Attribute</a><a href="#section-toc.1-1.16.2.4.1" class="pilcrow">¶</a></p>
</li>
            </ul>
</li>
          <li class="compact ulEmpty toc" id="section-toc.1-1.17">
            <p id="section-toc.1-1.17.1"><a href="#section-17" class="xref">17</a>. <a href="#name-sceneview" class="xref">&lt;sceneView&gt;</a><a href="#section-toc.1-1.17.1" class="pilcrow">¶</a></p>
<ul class="compact ulEmpty toc">
<li class="compact ulEmpty toc" id="section-toc.1-1.17.2.1">
                <p id="section-toc.1-1.17.2.1.1"><a href="#section-17.1" class="xref">17.1</a>.  <a href="#name-mediacaptureids" class="xref">&lt;mediaCaptureIDs&gt;</a><a href="#section-toc.1-1.17.2.1.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.17.2.2">
                <p id="section-toc.1-1.17.2.2.1"><a href="#section-17.2" class="xref">17.2</a>.  <a href="#name-sceneviewid-attribute" class="xref">sceneViewID Attribute</a><a href="#section-toc.1-1.17.2.2.1" class="pilcrow">¶</a></p>
</li>
            </ul>
</li>
          <li class="compact ulEmpty toc" id="section-toc.1-1.18">
            <p id="section-toc.1-1.18.1"><a href="#section-18" class="xref">18</a>. <a href="#name-encodinggroup" class="xref">&lt;encodingGroup&gt;</a><a href="#section-toc.1-1.18.1" class="pilcrow">¶</a></p>
<ul class="compact ulEmpty toc">
<li class="compact ulEmpty toc" id="section-toc.1-1.18.2.1">
                <p id="section-toc.1-1.18.2.1.1"><a href="#section-18.1" class="xref">18.1</a>.  <a href="#name-maxgroupbandwidth" class="xref">&lt;maxGroupBandwidth&gt;</a><a href="#section-toc.1-1.18.2.1.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.18.2.2">
                <p id="section-toc.1-1.18.2.2.1"><a href="#section-18.2" class="xref">18.2</a>.  <a href="#name-encodingidlist" class="xref">&lt;encodingIDList&gt;</a><a href="#section-toc.1-1.18.2.2.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.18.2.3">
                <p id="section-toc.1-1.18.2.3.1"><a href="#section-18.3" class="xref">18.3</a>.  <a href="#name-encodinggroupid-attribute" class="xref">encodingGroupID Attribute</a><a href="#section-toc.1-1.18.2.3.1" class="pilcrow">¶</a></p>
</li>
            </ul>
</li>
          <li class="compact ulEmpty toc" id="section-toc.1-1.19">
            <p id="section-toc.1-1.19.1"><a href="#section-19" class="xref">19</a>. <a href="#name-simultaneousset" class="xref">&lt;simultaneousSet&gt;</a><a href="#section-toc.1-1.19.1" class="pilcrow">¶</a></p>
<ul class="compact ulEmpty toc">
<li class="compact ulEmpty toc" id="section-toc.1-1.19.2.1">
                <p id="section-toc.1-1.19.2.1.1"><a href="#section-19.1" class="xref">19.1</a>.  <a href="#name-setid-attribute" class="xref">setID Attribute</a><a href="#section-toc.1-1.19.2.1.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.19.2.2">
                <p id="section-toc.1-1.19.2.2.1"><a href="#section-19.2" class="xref">19.2</a>.  <a href="#name-mediatype-attribute-2" class="xref">mediaType Attribute</a><a href="#section-toc.1-1.19.2.2.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.19.2.3">
                <p id="section-toc.1-1.19.2.3.1"><a href="#section-19.3" class="xref">19.3</a>.  <a href="#name-mediacaptureidref" class="xref">&lt;mediaCaptureIDREF&gt;</a><a href="#section-toc.1-1.19.2.3.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.19.2.4">
                <p id="section-toc.1-1.19.2.4.1"><a href="#section-19.4" class="xref">19.4</a>.  <a href="#name-sceneviewidref" class="xref">&lt;sceneViewIDREF&gt;</a><a href="#section-toc.1-1.19.2.4.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.19.2.5">
                <p id="section-toc.1-1.19.2.5.1"><a href="#section-19.5" class="xref">19.5</a>.  <a href="#name-capturesceneidref-2" class="xref">&lt;captureSceneIDREF&gt;</a><a href="#section-toc.1-1.19.2.5.1" class="pilcrow">¶</a></p>
</li>
            </ul>
</li>
          <li class="compact ulEmpty toc" id="section-toc.1-1.20">
            <p id="section-toc.1-1.20.1"><a href="#section-20" class="xref">20</a>. <a href="#name-globalview" class="xref">&lt;globalView&gt;</a><a href="#section-toc.1-1.20.1" class="pilcrow">¶</a></p>
</li>
          <li class="compact ulEmpty toc" id="section-toc.1-1.21">
            <p id="section-toc.1-1.21.1"><a href="#section-21" class="xref">21</a>. <a href="#name-people" class="xref">&lt;people&gt;</a><a href="#section-toc.1-1.21.1" class="pilcrow">¶</a></p>
<ul class="compact ulEmpty toc">
<li class="compact ulEmpty toc" id="section-toc.1-1.21.2.1">
                <p id="section-toc.1-1.21.2.1.1"><a href="#section-21.1" class="xref">21.1</a>.  <a href="#name-person" class="xref">&lt;person&gt;</a><a href="#section-toc.1-1.21.2.1.1" class="pilcrow">¶</a></p>
<ul class="compact ulEmpty toc">
<li class="compact ulEmpty toc" id="section-toc.1-1.21.2.1.2.1">
                    <p id="section-toc.1-1.21.2.1.2.1.1"><a href="#section-21.1.1" class="xref">21.1.1</a>.  <a href="#name-personid-attribute" class="xref">personID Attribute</a><a href="#section-toc.1-1.21.2.1.2.1.1" class="pilcrow">¶</a></p>
</li>
                  <li class="compact ulEmpty toc" id="section-toc.1-1.21.2.1.2.2">
                    <p id="section-toc.1-1.21.2.1.2.2.1"><a href="#section-21.1.2" class="xref">21.1.2</a>.  <a href="#name-personinfo" class="xref">&lt;personInfo&gt;</a><a href="#section-toc.1-1.21.2.1.2.2.1" class="pilcrow">¶</a></p>
</li>
                  <li class="compact ulEmpty toc" id="section-toc.1-1.21.2.1.2.3">
                    <p id="section-toc.1-1.21.2.1.2.3.1"><a href="#section-21.1.3" class="xref">21.1.3</a>.  <a href="#name-persontype" class="xref">&lt;personType&gt;</a><a href="#section-toc.1-1.21.2.1.2.3.1" class="pilcrow">¶</a></p>
</li>
                </ul>
</li>
            </ul>
</li>
          <li class="compact ulEmpty toc" id="section-toc.1-1.22">
            <p id="section-toc.1-1.22.1"><a href="#section-22" class="xref">22</a>. <a href="#name-captureencoding" class="xref">&lt;captureEncoding&gt;</a><a href="#section-toc.1-1.22.1" class="pilcrow">¶</a></p>
<ul class="compact ulEmpty toc">
<li class="compact ulEmpty toc" id="section-toc.1-1.22.2.1">
                <p id="section-toc.1-1.22.2.1.1"><a href="#section-22.1" class="xref">22.1</a>.  <a href="#name-captureid" class="xref">&lt;captureID&gt;</a><a href="#section-toc.1-1.22.2.1.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.22.2.2">
                <p id="section-toc.1-1.22.2.2.1"><a href="#section-22.2" class="xref">22.2</a>.  <a href="#name-encodingid" class="xref">&lt;encodingID&gt;</a><a href="#section-toc.1-1.22.2.2.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.22.2.3">
                <p id="section-toc.1-1.22.2.3.1"><a href="#section-22.3" class="xref">22.3</a>.  <a href="#name-configuredcontent" class="xref">&lt;configuredContent&gt;</a><a href="#section-toc.1-1.22.2.3.1" class="pilcrow">¶</a></p>
</li>
            </ul>
</li>
          <li class="compact ulEmpty toc" id="section-toc.1-1.23">
            <p id="section-toc.1-1.23.1"><a href="#section-23" class="xref">23</a>. <a href="#name-clueinfo" class="xref">&lt;clueInfo&gt;</a><a href="#section-toc.1-1.23.1" class="pilcrow">¶</a></p>
</li>
          <li class="compact ulEmpty toc" id="section-toc.1-1.24">
            <p id="section-toc.1-1.24.1"><a href="#section-24" class="xref">24</a>. <a href="#name-xml-schema-extensibility" class="xref">XML Schema Extensibility</a><a href="#section-toc.1-1.24.1" class="pilcrow">¶</a></p>
<ul class="compact ulEmpty toc">
<li class="compact ulEmpty toc" id="section-toc.1-1.24.2.1">
                <p id="section-toc.1-1.24.2.1.1"><a href="#section-24.1" class="xref">24.1</a>.  <a href="#name-example-of-extension" class="xref">Example of Extension</a><a href="#section-toc.1-1.24.2.1.1" class="pilcrow">¶</a></p>
</li>
            </ul>
</li>
          <li class="compact ulEmpty toc" id="section-toc.1-1.25">
            <p id="section-toc.1-1.25.1"><a href="#section-25" class="xref">25</a>. <a href="#name-security-considerations" class="xref">Security Considerations</a><a href="#section-toc.1-1.25.1" class="pilcrow">¶</a></p>
</li>
          <li class="compact ulEmpty toc" id="section-toc.1-1.26">
            <p id="section-toc.1-1.26.1"><a href="#section-26" class="xref">26</a>. <a href="#name-iana-considerations" class="xref">IANA Considerations</a><a href="#section-toc.1-1.26.1" class="pilcrow">¶</a></p>
<ul class="compact ulEmpty toc">
<li class="compact ulEmpty toc" id="section-toc.1-1.26.2.1">
                <p id="section-toc.1-1.26.2.1.1"><a href="#section-26.1" class="xref">26.1</a>.  <a href="#name-xml-namespace-registration" class="xref">XML Namespace Registration</a><a href="#section-toc.1-1.26.2.1.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.26.2.2">
                <p id="section-toc.1-1.26.2.2.1"><a href="#section-26.2" class="xref">26.2</a>.  <a href="#name-xml-schema-registration" class="xref">XML Schema Registration</a><a href="#section-toc.1-1.26.2.2.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.26.2.3">
                <p id="section-toc.1-1.26.2.3.1"><a href="#section-26.3" class="xref">26.3</a>.  <a href="#name-media-type-registration-for" class="xref">Media Type Registration for "application/clue_info+xml"</a><a href="#section-toc.1-1.26.2.3.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.26.2.4">
                <p id="section-toc.1-1.26.2.4.1"><a href="#section-26.4" class="xref">26.4</a>.  <a href="#name-registry-for-acceptable-vie" class="xref">Registry for Acceptable &lt;view&gt; Values</a><a href="#section-toc.1-1.26.2.4.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.26.2.5">
                <p id="section-toc.1-1.26.2.5.1"><a href="#section-26.5" class="xref">26.5</a>.  <a href="#name-registry-for-acceptable-pre" class="xref">Registry for Acceptable &lt;presentation&gt; Values</a><a href="#section-toc.1-1.26.2.5.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.26.2.6">
                <p id="section-toc.1-1.26.2.6.1"><a href="#section-26.6" class="xref">26.6</a>.  <a href="#name-registry-for-acceptable-sen" class="xref">Registry for Acceptable &lt;sensitivityPattern&gt; Values</a><a href="#section-toc.1-1.26.2.6.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.26.2.7">
                <p id="section-toc.1-1.26.2.7.1"><a href="#section-26.7" class="xref">26.7</a>.  <a href="#name-registry-for-acceptable-per" class="xref">Registry for Acceptable &lt;personType&gt; Values</a><a href="#section-toc.1-1.26.2.7.1" class="pilcrow">¶</a></p>
</li>
            </ul>
</li>
          <li class="compact ulEmpty toc" id="section-toc.1-1.27">
            <p id="section-toc.1-1.27.1"><a href="#section-27" class="xref">27</a>. <a href="#name-sample-xml-file" class="xref">Sample XML File</a><a href="#section-toc.1-1.27.1" class="pilcrow">¶</a></p>
</li>
          <li class="compact ulEmpty toc" id="section-toc.1-1.28">
            <p id="section-toc.1-1.28.1"><a href="#section-28" class="xref">28</a>. <a href="#name-mcc-example" class="xref">MCC Example</a><a href="#section-toc.1-1.28.1" class="pilcrow">¶</a></p>
</li>
          <li class="compact ulEmpty toc" id="section-toc.1-1.29">
            <p id="section-toc.1-1.29.1"><a href="#section-29" class="xref">29</a>. <a href="#name-references" class="xref">References</a><a href="#section-toc.1-1.29.1" class="pilcrow">¶</a></p>
<ul class="compact ulEmpty toc">
<li class="compact ulEmpty toc" id="section-toc.1-1.29.2.1">
                <p id="section-toc.1-1.29.2.1.1"><a href="#section-29.1" class="xref">29.1</a>.  <a href="#name-normative-references" class="xref">Normative References</a><a href="#section-toc.1-1.29.2.1.1" class="pilcrow">¶</a></p>
</li>
              <li class="compact ulEmpty toc" id="section-toc.1-1.29.2.2">
                <p id="section-toc.1-1.29.2.2.1"><a href="#section-29.2" class="xref">29.2</a>.  <a href="#name-informative-references" class="xref">Informative References</a><a href="#section-toc.1-1.29.2.2.1" class="pilcrow">¶</a></p>
</li>
            </ul>
</li>
          <li class="compact ulEmpty toc" id="section-toc.1-1.30">
            <p id="section-toc.1-1.30.1"><a href="#section-appendix.a" class="xref"></a><a href="#name-acknowledgements" class="xref">Acknowledgements</a><a href="#section-toc.1-1.30.1" class="pilcrow">¶</a></p>
</li>
          <li class="compact ulEmpty toc" id="section-toc.1-1.31">
            <p id="section-toc.1-1.31.1"><a href="#section-appendix.b" class="xref"></a><a href="#name-authors-addresses" class="xref">Authors' Addresses</a><a href="#section-toc.1-1.31.1" class="pilcrow">¶</a></p>
</li>
        </ul>
</nav>
</section>
</div>
<div id="sec-intro">
<section id="section-1">
      <h2 id="name-introduction">
<a href="#section-1" class="section-number selfRef">1. </a><a href="#name-introduction" class="section-name selfRef">Introduction</a>
      </h2>
<p id="section-1-1">
This document provides an XML schema file 
for the definition of CLUE data model types. For the benefit of the 
reader, the term "CLUE" stands for 
"Controlling Multiple Streams for Telepresence" and is the name of 
the IETF working group in which this document, as well as other 
companion documents, has been developed. 
A thorough definition of the CLUE
framework can be found in <span>[<a href="#RFC8845" class="xref">RFC8845</a>]</span>.<a href="#section-1-1" class="pilcrow">¶</a></p>
<p id="section-1-2">
The schema is based on information contained in 
<span>[<a href="#RFC8845" class="xref">RFC8845</a>]</span>.
It encodes information and constraints defined in the 
aforementioned document in order to provide a formal representation 
of the concepts therein presented.<a href="#section-1-2" class="pilcrow">¶</a></p>
<p id="section-1-3">
The document specifies the definition of a coherent structure for 
information associated with the description of a telepresence
scenario. Such information is used within the CLUE protocol messages 
<span>[<a href="#RFC8847" class="xref">RFC8847</a>]</span>, enabling the dialogue between
a Media Provider and a Media Consumer. CLUE protocol messages, indeed, 
are XML messages allowing (i) a Media Provider to advertise its 
telepresence capabilities in terms of media captures, capture scenes, 
and other features envisioned in the CLUE framework, according to the 
format herein defined and (ii) a Media Consumer to request the
desired telepresence options in the form of capture encodings, 
represented as described in this document.<a href="#section-1-3" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec-teminology">
<section id="section-2">
      <h2 id="name-terminology">
<a href="#section-2" class="section-number selfRef">2. </a><a href="#name-terminology" class="section-name selfRef">Terminology</a>
      </h2>
<p id="section-2-1">
    The key words "<span class="bcp14">MUST</span>", "<span class="bcp14">MUST NOT</span>", "<span class="bcp14">REQUIRED</span>", "<span class="bcp14">SHALL</span>", "<span class="bcp14">SHALL NOT</span>", "<span class="bcp14">SHOULD</span>", "<span class="bcp14">SHOULD NOT</span>", "<span class="bcp14">RECOMMENDED</span>", "<span class="bcp14">NOT RECOMMENDED</span>",
    "<span class="bcp14">MAY</span>", and "<span class="bcp14">OPTIONAL</span>" in this document are to be interpreted as
    described in BCP 14 <span>[<a href="#RFC2119" class="xref">RFC2119</a>]</span> <span>[<a href="#RFC8174" class="xref">RFC8174</a>]</span> 
    when, and only when, they appear in all capitals, as shown here.<a href="#section-2-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec-definitions">
<section id="section-3">
      <h2 id="name-definitions">
<a href="#section-3" class="section-number selfRef">3. </a><a href="#name-definitions" class="section-name selfRef">Definitions</a>
      </h2>
<p id="section-3-1">This document refers to the same definitions used in 
<span>[<a href="#RFC8845" class="xref">RFC8845</a>]</span>, except for the "CLUE 
Participant" definition.
We briefly recall herein some of the main terms used in the document.<a href="#section-3-1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-3-2">
        <dt id="section-3-2.1">Audio Capture:</dt>
        <dd style="margin-left: 1.5em" id="section-3-2.2">Media Capture for audio.  Denoted as "ACn" in the examples in this 
document.<a href="#section-3-2.2" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
<dt id="section-3-2.3">Capture:</dt>
        <dd style="margin-left: 1.5em" id="section-3-2.4">Same as Media Capture.<a href="#section-3-2.4" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
<dt id="section-3-2.5">Capture Device:</dt>
        <dd style="margin-left: 1.5em" id="section-3-2.6">A device that converts physical input, 
   such as audio, video, or text, into an electrical signal, in most 
   cases to be fed into a media encoder.<a href="#section-3-2.6" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
<dt id="section-3-2.7">Capture Encoding:</dt>
        <dd style="margin-left: 1.5em" id="section-3-2.8">A specific encoding of a Media Capture, 
   to be sent by a Media Provider to a Media Consumer via RTP.<a href="#section-3-2.8" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
<dt id="section-3-2.9">Capture Scene:</dt>
        <dd style="margin-left: 1.5em" id="section-3-2.10">A structure representing a spatial region 
   captured by one or more Capture Devices, each capturing media 
   representing a portion of the region. The spatial region represented 
   by a Capture Scene may correspond to a real region in physical space, 
   such as a room.  A Capture Scene includes attributes and one or more 
   Capture Scene Views, with each view including one or more Media 
   Captures.<a href="#section-3-2.10" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
<dt id="section-3-2.11">Capture Scene View (CSV):</dt>
        <dd style="margin-left: 1.5em" id="section-3-2.12"> A list of Media Captures of the same
   media type that together form one way to represent the entire
   Capture Scene.<a href="#section-3-2.12" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
<dt id="section-3-2.13">CLUE Participant:</dt>
        <dd style="margin-left: 1.5em" id="section-3-2.14"> 
This term is imported from the CLUE protocol document
<span>[<a href="#RFC8847" class="xref">RFC8847</a>]</span>.<a href="#section-3-2.14" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
<dt id="section-3-2.15">Consumer:</dt>
        <dd style="margin-left: 1.5em" id="section-3-2.16">Short for Media Consumer.<a href="#section-3-2.16" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
<dt id="section-3-2.17">Encoding or Individual Encoding:</dt>
        <dd style="margin-left: 1.5em" id="section-3-2.18">
 A set of parameters representing a way to encode a Media Capture to 
 become a Capture Encoding.<a href="#section-3-2.18" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
<dt id="section-3-2.19">Encoding Group:</dt>
        <dd style="margin-left: 1.5em" id="section-3-2.20">
 A set of encoding parameters representing a total 
 media encoding capability to be subdivided across potentially
 multiple Individual Encodings.<a href="#section-3-2.20" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
<dt id="section-3-2.21">Endpoint:</dt>
        <dd style="margin-left: 1.5em" id="section-3-2.22">A CLUE-capable device that is the logical point 
   of final termination through receiving, decoding and rendering, 
   and/or initiation through capturing, encoding, and sending of media
   streams.  An endpoint consists of one or more physical devices
   that source and sink media streams, and exactly one 
   participant <span>[<a href="#RFC4353" class="xref">RFC4353</a>]</span> (which, in turn, includes exactly one SIP User Agent).  Endpoints can be anything from multiscreen/multicamera rooms to
   handheld devices.<a href="#section-3-2.22" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
<dt id="section-3-2.23">Media:</dt>
        <dd style="margin-left: 1.5em" id="section-3-2.24">Any data that, after suitable encoding, can be 
conveyed over
   RTP, including audio, video, or timed text.<a href="#section-3-2.24" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
<dt id="section-3-2.25">Media Capture:</dt>
        <dd style="margin-left: 1.5em" id="section-3-2.26">A source of Media, such as from one or 
   more Capture Devices or constructed from other media streams.<a href="#section-3-2.26" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
<dt id="section-3-2.27">Media Consumer:</dt>
        <dd style="margin-left: 1.5em" id="section-3-2.28">
 A CLUE-capable device that intends to receive Capture Encodings.<a href="#section-3-2.28" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
<dt id="section-3-2.29">Media Provider:</dt>
        <dd style="margin-left: 1.5em" id="section-3-2.30">
 A CLUE-capable device that intends to send Capture Encodings.<a href="#section-3-2.30" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
<dt id="section-3-2.31">Multiple Content Capture (MCC):</dt>
        <dd style="margin-left: 1.5em" id="section-3-2.32">
 A Capture that mixes and/or switches other Captures of a single 
 type (for example, all audio or all video). Particular Media Captures 
 may or may not be present in the resultant Capture Encoding 
 depending on time or space.  Denoted as "MCCn" in the example cases 
 in this document.<a href="#section-3-2.32" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
<dt id="section-3-2.33">Multipoint Control Unit (MCU):</dt>
        <dd style="margin-left: 1.5em" id="section-3-2.34">A CLUE-capable device 
that connects
   two or more endpoints together into one single multimedia
   conference <span>[<a href="#RFC7667" class="xref">RFC7667</a>]</span>.
    An MCU includes a Mixer, similar to those in 
   <span>[<a href="#RFC4353" class="xref">RFC4353</a>]</span>, but
   without the requirement to send media to 
   each participant.<a href="#section-3-2.34" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
<dt id="section-3-2.35">Plane of Interest:</dt>
        <dd style="margin-left: 1.5em" id="section-3-2.36">
 The spatial plane within a scene containing the most-relevant subject matter.<a href="#section-3-2.36" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
<dt id="section-3-2.37">Provider:</dt>
        <dd style="margin-left: 1.5em" id="section-3-2.38">Same as a Media Provider.<a href="#section-3-2.38" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
<dt id="section-3-2.39">Render: </dt>
        <dd style="margin-left: 1.5em" id="section-3-2.40">The process of generating a representation from Media, such
      as displayed motion video or sound emitted from loudspeakers.<a href="#section-3-2.40" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
<dt id="section-3-2.41">Scene:</dt>
        <dd style="margin-left: 1.5em" id="section-3-2.42">Same as a Capture Scene.<a href="#section-3-2.42" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
<dt id="section-3-2.43">Simultaneous Transmission Set:</dt>
        <dd style="margin-left: 1.5em" id="section-3-2.44">
 A set of Media Captures that can be transmitted simultaneously 
 from a Media Provider.<a href="#section-3-2.44" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
<dt id="section-3-2.45">Single Media Capture:</dt>
        <dd style="margin-left: 1.5em" id="section-3-2.46">
 A capture that contains media from a single 
 source capture device, e.g., an audio capture from a single 
 microphone or a video capture from a single camera.<a href="#section-3-2.46" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
<dt id="section-3-2.47">Spatial Relation:</dt>
        <dd style="margin-left: 1.5em" id="section-3-2.48">
 The arrangement of two objects in space, in contrast to relation in 
 time or other relationships.<a href="#section-3-2.48" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
<dt id="section-3-2.49">Stream:</dt>
        <dd style="margin-left: 1.5em" id="section-3-2.50">
 A Capture Encoding sent from a Media Provider to a Media Consumer 
 via RTP <span>[<a href="#RFC3550" class="xref">RFC3550</a>]</span>.<a href="#section-3-2.50" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
<dt id="section-3-2.51">Stream Characteristics:</dt>
        <dd style="margin-left: 1.5em" id="section-3-2.52">The media stream attributes commonly used in
      non-CLUE SIP/SDP environments (such as media codec, bitrate,
      resolution, profile/level, etc.) as well as CLUE-specific
      attributes, such as the Capture ID or a spatial location.<a href="#section-3-2.52" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
<dt id="section-3-2.53">Video Capture:</dt>
        <dd style="margin-left: 1.5em" id="section-3-2.54">A Media Capture for video.<a href="#section-3-2.54" class="pilcrow">¶</a>
</dd>
      <dd class="break"></dd>
</dl>
</section>
</div>
<div id="sec-schema">
<section id="section-4">
      <h2 id="name-xml-schema">
<a href="#section-4" class="section-number selfRef">4. </a><a href="#name-xml-schema" class="section-name selfRef">XML Schema</a>
      </h2>
<p id="section-4-1">
This section contains the XML schema for the CLUE data model definition.<a href="#section-4-1" class="pilcrow">¶</a></p>
<p id="section-4-2">
The element and attribute definitions are formal representations of the 
concepts
needed to describe the capabilities of a Media Provider and the streams 
that are requested by a Media Consumer given the Media Provider's 
ADVERTISEMENT <span>[<a href="#RFC8847" class="xref">RFC8847</a>]</span>.<a href="#section-4-2" class="pilcrow">¶</a></p>
<p id="section-4-3">The main groups of information are:<a href="#section-4-3" class="pilcrow">¶</a></p>
<ul class="normal ulEmpty">
<li class="normal ulEmpty" id="section-4-4.1">
          <span class="break"></span><dl class="dlParallel" id="section-4-4.1.1">
            <dt id="section-4-4.1.1.1">&lt;mediaCaptures&gt;:</dt>
            <dd style="margin-left: 1.5em" id="section-4-4.1.1.2">the list of media captures available 
  (<a href="#sec-media-captures" class="xref">Section 5</a>)<a href="#section-4-4.1.1.2" class="pilcrow">¶</a>
</dd>
            <dd class="break"></dd>
<dt id="section-4-4.1.1.3">&lt;encodingGroups&gt;:</dt>
            <dd style="margin-left: 1.5em" id="section-4-4.1.1.4">the list of encoding groups 
  (<a href="#sec-encoding-groups" class="xref">Section 6</a>)<a href="#section-4-4.1.1.4" class="pilcrow">¶</a>
</dd>
            <dd class="break"></dd>
<dt id="section-4-4.1.1.5">&lt;captureScenes&gt;:</dt>
            <dd style="margin-left: 1.5em" id="section-4-4.1.1.6">the list of capture scenes 
  (<a href="#sec-capture-scenes" class="xref">Section 7</a>)<a href="#section-4-4.1.1.6" class="pilcrow">¶</a>
</dd>
            <dd class="break"></dd>
<dt id="section-4-4.1.1.7">&lt;simultaneousSets&gt;:</dt>
            <dd style="margin-left: 1.5em" id="section-4-4.1.1.8">the list of simultaneous transmission 
  sets (<a href="#sec-simultaneous-sets" class="xref">Section 8</a>)<a href="#section-4-4.1.1.8" class="pilcrow">¶</a>
</dd>
            <dd class="break"></dd>
<dt id="section-4-4.1.1.9">&lt;globalViews&gt;:</dt>
            <dd style="margin-left: 1.5em" id="section-4-4.1.1.10">the list of global views sets 
  (<a href="#sec-global-views" class="xref">Section 9</a>)<a href="#section-4-4.1.1.10" class="pilcrow">¶</a>
</dd>
            <dd class="break"></dd>
<dt id="section-4-4.1.1.11">&lt;people&gt;:</dt>
            <dd style="margin-left: 1.5em" id="section-4-4.1.1.12">metadata about the participants represented 
  in the telepresence session (<a href="#sec-participants" class="xref">Section 21</a>)<a href="#section-4-4.1.1.12" class="pilcrow">¶</a>
</dd>
            <dd class="break"></dd>
<dt id="section-4-4.1.1.13">&lt;captureEncodings&gt;:</dt>
            <dd style="margin-left: 1.5em" id="section-4-4.1.1.14">the list of instantiated capture 
  encodings (<a href="#sec-capture-encodings" class="xref">Section 10</a>)<a href="#section-4-4.1.1.14" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
</dl>
</li>
      </ul>
<p id="section-4-5"> 
All of the above refer to concepts that have been 
introduced in <span>[<a href="#RFC8845" class="xref">RFC8845</a>]</span> 
 and further detailed in this document.<a href="#section-4-5" class="pilcrow">¶</a></p>
<div id="section-4-6">
<pre class="sourcecode lang-xml">
&lt;?xml version="1.0" encoding="UTF-8" ?&gt;
&lt;xs:schema
   targetNamespace="urn:ietf:params:xml:ns:clue-info"
   xmlns:tns="urn:ietf:params:xml:ns:clue-info"
   xmlns:xs="http://www.w3.org/2001/XMLSchema"
   xmlns="urn:ietf:params:xml:ns:clue-info"
   xmlns:xcard="urn:ietf:params:xml:ns:vcard-4.0"
   elementFormDefault="qualified"
   attributeFormDefault="unqualified"
   version="1.0"&gt;

&lt;!-- Import xCard XML schema --&gt;
&lt;xs:import namespace="urn:ietf:params:xml:ns:vcard-4.0"
schemaLocation=
  "https://www.iana.org/assignments/xml-registry/schema/
   vcard-4.0.xsd"/&gt;

&lt;!-- ELEMENT DEFINITIONS --&gt;
&lt;xs:element name="mediaCaptures" type="mediaCapturesType"/&gt;
&lt;xs:element name="encodingGroups" type="encodingGroupsType"/&gt;
&lt;xs:element name="captureScenes" type="captureScenesType"/&gt;
&lt;xs:element name="simultaneousSets" type="simultaneousSetsType"/&gt;
&lt;xs:element name="globalViews" type="globalViewsType"/&gt;
&lt;xs:element name="people" type="peopleType"/&gt;

&lt;xs:element name="captureEncodings" type="captureEncodingsType"/&gt;


&lt;!-- MEDIA CAPTURES TYPE --&gt;
&lt;!-- envelope of media captures --&gt;
&lt;xs:complexType name="mediaCapturesType"&gt;
 &lt;xs:sequence&gt;
   &lt;xs:element name="mediaCapture" type="mediaCaptureType"
   maxOccurs="unbounded"/&gt;
 &lt;/xs:sequence&gt;
&lt;/xs:complexType&gt;


&lt;!-- DESCRIPTION element --&gt;
&lt;xs:element name="description"&gt;
 &lt;xs:complexType&gt;
  &lt;xs:simpleContent&gt;
   &lt;xs:extension base="xs:string"&gt;
     &lt;xs:attribute name="lang" type="xs:language"/&gt;
   &lt;/xs:extension&gt;
  &lt;/xs:simpleContent&gt;
 &lt;/xs:complexType&gt;
&lt;/xs:element&gt;

&lt;!-- MEDIA CAPTURE TYPE --&gt;
&lt;xs:complexType name="mediaCaptureType" abstract="true"&gt;
  &lt;xs:sequence&gt;
    &lt;!-- mandatory fields --&gt;
    &lt;xs:element name="captureSceneIDREF" type="xs:IDREF"/&gt;
    &lt;xs:choice&gt;
      &lt;xs:sequence&gt;
        &lt;xs:element name="spatialInformation"
                    type="tns:spatialInformationType"/&gt;
      &lt;/xs:sequence&gt;
      &lt;xs:element name="nonSpatiallyDefinable" type="xs:boolean"
      fixed="true"/&gt;
    &lt;/xs:choice&gt;
    &lt;!-- for handling multicontent captures: --&gt;
    &lt;xs:choice&gt;
      &lt;xs:sequence&gt;
        &lt;xs:element name="synchronizationID" type="xs:ID"
         minOccurs="0"/&gt;
        &lt;xs:element name="content" type="contentType" minOccurs="0"/&gt;
        &lt;xs:element name="policy" type="policyType" minOccurs="0"/&gt;
        &lt;xs:element name="maxCaptures" type="maxCapturesType"
         minOccurs="0"/&gt;
        &lt;xs:element name="allowSubsetChoice" type="xs:boolean"
         minOccurs="0"/&gt;
      &lt;/xs:sequence&gt;
      &lt;xs:element name="individual" type="xs:boolean" fixed="true"/&gt;
    &lt;/xs:choice&gt;
    &lt;!-- optional fields --&gt;
    &lt;xs:element name="encGroupIDREF" type="xs:IDREF" minOccurs="0"/&gt;
    &lt;xs:element ref="description" minOccurs="0"
     maxOccurs="unbounded"/&gt;
    &lt;xs:element name="priority" type="xs:unsignedInt" minOccurs="0"/&gt;
    &lt;xs:element name="lang" type="xs:language" minOccurs="0"
     maxOccurs="unbounded"/&gt;
        &lt;xs:element name="mobility" type="mobilityType"
         minOccurs="0" /&gt;
    &lt;xs:element ref="presentation" minOccurs="0" /&gt;
    &lt;xs:element ref="embeddedText" minOccurs="0" /&gt;
    &lt;xs:element ref="view" minOccurs="0" /&gt;
    &lt;xs:element name="capturedPeople" type="capturedPeopleType"
     minOccurs="0"/&gt;
    &lt;xs:element name="relatedTo" type="xs:IDREF" minOccurs="0"/&gt;
  &lt;/xs:sequence&gt;
  &lt;xs:attribute name="captureID" type="xs:ID" use="required"/&gt;
  &lt;xs:attribute name="mediaType" type="xs:string" use="required"/&gt;

&lt;/xs:complexType&gt;

&lt;!-- POLICY TYPE --&gt;
&lt;xs:simpleType name="policyType"&gt;
 &lt;xs:restriction base="xs:string"&gt;
      &lt;xs:pattern value="([a-zA-Z0-9])+[:]([0-9])+"/&gt;
    &lt;/xs:restriction&gt;
&lt;/xs:simpleType&gt;

&lt;!-- CONTENT TYPE --&gt;
&lt;xs:complexType name="contentType"&gt;
 &lt;xs:sequence&gt;
   &lt;xs:element name="mediaCaptureIDREF" type="xs:string"
   minOccurs="0" maxOccurs="unbounded"/&gt;
   &lt;xs:element name="sceneViewIDREF" type="xs:string"
   minOccurs="0" maxOccurs="unbounded"/&gt;
   &lt;xs:any namespace="##other" processContents="lax" minOccurs="0"
   maxOccurs="unbounded"/&gt;
 &lt;/xs:sequence&gt;
 &lt;xs:anyAttribute namespace="##other" processContents="lax"/&gt;
&lt;/xs:complexType&gt;

&lt;!-- MAX CAPTURES TYPE --&gt;
&lt;xs:simpleType name="positiveShort"&gt;
        &lt;xs:restriction base="xs:unsignedShort"&gt;
                &lt;xs:minInclusive value="1"&gt;
                &lt;/xs:minInclusive&gt;
        &lt;/xs:restriction&gt;
&lt;/xs:simpleType&gt;

&lt;xs:complexType name="maxCapturesType"&gt;
        &lt;xs:simpleContent&gt;
                &lt;xs:extension base="positiveShort"&gt;
                        &lt;xs:attribute name="exactNumber"
                                type="xs:boolean"/&gt;
                &lt;/xs:extension&gt;
        &lt;/xs:simpleContent&gt;
&lt;/xs:complexType&gt;

&lt;!-- CAPTURED PEOPLE TYPE --&gt;
&lt;xs:complexType name="capturedPeopleType"&gt;
 &lt;xs:sequence&gt;
  &lt;xs:element name="personIDREF" type="xs:IDREF"
   maxOccurs="unbounded"/&gt;
 &lt;/xs:sequence&gt;
&lt;/xs:complexType&gt;

&lt;!-- PEOPLE TYPE --&gt;
&lt;xs:complexType name="peopleType"&gt;
 &lt;xs:sequence&gt;
  &lt;xs:element name="person" type="personType" maxOccurs="unbounded"/&gt;
 &lt;/xs:sequence&gt;
&lt;/xs:complexType&gt;

&lt;!-- PERSON TYPE --&gt;
&lt;xs:complexType name="personType"&gt;
  &lt;xs:sequence&gt;
     &lt;xs:element name="personInfo" type="xcard:vcardType"
      maxOccurs="1" minOccurs="0"/&gt;
     &lt;xs:element ref="personType" minOccurs="0"
      maxOccurs="unbounded" /&gt;
     &lt;xs:any namespace="##other" processContents="lax" minOccurs="0"
      maxOccurs="unbounded"/&gt;
  &lt;/xs:sequence&gt;
  &lt;xs:attribute name="personID" type="xs:ID" use="required"/&gt;
  &lt;xs:anyAttribute namespace="##other" processContents="lax"/&gt;
&lt;/xs:complexType&gt;

&lt;!-- PERSON TYPE ELEMENT --&gt;
&lt;xs:element name="personType" type="xs:string"&gt;
 &lt;xs:annotation&gt;
  &lt;xs:documentation&gt;
   Acceptable values (enumerations) for this type are managed
   by IANA in the "CLUE Schema &amp;lt;personType&amp;gt;" registry,
   accessible at https://www.iana.org/assignments/clue.
  &lt;/xs:documentation&gt;
 &lt;/xs:annotation&gt;
&lt;/xs:element&gt;

&lt;!-- VIEW ELEMENT --&gt;
&lt;xs:element name="view" type="xs:string"&gt;
 &lt;xs:annotation&gt;
  &lt;xs:documentation&gt;
   Acceptable values (enumerations) for this type are managed
   by IANA in the "CLUE Schema &amp;lt;view&amp;gt;" registry,
   accessible at https://www.iana.org/assignments/clue.
  &lt;/xs:documentation&gt;
 &lt;/xs:annotation&gt;
&lt;/xs:element&gt;

&lt;!-- PRESENTATION ELEMENT --&gt;
&lt;xs:element name="presentation" type="xs:string"&gt;
 &lt;xs:annotation&gt;
  &lt;xs:documentation&gt;
   Acceptable values (enumerations) for this type are managed
   by IANA in the "CLUE Schema &amp;lt;presentation&amp;gt;" registry,
   accessible at https://www.iana.org/assignments/clue.
  &lt;/xs:documentation&gt;
 &lt;/xs:annotation&gt;
&lt;/xs:element&gt;

&lt;!-- SPATIAL INFORMATION TYPE --&gt;
&lt;xs:complexType name="spatialInformationType"&gt;
 &lt;xs:sequence&gt;
  &lt;xs:element name="captureOrigin" type="captureOriginType"
   minOccurs="0"/&gt;
  &lt;xs:element name="captureArea" type="captureAreaType"
   minOccurs="0"/&gt;
  &lt;xs:any namespace="##other" processContents="lax" minOccurs="0"
   maxOccurs="unbounded"/&gt;
 &lt;/xs:sequence&gt;
 &lt;xs:anyAttribute namespace="##other" processContents="lax"/&gt;
&lt;/xs:complexType&gt;


&lt;!-- POINT TYPE --&gt;
&lt;xs:complexType name="pointType"&gt;
 &lt;xs:sequence&gt;
  &lt;xs:element name="x" type="xs:decimal"/&gt;
  &lt;xs:element name="y" type="xs:decimal"/&gt;
  &lt;xs:element name="z" type="xs:decimal"/&gt;
 &lt;/xs:sequence&gt;
&lt;/xs:complexType&gt;

&lt;!-- CAPTURE ORIGIN TYPE --&gt;
&lt;xs:complexType name="captureOriginType"&gt;
  &lt;xs:sequence&gt;
       &lt;xs:element name="capturePoint" type="pointType"&gt;&lt;/xs:element&gt;
       &lt;xs:element name="lineOfCapturePoint" type="pointType"
        minOccurs="0"&gt;
       &lt;/xs:element&gt;
  &lt;/xs:sequence&gt;
  &lt;xs:anyAttribute namespace="##any" processContents="lax"/&gt;
&lt;/xs:complexType&gt;


&lt;!-- CAPTURE AREA TYPE --&gt;
&lt;xs:complexType name="captureAreaType"&gt;
 &lt;xs:sequence&gt;
  &lt;xs:element name="bottomLeft" type="pointType"/&gt;
  &lt;xs:element name="bottomRight" type="pointType"/&gt;
  &lt;xs:element name="topLeft" type="pointType"/&gt;
  &lt;xs:element name="topRight" type="pointType"/&gt;
 &lt;/xs:sequence&gt;
&lt;/xs:complexType&gt;


&lt;!-- MOBILITY TYPE --&gt;
&lt;xs:simpleType name="mobilityType"&gt;
 &lt;xs:restriction base="xs:string"&gt;
  &lt;xs:enumeration value="static" /&gt;
  &lt;xs:enumeration value="dynamic" /&gt;
  &lt;xs:enumeration value="highly-dynamic" /&gt;
 &lt;/xs:restriction&gt;
&lt;/xs:simpleType&gt;

&lt;!-- TEXT CAPTURE TYPE --&gt;
&lt;xs:complexType name="textCaptureType"&gt;
 &lt;xs:complexContent&gt;
  &lt;xs:extension base="tns:mediaCaptureType"&gt;
  &lt;xs:sequence&gt;
  &lt;xs:any namespace="##other" processContents="lax" minOccurs="0"
    maxOccurs="unbounded"/&gt;
  &lt;/xs:sequence&gt;
  &lt;xs:anyAttribute namespace="##other" processContents="lax"/&gt;
  &lt;/xs:extension&gt;
 &lt;/xs:complexContent&gt;
&lt;/xs:complexType&gt;


&lt;!-- OTHER CAPTURE TYPE --&gt;
&lt;xs:complexType name="otherCaptureType"&gt;
 &lt;xs:complexContent&gt;
  &lt;xs:extension base="tns:mediaCaptureType"&gt;
  &lt;xs:sequence&gt;
  &lt;xs:any namespace="##other" processContents="lax" minOccurs="0"
    maxOccurs="unbounded"/&gt;
  &lt;/xs:sequence&gt;
  &lt;xs:anyAttribute namespace="##other" processContents="lax"/&gt;
  &lt;/xs:extension&gt;
 &lt;/xs:complexContent&gt;
&lt;/xs:complexType&gt;

&lt;!-- AUDIO CAPTURE TYPE --&gt;
&lt;xs:complexType name="audioCaptureType"&gt;
 &lt;xs:complexContent&gt;
  &lt;xs:extension base="tns:mediaCaptureType"&gt;
   &lt;xs:sequence&gt;
        &lt;xs:element ref="sensitivityPattern" minOccurs="0" /&gt;
    &lt;xs:any namespace="##other" processContents="lax" minOccurs="0"
    maxOccurs="unbounded"/&gt;
   &lt;/xs:sequence&gt;
   &lt;xs:anyAttribute namespace="##other" processContents="lax"/&gt;
  &lt;/xs:extension&gt;
 &lt;/xs:complexContent&gt;
&lt;/xs:complexType&gt;


&lt;!-- SENSITIVITY PATTERN ELEMENT --&gt;
&lt;xs:element name="sensitivityPattern" type="xs:string"&gt;
 &lt;xs:annotation&gt;
  &lt;xs:documentation&gt;
   Acceptable values (enumerations) for this type are managed by
   IANA in the "CLUE Schema &amp;lt;sensitivityPattern&amp;gt;" registry,
   accessible at https://www.iana.org/assignments/clue.
  &lt;/xs:documentation&gt;
 &lt;/xs:annotation&gt;
&lt;/xs:element&gt;


&lt;!-- VIDEO CAPTURE TYPE --&gt;
&lt;xs:complexType name="videoCaptureType"&gt;
 &lt;xs:complexContent&gt;
  &lt;xs:extension base="tns:mediaCaptureType"&gt;
   &lt;xs:sequence&gt;
    &lt;xs:any namespace="##other" processContents="lax" minOccurs="0"
    maxOccurs="unbounded"/&gt;
   &lt;/xs:sequence&gt;
   &lt;xs:anyAttribute namespace="##other" processContents="lax"/&gt;
  &lt;/xs:extension&gt;
 &lt;/xs:complexContent&gt;
&lt;/xs:complexType&gt;

&lt;!-- EMBEDDED TEXT ELEMENT --&gt;
&lt;xs:element name="embeddedText"&gt;
 &lt;xs:complexType&gt;
  &lt;xs:simpleContent&gt;
   &lt;xs:extension base="xs:boolean"&gt;
    &lt;xs:attribute name="lang" type="xs:language"/&gt;
   &lt;/xs:extension&gt;
  &lt;/xs:simpleContent&gt;
 &lt;/xs:complexType&gt;
&lt;/xs:element&gt;

&lt;!-- CAPTURE SCENES TYPE --&gt;
&lt;!-- envelope of capture scenes --&gt;
&lt;xs:complexType name="captureScenesType"&gt;
 &lt;xs:sequence&gt;
  &lt;xs:element name="captureScene" type="captureSceneType"
  maxOccurs="unbounded"/&gt;
 &lt;/xs:sequence&gt;
&lt;/xs:complexType&gt;

&lt;!-- CAPTURE SCENE TYPE --&gt;
&lt;xs:complexType name="captureSceneType"&gt;
 &lt;xs:sequence&gt;
  &lt;xs:element ref="description" minOccurs="0" maxOccurs="unbounded"/&gt;
  &lt;xs:element name="sceneInformation" type="xcard:vcardType"
   minOccurs="0"/&gt;
  &lt;xs:element name="sceneViews" type="sceneViewsType" minOccurs="0"/&gt;
  &lt;xs:any namespace="##other" processContents="lax" minOccurs="0"
  maxOccurs="unbounded"/&gt;
 &lt;/xs:sequence&gt;
 &lt;xs:attribute name="sceneID" type="xs:ID" use="required"/&gt;
 &lt;xs:attribute name="scale" type="scaleType" use="required"/&gt;
 &lt;xs:anyAttribute namespace="##other" processContents="lax"/&gt;
&lt;/xs:complexType&gt;

&lt;!-- SCALE TYPE --&gt;
&lt;xs:simpleType name="scaleType"&gt;
 &lt;xs:restriction base="xs:string"&gt;
  &lt;xs:enumeration value="mm"/&gt;
  &lt;xs:enumeration value="unknown"/&gt;
  &lt;xs:enumeration value="noscale"/&gt;
 &lt;/xs:restriction&gt;
&lt;/xs:simpleType&gt;

&lt;!-- SCENE VIEWS TYPE --&gt;
&lt;!-- envelope of scene views of a capture scene --&gt;
&lt;xs:complexType name="sceneViewsType"&gt;
 &lt;xs:sequence&gt;
  &lt;xs:element name="sceneView" type="sceneViewType"
  maxOccurs="unbounded"/&gt;
 &lt;/xs:sequence&gt;
&lt;/xs:complexType&gt;

&lt;!-- SCENE VIEW TYPE --&gt;
&lt;xs:complexType name="sceneViewType"&gt;
 &lt;xs:sequence&gt;
  &lt;xs:element ref="description" minOccurs="0" maxOccurs="unbounded"/&gt;
  &lt;xs:element name="mediaCaptureIDs" type="captureIDListType"/&gt;
 &lt;/xs:sequence&gt;
 &lt;xs:attribute name="sceneViewID" type="xs:ID" use="required"/&gt;
&lt;/xs:complexType&gt;


&lt;!-- CAPTURE ID LIST TYPE --&gt;
&lt;xs:complexType name="captureIDListType"&gt;
 &lt;xs:sequence&gt;
  &lt;xs:element name="mediaCaptureIDREF" type="xs:IDREF"
  maxOccurs="unbounded"/&gt;
 &lt;/xs:sequence&gt;
&lt;/xs:complexType&gt;

&lt;!-- ENCODING GROUPS TYPE --&gt;
&lt;xs:complexType name="encodingGroupsType"&gt;
 &lt;xs:sequence&gt;
  &lt;xs:element name="encodingGroup" type="tns:encodingGroupType"
  maxOccurs="unbounded"/&gt;
 &lt;/xs:sequence&gt;
&lt;/xs:complexType&gt;

&lt;!-- ENCODING GROUP TYPE --&gt;
&lt;xs:complexType name="encodingGroupType"&gt;
 &lt;xs:sequence&gt;
  &lt;xs:element name="maxGroupBandwidth" type="xs:unsignedLong"/&gt;
  &lt;xs:element name="encodingIDList" type="encodingIDListType"/&gt;
  &lt;xs:any namespace="##other" processContents="lax" minOccurs="0"
  maxOccurs="unbounded"/&gt;
 &lt;/xs:sequence&gt;
 &lt;xs:attribute name="encodingGroupID" type="xs:ID" use="required"/&gt;
 &lt;xs:anyAttribute namespace="##any" processContents="lax"/&gt;
&lt;/xs:complexType&gt;

&lt;!-- ENCODING ID LIST TYPE --&gt;
&lt;xs:complexType name="encodingIDListType"&gt;
 &lt;xs:sequence&gt;
  &lt;xs:element name="encodingID" type="xs:string"
   maxOccurs="unbounded"/&gt;
 &lt;/xs:sequence&gt;
&lt;/xs:complexType&gt;

&lt;!-- SIMULTANEOUS SETS TYPE --&gt;
&lt;xs:complexType name="simultaneousSetsType"&gt;
 &lt;xs:sequence&gt;
  &lt;xs:element name="simultaneousSet" type="simultaneousSetType"
  maxOccurs="unbounded"/&gt;
 &lt;/xs:sequence&gt;
&lt;/xs:complexType&gt;

&lt;!-- SIMULTANEOUS SET TYPE --&gt;
&lt;xs:complexType name="simultaneousSetType"&gt;
 &lt;xs:sequence&gt;
   &lt;xs:element name="mediaCaptureIDREF" type="xs:IDREF"
   minOccurs="0" maxOccurs="unbounded"/&gt;
   &lt;xs:element name="sceneViewIDREF" type="xs:IDREF"
   minOccurs="0" maxOccurs="unbounded"/&gt;
   &lt;xs:element name="captureSceneIDREF" type="xs:IDREF"
   minOccurs="0" maxOccurs="unbounded"/&gt;
   &lt;xs:any namespace="##other" processContents="lax" minOccurs="0"
   maxOccurs="unbounded"/&gt;
 &lt;/xs:sequence&gt;
 &lt;xs:attribute name="setID" type="xs:ID" use="required"/&gt;
 &lt;xs:attribute name="mediaType" type="xs:string"/&gt;
 &lt;xs:anyAttribute namespace="##any" processContents="lax"/&gt;
&lt;/xs:complexType&gt;

&lt;!-- GLOBAL VIEWS TYPE --&gt;
&lt;xs:complexType name="globalViewsType"&gt;
 &lt;xs:sequence&gt;
  &lt;xs:element name="globalView" type="globalViewType"
  maxOccurs="unbounded"/&gt;
 &lt;/xs:sequence&gt;
&lt;/xs:complexType&gt;

&lt;!-- GLOBAL VIEW TYPE --&gt;
&lt;xs:complexType name="globalViewType"&gt;
 &lt;xs:sequence&gt;
   &lt;xs:element name="sceneViewIDREF" type="xs:IDREF"
    maxOccurs="unbounded"/&gt;
   &lt;xs:any namespace="##other" processContents="lax" minOccurs="0"
   maxOccurs="unbounded"/&gt;
 &lt;/xs:sequence&gt;
 &lt;xs:attribute name="globalViewID" type="xs:ID"/&gt;
 &lt;xs:anyAttribute namespace="##any" processContents="lax"/&gt;
&lt;/xs:complexType&gt;

&lt;!-- CAPTURE ENCODINGS TYPE --&gt;
&lt;xs:complexType name="captureEncodingsType"&gt;
 &lt;xs:sequence&gt;
  &lt;xs:element name="captureEncoding" type="captureEncodingType"
  maxOccurs="unbounded"/&gt;
 &lt;/xs:sequence&gt;
&lt;/xs:complexType&gt;

&lt;!-- CAPTURE ENCODING TYPE --&gt;
&lt;xs:complexType name="captureEncodingType"&gt;
 &lt;xs:sequence&gt;
  &lt;xs:element name="captureID" type="xs:string"/&gt;
  &lt;xs:element name="encodingID" type="xs:string"/&gt;
  &lt;xs:element name="configuredContent" type="contentType"
   minOccurs="0"/&gt;
  &lt;xs:any namespace="##other" processContents="lax" minOccurs="0"
   maxOccurs="unbounded"/&gt;
 &lt;/xs:sequence&gt;
 &lt;xs:attribute name="ID" type="xs:ID" use="required"/&gt;
 &lt;xs:anyAttribute namespace="##any" processContents="lax"/&gt;
&lt;/xs:complexType&gt;

&lt;!-- CLUE INFO ELEMENT --&gt;
&lt;xs:element name="clueInfo" type="clueInfoType"/&gt;

&lt;!-- CLUE INFO TYPE --&gt;
&lt;xs:complexType name="clueInfoType"&gt;
  &lt;xs:sequence&gt;
   &lt;xs:element ref="mediaCaptures"/&gt;
   &lt;xs:element ref="encodingGroups"/&gt;
   &lt;xs:element ref="captureScenes"/&gt;
   &lt;xs:element ref="simultaneousSets" minOccurs="0"/&gt;
   &lt;xs:element ref="globalViews" minOccurs="0"/&gt;
   &lt;xs:element ref="people" minOccurs="0"/&gt;
   &lt;xs:any namespace="##other" processContents="lax" minOccurs="0"
   maxOccurs="unbounded"/&gt;
  &lt;/xs:sequence&gt;
  &lt;xs:attribute name="clueInfoID" type="xs:ID" use="required"/&gt;
  &lt;xs:anyAttribute namespace="##other" processContents="lax"/&gt;
&lt;/xs:complexType&gt;
&lt;/xs:schema&gt;
</pre><a href="#section-4-6" class="pilcrow">¶</a>
</div>
<p id="section-4-7">
The following sections describe the XML schema in more detail. As a general 
remark, please notice that optional elements that don't define what 
their absence means are intended to be associated with undefined 
properties.<a href="#section-4-7" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec-media-captures">
<section id="section-5">
      <h2 id="name-mediacaptures">
<a href="#section-5" class="section-number selfRef">5. </a><a href="#name-mediacaptures" class="section-name selfRef">&lt;mediaCaptures&gt;</a>
      </h2>
<p id="section-5-1">
&lt;mediaCaptures&gt; represents the list of one or more media 
captures available at the Media Provider's side.
Each media capture is represented by a &lt;mediaCapture&gt;
element (<a href="#sec-media-capture" class="xref">Section 11</a>).<a href="#section-5-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec-encoding-groups">
<section id="section-6">
      <h2 id="name-encodinggroups">
<a href="#section-6" class="section-number selfRef">6. </a><a href="#name-encodinggroups" class="section-name selfRef">&lt;encodingGroups&gt;</a>
      </h2>
<p id="section-6-1">
&lt;encodingGroups&gt; represents the list of 
the encoding groups organized on the Media Provider's side.
Each encoding group is represented by an 
&lt;encodingGroup&gt; element (<a href="#sec-encoding-group" class="xref">Section 18</a>).<a href="#section-6-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec-capture-scenes">
<section id="section-7">
      <h2 id="name-capturescenes">
<a href="#section-7" class="section-number selfRef">7. </a><a href="#name-capturescenes" class="section-name selfRef">&lt;captureScenes&gt;</a>
      </h2>
<p id="section-7-1">
&lt;captureScenes&gt; represents the list of 
the capture scenes organized on the Media Provider's side.
Each capture scene is represented by a 
&lt;captureScene&gt; element (<a href="#sec-capture-scene" class="xref">Section 16</a>).<a href="#section-7-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec-simultaneous-sets">
<section id="section-8">
      <h2 id="name-simultaneoussets">
<a href="#section-8" class="section-number selfRef">8. </a><a href="#name-simultaneoussets" class="section-name selfRef">&lt;simultaneousSets&gt;</a>
      </h2>
<p id="section-8-1">
&lt;simultaneousSets&gt; contains the simultaneous
sets indicated by the Media Provider.
Each simultaneous set is represented by a 
&lt;simultaneousSet&gt; element (<a href="#sec-simultaneous-set" class="xref">Section 19</a>).<a href="#section-8-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec-global-views">
<section id="section-9">
      <h2 id="name-globalviews">
<a href="#section-9" class="section-number selfRef">9. </a><a href="#name-globalviews" class="section-name selfRef">&lt;globalViews&gt;</a>
      </h2>
<p id="section-9-1">
&lt;globalViews&gt; contains a set of alternative representations of
all the scenes that are offered by a Media Provider to a Media Consumer. 
Each alternative is named "global view", and it is represented by a
&lt;globalView&gt; element (<a href="#sec-global-view" class="xref">Section 20</a>).<a href="#section-9-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec-capture-encodings">
<section id="section-10">
      <h2 id="name-captureencodings">
<a href="#section-10" class="section-number selfRef">10. </a><a href="#name-captureencodings" class="section-name selfRef">&lt;captureEncodings&gt;</a>
      </h2>
<p id="section-10-1">
&lt;captureEncodings&gt; is a list of capture 
encodings.
It can represent the list of the desired 
capture encodings indicated by the Media Consumer
or the list of instantiated captures on the 
provider's side.
Each capture encoding is represented by a 
&lt;captureEncoding&gt; element (<a href="#sec-capture-encoding" class="xref">Section 22</a>).<a href="#section-10-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec-media-capture">
<section id="section-11">
      <h2 id="name-mediacapture">
<a href="#section-11" class="section-number selfRef">11. </a><a href="#name-mediacapture" class="section-name selfRef">&lt;mediaCapture&gt;</a>
      </h2>
<p id="section-11-1">
A media capture is the 
fundamental representation of a media flow
that is available on the provider's side.
Media captures are characterized by (i) a set of features
that are independent from the specific type of medium
and (ii) a set of features that are media specific.
The features that are common to all media types appear within 
the media capture type, which has been designed as an abstract 
complex type.
Media-specific captures, such as video captures, 
audio captures, and others, are specializations of that abstract 
media capture type, as in a typical generalization-specialization
hierarchy.<a href="#section-11-1" class="pilcrow">¶</a></p>
<p id="section-11-2">The following is the XML schema definition of the 
media capture type:<a href="#section-11-2" class="pilcrow">¶</a></p>
<div id="section-11-3">
<pre class="sourcecode lang-xml">
&lt;!-- MEDIA CAPTURE TYPE --&gt;
&lt;xs:complexType name="mediaCaptureType" abstract="true"&gt;
  &lt;xs:sequence&gt;
    &lt;!-- mandatory fields --&gt;
    &lt;xs:element name="captureSceneIDREF" type="xs:IDREF"/&gt;
    &lt;xs:choice&gt;
      &lt;xs:sequence&gt;
        &lt;xs:element name="spatialInformation"
                    type="tns:spatialInformationType"/&gt;
      &lt;/xs:sequence&gt;
      &lt;xs:element name="nonSpatiallyDefinable" type="xs:boolean"
      fixed="true"/&gt;
    &lt;/xs:choice&gt;
    &lt;!-- for handling multicontent captures: --&gt;
    &lt;xs:choice&gt;
      &lt;xs:sequence&gt;
        &lt;xs:element name="synchronizationID" type="xs:ID"
         minOccurs="0"/&gt;
        &lt;xs:element name="content" type="contentType" minOccurs="0"/&gt;
        &lt;xs:element name="policy" type="policyType" minOccurs="0"/&gt;
        &lt;xs:element name="maxCaptures" type="maxCapturesType"
         minOccurs="0"/&gt;
        &lt;xs:element name="allowSubsetChoice" type="xs:boolean"
         minOccurs="0"/&gt;
      &lt;/xs:sequence&gt;
      &lt;xs:element name="individual" type="xs:boolean" fixed="true"/&gt;
    &lt;/xs:choice&gt;
    &lt;!-- optional fields --&gt;
    &lt;xs:element name="encGroupIDREF" type="xs:IDREF" minOccurs="0"/&gt;
    &lt;xs:element ref="description" minOccurs="0"
     maxOccurs="unbounded"/&gt;
    &lt;xs:element name="priority" type="xs:unsignedInt" minOccurs="0"/&gt;
    &lt;xs:element name="lang" type="xs:language" minOccurs="0"
     maxOccurs="unbounded"/&gt;
    &lt;xs:element name="mobility" type="mobilityType" minOccurs="0" /&gt;
    &lt;xs:element ref="presentation" minOccurs="0" /&gt;
    &lt;xs:element ref="embeddedText" minOccurs="0" /&gt;
    &lt;xs:element ref="view" minOccurs="0" /&gt;
    &lt;xs:element name="capturedPeople" type="capturedPeopleType"
     minOccurs="0"/&gt;
    &lt;xs:element name="relatedTo" type="xs:IDREF" minOccurs="0"/&gt;
  &lt;/xs:sequence&gt;
  &lt;xs:attribute name="captureID" type="xs:ID" use="required"/&gt;
  &lt;xs:attribute name="mediaType" type="xs:string" use="required"/&gt;
&lt;/xs:complexType&gt;
</pre><a href="#section-11-3" class="pilcrow">¶</a>
</div>
<div id="sec-captureID">
<section id="section-11.1">
        <h3 id="name-captureid-attribute">
<a href="#section-11.1" class="section-number selfRef">11.1. </a><a href="#name-captureid-attribute" class="section-name selfRef">captureID Attribute</a>
        </h3>
<p id="section-11.1-1">The "captureID" attribute is a mandatory field 
containing the identifier of the media capture.
Such an identifier serves as the way the capture is referenced from 
other data model elements (e.g.,  simultaneous sets, capture encodings, 
and others via &lt;mediaCaptureIDREF&gt;).<a href="#section-11.1-1" class="pilcrow">¶</a></p>
</section>
</div>
<section id="section-11.2">
        <h3 id="name-mediatype-attribute">
<a href="#section-11.2" class="section-number selfRef">11.2. </a><a href="#name-mediatype-attribute" class="section-name selfRef">mediaType Attribute</a>
        </h3>
<p id="section-11.2-1">The "mediaType" attribute is a mandatory attribute specifying
the media type of the capture.
Common standard values are "audio", "video", and "text", as defined in 
<span>[<a href="#RFC6838" class="xref">RFC6838</a>]</span>. 
Other values can be provided. It is assumed that implementations agree 
on the interpretation of those other values.
The "mediaType" attribute is as generic as possible. Here is why: (i) 
the basic media capture type is an abstract one; (ii) "concrete" 
definitions for the standard audio, video, 
and text capture types <span>[<a href="#RFC6838" class="xref">RFC6838</a>]</span> have been specified; (iii) a generic 
"otherCaptureType" type has been defined; and (iv) the "mediaType" 
attribute has been generically defined as a string, with no particular 
template.

From the considerations above, it is clear that if one chooses to rely 
on a brand new media type and wants to interoperate with others, an 
application-level agreement is needed on how to interpret such 
information.<a href="#section-11.2-1" class="pilcrow">¶</a></p>
</section>
<section id="section-11.3">
        <h3 id="name-capturesceneidref">
<a href="#section-11.3" class="section-number selfRef">11.3. </a><a href="#name-capturesceneidref" class="section-name selfRef">&lt;captureSceneIDREF&gt;</a>
        </h3>
<p id="section-11.3-1">&lt;captureSceneIDREF&gt; is a mandatory field 
containing the value of the identifier of the capture scene 
the media capture is defined in, i.e., the value of the 
sceneID attribute (<a href="#sec-sceneID" class="xref">Section 16.3</a>) of
that capture scene.   
Indeed, each media capture <span class="bcp14">MUST</span> be defined within 
one and only one capture scene.
When a media capture is spatially definable, some spatial
information is provided along with it in the form
of point coordinates (see <a href="#sec-spatial-info" class="xref">Section 11.5</a>).
Such coordinates refer to the space of coordinates defined
for the capture scene containing the capture.<a href="#section-11.3-1" class="pilcrow">¶</a></p>
</section>
<section id="section-11.4">
        <h3 id="name-encgroupidref">
<a href="#section-11.4" class="section-number selfRef">11.4. </a><a href="#name-encgroupidref" class="section-name selfRef">&lt;encGroupIDREF&gt;</a>
        </h3>
<p id="section-11.4-1">&lt;encGroupIDREF&gt; is an optional field 
containing the identifier of the encoding group 
the media capture is associated with, i.e., the value of the 
encodingGroupID
attribute (<a href="#sec-encodingGroupID" class="xref">Section 18.3</a>) of that encoding group.
Media captures that are not associated with any encoding group cannot
be instantiated as media streams.<a href="#section-11.4-1" class="pilcrow">¶</a></p>
</section>
<div id="sec-spatial-info">
<section id="section-11.5">
        <h3 id="name-spatialinformation">
<a href="#section-11.5" class="section-number selfRef">11.5. </a><a href="#name-spatialinformation" class="section-name selfRef">&lt;spatialInformation&gt;</a>
        </h3>
<p id="section-11.5-1">Media captures are divided into two categories:
(i) non spatially definable captures and 
(ii) spatially definable captures.<a href="#section-11.5-1" class="pilcrow">¶</a></p>
<p id="section-11.5-2">Captures are spatially definable when at least it is possible to 
provide (i) the coordinates of the device position within the telepresence 
room of origin (capture point) together with its capturing direction 
specified by a second point (point on line of capture)
or (ii) the represented area within
the telepresence room, by listing the coordinates of the four coplanar 
points identifying the plane of interest (area of capture).
The coordinates of the above mentioned points <span class="bcp14">MUST</span> be expressed 
according to the coordinate space of the capture scene the media 
captures belong to.<a href="#section-11.5-2" class="pilcrow">¶</a></p>
<p id="section-11.5-3">Non spatially definable captures cannot be characterized 
within the physical space of the telepresence room of origin. 
Captures of this kind are, for example, 
those related to recordings, text captures,
DVDs, registered presentations, 
or external streams 
that are played in the telepresence room 
and transmitted to remote sites.<a href="#section-11.5-3" class="pilcrow">¶</a></p>
<p id="section-11.5-4">
Spatially definable captures represent a 
part of the telepresence room.
The captured part of the telepresence room is described
by means of the &lt;spatialInformation&gt; element.
By comparing the &lt;spatialInformation&gt; element
of different media captures within
the same capture scene, 
a consumer can better determine the spatial
relationships between them and render them correctly.
Non spatially definable captures do not embed such elements 
in their XML description:
they are instead characterized by having the 
&lt;nonSpatiallyDefinable&gt; tag set to "true" (see 
<a href="#sub-sec-nonspatiallydef" class="xref">Section 11.6</a>).<a href="#section-11.5-4" class="pilcrow">¶</a></p>
<p id="section-11.5-5">The definition of the spatial information 
type is the following:<a href="#section-11.5-5" class="pilcrow">¶</a></p>
<div id="section-11.5-6">
<pre class="sourcecode lang-xml">
&lt;!-- SPATIAL INFORMATION TYPE --&gt;
&lt;xs:complexType name="spatialInformationType"&gt;
 &lt;xs:sequence&gt;
  &lt;xs:element name="captureOrigin" type="captureOriginType"
   minOccurs="0"/&gt;
  &lt;xs:element name="captureArea" type="captureAreaType"
   minOccurs="0"/&gt;
  &lt;xs:any namespace="##other" processContents="lax" minOccurs="0"
   maxOccurs="unbounded"/&gt;
 &lt;/xs:sequence&gt;
 &lt;xs:anyAttribute namespace="##other" processContents="lax"/&gt;
&lt;/xs:complexType&gt;
</pre><a href="#section-11.5-6" class="pilcrow">¶</a>
</div>
<p id="section-11.5-7">The &lt;captureOrigin&gt; contains the coordinates
of the capture device that is taking the capture (i.e., the capture 
point) as well as, optionally, the pointing direction (i.e., the point 
on line of capture); see <a href="#sec-capture-origin" class="xref">Section 11.5.1</a>.<a href="#section-11.5-7" class="pilcrow">¶</a></p>
<p id="section-11.5-8">
The &lt;captureArea&gt; is an optional field 
containing four points defining
the captured area covered by the capture
(see <a href="#sec-capture-area" class="xref">Section 11.5.2</a>).<a href="#section-11.5-8" class="pilcrow">¶</a></p>
<p id="section-11.5-9">The scale of the points coordinates is specified in 
the scale attribute (<a href="#sec-scale" class="xref">Section 16.4</a>) of the capture scene
the media capture belongs to.
Indeed, all the spatially definable media captures referring to 
the same capture scene share the same coordinate system and express 
their spatial information according to the same scale.<a href="#section-11.5-9" class="pilcrow">¶</a></p>
<div id="sec-capture-origin">
<section id="section-11.5.1">
          <h4 id="name-captureorigin">
<a href="#section-11.5.1" class="section-number selfRef">11.5.1. </a><a href="#name-captureorigin" class="section-name selfRef">&lt;captureOrigin&gt;</a>
          </h4>
<p id="section-11.5.1-1">
The &lt;captureOrigin&gt; element
is used to represent the position and optionally the line of
capture of a capture device.
&lt;captureOrigin&gt; <span class="bcp14">MUST</span> be included in spatially definable audio 
captures, while it is optional for spatially definable video captures.<a href="#section-11.5.1-1" class="pilcrow">¶</a></p>
<p id="section-11.5.1-2">
The XML schema definition of the &lt;captureOrigin&gt;
element type is the following:<a href="#section-11.5.1-2" class="pilcrow">¶</a></p>
<div id="section-11.5.1-3">
<pre class="sourcecode lang-xml">
&lt;!-- CAPTURE ORIGIN TYPE --&gt;
&lt;xs:complexType name="captureOriginType"&gt;
  &lt;xs:sequence&gt;
        &lt;xs:element name="capturePoint" type="pointType"/&gt;
        &lt;xs:element name="lineOfCapturePoint" type="pointType"
         minOccurs="0"/&gt;
  &lt;/xs:sequence&gt;
  &lt;xs:anyAttribute namespace="##any" processContents="lax"/&gt;
&lt;/xs:complexType&gt;

&lt;!-- POINT TYPE --&gt;
&lt;xs:complexType name="pointType"&gt;
 &lt;xs:sequence&gt;
  &lt;xs:element name="x" type="xs:decimal"/&gt;
  &lt;xs:element name="y" type="xs:decimal"/&gt;
  &lt;xs:element name="z" type="xs:decimal"/&gt;
 &lt;/xs:sequence&gt;
&lt;/xs:complexType&gt;
</pre><a href="#section-11.5.1-3" class="pilcrow">¶</a>
</div>
<p id="section-11.5.1-4">
The point type contains three spatial coordinates 
(x,y,z) representing a point 
in the space associated
with a certain capture scene.<a href="#section-11.5.1-4" class="pilcrow">¶</a></p>
<p id="section-11.5.1-5">
The &lt;captureOrigin&gt; element includes a 
mandatory &lt;capturePoint&gt; element and an optional 
&lt;lineOfCapturePoint&gt; element, 
both of the type "pointType".
&lt;capturePoint&gt; specifies  
the three coordinates identifying the position of the
capture device.
&lt;lineOfCapturePoint&gt; is another pointType element representing
the "point on line of capture", which gives the pointing direction
of the capture device.<a href="#section-11.5.1-5" class="pilcrow">¶</a></p>
<p id="section-11.5.1-6"> 
The coordinates of the point on line of capture
<span class="bcp14">MUST NOT</span> be identical to the capture point coordinates.  
For a spatially definable video capture, if the point on line of capture 
is provided, it <span class="bcp14">MUST</span> belong to the region between 
the point of capture and the capture area.
For a spatially definable audio capture, 
if the point on line of capture is not provided,
the sensitivity pattern should be considered omnidirectional.<a href="#section-11.5.1-6" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec-capture-area">
<section id="section-11.5.2">
          <h4 id="name-capturearea">
<a href="#section-11.5.2" class="section-number selfRef">11.5.2. </a><a href="#name-capturearea" class="section-name selfRef">&lt;captureArea&gt;</a>
          </h4>
<p id="section-11.5.2-1">
&lt;captureArea&gt; is an optional element
that can be contained within the spatial information
associated with a media capture.
It represents the spatial area captured by
the media capture.
&lt;captureArea&gt; <span class="bcp14">MUST</span> be included in the spatial information of 
spatially definable video captures, while it <span class="bcp14">MUST NOT</span> be associated 
with audio captures.<a href="#section-11.5.2-1" class="pilcrow">¶</a></p>
<p id="section-11.5.2-2">
The XML representation of that area is provided 
through a set of four point-type elements,
&lt;bottomLeft&gt;, &lt;bottomRight&gt;, &lt;topLeft&gt;,
and &lt;topRight&gt;, that <span class="bcp14">MUST</span> be coplanar.
The four coplanar points are identified from 
the perspective of the capture device. 
The XML schema definition is the following:<a href="#section-11.5.2-2" class="pilcrow">¶</a></p>
<div id="section-11.5.2-3">
<pre class="sourcecode lang-xml">
&lt;!-- CAPTURE AREA TYPE --&gt;
&lt;xs:complexType name="captureAreaType"&gt;
 &lt;xs:sequence&gt;
  &lt;xs:element name="bottomLeft" type="pointType"/&gt;
  &lt;xs:element name="bottomRight" type="pointType"/&gt;
  &lt;xs:element name="topLeft" type="pointType"/&gt;
  &lt;xs:element name="topRight" type="pointType"/&gt;
 &lt;/xs:sequence&gt;
&lt;/xs:complexType&gt;
</pre><a href="#section-11.5.2-3" class="pilcrow">¶</a>
</div>
</section>
</div>
</section>
</div>
<div id="sub-sec-nonspatiallydef">
<section id="section-11.6">
        <h3 id="name-nonspatiallydefinable">
<a href="#section-11.6" class="section-number selfRef">11.6. </a><a href="#name-nonspatiallydefinable" class="section-name selfRef">&lt;nonSpatiallyDefinable&gt;</a>
        </h3>
<p id="section-11.6-1">When media captures are non spatially definable, 
they <span class="bcp14">MUST</span> be marked with the boolean 
&lt;nonSpatiallyDefinable&gt;
element set to "true", and no &lt;spatialInformation&gt; <span class="bcp14">MUST</span> be 
provided.
Indeed, &lt;nonSpatiallyDefinable&gt; and &lt;spatialInformation&gt; 
are mutually 
exclusive tags, according to the &lt;choice&gt; section within the XML 
schema definition of the media capture type.<a href="#section-11.6-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sub-sec-content">
<section id="section-11.7">
        <h3 id="name-content">
<a href="#section-11.7" class="section-number selfRef">11.7. </a><a href="#name-content" class="section-name selfRef">&lt;content&gt;</a>
        </h3>
<p id="section-11.7-1">
A media capture can be (i) an individual media capture or (ii) 
an MCC.
An MCC is made by different captures 
that can be arranged spatially
(by a composition operation), or temporally (by a switching operation), 
or that can result from
the orchestration of both the techniques.
If a media capture is an MCC, then it <span class="bcp14">MAY</span> show in its XML 
data model representation the 
 &lt;content&gt; element. It is composed by a list of media
  capture identifiers ("mediaCaptureIDREF") and capture scene view 
  identifiers ("sceneViewIDREF"), 
  where the latter ones are
  used as shortcuts to refer to multiple capture identifiers. The 
  referenced captures are used to create the MCC according to a certain 
  strategy. If the &lt;content&gt; element does not appear in an MCC, 
  or it has no child elements, then the MCC is assumed to be made 
  of multiple sources, but no information regarding those sources is 
  provided.<a href="#section-11.7-1" class="pilcrow">¶</a></p>
<div id="section-11.7-2">
<pre class="sourcecode lang-xml">
&lt;!-- CONTENT TYPE --&gt;
&lt;xs:complexType name="contentType"&gt;
 &lt;xs:sequence&gt;
   &lt;xs:element name="mediaCaptureIDREF" type="xs:string"
   minOccurs="0" maxOccurs="unbounded"/&gt;
   &lt;xs:element name="sceneViewIDREF" type="xs:string"
   minOccurs="0" maxOccurs="unbounded"/&gt;
   &lt;xs:any namespace="##other" processContents="lax" minOccurs="0"
   maxOccurs="unbounded"/&gt;
 &lt;/xs:sequence&gt;
 &lt;xs:anyAttribute namespace="##other" processContents="lax"/&gt;
&lt;/xs:complexType&gt;
</pre><a href="#section-11.7-2" class="pilcrow">¶</a>
</div>
</section>
</div>
<section id="section-11.8">
        <h3 id="name-synchronizationid">
<a href="#section-11.8" class="section-number selfRef">11.8. </a><a href="#name-synchronizationid" class="section-name selfRef">&lt;synchronizationID&gt;</a>
        </h3>
<p id="section-11.8-1">&lt;synchronizationID&gt; is an optional element for multiple 
content captures that
contains a numeric identifier.
Multiple content captures marked with the same identifier in the 
&lt;synchronizationID&gt;
contain at all times captures coming from the same sources. It is
   the Media Provider that determines what the source is for the captures. 
   In this way, the Media Provider can choose how to group together 
   single captures for the purpose of keeping them synchronized 
   according to the &lt;synchronizationID&gt; element.<a href="#section-11.8-1" class="pilcrow">¶</a></p>
</section>
<section id="section-11.9">
        <h3 id="name-allowsubsetchoice">
<a href="#section-11.9" class="section-number selfRef">11.9. </a><a href="#name-allowsubsetchoice" class="section-name selfRef">&lt;allowSubsetChoice&gt;</a>
        </h3>
<p id="section-11.9-1">&lt;allowSubsetChoice&gt; is an optional boolean element for 
multiple content captures.
It indicates whether or not the Provider allows the Consumer to
   choose a specific subset of the captures referenced by the MCC.
   If this attribute is true, and the MCC references other captures,
   then the Consumer <span class="bcp14">MAY</span> specify in a CONFIGURE message a specific
   subset of those captures to be included in the MCC, and the
   Provider <span class="bcp14">MUST</span> then include only that subset.  If this attribute is
   false, or the MCC does not reference other captures, then the
   Consumer <span class="bcp14">MUST NOT</span> select a subset. If &lt;allowSubsetChoice&gt; 
   is not shown in the XML description of the 
   MCC, its value is to be considered "false".<a href="#section-11.9-1" class="pilcrow">¶</a></p>
</section>
<section id="section-11.10">
        <h3 id="name-policy">
<a href="#section-11.10" class="section-number selfRef">11.10. </a><a href="#name-policy" class="section-name selfRef">&lt;policy&gt;</a>
        </h3>
<p id="section-11.10-1">
&lt;policy&gt; is an optional element
that can be used only for multiple content captures.
It indicates the criteria applied to build the multiple content capture 
using the media captures referenced in the &lt;mediaCaptureIDREF&gt; 
list.
The &lt;policy&gt; value is in the form of a token that indicates the 
policy and an index representing an instance of the policy, separated 
by a ":" (e.g., SoundLevel:2, RoundRobin:0, etc.).
The XML schema defining the type of the &lt;policy&gt; element 
is the following:<a href="#section-11.10-1" class="pilcrow">¶</a></p>
<div id="section-11.10-2">
<pre class="sourcecode lang-xml">
&lt;!-- POLICY TYPE --&gt;
&lt;xs:simpleType name="policyType"&gt;
 &lt;xs:restriction base="xs:string"&gt;
      &lt;xs:pattern value="([a-zA-Z0-9])+[:]([0-9])+"/&gt;
    &lt;/xs:restriction&gt;
&lt;/xs:simpleType&gt;
</pre><a href="#section-11.10-2" class="pilcrow">¶</a>
</div>
<p id="section-11.10-3">At the time of writing, only two switching policies are defined; they are in 
<span>[<a href="#RFC8845" class="xref">RFC8845</a>]</span> as follows:<a href="#section-11.10-3" class="pilcrow">¶</a></p>
<blockquote id="section-11.10-4">
          <span class="break"></span><dl class="dlParallel" id="section-11.10-4.1">
            <dt id="section-11.10-4.1.1">SoundLevel:</dt>
            <dd style="margin-left: 1.5em" id="section-11.10-4.1.2"> This indicates that the content of the MCC is determined
      by a sound-level-detection algorithm.  The loudest (active)
      speaker (or a previous speaker, depending on the index value) is
      contained in the MCC.<a href="#section-11.10-4.1.2" class="pilcrow">¶</a>
</dd>
            <dd class="break"></dd>
<dt id="section-11.10-4.1.3">RoundRobin:</dt>
            <dd style="margin-left: 1.5em" id="section-11.10-4.1.4">This indicates that the content of the MCC is determined
      by a time-based algorithm.  For example, the Provider provides
      content from a particular source for a period of time and then
      provides content from another source, and so on.<a href="#section-11.10-4.1.4" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
</dl>
</blockquote>
<p id="section-11.10-5">Other values for the &lt;policy&gt; element can be used. 
In this case, it is assumed that implementations agree on the 
meaning of those other values and/or those new switching policies 
are defined in later documents.<a href="#section-11.10-5" class="pilcrow">¶</a></p>
</section>
<div id="sub-sec-maxCaptures">
<section id="section-11.11">
        <h3 id="name-maxcaptures">
<a href="#section-11.11" class="section-number selfRef">11.11. </a><a href="#name-maxcaptures" class="section-name selfRef">&lt;maxCaptures&gt;</a>
        </h3>
<p id="section-11.11-1">
&lt;maxCaptures&gt; is an optional element
that can be used only for MCCs.
It provides information about the number of media captures 
that can be represented 
in the multiple content capture at a time.
If &lt;maxCaptures&gt; is not provided, all the media captures listed 
in the &lt;content&gt; element can appear at a time in the capture 
encoding. The type definition is provided below.<a href="#section-11.11-1" class="pilcrow">¶</a></p>
<div id="section-11.11-2">
<pre class="sourcecode lang-xml">
&lt;!-- MAX CAPTURES TYPE --&gt;
&lt;xs:simpleType name="positiveShort"&gt;
        &lt;xs:restriction base="xs:unsignedShort"&gt;
                &lt;xs:minInclusive value="1"&gt;
                &lt;/xs:minInclusive&gt;
        &lt;/xs:restriction&gt;
&lt;/xs:simpleType&gt;

&lt;xs:complexType name="maxCapturesType"&gt;
        &lt;xs:simpleContent&gt;
                &lt;xs:extension base="positiveShort"&gt;
                        &lt;xs:attribute name="exactNumber"
                                type="xs:boolean"/&gt;
                &lt;/xs:extension&gt;
        &lt;/xs:simpleContent&gt;
&lt;/xs:complexType&gt;
</pre><a href="#section-11.11-2" class="pilcrow">¶</a>
</div>
<p id="section-11.11-3">When the "exactNumber" attribute is set to "true", it means
the &lt;maxCaptures&gt; element carries the exact number of the
media captures appearing at a time.
Otherwise, the number of the represented media captures <span class="bcp14">MUST</span> be 
considered "&lt;=" the &lt;maxCaptures&gt; value.<a href="#section-11.11-3" class="pilcrow">¶</a></p>
<p id="section-11.11-4">
For instance, an audio MCC having the &lt;maxCaptures&gt; value set to 1
means that a media stream from the MCC will only contain 
audio from a single one of its constituent captures at a time. 
On the other hand, if the &lt;maxCaptures&gt; value is set to 
4 and the exactNumber
attribute is set to "true", it would mean that the media stream 
received from the MCC will always contain a mix of audio 
from exactly four of its constituent captures.<a href="#section-11.11-4" class="pilcrow">¶</a></p>
</section>
</div>
<section id="section-11.12">
        <h3 id="name-individual">
<a href="#section-11.12" class="section-number selfRef">11.12. </a><a href="#name-individual" class="section-name selfRef">&lt;individual&gt;</a>
        </h3>
<p id="section-11.12-1">
&lt;individual&gt; is a boolean element
that <span class="bcp14">MUST</span> be used for single-content captures.
Its value is fixed and set to "true". 
Such element indicates the capture that is being described is not 
an MCC.
Indeed, &lt;individual&gt; and the aforementioned 
tags related to MCC attributes
(from Sections <a href="#sub-sec-content" class="xref">11.7</a> to 
<a href="#sub-sec-maxCaptures" class="xref">11.11</a>) are mutually 
exclusive, according to the &lt;choice&gt; section within the XML schema 
definition of the media capture type.<a href="#section-11.12-1" class="pilcrow">¶</a></p>
</section>
<div id="sec-description">
<section id="section-11.13">
        <h3 id="name-description">
<a href="#section-11.13" class="section-number selfRef">11.13. </a><a href="#name-description" class="section-name selfRef">&lt;description&gt;</a>
        </h3>
<p id="section-11.13-1">
&lt;description&gt; is used to provide human-readable
textual information.
This element is included in the XML definition of media captures, 
capture scenes, and capture scene views to provide 
human-readable descriptions of, respectively,
media captures, capture scenes, and capture scene views.
According to the data model definition of a media capture 
(<a href="#sec-media-capture" class="xref">Section 11</a>)), zero or more 
&lt;description&gt; elements can be used, each 
providing information in a different 
language. 
The &lt;description&gt; element definition is the following:<a href="#section-11.13-1" class="pilcrow">¶</a></p>
<div id="section-11.13-2">
<pre class="sourcecode lang-xml">
&lt;!-- DESCRIPTION element --&gt;
&lt;xs:element name="description"&gt;
 &lt;xs:complexType&gt;
  &lt;xs:simpleContent&gt;
   &lt;xs:extension base="xs:string"&gt;
     &lt;xs:attribute name="lang" type="xs:language"/&gt;
   &lt;/xs:extension&gt;
  &lt;/xs:simpleContent&gt;
 &lt;/xs:complexType&gt;
&lt;/xs:element&gt;
</pre><a href="#section-11.13-2" class="pilcrow">¶</a>
</div>
<p id="section-11.13-3">As can be seen, &lt;description&gt; is a
string element with an attribute ("lang") indicating
the language used in the textual description. Such an attribute is
compliant with the Language-Tag ABNF production
from <span>[<a href="#RFC5646" class="xref">RFC5646</a>]</span>.<a href="#section-11.13-3" class="pilcrow">¶</a></p>
</section>
</div>
<section id="section-11.14">
        <h3 id="name-priority">
<a href="#section-11.14" class="section-number selfRef">11.14. </a><a href="#name-priority" class="section-name selfRef">&lt;priority&gt;</a>
        </h3>
<p id="section-11.14-1">
&lt;priority&gt;  
is an optional unsigned integer field
indicating the importance of a media capture
according to the Media Provider's perspective.
It can be used on the receiver's side to 
automatically identify
the most relevant contribution from
the Media Provider.
The higher the importance, the lower the contained value.
If no priority
   is assigned, no assumptions regarding relative importance of the
   media capture can be assumed.<a href="#section-11.14-1" class="pilcrow">¶</a></p>
</section>
<section id="section-11.15">
        <h3 id="name-lang">
<a href="#section-11.15" class="section-number selfRef">11.15. </a><a href="#name-lang" class="section-name selfRef">&lt;lang&gt;</a>
        </h3>
<p id="section-11.15-1">
&lt;lang&gt; is an optional element
containing the language used in the capture.
Zero or more &lt;lang&gt; elements can appear in the XML description of 
a media capture. Each such element has to be compliant with the 
Language-Tag ABNF production from <span>[<a href="#RFC5646" class="xref">RFC5646</a>]</span>.<a href="#section-11.15-1" class="pilcrow">¶</a></p>
</section>
<section id="section-11.16">
        <h3 id="name-mobility">
<a href="#section-11.16" class="section-number selfRef">11.16. </a><a href="#name-mobility" class="section-name selfRef">&lt;mobility&gt;</a>
        </h3>
<p id="section-11.16-1">
&lt;mobility&gt; is an optional element
indicating whether or not the capture device originating
the capture may move during the telepresence session.
That optional element can assume one of the three following values:<a href="#section-11.16-1" class="pilcrow">¶</a></p>
<ul class="normal ulEmpty">
<li class="normal ulEmpty" id="section-11.16-2.1">
            <span class="break"></span><dl class="dlParallel" id="section-11.16-2.1.1">
              <dt id="section-11.16-2.1.1.1">static:</dt>
              <dd style="margin-left: 1.5em" id="section-11.16-2.1.1.2">
                <span class="bcp14">SHOULD NOT</span> change for the 
duration of the CLUE session, across multiple ADVERTISEMENT messages.<a href="#section-11.16-2.1.1.2" class="pilcrow">¶</a>
</dd>
              <dd class="break"></dd>
<dt id="section-11.16-2.1.1.3">dynamic:</dt>
              <dd style="margin-left: 1.5em" id="section-11.16-2.1.1.4">
                <span class="bcp14">MAY</span> change in each new ADVERTISEMENT message. 
Can be assumed to remain unchanged until there is a 
new ADVERTISEMENT message.<a href="#section-11.16-2.1.1.4" class="pilcrow">¶</a>
</dd>
              <dd class="break"></dd>
<dt id="section-11.16-2.1.1.5">highly-dynamic:</dt>
              <dd style="margin-left: 1.5em" id="section-11.16-2.1.1.6">
                <span class="bcp14">MAY</span> change dynamically, even between consecutive ADVERTISEMENT messages. 
The spatial information provided in an ADVERTISEMENT message is simply a 
snapshot of the current values at the time when the message is sent.<a href="#section-11.16-2.1.1.6" class="pilcrow">¶</a>
</dd>
            <dd class="break"></dd>
</dl>
</li>
        </ul>
</section>
<section id="section-11.17">
        <h3 id="name-relatedto">
<a href="#section-11.17" class="section-number selfRef">11.17. </a><a href="#name-relatedto" class="section-name selfRef">&lt;relatedTo&gt;</a>
        </h3>
<p id="section-11.17-1">
The optional &lt;relatedTo&gt; element contains the
value of the <span><a href="#sec-captureID" class="xref">captureID attribute</a> (<a href="#sec-captureID" class="xref">Section 11.1</a>)</span> 
of the media capture to which the considered 
media capture refers.
The media capture marked with a &lt;relatedTo&gt;
element can be, for example, the translation of the referred 
media capture in a different language.<a href="#section-11.17-1" class="pilcrow">¶</a></p>
</section>
<div id="sec-view">
<section id="section-11.18">
        <h3 id="name-view">
<a href="#section-11.18" class="section-number selfRef">11.18. </a><a href="#name-view" class="section-name selfRef">&lt;view&gt;</a>
        </h3>
<p id="section-11.18-1">The &lt;view&gt; element is an optional tag describing what is 
represented in the spatial area covered by a media capture. 
It has been specified as a simple string with an annotation pointing to 
an IANA registry that is defined ad hoc:<a href="#section-11.18-1" class="pilcrow">¶</a></p>
<div id="section-11.18-2">
<pre class="sourcecode lang-xml">
&lt;!-- VIEW ELEMENT --&gt;
&lt;xs:element name="view" type="xs:string"&gt;
 &lt;xs:annotation&gt;
  &lt;xs:documentation&gt;
   Acceptable values (enumerations) for this type are managed
   by IANA in the "CLUE Schema &amp;lt;view&amp;gt;" registry,
   accessible at https://www.iana.org/assignments/clue.
  &lt;/xs:documentation&gt;
 &lt;/xs:annotation&gt;
&lt;/xs:element&gt;
</pre><a href="#section-11.18-2" class="pilcrow">¶</a>
</div>
<p id="section-11.18-3">
The current possible values, as per the CLUE framework document
<span>[<a href="#RFC8845" class="xref">RFC8845</a>]</span>, are: "room", "table", 
"lectern", "individual", and "audience".<a href="#section-11.18-3" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec-presentation">
<section id="section-11.19">
        <h3 id="name-presentation">
<a href="#section-11.19" class="section-number selfRef">11.19. </a><a href="#name-presentation" class="section-name selfRef">&lt;presentation&gt;</a>
        </h3>
<p id="section-11.19-1">The &lt;presentation&gt; element is an optional tag used for media 
captures conveying information about presentations within the 
telepresence session. It has been specified as a simple string with an 
annotation pointing to an IANA registry that is defined ad hoc:<a href="#section-11.19-1" class="pilcrow">¶</a></p>
<div id="section-11.19-2">
<pre class="sourcecode lang-xml">
&lt;!-- PRESENTATION ELEMENT --&gt;
&lt;xs:element name="presentation" type="xs:string"&gt;
 &lt;xs:annotation&gt;
  &lt;xs:documentation&gt;
   Acceptable values (enumerations) for this type are managed
   by IANA in the "CLUE Schema &amp;lt;presentation&amp;gt;" registry,
   accessible at https://www.iana.org/assignments/clue.
  &lt;/xs:documentation&gt;
 &lt;/xs:annotation&gt;
&lt;/xs:element&gt;
</pre><a href="#section-11.19-2" class="pilcrow">¶</a>
</div>
<p id="section-11.19-3">
The current possible values, as per the CLUE framework document
<span>[<a href="#RFC8845" class="xref">RFC8845</a>]</span>, are "slides" and "images".<a href="#section-11.19-3" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec-embedded-text">
<section id="section-11.20">
        <h3 id="name-embeddedtext">
<a href="#section-11.20" class="section-number selfRef">11.20. </a><a href="#name-embeddedtext" class="section-name selfRef">&lt;embeddedText&gt;</a>
        </h3>
<p id="section-11.20-1">
The &lt;embeddedText&gt; element is a boolean
element indicating that there is text embedded 
in the media capture (e.g., in a video capture).
The language used in such an embedded textual description 
is reported in the &lt;embeddedText&gt; "lang" attribute.<a href="#section-11.20-1" class="pilcrow">¶</a></p>
<p id="section-11.20-2">
The XML schema definition of the &lt;embeddedText&gt;
element is:<a href="#section-11.20-2" class="pilcrow">¶</a></p>
<div id="section-11.20-3">
<pre class="sourcecode lang-xml">
&lt;!-- EMBEDDED TEXT ELEMENT --&gt;
&lt;xs:element name="embeddedText"&gt;
 &lt;xs:complexType&gt;
  &lt;xs:simpleContent&gt;
   &lt;xs:extension base="xs:boolean"&gt;
    &lt;xs:attribute name="lang" type="xs:language"/&gt;
   &lt;/xs:extension&gt;
  &lt;/xs:simpleContent&gt;
 &lt;/xs:complexType&gt;
&lt;/xs:element&gt;
</pre><a href="#section-11.20-3" class="pilcrow">¶</a>
</div>
</section>
</div>
<div id="sec-participantIDs">
<section id="section-11.21">
        <h3 id="name-capturedpeople">
<a href="#section-11.21" class="section-number selfRef">11.21. </a><a href="#name-capturedpeople" class="section-name selfRef">&lt;capturedPeople&gt;</a>
        </h3>
<p id="section-11.21-1">This optional element is used to indicate which 
telepresence session participants
are represented in within the media captures. For each participant, a 
&lt;personIDREF&gt; element is provided.<a href="#section-11.21-1" class="pilcrow">¶</a></p>
<section id="section-11.21.1">
          <h4 id="name-personidref">
<a href="#section-11.21.1" class="section-number selfRef">11.21.1. </a><a href="#name-personidref" class="section-name selfRef">&lt;personIDREF&gt;</a>
          </h4>
<p id="section-11.21.1-1">
&lt;personIDREF&gt; contains the identifier of the represented person, 
i.e., the value of the related <span><a href="#sub-sec-participantID" class="xref">personID attribute</a> (<a href="#sub-sec-participantID" class="xref">Section 21.1.1</a>)</span>.
Metadata about the represented participant can be retrieved by accessing 
the &lt;people&gt; list (<a href="#sec-participants" class="xref">Section 21</a>).<a href="#section-11.21.1-1" class="pilcrow">¶</a></p>
</section>
</section>
</div>
</section>
</div>
<section id="section-12">
      <h2 id="name-audio-captures">
<a href="#section-12" class="section-number selfRef">12. </a><a href="#name-audio-captures" class="section-name selfRef">Audio Captures</a>
      </h2>
<p id="section-12-1">Audio captures inherit all the features of a generic
media capture and present further audio-specific 
characteristics.
The XML schema definition of the audio 
capture type is reported below:<a href="#section-12-1" class="pilcrow">¶</a></p>
<div id="section-12-2">
<pre class="sourcecode lang-xml">
&lt;!-- AUDIO CAPTURE TYPE --&gt;
&lt;xs:complexType name="audioCaptureType"&gt;
 &lt;xs:complexContent&gt;
  &lt;xs:extension base="tns:mediaCaptureType"&gt;
   &lt;xs:sequence&gt;
        &lt;xs:element ref="sensitivityPattern" minOccurs="0" /&gt;
    &lt;xs:any namespace="##other" processContents="lax" minOccurs="0"
    maxOccurs="unbounded"/&gt;
   &lt;/xs:sequence&gt;
   &lt;xs:anyAttribute namespace="##other" processContents="lax"/&gt;
  &lt;/xs:extension&gt;
 &lt;/xs:complexContent&gt;
&lt;/xs:complexType&gt;
</pre><a href="#section-12-2" class="pilcrow">¶</a>
</div>
<p id="section-12-3">
An example of audio-specific information  
that can be included is represented by the &lt;sensitivityPattern&gt; 
element (<a href="#sec-sensitivity-pattern" class="xref">Section 12.1</a>).<a href="#section-12-3" class="pilcrow">¶</a></p>
<div id="sec-sensitivity-pattern">
<section id="section-12.1">
        <h3 id="name-sensitivitypattern">
<a href="#section-12.1" class="section-number selfRef">12.1. </a><a href="#name-sensitivitypattern" class="section-name selfRef">&lt;sensitivityPattern&gt;</a>
        </h3>
<p id="section-12.1-1">
The &lt;sensitivityPattern&gt; element is an optional field
describing the characteristics of the nominal sensitivity pattern of the
microphone capturing the audio signal. It has been specified as a simple
string with an annotation pointing to an IANA registry that is defined ad hoc:<a href="#section-12.1-1" class="pilcrow">¶</a></p>
<div id="section-12.1-2">
<pre class="sourcecode lang-xml">
&lt;!-- SENSITIVITY PATTERN ELEMENT --&gt;
&lt;xs:element name="sensitivityPattern" type="xs:string"&gt;
 &lt;xs:annotation&gt;
  &lt;xs:documentation&gt;
   Acceptable values (enumerations) for this type are managed by
   IANA in the "CLUE Schema &amp;lt;sensitivityPattern&amp;gt;" registry,
   accessible at https://www.iana.org/assignments/clue.
  &lt;/xs:documentation&gt;
 &lt;/xs:annotation&gt;
&lt;/xs:element&gt;
</pre><a href="#section-12.1-2" class="pilcrow">¶</a>
</div>
<p id="section-12.1-3">
The current possible values, as per the CLUE framework document
<span>[<a href="#RFC8845" class="xref">RFC8845</a>]</span>, are "uni", "shotgun", "omni",
"figure8", "cardioid", and "hyper-cardioid".<a href="#section-12.1-3" class="pilcrow">¶</a></p>
</section>
</div>
</section>
<section id="section-13">
      <h2 id="name-video-captures">
<a href="#section-13" class="section-number selfRef">13. </a><a href="#name-video-captures" class="section-name selfRef">Video Captures</a>
      </h2>
<p id="section-13-1">Video captures, similarly to audio captures, 
extend the information of a generic media capture
with video-specific features.<a href="#section-13-1" class="pilcrow">¶</a></p>
<p id="section-13-2">
The XML schema representation of the
video capture type is provided in the following:<a href="#section-13-2" class="pilcrow">¶</a></p>
<div id="section-13-3">
<pre class="sourcecode lang-xml">
&lt;!-- VIDEO CAPTURE TYPE --&gt;
&lt;xs:complexType name="videoCaptureType"&gt;
 &lt;xs:complexContent&gt;
  &lt;xs:extension base="tns:mediaCaptureType"&gt;
   &lt;xs:sequence&gt;
    &lt;xs:any namespace="##other" processContents="lax" minOccurs="0"
    maxOccurs="unbounded"/&gt;
   &lt;/xs:sequence&gt;
   &lt;xs:anyAttribute namespace="##other" processContents="lax"/&gt;
  &lt;/xs:extension&gt;
 &lt;/xs:complexContent&gt;
&lt;/xs:complexType&gt;
</pre><a href="#section-13-3" class="pilcrow">¶</a>
</div>
</section>
<section id="section-14">
      <h2 id="name-text-captures">
<a href="#section-14" class="section-number selfRef">14. </a><a href="#name-text-captures" class="section-name selfRef">Text Captures</a>
      </h2>
<p id="section-14-1">Similar to audio captures and video captures, text captures can be described
by extending the generic media capture information.<a href="#section-14-1" class="pilcrow">¶</a></p>
<p id="section-14-2">There are no known properties of a text-based media that aren't 
already covered by the generic mediaCaptureType. Text captures are hence
defined as follows:<a href="#section-14-2" class="pilcrow">¶</a></p>
<div id="section-14-3">
<pre class="sourcecode lang-xml">
&lt;!-- TEXT CAPTURE TYPE --&gt;
&lt;xs:complexType name="textCaptureType"&gt;
 &lt;xs:complexContent&gt;
  &lt;xs:extension base="tns:mediaCaptureType"&gt;
  &lt;xs:sequence&gt;
  &lt;xs:any namespace="##other" processContents="lax" minOccurs="0"
    maxOccurs="unbounded"/&gt;
  &lt;/xs:sequence&gt;
  &lt;xs:anyAttribute namespace="##other" processContents="lax"/&gt;
  &lt;/xs:extension&gt;
 &lt;/xs:complexContent&gt;
&lt;/xs:complexType&gt;
</pre><a href="#section-14-3" class="pilcrow">¶</a>
</div>
<p id="section-14-4">Text captures <span class="bcp14">MUST</span> be marked as non spatially definable (i.e., they
<span class="bcp14">MUST</span> present in their XML description the 
<span><a href="#sub-sec-nonspatiallydef" class="xref">&lt;nonSpatiallyDefinable&gt;</a> (<a href="#sub-sec-nonspatiallydef" class="xref">Section 11.6</a>)</span> element set to "true").<a href="#section-14-4" class="pilcrow">¶</a></p>
</section>
<section id="section-15">
      <h2 id="name-other-capture-types">
<a href="#section-15" class="section-number selfRef">15. </a><a href="#name-other-capture-types" class="section-name selfRef">Other Capture Types</a>
      </h2>
<p id="section-15-1">
Other media capture types can be described by using the CLUE data model.
They can be represented by exploiting the "otherCaptureType"
type. 
This media capture type is conceived to be 
filled in with elements defined within extensions of the current schema,
 i.e., with 
elements defined in other XML schemas 
(see <a href="#sec-extension" class="xref">Section 24</a> for an example). 
The otherCaptureType inherits all the features envisioned for 
the abstract mediaCaptureType.<a href="#section-15-1" class="pilcrow">¶</a></p>
<p id="section-15-2">The XML schema representation of the
otherCaptureType is the following:<a href="#section-15-2" class="pilcrow">¶</a></p>
<div id="section-15-3">
<pre class="sourcecode lang-xml">
&lt;!-- OTHER CAPTURE TYPE --&gt;
&lt;xs:complexType name="otherCaptureType"&gt;
 &lt;xs:complexContent&gt;
  &lt;xs:extension base="tns:mediaCaptureType"&gt;
  &lt;xs:sequence&gt;
  &lt;xs:any namespace="##other" processContents="lax" minOccurs="0"
    maxOccurs="unbounded"/&gt;
  &lt;/xs:sequence&gt;
  &lt;xs:anyAttribute namespace="##other" processContents="lax"/&gt;
  &lt;/xs:extension&gt;
 &lt;/xs:complexContent&gt;
&lt;/xs:complexType&gt;
</pre><a href="#section-15-3" class="pilcrow">¶</a>
</div>
<p id="section-15-4">When defining new media capture types that are going to be described
by means of the &lt;otherMediaCapture&gt; element, 
spatial properties of such new media capture types <span class="bcp14">SHOULD</span> be defined 
(e.g., whether or not they are spatially definable and whether or not they
should be associated with an area of capture or other properties 
that may be defined).<a href="#section-15-4" class="pilcrow">¶</a></p>
</section>
<div id="sec-capture-scene">
<section id="section-16">
      <h2 id="name-capturescene">
<a href="#section-16" class="section-number selfRef">16. </a><a href="#name-capturescene" class="section-name selfRef">&lt;captureScene&gt;</a>
      </h2>
<p id="section-16-1">A Media Provider organizes the available captures
in capture scenes in order to help the receiver
in both the rendering and the selection of the group
of captures. Capture scenes are made of media captures and
capture scene views, which are sets of 
media captures of the same media type.
Each capture scene view is an alternative
to completely represent a capture scene for a fixed
media type.<a href="#section-16-1" class="pilcrow">¶</a></p>
<p id="section-16-2">The XML schema representation of a &lt;captureScene&gt; element
is the following:<a href="#section-16-2" class="pilcrow">¶</a></p>
<div id="section-16-3">
<pre class="sourcecode lang-xml">
&lt;!-- CAPTURE SCENE TYPE --&gt;
&lt;xs:complexType name="captureSceneType"&gt;
 &lt;xs:sequence&gt;
  &lt;xs:element ref="description" minOccurs="0" maxOccurs="unbounded"/&gt;
  &lt;xs:element name="sceneInformation" type="xcard:vcardType"
   minOccurs="0"/&gt;
  &lt;xs:element name="sceneViews" type="sceneViewsType" minOccurs="0"/&gt;
  &lt;xs:any namespace="##other" processContents="lax" minOccurs="0"
  maxOccurs="unbounded"/&gt;
 &lt;/xs:sequence&gt;
 &lt;xs:attribute name="sceneID" type="xs:ID" use="required"/&gt;
 &lt;xs:attribute name="scale" type="scaleType" use="required"/&gt;
 &lt;xs:anyAttribute namespace="##other" processContents="lax"/&gt;
&lt;/xs:complexType&gt;
</pre><a href="#section-16-3" class="pilcrow">¶</a>
</div>
<p id="section-16-4">
Each capture scene is identified by a "sceneID" attribute.
The &lt;captureScene&gt; element can contain zero or more
textual &lt;description&gt; elements, as defined in 
<a href="#sec-description" class="xref">Section 11.13</a>.
Besides &lt;description&gt;, there is the optional 
&lt;sceneInformation&gt; 
element 
(<a href="#sec-scene-info" class="xref">Section 16.1</a>), 
 which contains structured 
information about the scene in the vCard format, and the optional 
&lt;sceneViews&gt; element
(<a href="#sec-scene-views" class="xref">Section 16.2</a>), which is the list of 
the capture scene 
views.
When no &lt;sceneViews&gt; is provided, the capture scene is assumed to 
be made of all the media captures that contain the value of its sceneID
attribute in their mandatory captureSceneIDREF attribute.<a href="#section-16-4" class="pilcrow">¶</a></p>
<div id="sec-scene-info">
<section id="section-16.1">
        <h3 id="name-sceneinformation">
<a href="#section-16.1" class="section-number selfRef">16.1. </a><a href="#name-sceneinformation" class="section-name selfRef">&lt;sceneInformation&gt;</a>
        </h3>
<p id="section-16.1-1">
The &lt;sceneInformation&gt; element contains optional information about
 the
capture scene according to the vCard format, as specified in the xCard 
specification <span>[<a href="#RFC6351" class="xref">RFC6351</a>]</span>.<a href="#section-16.1-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec-scene-views">
<section id="section-16.2">
        <h3 id="name-sceneviews">
<a href="#section-16.2" class="section-number selfRef">16.2. </a><a href="#name-sceneviews" class="section-name selfRef">&lt;sceneViews&gt;</a>
        </h3>
<p id="section-16.2-1">
The &lt;sceneViews&gt; element is a mandatory
field of a capture scene containing the list
of scene views. 
Each scene view is represented by a &lt;sceneView&gt;
element (<a href="#sec-scene-view" class="xref">Section 17</a>).<a href="#section-16.2-1" class="pilcrow">¶</a></p>
<div id="section-16.2-2">
<pre class="sourcecode lang-xml">
&lt;!-- SCENE VIEWS TYPE --&gt;
&lt;!-- envelope of scene views of a capture scene --&gt;
&lt;xs:complexType name="sceneViewsType"&gt;
 &lt;xs:sequence&gt;
  &lt;xs:element name="sceneView" type="sceneViewType"
  maxOccurs="unbounded"/&gt;
 &lt;/xs:sequence&gt;
&lt;/xs:complexType&gt;
</pre><a href="#section-16.2-2" class="pilcrow">¶</a>
</div>
</section>
</div>
<div id="sec-sceneID">
<section id="section-16.3">
        <h3 id="name-sceneid-attribute">
<a href="#section-16.3" class="section-number selfRef">16.3. </a><a href="#name-sceneid-attribute" class="section-name selfRef">sceneID Attribute</a>
        </h3>
<p id="section-16.3-1">The sceneID attribute is a mandatory attribute
containing the identifier of the capture scene.<a href="#section-16.3-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec-scale">
<section id="section-16.4">
        <h3 id="name-scale-attribute">
<a href="#section-16.4" class="section-number selfRef">16.4. </a><a href="#name-scale-attribute" class="section-name selfRef">scale Attribute</a>
        </h3>
<p id="section-16.4-1">
The scale attribute is a mandatory attribute
that specifies the scale of the coordinates
provided in the spatial 
information of the media capture belonging to 
the considered capture scene.
The scale attribute can assume three different values:<a href="#section-16.4-1" class="pilcrow">¶</a></p>
<ul class="normal ulEmpty">
<li class="normal ulEmpty" id="section-16.4-2.1">
            <span class="break"></span><dl class="dlParallel" id="section-16.4-2.1.1">
              <dt id="section-16.4-2.1.1.1">"mm":</dt>
              <dd style="margin-left: 1.5em" id="section-16.4-2.1.1.2">the scale is in millimeters.
Systems that
know their physical dimensions 
(for example, professionally
installed telepresence room systems) 
should always provide such
real-world measurements.<a href="#section-16.4-2.1.1.2" class="pilcrow">¶</a>
</dd>
              <dd class="break"></dd>
<dt id="section-16.4-2.1.1.3">"unknown":</dt>
              <dd style="margin-left: 1.5em" id="section-16.4-2.1.1.4">the scale is the same for every media capture 
in the capture scene, but the unity of measure is undefined.
Systems that are not aware of specific
physical dimensions yet still know 
relative distances should select
"unknown" in the scale attribute of the
capture scene to be described.<a href="#section-16.4-2.1.1.4" class="pilcrow">¶</a>
</dd>
              <dd class="break"></dd>
<dt id="section-16.4-2.1.1.5">"noscale":</dt>
              <dd style="margin-left: 1.5em" id="section-16.4-2.1.1.6">there is no common physical scale
among the media captures of the capture scene. 
That means the scale could be different for each
media capture.<a href="#section-16.4-2.1.1.6" class="pilcrow">¶</a>
</dd>
            <dd class="break"></dd>
</dl>
</li>
        </ul>
<div id="section-16.4-3">
<pre class="sourcecode lang-xml">
&lt;!-- SCALE TYPE --&gt;
&lt;xs:simpleType name="scaleType"&gt;
 &lt;xs:restriction base="xs:string"&gt;
  &lt;xs:enumeration value="mm"/&gt;
  &lt;xs:enumeration value="unknown"/&gt;
  &lt;xs:enumeration value="noscale"/&gt;
 &lt;/xs:restriction&gt;
&lt;/xs:simpleType&gt;
</pre><a href="#section-16.4-3" class="pilcrow">¶</a>
</div>
</section>
</div>
</section>
</div>
<div id="sec-scene-view">
<section id="section-17">
      <h2 id="name-sceneview">
<a href="#section-17" class="section-number selfRef">17. </a><a href="#name-sceneview" class="section-name selfRef">&lt;sceneView&gt;</a>
      </h2>
<p id="section-17-1">
A &lt;sceneView&gt; element represents a 
capture scene view, which contains a set of media
captures of the same media type describing 
a capture scene.<a href="#section-17-1" class="pilcrow">¶</a></p>
<p id="section-17-2">A &lt;sceneView&gt; element is characterized as follows.<a href="#section-17-2" class="pilcrow">¶</a></p>
<div id="section-17-3">
<pre class="sourcecode lang-xml">
&lt;!-- SCENE VIEW TYPE --&gt;
&lt;xs:complexType name="sceneViewType"&gt;
 &lt;xs:sequence&gt;
  &lt;xs:element ref="description" minOccurs="0" maxOccurs="unbounded"/&gt;
  &lt;xs:element name="mediaCaptureIDs" type="captureIDListType"/&gt;
 &lt;/xs:sequence&gt;
 &lt;xs:attribute name="sceneViewID" type="xs:ID" use="required"/&gt;
&lt;/xs:complexType&gt;
</pre><a href="#section-17-3" class="pilcrow">¶</a>
</div>
<p id="section-17-4">
One or more optional &lt;description&gt; elements 
provide human-readable information about what the scene
view contains. &lt;description&gt; is defined in <a href="#sec-description" class="xref">Section 11.13</a>.<a href="#section-17-4" class="pilcrow">¶</a></p>
<p id="section-17-5">The remaining child elements are described in the 
following subsections.<a href="#section-17-5" class="pilcrow">¶</a></p>
<section id="section-17.1">
        <h3 id="name-mediacaptureids">
<a href="#section-17.1" class="section-number selfRef">17.1. </a><a href="#name-mediacaptureids" class="section-name selfRef">&lt;mediaCaptureIDs&gt;</a>
        </h3>
<p id="section-17.1-1">
&lt;mediaCaptureIDs&gt; is the list of the 
identifiers of the media captures included in the
scene view.
It is an element of the captureIDListType type, which is 
defined as a sequence of &lt;mediaCaptureIDREF&gt;, each
containing the identifier of a media capture 
listed within the &lt;mediaCaptures&gt; element:<a href="#section-17.1-1" class="pilcrow">¶</a></p>
<div id="section-17.1-2">
<pre class="sourcecode lang-xml">
&lt;!-- CAPTURE ID LIST TYPE --&gt;
&lt;xs:complexType name="captureIDListType"&gt;
 &lt;xs:sequence&gt;
  &lt;xs:element name="mediaCaptureIDREF" type="xs:IDREF"
  maxOccurs="unbounded"/&gt;
 &lt;/xs:sequence&gt;
&lt;/xs:complexType&gt;
</pre><a href="#section-17.1-2" class="pilcrow">¶</a>
</div>
</section>
<section id="section-17.2">
        <h3 id="name-sceneviewid-attribute">
<a href="#section-17.2" class="section-number selfRef">17.2. </a><a href="#name-sceneviewid-attribute" class="section-name selfRef">sceneViewID Attribute</a>
        </h3>
<p id="section-17.2-1">The sceneViewID attribute is a mandatory attribute
containing the identifier of the capture scene view 
represented by the &lt;sceneView&gt; element.<a href="#section-17.2-1" class="pilcrow">¶</a></p>
</section>
</section>
</div>
<div id="sec-encoding-group">
<section id="section-18">
      <h2 id="name-encodinggroup">
<a href="#section-18" class="section-number selfRef">18. </a><a href="#name-encodinggroup" class="section-name selfRef">&lt;encodingGroup&gt;</a>
      </h2>
<p id="section-18-1">
The &lt;encodingGroup&gt; element represents
an encoding group, which is made by a 
 set of one or more individual
 encodings and some parameters that apply 
 to the group as a whole.
 Encoding groups contain references to individual encodings
 that can be applied to media captures.
 The definition of the &lt;encodingGroup&gt; element
 is the following:<a href="#section-18-1" class="pilcrow">¶</a></p>
<div id="section-18-2">
<pre class="sourcecode lang-xml">
&lt;!-- ENCODING GROUP TYPE --&gt;
&lt;xs:complexType name="encodingGroupType"&gt;
 &lt;xs:sequence&gt;
  &lt;xs:element name="maxGroupBandwidth" type="xs:unsignedLong"/&gt;
  &lt;xs:element name="encodingIDList" type="encodingIDListType"/&gt;
  &lt;xs:any namespace="##other" processContents="lax" minOccurs="0"
  maxOccurs="unbounded"/&gt;
 &lt;/xs:sequence&gt;
 &lt;xs:attribute name="encodingGroupID" type="xs:ID" use="required"/&gt;
 &lt;xs:anyAttribute namespace="##any" processContents="lax"/&gt;
&lt;/xs:complexType&gt;
</pre><a href="#section-18-2" class="pilcrow">¶</a>
</div>
<p id="section-18-3">
In the following subsections, the contained elements are further described.<a href="#section-18-3" class="pilcrow">¶</a></p>
<section id="section-18.1">
        <h3 id="name-maxgroupbandwidth">
<a href="#section-18.1" class="section-number selfRef">18.1. </a><a href="#name-maxgroupbandwidth" class="section-name selfRef">&lt;maxGroupBandwidth&gt;</a>
        </h3>
<p id="section-18.1-1">&lt;maxGroupBandwidth&gt; is an optional field 
containing the maximum bitrate expressed in bits per second that can be 
shared by the individual encodings included in the encoding group.<a href="#section-18.1-1" class="pilcrow">¶</a></p>
</section>
<div id="sec-encodingIDList">
<section id="section-18.2">
        <h3 id="name-encodingidlist">
<a href="#section-18.2" class="section-number selfRef">18.2. </a><a href="#name-encodingidlist" class="section-name selfRef">&lt;encodingIDList&gt;</a>
        </h3>
<p id="section-18.2-1">&lt;encodingIDList&gt; is the list
of the individual encodings grouped together in the encoding group.
Each individual encoding is represented
through its identifier contained within 
an &lt;encodingID&gt; element.<a href="#section-18.2-1" class="pilcrow">¶</a></p>
<div id="section-18.2-2">
<pre class="sourcecode lang-xml">
&lt;!-- ENCODING ID LIST TYPE --&gt;
&lt;xs:complexType name="encodingIDListType"&gt;
 &lt;xs:sequence&gt;
  &lt;xs:element name="encodingID" type="xs:string"
   maxOccurs="unbounded"/&gt;
 &lt;/xs:sequence&gt;
&lt;/xs:complexType&gt;
</pre><a href="#section-18.2-2" class="pilcrow">¶</a>
</div>
</section>
</div>
<div id="sec-encodingGroupID">
<section id="section-18.3">
        <h3 id="name-encodinggroupid-attribute">
<a href="#section-18.3" class="section-number selfRef">18.3. </a><a href="#name-encodinggroupid-attribute" class="section-name selfRef">encodingGroupID Attribute</a>
        </h3>
<p id="section-18.3-1">The encodingGroupID attribute contains the 
identifier of the encoding group.<a href="#section-18.3-1" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="sec-simultaneous-set">
<section id="section-19">
      <h2 id="name-simultaneousset">
<a href="#section-19" class="section-number selfRef">19. </a><a href="#name-simultaneousset" class="section-name selfRef">&lt;simultaneousSet&gt;</a>
      </h2>
<p id="section-19-1">&lt;simultaneousSet&gt; represents a simultaneous
transmission set, i.e., a list of captures of the same media type
that can be transmitted at the same time 
by a Media Provider.
There are different simultaneous transmission sets 
for each media type.<a href="#section-19-1" class="pilcrow">¶</a></p>
<div id="section-19-2">
<pre class="sourcecode lang-xml">
&lt;!-- SIMULTANEOUS SET TYPE --&gt;
&lt;xs:complexType name="simultaneousSetType"&gt;
 &lt;xs:sequence&gt;
   &lt;xs:element name="mediaCaptureIDREF" type="xs:IDREF"
   minOccurs="0" maxOccurs="unbounded"/&gt;
   &lt;xs:element name="sceneViewIDREF" type="xs:IDREF"
   minOccurs="0" maxOccurs="unbounded"/&gt;
   &lt;xs:element name="captureSceneIDREF" type="xs:IDREF"
   minOccurs="0" maxOccurs="unbounded"/&gt;
   &lt;xs:any namespace="##other" processContents="lax" minOccurs="0"
   maxOccurs="unbounded"/&gt;
 &lt;/xs:sequence&gt;
 &lt;xs:attribute name="setID" type="xs:ID" use="required"/&gt;
 &lt;xs:attribute name="mediaType" type="xs:string"/&gt;
 &lt;xs:anyAttribute namespace="##any" processContents="lax"/&gt;
&lt;/xs:complexType&gt;
</pre><a href="#section-19-2" class="pilcrow">¶</a>
</div>
<p id="section-19-3">
Besides the identifiers of the captures (&lt;mediaCaptureIDREF&gt; 
elements), the identifiers of capture scene views and capture 
scenes can also be exploited as shortcuts 
(&lt;sceneViewIDREF&gt; and &lt;captureSceneIDREF&gt; elements).
As an example, let's consider the situation where there are two capture 
scene views (S1 and S7).
S1 contains captures AC11, AC12, and AC13. S7 contains captures AC71 and AC72.
Provided that AC11, AC12, AC13, AC71, and AC72 can be simultaneously sent to 
the Media Consumer, instead of having 5 &lt;mediaCaptureIDREF&gt; 
elements listed in the simultaneous set (i.e., one 
&lt;mediaCaptureIDREF&gt; for AC11, one for AC12, and so on), there can
be just two &lt;sceneViewIDREF&gt; elements (one for S1 and one for S7).<a href="#section-19-3" class="pilcrow">¶</a></p>
<section id="section-19.1">
        <h3 id="name-setid-attribute">
<a href="#section-19.1" class="section-number selfRef">19.1. </a><a href="#name-setid-attribute" class="section-name selfRef">setID Attribute</a>
        </h3>
<p id="section-19.1-1">
The "setID" attribute is a mandatory field containing the identifier of 
the simultaneous set.<a href="#section-19.1-1" class="pilcrow">¶</a></p>
</section>
<section id="section-19.2">
        <h3 id="name-mediatype-attribute-2">
<a href="#section-19.2" class="section-number selfRef">19.2. </a><a href="#name-mediatype-attribute-2" class="section-name selfRef">mediaType Attribute</a>
        </h3>
<p id="section-19.2-1">
The "mediaType" attribute is an optional attribute containing the media 
type of the 
captures referenced by the simultaneous set.<a href="#section-19.2-1" class="pilcrow">¶</a></p>
<p id="section-19.2-2">When only capture scene identifiers are listed within a simultaneous 
set, the media type attribute <span class="bcp14">MUST</span> appear in the XML description in 
order to determine which media captures can be simultaneously sent 
together.<a href="#section-19.2-2" class="pilcrow">¶</a></p>
</section>
<section id="section-19.3">
        <h3 id="name-mediacaptureidref">
<a href="#section-19.3" class="section-number selfRef">19.3. </a><a href="#name-mediacaptureidref" class="section-name selfRef">&lt;mediaCaptureIDREF&gt;</a>
        </h3>
<p id="section-19.3-1">&lt;mediaCaptureIDREF&gt; contains the identifier of the media
capture that belongs to the simultaneous set.<a href="#section-19.3-1" class="pilcrow">¶</a></p>
</section>
<section id="section-19.4">
        <h3 id="name-sceneviewidref">
<a href="#section-19.4" class="section-number selfRef">19.4. </a><a href="#name-sceneviewidref" class="section-name selfRef">&lt;sceneViewIDREF&gt;</a>
        </h3>
<p id="section-19.4-1">&lt;sceneViewIDREF&gt; contains the identifier of the scene
view containing a group of captures 
that are able to be sent simultaneously with the other
captures of the simultaneous set.<a href="#section-19.4-1" class="pilcrow">¶</a></p>
</section>
<section id="section-19.5">
        <h3 id="name-capturesceneidref-2">
<a href="#section-19.5" class="section-number selfRef">19.5. </a><a href="#name-capturesceneidref-2" class="section-name selfRef">&lt;captureSceneIDREF&gt;</a>
        </h3>
<p id="section-19.5-1">&lt;captureSceneIDREF&gt; contains the identifier of the capture 
scene where all the included captures of a certain media type 
are able to be sent together with the other captures of the simultaneous 
set.<a href="#section-19.5-1" class="pilcrow">¶</a></p>
</section>
</section>
</div>
<div id="sec-global-view">
<section id="section-20">
      <h2 id="name-globalview">
<a href="#section-20" class="section-number selfRef">20. </a><a href="#name-globalview" class="section-name selfRef">&lt;globalView&gt;</a>
      </h2>
<p id="section-20-1">&lt;globalView&gt; is a set of captures of the same media type
representing a summary of the complete Media Provider's offer. 
The content of a global view is expressed 
by leveraging only scene view identifiers, put within 
&lt;sceneViewIDREF&gt; elements. 
Each global view is identified by a unique identifier within the 
"globalViewID" attribute.<a href="#section-20-1" class="pilcrow">¶</a></p>
<div id="section-20-2">
<pre class="sourcecode lang-xml">
&lt;!-- GLOBAL VIEW TYPE --&gt;
&lt;xs:complexType name="globalViewType"&gt;
 &lt;xs:sequence&gt;
   &lt;xs:element name="sceneViewIDREF" type="xs:IDREF"
    maxOccurs="unbounded"/&gt;
   &lt;xs:any namespace="##other" processContents="lax" minOccurs="0"
   maxOccurs="unbounded"/&gt;
 &lt;/xs:sequence&gt;
 &lt;xs:attribute name="globalViewID" type="xs:ID"/&gt;
 &lt;xs:anyAttribute namespace="##any" processContents="lax"/&gt;
&lt;/xs:complexType&gt;
</pre><a href="#section-20-2" class="pilcrow">¶</a>
</div>
</section>
</div>
<div id="sec-participants">
<section id="section-21">
      <h2 id="name-people">
<a href="#section-21" class="section-number selfRef">21. </a><a href="#name-people" class="section-name selfRef">&lt;people&gt;</a>
      </h2>
<p id="section-21-1">
Information about the participants that are represented in the media 
captures is conveyed via the &lt;people&gt; element.
As it can be seen from the XML schema depicted below, for each 
participant, a &lt;person&gt; element is provided.<a href="#section-21-1" class="pilcrow">¶</a></p>
<div id="section-21-2">
<pre class="sourcecode lang-xml">
&lt;!-- PEOPLE TYPE --&gt;
&lt;xs:complexType name="peopleType"&gt;
 &lt;xs:sequence&gt;
  &lt;xs:element name="person" type="personType" maxOccurs="unbounded"/&gt;
 &lt;/xs:sequence&gt;
&lt;/xs:complexType&gt;
</pre><a href="#section-21-2" class="pilcrow">¶</a>
</div>
<div id="sub-sec-participantInfo">
<section id="section-21.1">
        <h3 id="name-person">
<a href="#section-21.1" class="section-number selfRef">21.1. </a><a href="#name-person" class="section-name selfRef">&lt;person&gt;</a>
        </h3>
<p id="section-21.1-1">&lt;person&gt; includes all the metadata related to a person 
represented within one or more media captures. 
Such element provides the vCard of the subject (via the 
&lt;personInfo&gt; element; see <a href="#sub-sec-vcard" class="xref">Section 21.1.2</a>)
and its conference role(s) (via one or more &lt;personType&gt; elements; 
see <a href="#sub-sec-participantType" class="xref">Section 21.1.3</a>).
Furthermore, it has a mandatory "personID" attribute 
(<a href="#sub-sec-participantID" class="xref">Section 21.1.1</a>).<a href="#section-21.1-1" class="pilcrow">¶</a></p>
<div id="section-21.1-2">
<pre class="sourcecode lang-xml">
&lt;!-- PERSON TYPE --&gt;
&lt;xs:complexType name="personType"&gt;
 &lt;xs:sequence&gt;
  &lt;xs:element name="personInfo" type="xcard:vcardType" maxOccurs="1"
   minOccurs="0"/&gt;
  &lt;xs:element ref="personType" minOccurs="0" maxOccurs="unbounded" /&gt;
  &lt;xs:any namespace="##other" processContents="lax" minOccurs="0"
   maxOccurs="unbounded"/&gt;
 &lt;/xs:sequence&gt;
 &lt;xs:attribute name="personID" type="xs:ID" use="required"/&gt;
 &lt;xs:anyAttribute namespace="##other" processContents="lax"/&gt;
&lt;/xs:complexType&gt;
</pre><a href="#section-21.1-2" class="pilcrow">¶</a>
</div>
<div id="sub-sec-participantID">
<section id="section-21.1.1">
          <h4 id="name-personid-attribute">
<a href="#section-21.1.1" class="section-number selfRef">21.1.1. </a><a href="#name-personid-attribute" class="section-name selfRef">personID Attribute</a>
          </h4>
<p id="section-21.1.1-1">
The "personID" attribute carries the identifier of a represented person.
Such an identifier can be used to refer to the participant, 
as in the &lt;capturedPeople&gt; element in the media captures 
representation (<a href="#sec-participantIDs" class="xref">Section 11.21</a>).<a href="#section-21.1.1-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sub-sec-vcard">
<section id="section-21.1.2">
          <h4 id="name-personinfo">
<a href="#section-21.1.2" class="section-number selfRef">21.1.2. </a><a href="#name-personinfo" class="section-name selfRef">&lt;personInfo&gt;</a>
          </h4>
<p id="section-21.1.2-1">The  &lt;personInfo&gt; element is the XML representation of all the 
fields composing a vCard as specified in the xCard document 
<span>[<a href="#RFC6351" class="xref">RFC6351</a>]</span>. 
The vcardType is imported by the xCard XML schema provided in <span><a href="https://www.rfc-editor.org/rfc/rfc7852#appendix-A" class="relref">Appendix A</a> of [<a href="#RFC7852" class="xref">RFC7852</a>]</span>.
As such schema specifies, the &lt;fn&gt; element within &lt;vcard&gt; 
is mandatory.<a href="#section-21.1.2-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sub-sec-participantType">
<section id="section-21.1.3">
          <h4 id="name-persontype">
<a href="#section-21.1.3" class="section-number selfRef">21.1.3. </a><a href="#name-persontype" class="section-name selfRef">&lt;personType&gt;</a>
          </h4>
<p id="section-21.1.3-1">The value of the &lt;personType&gt; element determines the role of 
the represented participant within the telepresence session 
organization. It has been specified as a simple string with an 
annotation pointing to an IANA registry that is defined ad hoc:<a href="#section-21.1.3-1" class="pilcrow">¶</a></p>
<div id="section-21.1.3-2">
<pre class="sourcecode lang-xml">
&lt;!-- PERSON TYPE ELEMENT --&gt;
&lt;xs:element name="personType" type="xs:string"&gt;
 &lt;xs:annotation&gt;
  &lt;xs:documentation&gt;
   Acceptable values (enumerations) for this type are managed
   by IANA in the "CLUE Schema &amp;lt;personType&amp;gt;" registry,
   accessible at https://www.iana.org/assignments/clue.
  &lt;/xs:documentation&gt;
 &lt;/xs:annotation&gt;
&lt;/xs:element&gt;
</pre><a href="#section-21.1.3-2" class="pilcrow">¶</a>
</div>
<p id="section-21.1.3-3">
The current possible values, as per the CLUE framework document
<span>[<a href="#RFC8845" class="xref">RFC8845</a>]</span>, are: "presenter", 
"timekeeper", "attendee", "minute taker", "translator", "chairman", 
"vice-chairman", and "observer".<a href="#section-21.1.3-3" class="pilcrow">¶</a></p>
<p id="section-21.1.3-4">
A participant can play more than one conference role. In that case, more 
than one &lt;personType&gt; element will appear in its description.<a href="#section-21.1.3-4" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
</section>
</div>
<div id="sec-capture-encoding">
<section id="section-22">
      <h2 id="name-captureencoding">
<a href="#section-22" class="section-number selfRef">22. </a><a href="#name-captureencoding" class="section-name selfRef">&lt;captureEncoding&gt;</a>
      </h2>
<p id="section-22-1">A capture encoding is given from 
the association of a media capture
with an individual encoding, to form a capture stream as defined in
<span>[<a href="#RFC8845" class="xref">RFC8845</a>]</span>.
Capture encodings are used within CONFIGURE messages from a Media 
Consumer to a Media Provider for representing the streams desired by the 
Media Consumer. 
For each desired stream, the Media Consumer needs to be allowed to 
specify: (i) the capture identifier of the desired capture that has been 
advertised by the Media Provider; (ii) the encoding identifier of the 
encoding to use, among those advertised by the Media Provider;
and (iii) optionally, in case of multicontent captures, the list of the 
capture identifiers of the desired captures.
All the mentioned identifiers are intended to be included in the 
ADVERTISEMENT message that the CONFIGURE message refers to.
The XML model of &lt;captureEncoding&gt; is provided in the following.<a href="#section-22-1" class="pilcrow">¶</a></p>
<div id="section-22-2">
<pre class="sourcecode lang-xml">
&lt;!-- CAPTURE ENCODING TYPE --&gt;
&lt;xs:complexType name="captureEncodingType"&gt;
 &lt;xs:sequence&gt;
  &lt;xs:element name="captureID" type="xs:string"/&gt;
  &lt;xs:element name="encodingID" type="xs:string"/&gt;
  &lt;xs:element name="configuredContent" type="contentType"
   minOccurs="0"/&gt;
  &lt;xs:any namespace="##other" processContents="lax" minOccurs="0"
   maxOccurs="unbounded"/&gt;
 &lt;/xs:sequence&gt;
 &lt;xs:attribute name="ID" type="xs:ID" use="required"/&gt;
 &lt;xs:anyAttribute namespace="##any" processContents="lax"/&gt;
&lt;/xs:complexType&gt;
</pre><a href="#section-22-2" class="pilcrow">¶</a>
</div>
<section id="section-22.1">
        <h3 id="name-captureid">
<a href="#section-22.1" class="section-number selfRef">22.1. </a><a href="#name-captureid" class="section-name selfRef">&lt;captureID&gt;</a>
        </h3>
<p id="section-22.1-1">&lt;captureID&gt; is the mandatory element containing the identifier
of the media capture that has been encoded to 
form the capture encoding.<a href="#section-22.1-1" class="pilcrow">¶</a></p>
</section>
<section id="section-22.2">
        <h3 id="name-encodingid">
<a href="#section-22.2" class="section-number selfRef">22.2. </a><a href="#name-encodingid" class="section-name selfRef">&lt;encodingID&gt;</a>
        </h3>
<p id="section-22.2-1">&lt;encodingID&gt; is the mandatory element containing the identifier
of the applied individual encoding.<a href="#section-22.2-1" class="pilcrow">¶</a></p>
</section>
<section id="section-22.3">
        <h3 id="name-configuredcontent">
<a href="#section-22.3" class="section-number selfRef">22.3. </a><a href="#name-configuredcontent" class="section-name selfRef">&lt;configuredContent&gt;</a>
        </h3>
<p id="section-22.3-1">&lt;configuredContent&gt; is an optional element to be used in case 
of the configuration of MCC.
It contains the list of capture identifiers and capture scene view 
identifiers the Media Consumer wants within the MCC.
That element is structured  as the &lt;content&gt; element used to 
describe the content of an MCC.   
The total number of media captures listed in the 
&lt;configuredContent&gt; <span class="bcp14">MUST</span> be lower than or equal to the value 
carried within the &lt;maxCaptures&gt; attribute of the MCC.<a href="#section-22.3-1" class="pilcrow">¶</a></p>
</section>
</section>
</div>
<section id="section-23">
      <h2 id="name-clueinfo">
<a href="#section-23" class="section-number selfRef">23. </a><a href="#name-clueinfo" class="section-name selfRef">&lt;clueInfo&gt;</a>
      </h2>
<p id="section-23-1">The &lt;clueInfo&gt; element includes all the 
information needed to represent the Media Provider's description of 
its telepresence capabilities according to the 
CLUE framework.
Indeed, it is made by:<a href="#section-23-1" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-23-2.1">the list of the available media captures 
 (see "&lt;mediaCaptures&gt;", <a href="#sec-media-captures" class="xref">Section 5</a>)<a href="#section-23-2.1" class="pilcrow">¶</a>
</li>
        <li class="normal" id="section-23-2.2">the list of encoding groups 
  (see "&lt;encodingGroups&gt;", <a href="#sec-encoding-groups" class="xref">Section 6</a>)<a href="#section-23-2.2" class="pilcrow">¶</a>
</li>
        <li class="normal" id="section-23-2.3">the list of capture scenes 
  (see "&lt;captureScenes&gt;", <a href="#sec-capture-scenes" class="xref">Section 7</a>)<a href="#section-23-2.3" class="pilcrow">¶</a>
</li>
        <li class="normal" id="section-23-2.4">the list of simultaneous transmission sets 
  (see "&lt;simultaneousSets&gt;", <a href="#sec-simultaneous-sets" class="xref">Section 8</a>)<a href="#section-23-2.4" class="pilcrow">¶</a>
</li>
        <li class="normal" id="section-23-2.5">the list of global views sets 
  (see "&lt;globalViews&gt;", <a href="#sec-global-views" class="xref">Section 9</a>)<a href="#section-23-2.5" class="pilcrow">¶</a>
</li>
        <li class="normal" id="section-23-2.6">metadata about the participants represented in the telepresence 
  session (see "&lt;people&gt;", <a href="#sec-participants" class="xref">Section 21</a>)<a href="#section-23-2.6" class="pilcrow">¶</a>
</li>
      </ul>
<p id="section-23-3">
It has been conceived only for data model testing purposes, and though 
it resembles the body of an ADVERTISEMENT message, it is not actually 
used in the CLUE protocol message definitions.
The telepresence capabilities descriptions compliant to 
this data model specification that can be found in Sections
<a href="#sec-XML-sample" class="xref">27</a> and <a href="#sec-MCC-sample" class="xref">28</a>  
are provided by using the &lt;clueInfo&gt; element.<a href="#section-23-3" class="pilcrow">¶</a></p>
<div id="section-23-4">
<pre class="sourcecode lang-xml">
&lt;!-- CLUE INFO TYPE --&gt;
&lt;xs:complexType name="clueInfoType"&gt;
  &lt;xs:sequence&gt;
   &lt;xs:element ref="mediaCaptures"/&gt;
   &lt;xs:element ref="encodingGroups"/&gt;
   &lt;xs:element ref="captureScenes"/&gt;
   &lt;xs:element ref="simultaneousSets" minOccurs="0"/&gt;
   &lt;xs:element ref="globalViews" minOccurs="0"/&gt;
   &lt;xs:element ref="people" minOccurs="0"/&gt;
   &lt;xs:any namespace="##other" processContents="lax" minOccurs="0"
   maxOccurs="unbounded"/&gt;
  &lt;/xs:sequence&gt;
  &lt;xs:attribute name="clueInfoID" type="xs:ID" use="required"/&gt;
  &lt;xs:anyAttribute namespace="##other" processContents="lax"/&gt;
&lt;/xs:complexType&gt;
</pre><a href="#section-23-4" class="pilcrow">¶</a>
</div>
</section>
<div id="sec-extension">
<section id="section-24">
      <h2 id="name-xml-schema-extensibility">
<a href="#section-24" class="section-number selfRef">24. </a><a href="#name-xml-schema-extensibility" class="section-name selfRef">XML Schema Extensibility</a>
      </h2>
<p id="section-24-1">
The telepresence data model defined in this document is
   meant to be extensible.  Extensions are accomplished by defining
   elements or attributes qualified by namespaces other than
   "urn:ietf:params:xml:ns:clue-info" and
   "urn:ietf:params:xml:ns:vcard-4.0" for use wherever the
   schema allows such extensions (i.e., where the XML schema definition
   specifies "anyAttribute" or "anyElement").
   Elements or attributes from unknown namespaces <span class="bcp14">MUST</span> be ignored.
   
   Extensibility was purposefully favored as much as possible based on 
   expectations about custom implementations. Hence, the schema offers 
   people enough flexibility as to define custom extensions, without 
   losing compliance with the standard. This is achieved by leveraging  
   &lt;xs:any&gt; elements and &lt;xs:anyAttribute&gt; attributes, which
   is a common approach with schemas, while still matching the 
   Unique Particle Attribution (UPA) constraint.<a href="#section-24-1" class="pilcrow">¶</a></p>
<section id="section-24.1">
        <h3 id="name-example-of-extension">
<a href="#section-24.1" class="section-number selfRef">24.1. </a><a href="#name-example-of-extension" class="section-name selfRef">Example of Extension</a>
        </h3>
<p id="section-24.1-1">When extending the CLUE data model, a new schema 
with a new namespace associated with it 
needs to be specified.<a href="#section-24.1-1" class="pilcrow">¶</a></p>
<p id="section-24.1-2">
In the following, an example of extension is provided. The extension 
defines a new audio capture attribute ("newAudioFeature") and 
an attribute for characterizing the captures belonging to an 
"otherCaptureType" defined by the user. 
An XML document compliant with the extension is also included. 
The XML file results are validated against the current XML schema for the CLUE data model.<a href="#section-24.1-2" class="pilcrow">¶</a></p>
<div id="section-24.1-3">
<pre class="sourcecode lang-xml">
&lt;?xml version="1.0" encoding="UTF-8" ?&gt;
&lt;xs:schema
   targetNamespace="urn:ietf:params:xml:ns:clue-info-ext"
   xmlns:tns="urn:ietf:params:xml:ns:clue-info-ext"
   xmlns:clue-ext="urn:ietf:params:xml:ns:clue-info-ext"
   xmlns:xs="http://www.w3.org/2001/XMLSchema"
   xmlns="urn:ietf:params:xml:ns:clue-info-ext"
   xmlns:xcard="urn:ietf:params:xml:ns:vcard-4.0"
   xmlns:info="urn:ietf:params:xml:ns:clue-info"
   elementFormDefault="qualified"
   attributeFormDefault="unqualified"&gt;

&lt;!-- Import xCard XML schema --&gt;
&lt;xs:import namespace="urn:ietf:params:xml:ns:vcard-4.0"
schemaLocation=
  "https://www.iana.org/assignments/xml-registry/schema/
   vcard-4.0.xsd"/&gt;

&lt;!-- Import CLUE XML schema --&gt;
&lt;xs:import namespace="urn:ietf:params:xml:ns:clue-info"
schemaLocation="clue-data-model-schema.xsd"/&gt;

&lt;!-- ELEMENT DEFINITIONS --&gt;
&lt;xs:element name="newAudioFeature" type="xs:string"/&gt;
&lt;xs:element name="otherMediaCaptureTypeFeature" type="xs:string"/&gt;

&lt;/xs:schema&gt;
</pre><a href="#section-24.1-3" class="pilcrow">¶</a>
</div>
<div id="section-24.1-4">
<pre class="sourcecode lang-xml">
&lt;?xml version="1.0" encoding="UTF-8" standalone="yes"?&gt;
&lt;clueInfo xmlns="urn:ietf:params:xml:ns:clue-info"
xmlns:ns2="urn:ietf:params:xml:ns:vcard-4.0"
xmlns:ns3="urn:ietf:params:xml:ns:clue-info-ext"
clueInfoID="NapoliRoom"&gt;
    &lt;mediaCaptures&gt;
        &lt;mediaCapture
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:type="audioCaptureType"
        captureID="AC0"
        mediaType="audio"&gt;
            &lt;captureSceneIDREF&gt;CS1&lt;/captureSceneIDREF&gt;
            &lt;nonSpatiallyDefinable&gt;true&lt;/nonSpatiallyDefinable&gt;
            &lt;individual&gt;true&lt;/individual&gt;
            &lt;encGroupIDREF&gt;EG1&lt;/encGroupIDREF&gt;
            &lt;ns3:newAudioFeature&gt;newAudioFeatureValue
            &lt;/ns3:newAudioFeature&gt;
        &lt;/mediaCapture&gt;
        &lt;mediaCapture
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:type="otherCaptureType"
        captureID="OMC0"
        mediaType="other media type"&gt;
            &lt;captureSceneIDREF&gt;CS1&lt;/captureSceneIDREF&gt;
            &lt;nonSpatiallyDefinable&gt;true&lt;/nonSpatiallyDefinable&gt;
            &lt;encGroupIDREF&gt;EG1&lt;/encGroupIDREF&gt;
            &lt;ns3:otherMediaCaptureTypeFeature&gt;OtherValue
            &lt;/ns3:otherMediaCaptureTypeFeature&gt;
        &lt;/mediaCapture&gt;
    &lt;/mediaCaptures&gt;
    &lt;encodingGroups&gt;
        &lt;encodingGroup encodingGroupID="EG1"&gt;
            &lt;maxGroupBandwidth&gt;300000&lt;/maxGroupBandwidth&gt;
            &lt;encodingIDList&gt;
                &lt;encodingID&gt;ENC4&lt;/encodingID&gt;
                &lt;encodingID&gt;ENC5&lt;/encodingID&gt;
            &lt;/encodingIDList&gt;
        &lt;/encodingGroup&gt;
    &lt;/encodingGroups&gt;
    &lt;captureScenes&gt;
        &lt;captureScene scale="unknown" sceneID="CS1"/&gt;
    &lt;/captureScenes&gt;
&lt;/clueInfo&gt;
</pre><a href="#section-24.1-4" class="pilcrow">¶</a>
</div>
</section>
</section>
</div>
<div id="sec_security">
<section id="section-25">
      <h2 id="name-security-considerations">
<a href="#section-25" class="section-number selfRef">25. </a><a href="#name-security-considerations" class="section-name selfRef">Security Considerations</a>
      </h2>
<p id="section-25-1">
 This document defines, through an XML schema, a data model for telepresence 
 scenarios.
 The modeled information is identified in the CLUE framework 
 as necessary in order to enable a full-fledged 
 media stream negotiation and rendering.
 Indeed, the XML elements herein defined are used within 
 CLUE protocol messages to describe 
 both the media streams representing the Media Provider's telepresence 
 offer and the desired selection requested by the Media Consumer.
 Security concerns described in 
 <span>[<a href="#RFC8845" class="xref">RFC8845</a>], <a href="https://www.rfc-editor.org/rfc/rfc8845#section-15" class="relref">Section 15</a></span> apply to this 
 document.<a href="#section-25-1" class="pilcrow">¶</a></p>
<p id="section-25-2">

Data model information carried within CLUE messages <span class="bcp14">SHOULD</span> 
be accessed only by authenticated endpoints.
Indeed, authenticated access is strongly advisable, especially if you 
convey information about individuals (&lt;personalInfo&gt;) and/or 
scenes (&lt;sceneInformation&gt;). 
There might be more exceptions, depending on the level of criticality 
that is associated with the setup and configuration of a specific 
session. In principle, one might even decide that no protection at all 
is needed for a particular session; here is why authentication
has not been identified as a mandatory requirement.<a href="#section-25-2" class="pilcrow">¶</a></p>
<p id="section-25-3">
Going deeper into details, some information published by the Media 
Provider might reveal sensitive data about who and what is represented 
in the transmitted streams. 
The vCard included in the &lt;personInfo&gt;   
elements (<a href="#sub-sec-participantInfo" class="xref">Section 21.1</a>) 
mandatorily contains the identity of the represented person. 
Optionally, vCards can also carry the person's contact addresses, 
together with their photo and other personal data. Similar 
privacy-critical information can be conveyed by means of 
&lt;sceneInformation&gt; elements (<a href="#sec-scene-info" class="xref">Section 16.1</a>)
describing the capture scenes.
The &lt;description&gt; elements (<a href="#sec-description" class="xref">Section 11.13</a>) also
can specify details about the content of media captures, capture scenes, 
and scene views that should be protected.<a href="#section-25-3" class="pilcrow">¶</a></p>
<p id="section-25-4">
Integrity attacks to the data model information encapsulated 
in CLUE messages can  invalidate the success of the telepresence 
session's setup by misleading the Media Consumer's and Media Provider's 
interpretation of the offered and desired media streams.<a href="#section-25-4" class="pilcrow">¶</a></p>
<p id="section-25-5">
The assurance of the authenticated access and of the integrity of the 
data model information is up to the involved transport mechanisms, 
namely the CLUE protocol
<span>[<a href="#RFC8847" class="xref">RFC8847</a>]</span>  
and the CLUE data channel <span>[<a href="#RFC8850" class="xref">RFC8850</a>]</span>.<a href="#section-25-5" class="pilcrow">¶</a></p>
<p id="section-25-6">
XML parsers need to be robust with respect to malformed documents. 
Reading malformed documents from unknown or untrusted sources could 
result in an attacker gaining privileges of the user running the XML 
parser. In an extreme situation, the entire machine could be 
compromised.<a href="#section-25-6" class="pilcrow">¶</a></p>
</section>
</div>
<section id="section-26">
      <h2 id="name-iana-considerations">
<a href="#section-26" class="section-number selfRef">26. </a><a href="#name-iana-considerations" class="section-name selfRef">IANA Considerations</a>
      </h2>
<p id="section-26-1">
 This document registers a new XML namespace, a new XML schema, the media
 type for the schema, and four new registries associated, respectively,
 with acceptable &lt;view&gt;, &lt;presentation&gt;, 
 &lt;sensitivityPattern&gt;, and &lt;personType&gt; values.<a href="#section-26-1" class="pilcrow">¶</a></p>
<section id="section-26.1">
        <h3 id="name-xml-namespace-registration">
<a href="#section-26.1" class="section-number selfRef">26.1. </a><a href="#name-xml-namespace-registration" class="section-name selfRef">XML Namespace Registration</a>
        </h3>
<span class="break"></span><dl class="dlParallel" id="section-26.1-1">
          <dt id="section-26.1-1.1">URI:</dt>
          <dd style="margin-left: 1.5em" id="section-26.1-1.2">urn:ietf:params:xml:ns:clue-info<a href="#section-26.1-1.2" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-26.1-1.3">Registrant Contact:</dt>
          <dd style="margin-left: 1.5em" id="section-26.1-1.4">IETF CLUE Working Group &lt;clue@ietf.org&gt;, 
Roberta Presta &lt;roberta.presta@unina.it&gt;<a href="#section-26.1-1.4" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-26.1-1.5">XML:</dt>
          <dd style="margin-left: 1.5em" id="section-26.1-1.6"></dd>
        <dd class="break"></dd>
</dl>
<div id="section-26.1-2">
<pre class="sourcecode lang-xml">&lt;CODE BEGINS&gt;
&lt;?xml version="1.0"?&gt;
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.0//EN"
 "http://www.w3.org/TR/xhtml-basic/xhtml-basic10.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
 &lt;head&gt;
  &lt;meta http-equiv="content-type"
        content="text/html;charset=iso-8859-1"/&gt;
  &lt;title&gt;CLUE Data Model Namespace&lt;/title&gt;
 &lt;/head&gt;
 &lt;body&gt;
  &lt;h1&gt;Namespace for CLUE Data Model&lt;/h1&gt;
  &lt;h2&gt;urn:ietf:params:xml:ns:clue-info&lt;/h2&gt;
  &lt;p&gt;See
   &lt;a href="https://www.rfc-editor.org/rfc/rfc8846.txt"&gt;RFC 8846&lt;/a&gt;.
  &lt;/p&gt;
 &lt;/body&gt;
&lt;/html&gt;

&lt;CODE ENDS&gt;</pre><a href="#section-26.1-2" class="pilcrow">¶</a>
</div>
</section>
<section id="section-26.2">
        <h3 id="name-xml-schema-registration">
<a href="#section-26.2" class="section-number selfRef">26.2. </a><a href="#name-xml-schema-registration" class="section-name selfRef">XML Schema Registration</a>
        </h3>
<p id="section-26.2-1">
This section registers an XML schema per the guidelines in 
<span>[<a href="#RFC3688" class="xref">RFC3688</a>]</span>.<a href="#section-26.2-1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-26.2-2">
          <dt id="section-26.2-2.1">URI:</dt>
          <dd style="margin-left: 1.5em" id="section-26.2-2.2">urn:ietf:params:xml:schema:clue-info<a href="#section-26.2-2.2" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-26.2-2.3">Registrant Contact:</dt>
          <dd style="margin-left: 1.5em" id="section-26.2-2.4">CLUE Working Group (clue@ietf.org), 
Roberta Presta (roberta.presta@unina.it).<a href="#section-26.2-2.4" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-26.2-2.5">Schema:</dt>
          <dd style="margin-left: 1.5em" id="section-26.2-2.6">The XML for this schema can be found in its entirety in
<a href="#sec-schema" class="xref">Section 4</a> of this document.<a href="#section-26.2-2.6" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
</dl>
</section>
<section id="section-26.3">
        <h3 id="name-media-type-registration-for">
<a href="#section-26.3" class="section-number selfRef">26.3. </a><a href="#name-media-type-registration-for" class="section-name selfRef">Media Type Registration for "application/clue_info+xml"</a>
        </h3>
<p id="section-26.3-1">This section registers the "application/clue_info+xml" media type.<a href="#section-26.3-1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-26.3-2">
          <dt id="section-26.3-2.1">To:</dt>
          <dd style="margin-left: 1.5em" id="section-26.3-2.2">ietf-types@iana.org<a href="#section-26.3-2.2" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-26.3-2.3">Subject:</dt>
          <dd style="margin-left: 1.5em" id="section-26.3-2.4">Registration of media type application/clue_info+xml<a href="#section-26.3-2.4" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-26.3-2.5">Type name:</dt>
          <dd style="margin-left: 1.5em" id="section-26.3-2.6">application<a href="#section-26.3-2.6" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-26.3-2.7">Subtype name:</dt>
          <dd style="margin-left: 1.5em" id="section-26.3-2.8">clue_info+xml<a href="#section-26.3-2.8" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-26.3-2.9">Required parameters:</dt>
          <dd style="margin-left: 1.5em" id="section-26.3-2.10">(none)<a href="#section-26.3-2.10" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-26.3-2.11">Optional parameters:</dt>
          <dd style="margin-left: 1.5em" id="section-26.3-2.12">charset  
Same as the charset parameter of "application/xml" as specified in
<span>[<a href="#RFC7303" class="xref">RFC7303</a>], <a href="https://www.rfc-editor.org/rfc/rfc7303#section-3.2" class="relref">Section 3.2</a></span>.<a href="#section-26.3-2.12" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-26.3-2.13">Encoding considerations:</dt>
          <dd style="margin-left: 1.5em" id="section-26.3-2.14">Same as the encoding considerations of
"application/xml" as specified in <span>[<a href="#RFC7303" class="xref">RFC7303</a>], <a href="https://www.rfc-editor.org/rfc/rfc7303#section-3.2" class="relref">Section 3.2</a></span>.<a href="#section-26.3-2.14" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-26.3-2.15">Security considerations:</dt>
          <dd style="margin-left: 1.5em" id="section-26.3-2.16">This content type is designed to carry
 data related to telepresence information.  Some of the data
could be considered private.  This media type does not provide any
protection and thus other mechanisms such as those described in 
<a href="#sec_security" class="xref">Section 25</a>
are required to protect the data.  This media type does
not contain executable content.<a href="#section-26.3-2.16" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-26.3-2.17">Interoperability considerations:</dt>
          <dd style="margin-left: 1.5em" id="section-26.3-2.18">None.<a href="#section-26.3-2.18" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-26.3-2.19">Published specification:</dt>
          <dd style="margin-left: 1.5em" id="section-26.3-2.20">RFC 8846<a href="#section-26.3-2.20" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-26.3-2.21">Applications that use this media type:</dt>
          <dd style="margin-left: 1.5em" id="section-26.3-2.22">CLUE-capable telepresence
systems.<a href="#section-26.3-2.22" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-26.3-2.23">Additional Information:</dt>
          <dd style="margin-left: 1.5em" id="section-26.3-2.24">
            <p id="section-26.3-2.24.1"><br></p>
<span class="break"></span><dl class="dlParallel dlCompact" id="section-26.3-2.24.2">
              <dt id="section-26.3-2.24.2.1">Magic Number(s):</dt>
              <dd style="margin-left: 1.5em" id="section-26.3-2.24.2.2">none<a href="#section-26.3-2.24.2.2" class="pilcrow">¶</a>
</dd>
              <dd class="break"></dd>
<dt id="section-26.3-2.24.2.3">File extension(s):</dt>
              <dd style="margin-left: 1.5em" id="section-26.3-2.24.2.4">.clue<a href="#section-26.3-2.24.2.4" class="pilcrow">¶</a>
</dd>
              <dd class="break"></dd>
<dt id="section-26.3-2.24.2.5">Macintosh File Type Code(s):</dt>
              <dd style="margin-left: 1.5em" id="section-26.3-2.24.2.6">TEXT<a href="#section-26.3-2.24.2.6" class="pilcrow">¶</a>
</dd>
            <dd class="break"></dd>
</dl>
</dd>
          <dd class="break"></dd>
<dt id="section-26.3-2.25">Person &amp; email address to contact for further
 information:</dt>
          <dd style="margin-left: 1.5em" id="section-26.3-2.26">Roberta Presta (roberta.presta@unina.it).<a href="#section-26.3-2.26" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-26.3-2.27">Intended usage:</dt>
          <dd style="margin-left: 1.5em" id="section-26.3-2.28">LIMITED USE<a href="#section-26.3-2.28" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-26.3-2.29">Author/Change controller:</dt>
          <dd style="margin-left: 1.5em" id="section-26.3-2.30">The IETF<a href="#section-26.3-2.30" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-26.3-2.31">Other information:</dt>
          <dd style="margin-left: 1.5em" id="section-26.3-2.32">This media type is a specialization of 
"application/xml" <span>[<a href="#RFC7303" class="xref">RFC7303</a>]</span>, and many of the considerations
described there also apply to "application/clue_info+xml".<a href="#section-26.3-2.32" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
</dl>
</section>
<section id="section-26.4">
        <h3 id="name-registry-for-acceptable-vie">
<a href="#section-26.4" class="section-number selfRef">26.4. </a><a href="#name-registry-for-acceptable-vie" class="section-name selfRef">Registry for Acceptable &lt;view&gt; Values</a>
        </h3>
<p id="section-26.4-1">
IANA has created a registry of acceptable values for the 
&lt;view&gt; tag as defined in <a href="#sec-view" class="xref">Section 11.18</a>. 
The initial values for this registry are "room", "table", "lectern", 
"individual", and "audience".<a href="#section-26.4-1" class="pilcrow">¶</a></p>
<p id="section-26.4-2">

New values are assigned by Expert Review per <span>[<a href="#RFC8126" class="xref">RFC8126</a>]</span>.
This reviewer will ensure that the requested registry entry conforms to 
the prescribed formatting.<a href="#section-26.4-2" class="pilcrow">¶</a></p>
</section>
<section id="section-26.5">
        <h3 id="name-registry-for-acceptable-pre">
<a href="#section-26.5" class="section-number selfRef">26.5. </a><a href="#name-registry-for-acceptable-pre" class="section-name selfRef">Registry for Acceptable &lt;presentation&gt; Values</a>
        </h3>
<p id="section-26.5-1">
IANA has created a registry of acceptable values for the 
&lt;presentation&gt; tag as defined in 
<a href="#sec-presentation" class="xref">Section 11.19</a>. 
The initial values for this registry are "slides" and "images".<a href="#section-26.5-1" class="pilcrow">¶</a></p>
<p id="section-26.5-2">
New values are assigned by Expert Review per <span>[<a href="#RFC8126" class="xref">RFC8126</a>]</span>.
This reviewer will ensure that the requested registry entry conforms to 
the prescribed formatting.<a href="#section-26.5-2" class="pilcrow">¶</a></p>
</section>
<section id="section-26.6">
        <h3 id="name-registry-for-acceptable-sen">
<a href="#section-26.6" class="section-number selfRef">26.6. </a><a href="#name-registry-for-acceptable-sen" class="section-name selfRef">Registry for Acceptable &lt;sensitivityPattern&gt; Values</a>
        </h3>
<p id="section-26.6-1">
IANA has created a registry of acceptable values for the 
&lt;sensitivityPattern&gt; tag as defined in 
<a href="#sec-sensitivity-pattern" class="xref">Section 12.1</a>. 
The initial values for this registry are "uni", "shotgun", "omni",
"figure8", "cardioid", and "hyper-cardioid".<a href="#section-26.6-1" class="pilcrow">¶</a></p>
<p id="section-26.6-2">
New values are assigned by Expert Review per <span>[<a href="#RFC8126" class="xref">RFC8126</a>]</span>.
This reviewer will ensure that the requested registry entry conforms to 
the prescribed formatting.<a href="#section-26.6-2" class="pilcrow">¶</a></p>
</section>
<section id="section-26.7">
        <h3 id="name-registry-for-acceptable-per">
<a href="#section-26.7" class="section-number selfRef">26.7. </a><a href="#name-registry-for-acceptable-per" class="section-name selfRef">Registry for Acceptable &lt;personType&gt; Values</a>
        </h3>
<p id="section-26.7-1">
IANA has created a registry of acceptable values for the 
&lt;personType&gt; tag as defined in 
<a href="#sub-sec-participantType" class="xref">Section 21.1.3</a>. 
The initial values for this registry are "presenter", 
"timekeeper", "attendee", "minute taker", "translator", "chairman", 
"vice-chairman", and "observer".<a href="#section-26.7-1" class="pilcrow">¶</a></p>
<p id="section-26.7-2">
New values are assigned by Expert Review per <span>[<a href="#RFC8126" class="xref">RFC8126</a>]</span>.
This reviewer will ensure that the requested registry entry conforms to 
the prescribed formatting.<a href="#section-26.7-2" class="pilcrow">¶</a></p>
</section>
</section>
<div id="sec-XML-sample">
<section id="section-27">
      <h2 id="name-sample-xml-file">
<a href="#section-27" class="section-number selfRef">27. </a><a href="#name-sample-xml-file" class="section-name selfRef">Sample XML File</a>
      </h2>
<p id="section-27-1">The following XML document represents a schema-compliant example
  of a CLUE telepresence scenario.
  Taking inspiration from the examples described in 
  the framework specification <span>[<a href="#RFC8845" class="xref">RFC8845</a>]</span>,
  the XML representation of an endpoint-style Media 
  Provider's ADVERTISEMENT is provided.<a href="#section-27-1" class="pilcrow">¶</a></p>
<p id="section-27-2">
  There are three cameras, where the central one is also capable of 
  capturing a zoomed-out
  view of the overall telepresence room.
  Besides the three video captures coming from the cameras, 
  the Media Provider makes available a further multicontent capture of 
  the loudest 
  segment of the room, 
  obtained by switching the video source across the three cameras.
  For the sake of simplicity, only one audio capture is advertised for 
  the audio of the whole room.<a href="#section-27-2" class="pilcrow">¶</a></p>
<p id="section-27-3">
  The three cameras are placed in front of three participants 
  (Alice, Bob, and Ciccio),
  whose vCard and conference role details are also provided.<a href="#section-27-3" class="pilcrow">¶</a></p>
<p id="section-27-4">
  Media captures are arranged into four capture scene views:<a href="#section-27-4" class="pilcrow">¶</a></p>
<ol start="1" type="1" class="normal type-1" id="section-27-5">
        <li id="section-27-5.1">(VC0, VC1, VC2) - left, center, and right camera video captures<a href="#section-27-5.1" class="pilcrow">¶</a>
</li>
        <li id="section-27-5.2">(VC3) - video capture associated with loudest room segment<a href="#section-27-5.2" class="pilcrow">¶</a>
</li>
        <li id="section-27-5.3">(VC4) - video capture zoomed-out view of all people in the room<a href="#section-27-5.3" class="pilcrow">¶</a>
</li>
        <li id="section-27-5.4">(AC0) - main audio<a href="#section-27-5.4" class="pilcrow">¶</a>
</li>
      </ol>
<p id="section-27-6">
  There are two encoding groups: (i) EG0, for video encodings, and (ii) 
  EG1, for audio encodings.<a href="#section-27-6" class="pilcrow">¶</a></p>
<p id="section-27-7">As to the simultaneous sets, VC1 and VC4 cannot be transmitted 
    simultaneously
  since they are captured by the same device, i.e., the central camera
   (VC4 is a zoomed-out view while 
  VC1 is a focused view of the front participant). 
  On the other hand, VC3 and VC4 cannot be simultaneous either, 
  since VC3, the loudest segment of the room, 
  might be at a certain point in time focusing on the central
  part of the room, i.e., the same as VC1.
  The simultaneous sets would then be the following:<a href="#section-27-7" class="pilcrow">¶</a></p>
<ul class="normal ulEmpty">
<li class="normal ulEmpty" id="section-27-8.1">
          <span class="break"></span><dl class="dlParallel" id="section-27-8.1.1">
            <dt id="section-27-8.1.1.1">SS1:</dt>
            <dd style="margin-left: 1.5em" id="section-27-8.1.1.2">made by VC3 and all the captures in the first capture scene view (VC0,VC1,and VC2)<a href="#section-27-8.1.1.2" class="pilcrow">¶</a>
</dd>
            <dd class="break"></dd>
<dt id="section-27-8.1.1.3">SS2:</dt>
            <dd style="margin-left: 1.5em" id="section-27-8.1.1.4">made by  VC0, VC2, and VC4<a href="#section-27-8.1.1.4" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
</dl>
</li>
      </ul>
<div id="section-27-9">
<pre class="sourcecode lang-xml">
&lt;?xml version="1.0" encoding="UTF-8" standalone="yes"?&gt;
&lt;clueInfo xmlns="urn:ietf:params:xml:ns:clue-info"
          xmlns:ns2="urn:ietf:params:xml:ns:vcard-4.0"
          clueInfoID="NapoliRoom"&gt;
    &lt;mediaCaptures&gt;
        &lt;mediaCapture
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:type="audioCaptureType" captureID="AC0"
              mediaType="audio"&gt;
            &lt;captureSceneIDREF&gt;CS1&lt;/captureSceneIDREF&gt;
            &lt;spatialInformation&gt;
                &lt;captureOrigin&gt;
                        &lt;capturePoint&gt;
                        &lt;x&gt;0.0&lt;/x&gt;
                        &lt;y&gt;0.0&lt;/y&gt;
                        &lt;z&gt;10.0&lt;/z&gt;
                    &lt;/capturePoint&gt;
                    &lt;lineOfCapturePoint&gt;
                        &lt;x&gt;0.0&lt;/x&gt;
                        &lt;y&gt;1.0&lt;/y&gt;
                        &lt;z&gt;10.0&lt;/z&gt;
                    &lt;/lineOfCapturePoint&gt;
                &lt;/captureOrigin&gt;
            &lt;/spatialInformation&gt;
            &lt;individual&gt;true&lt;/individual&gt;
            &lt;encGroupIDREF&gt;EG1&lt;/encGroupIDREF&gt;
            &lt;description lang="en"&gt;main audio from the room
            &lt;/description&gt;
            &lt;priority&gt;1&lt;/priority&gt;
            &lt;lang&gt;it&lt;/lang&gt;
            &lt;mobility&gt;static&lt;/mobility&gt;
            &lt;view&gt;room&lt;/view&gt;
            &lt;capturedPeople&gt;
                &lt;personIDREF&gt;alice&lt;/personIDREF&gt;
                &lt;personIDREF&gt;bob&lt;/personIDREF&gt;
                &lt;personIDREF&gt;ciccio&lt;/personIDREF&gt;
            &lt;/capturedPeople&gt;
        &lt;/mediaCapture&gt;
        &lt;mediaCapture
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:type="videoCaptureType" captureID="VC0"
              mediaType="video"&gt;
            &lt;captureSceneIDREF&gt;CS1&lt;/captureSceneIDREF&gt;
            &lt;spatialInformation&gt;
                &lt;captureOrigin&gt;
                        &lt;capturePoint&gt;
                        &lt;x&gt;-2.0&lt;/x&gt;
                        &lt;y&gt;0.0&lt;/y&gt;
                        &lt;z&gt;10.0&lt;/z&gt;
                    &lt;/capturePoint&gt;
                &lt;/captureOrigin&gt;
                &lt;captureArea&gt;
                        &lt;bottomLeft&gt;
                                &lt;x&gt;-3.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;9.0&lt;/z&gt;
                        &lt;/bottomLeft&gt;
                        &lt;bottomRight&gt;
                                &lt;x&gt;-1.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;9.0&lt;/z&gt;
                        &lt;/bottomRight&gt;
                        &lt;topLeft&gt;
                                &lt;x&gt;-3.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;11.0&lt;/z&gt;
                        &lt;/topLeft&gt;
                        &lt;topRight&gt;
                                &lt;x&gt;-1.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;11.0&lt;/z&gt;
                        &lt;/topRight&gt;
                &lt;/captureArea&gt;
            &lt;/spatialInformation&gt;
            &lt;individual&gt;true&lt;/individual&gt;
            &lt;encGroupIDREF&gt;EG0&lt;/encGroupIDREF&gt;
            &lt;description lang="en"&gt;left camera video capture
            &lt;/description&gt;
            &lt;priority&gt;1&lt;/priority&gt;
            &lt;lang&gt;it&lt;/lang&gt;
            &lt;mobility&gt;static&lt;/mobility&gt;
            &lt;view&gt;individual&lt;/view&gt;
            &lt;capturedPeople&gt;
                &lt;personIDREF&gt;ciccio&lt;/personIDREF&gt;
            &lt;/capturedPeople&gt;
        &lt;/mediaCapture&gt;
        &lt;mediaCapture
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:type="videoCaptureType" captureID="VC1"
              mediaType="video"&gt;
            &lt;captureSceneIDREF&gt;CS1&lt;/captureSceneIDREF&gt;
            &lt;spatialInformation&gt;
                &lt;captureOrigin&gt;
                        &lt;capturePoint&gt;
                        &lt;x&gt;0.0&lt;/x&gt;
                        &lt;y&gt;0.0&lt;/y&gt;
                        &lt;z&gt;10.0&lt;/z&gt;
                    &lt;/capturePoint&gt;
                &lt;/captureOrigin&gt;
                &lt;captureArea&gt;
                        &lt;bottomLeft&gt;
                                &lt;x&gt;-1.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;9.0&lt;/z&gt;
                        &lt;/bottomLeft&gt;
                        &lt;bottomRight&gt;
                                &lt;x&gt;1.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;9.0&lt;/z&gt;
                        &lt;/bottomRight&gt;
                        &lt;topLeft&gt;
                                &lt;x&gt;-1.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;11.0&lt;/z&gt;
                        &lt;/topLeft&gt;
                        &lt;topRight&gt;
                                &lt;x&gt;1.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;11.0&lt;/z&gt;
                        &lt;/topRight&gt;
                &lt;/captureArea&gt;
            &lt;/spatialInformation&gt;
            &lt;individual&gt;true&lt;/individual&gt;
            &lt;encGroupIDREF&gt;EG0&lt;/encGroupIDREF&gt;
            &lt;description lang="en"&gt;central camera video capture
            &lt;/description&gt;
            &lt;priority&gt;1&lt;/priority&gt;
            &lt;lang&gt;it&lt;/lang&gt;
            &lt;mobility&gt;static&lt;/mobility&gt;
            &lt;view&gt;individual&lt;/view&gt;
            &lt;capturedPeople&gt;
                &lt;personIDREF&gt;alice&lt;/personIDREF&gt;
            &lt;/capturedPeople&gt;
        &lt;/mediaCapture&gt;
        &lt;mediaCapture
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:type="videoCaptureType" captureID="VC2"
              mediaType="video"&gt;
            &lt;captureSceneIDREF&gt;CS1&lt;/captureSceneIDREF&gt;
            &lt;spatialInformation&gt;
                &lt;captureOrigin&gt;
                        &lt;capturePoint&gt;
                        &lt;x&gt;2.0&lt;/x&gt;
                        &lt;y&gt;0.0&lt;/y&gt;
                        &lt;z&gt;10.0&lt;/z&gt;
                    &lt;/capturePoint&gt;
                &lt;/captureOrigin&gt;
                &lt;captureArea&gt;
                        &lt;bottomLeft&gt;
                                &lt;x&gt;1.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;9.0&lt;/z&gt;
                        &lt;/bottomLeft&gt;
                        &lt;bottomRight&gt;
                                &lt;x&gt;3.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;9.0&lt;/z&gt;
                        &lt;/bottomRight&gt;
                        &lt;topLeft&gt;
                                &lt;x&gt;1.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;11.0&lt;/z&gt;
                        &lt;/topLeft&gt;
                        &lt;topRight&gt;
                                &lt;x&gt;3.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;11.0&lt;/z&gt;
                        &lt;/topRight&gt;
                &lt;/captureArea&gt;
            &lt;/spatialInformation&gt;
            &lt;individual&gt;true&lt;/individual&gt;
            &lt;encGroupIDREF&gt;EG0&lt;/encGroupIDREF&gt;
            &lt;description lang="en"&gt;right camera video capture
            &lt;/description&gt;
            &lt;priority&gt;1&lt;/priority&gt;
            &lt;lang&gt;it&lt;/lang&gt;
            &lt;mobility&gt;static&lt;/mobility&gt;
            &lt;view&gt;individual&lt;/view&gt;
            &lt;capturedPeople&gt;
                &lt;personIDREF&gt;bob&lt;/personIDREF&gt;
            &lt;/capturedPeople&gt;
        &lt;/mediaCapture&gt;
        &lt;mediaCapture
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:type="videoCaptureType" captureID="VC3"
              mediaType="video"&gt;
            &lt;captureSceneIDREF&gt;CS1&lt;/captureSceneIDREF&gt;
            &lt;spatialInformation&gt;
                &lt;captureArea&gt;
                        &lt;bottomLeft&gt;
                                &lt;x&gt;-3.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;9.0&lt;/z&gt;
                        &lt;/bottomLeft&gt;
                        &lt;bottomRight&gt;
                                &lt;x&gt;3.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;9.0&lt;/z&gt;
                        &lt;/bottomRight&gt;
                        &lt;topLeft&gt;
                                &lt;x&gt;-3.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;11.0&lt;/z&gt;
                        &lt;/topLeft&gt;
                        &lt;topRight&gt;
                                &lt;x&gt;3.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;11.0&lt;/z&gt;
                        &lt;/topRight&gt;
                &lt;/captureArea&gt;
            &lt;/spatialInformation&gt;
            &lt;content&gt;
                &lt;sceneViewIDREF&gt;SE1&lt;/sceneViewIDREF&gt;
            &lt;/content&gt;
            &lt;policy&gt;SoundLevel:0&lt;/policy&gt;
            &lt;encGroupIDREF&gt;EG0&lt;/encGroupIDREF&gt;
            &lt;description lang="en"&gt;loudest room segment&lt;/description&gt;
            &lt;priority&gt;2&lt;/priority&gt;
            &lt;lang&gt;it&lt;/lang&gt;
            &lt;mobility&gt;static&lt;/mobility&gt;
            &lt;view&gt;individual&lt;/view&gt;
        &lt;/mediaCapture&gt;
        &lt;mediaCapture
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:type="videoCaptureType" captureID="VC4"
              mediaType="video"&gt;
            &lt;captureSceneIDREF&gt;CS1&lt;/captureSceneIDREF&gt;
            &lt;spatialInformation&gt;
                &lt;captureOrigin&gt;
                        &lt;capturePoint&gt;
                        &lt;x&gt;0.0&lt;/x&gt;
                        &lt;y&gt;0.0&lt;/y&gt;
                        &lt;z&gt;10.0&lt;/z&gt;
                    &lt;/capturePoint&gt;
                &lt;/captureOrigin&gt;
                &lt;captureArea&gt;
                        &lt;bottomLeft&gt;
                                &lt;x&gt;-3.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;7.0&lt;/z&gt;
                        &lt;/bottomLeft&gt;
                        &lt;bottomRight&gt;
                                &lt;x&gt;3.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;7.0&lt;/z&gt;
                        &lt;/bottomRight&gt;
                        &lt;topLeft&gt;
                                &lt;x&gt;-3.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;13.0&lt;/z&gt;
                        &lt;/topLeft&gt;
                        &lt;topRight&gt;
                                &lt;x&gt;3.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;13.0&lt;/z&gt;
                        &lt;/topRight&gt;
                &lt;/captureArea&gt;
            &lt;/spatialInformation&gt;
            &lt;individual&gt;true&lt;/individual&gt;
            &lt;encGroupIDREF&gt;EG0&lt;/encGroupIDREF&gt;
            &lt;description lang="en"&gt;zoomed-out view of all people
            in the room&lt;/description&gt;
            &lt;priority&gt;2&lt;/priority&gt;
            &lt;lang&gt;it&lt;/lang&gt;
            &lt;mobility&gt;static&lt;/mobility&gt;
            &lt;view&gt;room&lt;/view&gt;
            &lt;capturedPeople&gt;
                &lt;personIDREF&gt;alice&lt;/personIDREF&gt;
                &lt;personIDREF&gt;bob&lt;/personIDREF&gt;
                &lt;personIDREF&gt;ciccio&lt;/personIDREF&gt;
            &lt;/capturedPeople&gt;
        &lt;/mediaCapture&gt;
    &lt;/mediaCaptures&gt;
    &lt;encodingGroups&gt;
        &lt;encodingGroup encodingGroupID="EG0"&gt;
            &lt;maxGroupBandwidth&gt;600000&lt;/maxGroupBandwidth&gt;
            &lt;encodingIDList&gt;
                &lt;encodingID&gt;ENC1&lt;/encodingID&gt;
                &lt;encodingID&gt;ENC2&lt;/encodingID&gt;
                &lt;encodingID&gt;ENC3&lt;/encodingID&gt;
            &lt;/encodingIDList&gt;
        &lt;/encodingGroup&gt;
        &lt;encodingGroup encodingGroupID="EG1"&gt;
            &lt;maxGroupBandwidth&gt;300000&lt;/maxGroupBandwidth&gt;
            &lt;encodingIDList&gt;
                &lt;encodingID&gt;ENC4&lt;/encodingID&gt;
                &lt;encodingID&gt;ENC5&lt;/encodingID&gt;
            &lt;/encodingIDList&gt;
        &lt;/encodingGroup&gt;
    &lt;/encodingGroups&gt;
    &lt;captureScenes&gt;
        &lt;captureScene scale="unknown" sceneID="CS1"&gt;
            &lt;sceneViews&gt;
                &lt;sceneView sceneViewID="SE1"&gt;
                    &lt;mediaCaptureIDs&gt;
                        &lt;mediaCaptureIDREF&gt;VC0&lt;/mediaCaptureIDREF&gt;
                        &lt;mediaCaptureIDREF&gt;VC1&lt;/mediaCaptureIDREF&gt;
                        &lt;mediaCaptureIDREF&gt;VC2&lt;/mediaCaptureIDREF&gt;
                    &lt;/mediaCaptureIDs&gt;
                &lt;/sceneView&gt;
                &lt;sceneView sceneViewID="SE2"&gt;
                    &lt;mediaCaptureIDs&gt;
                        &lt;mediaCaptureIDREF&gt;VC3&lt;/mediaCaptureIDREF&gt;
                    &lt;/mediaCaptureIDs&gt;
                &lt;/sceneView&gt;
                &lt;sceneView sceneViewID="SE3"&gt;
                    &lt;mediaCaptureIDs&gt;
                        &lt;mediaCaptureIDREF&gt;VC4&lt;/mediaCaptureIDREF&gt;
                    &lt;/mediaCaptureIDs&gt;
                &lt;/sceneView&gt;
                &lt;sceneView sceneViewID="SE4"&gt;
                    &lt;mediaCaptureIDs&gt;
                        &lt;mediaCaptureIDREF&gt;AC0&lt;/mediaCaptureIDREF&gt;
                    &lt;/mediaCaptureIDs&gt;
                &lt;/sceneView&gt;
            &lt;/sceneViews&gt;
        &lt;/captureScene&gt;
    &lt;/captureScenes&gt;
    &lt;simultaneousSets&gt;
        &lt;simultaneousSet setID="SS1"&gt;
            &lt;mediaCaptureIDREF&gt;VC3&lt;/mediaCaptureIDREF&gt;
            &lt;sceneViewIDREF&gt;SE1&lt;/sceneViewIDREF&gt;
        &lt;/simultaneousSet&gt;
        &lt;simultaneousSet setID="SS2"&gt;
            &lt;mediaCaptureIDREF&gt;VC0&lt;/mediaCaptureIDREF&gt;
            &lt;mediaCaptureIDREF&gt;VC2&lt;/mediaCaptureIDREF&gt;
            &lt;mediaCaptureIDREF&gt;VC4&lt;/mediaCaptureIDREF&gt;
        &lt;/simultaneousSet&gt;
    &lt;/simultaneousSets&gt;
    &lt;people&gt;
        &lt;person personID="bob"&gt;
            &lt;personInfo&gt;
                &lt;ns2:fn&gt;
                    &lt;ns2:text&gt;Bob&lt;/ns2:text&gt;
                &lt;/ns2:fn&gt;
            &lt;/personInfo&gt;
            &lt;personType&gt;minute taker&lt;/personType&gt;
        &lt;/person&gt;
        &lt;person personID="alice"&gt;
            &lt;personInfo&gt;
                &lt;ns2:fn&gt;
                    &lt;ns2:text&gt;Alice&lt;/ns2:text&gt;
                &lt;/ns2:fn&gt;
            &lt;/personInfo&gt;
            &lt;personType&gt;presenter&lt;/personType&gt;
        &lt;/person&gt;
        &lt;person personID="ciccio"&gt;
            &lt;personInfo&gt;
                &lt;ns2:fn&gt;
                    &lt;ns2:text&gt;Ciccio&lt;/ns2:text&gt;
                &lt;/ns2:fn&gt;
            &lt;/personInfo&gt;
            &lt;personType&gt;chairman&lt;/personType&gt;
            &lt;personType&gt;timekeeper&lt;/personType&gt;
        &lt;/person&gt;
    &lt;/people&gt;
&lt;/clueInfo&gt;
</pre><a href="#section-27-9" class="pilcrow">¶</a>
</div>
</section>
</div>
<div id="sec-MCC-sample">
<section id="section-28">
      <h2 id="name-mcc-example">
<a href="#section-28" class="section-number selfRef">28. </a><a href="#name-mcc-example" class="section-name selfRef">MCC Example</a>
      </h2>
<p id="section-28-1">

Enhancing the scenario presented in the previous example, the Media 
Provider is able to advertise a composed capture VC7 made by a big 
picture representing the current speaker (VC3) and two 
picture-in-picture boxes representing the previous speakers (the 
previous one, VC5, and the oldest one, VC6).
The provider does not want to instantiate and send VC5 and VC6, so it 
does not associate any encoding group with them. Their XML 
representations are provided for enabling the description of VC7.<a href="#section-28-1" class="pilcrow">¶</a></p>
<p id="section-28-2">A possible description for that scenario could be the following:<a href="#section-28-2" class="pilcrow">¶</a></p>
<div id="section-28-3">
<pre class="sourcecode lang-xml">
&lt;?xml version="1.0" encoding="UTF-8" standalone="yes"?&gt;
&lt;clueInfo xmlns="urn:ietf:params:xml:ns:clue-info"
xmlns:ns2="urn:ietf:params:xml:ns:vcard-4.0" clueInfoID="NapoliRoom"&gt;
    &lt;mediaCaptures&gt;
        &lt;mediaCapture
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:type="audioCaptureType" captureID="AC0"
              mediaType="audio"&gt;
            &lt;captureSceneIDREF&gt;CS1&lt;/captureSceneIDREF&gt;
            &lt;spatialInformation&gt;
                &lt;captureOrigin&gt;
                        &lt;capturePoint&gt;
                        &lt;x&gt;0.0&lt;/x&gt;
                        &lt;y&gt;0.0&lt;/y&gt;
                        &lt;z&gt;10.0&lt;/z&gt;
                    &lt;/capturePoint&gt;
                    &lt;lineOfCapturePoint&gt;
                        &lt;x&gt;0.0&lt;/x&gt;
                        &lt;y&gt;1.0&lt;/y&gt;
                        &lt;z&gt;10.0&lt;/z&gt;
                    &lt;/lineOfCapturePoint&gt;
                &lt;/captureOrigin&gt;
            &lt;/spatialInformation&gt;
            &lt;individual&gt;true&lt;/individual&gt;
            &lt;encGroupIDREF&gt;EG1&lt;/encGroupIDREF&gt;
            &lt;description lang="en"&gt;main audio from the room
            &lt;/description&gt;
            &lt;priority&gt;1&lt;/priority&gt;
            &lt;lang&gt;it&lt;/lang&gt;
            &lt;mobility&gt;static&lt;/mobility&gt;
            &lt;view&gt;room&lt;/view&gt;
            &lt;capturedPeople&gt;
                &lt;personIDREF&gt;alice&lt;/personIDREF&gt;
                &lt;personIDREF&gt;bob&lt;/personIDREF&gt;
                &lt;personIDREF&gt;ciccio&lt;/personIDREF&gt;
            &lt;/capturedPeople&gt;
        &lt;/mediaCapture&gt;
        &lt;mediaCapture
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:type="videoCaptureType" captureID="VC0"
              mediaType="video"&gt;
            &lt;captureSceneIDREF&gt;CS1&lt;/captureSceneIDREF&gt;
            &lt;spatialInformation&gt;
                &lt;captureOrigin&gt;
                        &lt;capturePoint&gt;
                        &lt;x&gt;0.5&lt;/x&gt;
                        &lt;y&gt;1.0&lt;/y&gt;
                        &lt;z&gt;0.5&lt;/z&gt;
                    &lt;/capturePoint&gt;
                    &lt;lineOfCapturePoint&gt;
                        &lt;x&gt;0.5&lt;/x&gt;
                        &lt;y&gt;0.0&lt;/y&gt;
                        &lt;z&gt;0.5&lt;/z&gt;
                    &lt;/lineOfCapturePoint&gt;
                &lt;/captureOrigin&gt;
            &lt;/spatialInformation&gt;
            &lt;individual&gt;true&lt;/individual&gt;
            &lt;encGroupIDREF&gt;EG0&lt;/encGroupIDREF&gt;
            &lt;description lang="en"&gt;left camera video capture
            &lt;/description&gt;
            &lt;priority&gt;1&lt;/priority&gt;
            &lt;lang&gt;it&lt;/lang&gt;
            &lt;mobility&gt;static&lt;/mobility&gt;
            &lt;view&gt;individual&lt;/view&gt;
            &lt;capturedPeople&gt;
                &lt;personIDREF&gt;ciccio&lt;/personIDREF&gt;
            &lt;/capturedPeople&gt;
        &lt;/mediaCapture&gt;
        &lt;mediaCapture
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:type="videoCaptureType" captureID="VC1"
              mediaType="video"&gt;
            &lt;captureSceneIDREF&gt;CS1&lt;/captureSceneIDREF&gt;
            &lt;spatialInformation&gt;
                &lt;captureOrigin&gt;
                        &lt;capturePoint&gt;
                        &lt;x&gt;0.0&lt;/x&gt;
                        &lt;y&gt;0.0&lt;/y&gt;
                        &lt;z&gt;10.0&lt;/z&gt;
                    &lt;/capturePoint&gt;
                &lt;/captureOrigin&gt;
                &lt;captureArea&gt;
                        &lt;bottomLeft&gt;
                                &lt;x&gt;-1.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;9.0&lt;/z&gt;
                        &lt;/bottomLeft&gt;
                        &lt;bottomRight&gt;
                                &lt;x&gt;1.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;9.0&lt;/z&gt;
                        &lt;/bottomRight&gt;
                        &lt;topLeft&gt;
                                &lt;x&gt;-1.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;11.0&lt;/z&gt;
                        &lt;/topLeft&gt;
                        &lt;topRight&gt;
                                &lt;x&gt;1.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;11.0&lt;/z&gt;
                        &lt;/topRight&gt;
                &lt;/captureArea&gt;
            &lt;/spatialInformation&gt;
            &lt;individual&gt;true&lt;/individual&gt;
            &lt;encGroupIDREF&gt;EG0&lt;/encGroupIDREF&gt;
            &lt;description lang="en"&gt;central camera video capture
            &lt;/description&gt;
            &lt;priority&gt;1&lt;/priority&gt;
            &lt;lang&gt;it&lt;/lang&gt;
            &lt;mobility&gt;static&lt;/mobility&gt;
            &lt;view&gt;individual&lt;/view&gt;
            &lt;capturedPeople&gt;
                &lt;personIDREF&gt;alice&lt;/personIDREF&gt;
            &lt;/capturedPeople&gt;
        &lt;/mediaCapture&gt;
        &lt;mediaCapture
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:type="videoCaptureType" captureID="VC2"
              mediaType="video"&gt;
            &lt;captureSceneIDREF&gt;CS1&lt;/captureSceneIDREF&gt;
            &lt;spatialInformation&gt;
                &lt;captureOrigin&gt;
                        &lt;capturePoint&gt;
                        &lt;x&gt;2.0&lt;/x&gt;
                        &lt;y&gt;0.0&lt;/y&gt;
                        &lt;z&gt;10.0&lt;/z&gt;
                    &lt;/capturePoint&gt;
                &lt;/captureOrigin&gt;
                &lt;captureArea&gt;
                        &lt;bottomLeft&gt;
                                &lt;x&gt;1.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;9.0&lt;/z&gt;
                        &lt;/bottomLeft&gt;
                        &lt;bottomRight&gt;
                                &lt;x&gt;3.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;9.0&lt;/z&gt;
                        &lt;/bottomRight&gt;
                        &lt;topLeft&gt;
                                &lt;x&gt;1.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;11.0&lt;/z&gt;
                        &lt;/topLeft&gt;
                        &lt;topRight&gt;
                                &lt;x&gt;3.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;11.0&lt;/z&gt;
                        &lt;/topRight&gt;
                &lt;/captureArea&gt;
            &lt;/spatialInformation&gt;
            &lt;individual&gt;true&lt;/individual&gt;
            &lt;encGroupIDREF&gt;EG0&lt;/encGroupIDREF&gt;
            &lt;description lang="en"&gt;right camera video capture
            &lt;/description&gt;
            &lt;priority&gt;1&lt;/priority&gt;
            &lt;lang&gt;it&lt;/lang&gt;
            &lt;mobility&gt;static&lt;/mobility&gt;
            &lt;view&gt;individual&lt;/view&gt;
            &lt;capturedPeople&gt;
                &lt;personIDREF&gt;bob&lt;/personIDREF&gt;
            &lt;/capturedPeople&gt;
        &lt;/mediaCapture&gt;
        &lt;mediaCapture
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:type="videoCaptureType" captureID="VC3"
              mediaType="video"&gt;
            &lt;captureSceneIDREF&gt;CS1&lt;/captureSceneIDREF&gt;
            &lt;spatialInformation&gt;
                &lt;captureArea&gt;
                        &lt;bottomLeft&gt;
                                &lt;x&gt;-3.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;9.0&lt;/z&gt;
                        &lt;/bottomLeft&gt;
                        &lt;bottomRight&gt;
                                &lt;x&gt;3.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;9.0&lt;/z&gt;
                        &lt;/bottomRight&gt;
                        &lt;topLeft&gt;
                                &lt;x&gt;-3.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;11.0&lt;/z&gt;
                        &lt;/topLeft&gt;
                        &lt;topRight&gt;
                                &lt;x&gt;3.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;11.0&lt;/z&gt;
                        &lt;/topRight&gt;
                &lt;/captureArea&gt;
            &lt;/spatialInformation&gt;
            &lt;content&gt;
                &lt;sceneViewIDREF&gt;SE1&lt;/sceneViewIDREF&gt;
            &lt;/content&gt;
            &lt;policy&gt;SoundLevel:0&lt;/policy&gt;
            &lt;encGroupIDREF&gt;EG0&lt;/encGroupIDREF&gt;
            &lt;description lang="en"&gt;loudest room segment&lt;/description&gt;
            &lt;priority&gt;2&lt;/priority&gt;
            &lt;lang&gt;it&lt;/lang&gt;
            &lt;mobility&gt;static&lt;/mobility&gt;
            &lt;view&gt;individual&lt;/view&gt;
        &lt;/mediaCapture&gt;
        &lt;mediaCapture
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:type="videoCaptureType" captureID="VC4"
              mediaType="video"&gt;
            &lt;captureSceneIDREF&gt;CS1&lt;/captureSceneIDREF&gt;
            &lt;spatialInformation&gt;
                &lt;captureOrigin&gt;
                        &lt;capturePoint&gt;
                        &lt;x&gt;0.0&lt;/x&gt;
                        &lt;y&gt;0.0&lt;/y&gt;
                        &lt;z&gt;10.0&lt;/z&gt;
                    &lt;/capturePoint&gt;
                &lt;/captureOrigin&gt;
                &lt;captureArea&gt;
                        &lt;bottomLeft&gt;
                                &lt;x&gt;-3.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;7.0&lt;/z&gt;
                        &lt;/bottomLeft&gt;
                        &lt;bottomRight&gt;
                                &lt;x&gt;3.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;7.0&lt;/z&gt;
                        &lt;/bottomRight&gt;
                        &lt;topLeft&gt;
                                &lt;x&gt;-3.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;13.0&lt;/z&gt;
                        &lt;/topLeft&gt;
                        &lt;topRight&gt;
                                &lt;x&gt;3.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;13.0&lt;/z&gt;
                        &lt;/topRight&gt;
                &lt;/captureArea&gt;
            &lt;/spatialInformation&gt;
            &lt;individual&gt;true&lt;/individual&gt;
            &lt;encGroupIDREF&gt;EG0&lt;/encGroupIDREF&gt;
            &lt;description lang="en"&gt;
              zoomed-out view of all people in the room
            &lt;/description&gt;
            &lt;priority&gt;2&lt;/priority&gt;
            &lt;lang&gt;it&lt;/lang&gt;
            &lt;mobility&gt;static&lt;/mobility&gt;
            &lt;view&gt;room&lt;/view&gt;
            &lt;capturedPeople&gt;
                &lt;personIDREF&gt;alice&lt;/personIDREF&gt;
                &lt;personIDREF&gt;bob&lt;/personIDREF&gt;
                &lt;personIDREF&gt;ciccio&lt;/personIDREF&gt;
            &lt;/capturedPeople&gt;
        &lt;/mediaCapture&gt;
        &lt;mediaCapture
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:type="videoCaptureType" captureID="VC5"
              mediaType="video"&gt;
            &lt;captureSceneIDREF&gt;CS1&lt;/captureSceneIDREF&gt;
            &lt;spatialInformation&gt;
                &lt;captureArea&gt;
                        &lt;bottomLeft&gt;
                                &lt;x&gt;-3.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;9.0&lt;/z&gt;
                        &lt;/bottomLeft&gt;
                        &lt;bottomRight&gt;
                                &lt;x&gt;3.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;9.0&lt;/z&gt;
                        &lt;/bottomRight&gt;
                        &lt;topLeft&gt;
                                &lt;x&gt;-3.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;11.0&lt;/z&gt;
                        &lt;/topLeft&gt;
                        &lt;topRight&gt;
                                &lt;x&gt;3.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;11.0&lt;/z&gt;
                        &lt;/topRight&gt;
                &lt;/captureArea&gt;
            &lt;/spatialInformation&gt;
            &lt;content&gt;
                &lt;sceneViewIDREF&gt;SE1&lt;/sceneViewIDREF&gt;
            &lt;/content&gt;
            &lt;policy&gt;SoundLevel:1&lt;/policy&gt;
            &lt;description lang="en"&gt;previous loudest room segment
            per the most recent iteration of the sound level
            detection algorithm
            &lt;/description&gt;
            &lt;lang&gt;it&lt;/lang&gt;
            &lt;mobility&gt;static&lt;/mobility&gt;
            &lt;view&gt;individual&lt;/view&gt;
        &lt;/mediaCapture&gt;
        &lt;mediaCapture
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:type="videoCaptureType" captureID="VC6"
              mediaType="video"&gt;
            &lt;captureSceneIDREF&gt;CS1&lt;/captureSceneIDREF&gt;
            &lt;spatialInformation&gt;
                &lt;captureArea&gt;
                        &lt;bottomLeft&gt;
                                &lt;x&gt;-3.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;9.0&lt;/z&gt;
                        &lt;/bottomLeft&gt;
                        &lt;bottomRight&gt;
                                &lt;x&gt;3.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;9.0&lt;/z&gt;
                        &lt;/bottomRight&gt;
                        &lt;topLeft&gt;
                                &lt;x&gt;-3.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;11.0&lt;/z&gt;
                        &lt;/topLeft&gt;
                        &lt;topRight&gt;
                                &lt;x&gt;3.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;11.0&lt;/z&gt;
                        &lt;/topRight&gt;
                &lt;/captureArea&gt;
            &lt;/spatialInformation&gt;
            &lt;content&gt;
                &lt;sceneViewIDREF&gt;SE1&lt;/sceneViewIDREF&gt;
            &lt;/content&gt;
            &lt;policy&gt;SoundLevel:2&lt;/policy&gt;
            &lt;description lang="en"&gt;previous loudest room segment
            per the second most recent iteration of the sound
            level detection algorithm
            &lt;/description&gt;
            &lt;lang&gt;it&lt;/lang&gt;
            &lt;mobility&gt;static&lt;/mobility&gt;
            &lt;view&gt;individual&lt;/view&gt;
        &lt;/mediaCapture&gt;
        &lt;mediaCapture
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:type="videoCaptureType" captureID="VC7"
              mediaType="video"&gt;
            &lt;captureSceneIDREF&gt;CS1&lt;/captureSceneIDREF&gt;
            &lt;spatialInformation&gt;
                &lt;captureArea&gt;
                        &lt;bottomLeft&gt;
                                &lt;x&gt;-3.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;9.0&lt;/z&gt;
                        &lt;/bottomLeft&gt;
                        &lt;bottomRight&gt;
                                &lt;x&gt;3.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;9.0&lt;/z&gt;
                        &lt;/bottomRight&gt;
                        &lt;topLeft&gt;
                                &lt;x&gt;-3.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;11.0&lt;/z&gt;
                        &lt;/topLeft&gt;
                        &lt;topRight&gt;
                                &lt;x&gt;3.0&lt;/x&gt;
                        &lt;y&gt;20.0&lt;/y&gt;
                        &lt;z&gt;11.0&lt;/z&gt;
                        &lt;/topRight&gt;
                &lt;/captureArea&gt;
            &lt;/spatialInformation&gt;
            &lt;content&gt;
                &lt;mediaCaptureIDREF&gt;VC3&lt;/mediaCaptureIDREF&gt;
                &lt;mediaCaptureIDREF&gt;VC5&lt;/mediaCaptureIDREF&gt;
                &lt;mediaCaptureIDREF&gt;VC6&lt;/mediaCaptureIDREF&gt;
            &lt;/content&gt;
            &lt;maxCaptures exactNumber="true"&gt;3&lt;/maxCaptures&gt;
            &lt;encGroupIDREF&gt;EG0&lt;/encGroupIDREF&gt;
            &lt;description lang="en"&gt;big picture of the current
            speaker + pips about previous speakers&lt;/description&gt;
            &lt;priority&gt;3&lt;/priority&gt;
            &lt;lang&gt;it&lt;/lang&gt;
            &lt;mobility&gt;static&lt;/mobility&gt;
            &lt;view&gt;individual&lt;/view&gt;
        &lt;/mediaCapture&gt;
    &lt;/mediaCaptures&gt;
    &lt;encodingGroups&gt;
        &lt;encodingGroup encodingGroupID="EG0"&gt;
            &lt;maxGroupBandwidth&gt;600000&lt;/maxGroupBandwidth&gt;
            &lt;encodingIDList&gt;
                &lt;encodingID&gt;ENC1&lt;/encodingID&gt;
                &lt;encodingID&gt;ENC2&lt;/encodingID&gt;
                &lt;encodingID&gt;ENC3&lt;/encodingID&gt;
            &lt;/encodingIDList&gt;
        &lt;/encodingGroup&gt;
        &lt;encodingGroup encodingGroupID="EG1"&gt;
            &lt;maxGroupBandwidth&gt;300000&lt;/maxGroupBandwidth&gt;
            &lt;encodingIDList&gt;
                &lt;encodingID&gt;ENC4&lt;/encodingID&gt;
                &lt;encodingID&gt;ENC5&lt;/encodingID&gt;
            &lt;/encodingIDList&gt;
        &lt;/encodingGroup&gt;
    &lt;/encodingGroups&gt;
    &lt;captureScenes&gt;
        &lt;captureScene scale="unknown" sceneID="CS1"&gt;
            &lt;sceneViews&gt;
                &lt;sceneView sceneViewID="SE1"&gt;
                    &lt;description lang="en"&gt;participants' individual
                    videos&lt;/description&gt;
                    &lt;mediaCaptureIDs&gt;
                        &lt;mediaCaptureIDREF&gt;VC0&lt;/mediaCaptureIDREF&gt;
                        &lt;mediaCaptureIDREF&gt;VC1&lt;/mediaCaptureIDREF&gt;
                        &lt;mediaCaptureIDREF&gt;VC2&lt;/mediaCaptureIDREF&gt;
                    &lt;/mediaCaptureIDs&gt;
                &lt;/sceneView&gt;
                &lt;sceneView sceneViewID="SE2"&gt;
                    &lt;description lang="en"&gt;loudest segment of the
                    room&lt;/description&gt;
                    &lt;mediaCaptureIDs&gt;
                        &lt;mediaCaptureIDREF&gt;VC3&lt;/mediaCaptureIDREF&gt;
                    &lt;/mediaCaptureIDs&gt;
                &lt;/sceneView&gt;
                &lt;sceneView sceneViewID="SE5"&gt;
                    &lt;description lang="en"&gt;loudest segment of the
                    room + pips&lt;/description&gt;
                    &lt;mediaCaptureIDs&gt;
                        &lt;mediaCaptureIDREF&gt;VC7&lt;/mediaCaptureIDREF&gt;
                    &lt;/mediaCaptureIDs&gt;
                &lt;/sceneView&gt;
                &lt;sceneView sceneViewID="SE4"&gt;
                    &lt;description lang="en"&gt;room audio&lt;/description&gt;
                    &lt;mediaCaptureIDs&gt;
                        &lt;mediaCaptureIDREF&gt;AC0&lt;/mediaCaptureIDREF&gt;
                    &lt;/mediaCaptureIDs&gt;
                &lt;/sceneView&gt;
                &lt;sceneView sceneViewID="SE3"&gt;
                    &lt;description lang="en"&gt;room video&lt;/description&gt;
                    &lt;mediaCaptureIDs&gt;
                        &lt;mediaCaptureIDREF&gt;VC4&lt;/mediaCaptureIDREF&gt;
                    &lt;/mediaCaptureIDs&gt;
                &lt;/sceneView&gt;
            &lt;/sceneViews&gt;
        &lt;/captureScene&gt;
    &lt;/captureScenes&gt;
    &lt;simultaneousSets&gt;
        &lt;simultaneousSet setID="SS1"&gt;
            &lt;mediaCaptureIDREF&gt;VC3&lt;/mediaCaptureIDREF&gt;
            &lt;mediaCaptureIDREF&gt;VC7&lt;/mediaCaptureIDREF&gt;
            &lt;sceneViewIDREF&gt;SE1&lt;/sceneViewIDREF&gt;
        &lt;/simultaneousSet&gt;
        &lt;simultaneousSet setID="SS2"&gt;
            &lt;mediaCaptureIDREF&gt;VC0&lt;/mediaCaptureIDREF&gt;
            &lt;mediaCaptureIDREF&gt;VC2&lt;/mediaCaptureIDREF&gt;
            &lt;mediaCaptureIDREF&gt;VC4&lt;/mediaCaptureIDREF&gt;
        &lt;/simultaneousSet&gt;
    &lt;/simultaneousSets&gt;
    &lt;people&gt;
        &lt;person personID="bob"&gt;
            &lt;personInfo&gt;
                &lt;ns2:fn&gt;
                    &lt;ns2:text&gt;Bob&lt;/ns2:text&gt;
                &lt;/ns2:fn&gt;
            &lt;/personInfo&gt;
            &lt;personType&gt;minute taker&lt;/personType&gt;
        &lt;/person&gt;
        &lt;person personID="alice"&gt;
            &lt;personInfo&gt;
                &lt;ns2:fn&gt;
                    &lt;ns2:text&gt;Alice&lt;/ns2:text&gt;
                &lt;/ns2:fn&gt;
            &lt;/personInfo&gt;
            &lt;personType&gt;presenter&lt;/personType&gt;
        &lt;/person&gt;
        &lt;person personID="ciccio"&gt;
            &lt;personInfo&gt;
                &lt;ns2:fn&gt;
                    &lt;ns2:text&gt;Ciccio&lt;/ns2:text&gt;
                &lt;/ns2:fn&gt;
            &lt;/personInfo&gt;
            &lt;personType&gt;chairman&lt;/personType&gt;
            &lt;personType&gt;timekeeper&lt;/personType&gt;
        &lt;/person&gt;
    &lt;/people&gt;
&lt;/clueInfo&gt;
</pre><a href="#section-28-3" class="pilcrow">¶</a>
</div>
</section>
</div>
<section id="section-29">
      <h2 id="name-references">
<a href="#section-29" class="section-number selfRef">29. </a><a href="#name-references" class="section-name selfRef">References</a>
      </h2>
<section id="section-29.1">
        <h3 id="name-normative-references">
<a href="#section-29.1" class="section-number selfRef">29.1. </a><a href="#name-normative-references" class="section-name selfRef">Normative References</a>
        </h3>
<dl class="references">
<dt id="RFC2119">[RFC2119]</dt>
        <dd>
<span class="refAuthor">Bradner, S.</span>, <span class="refTitle">"Key words for use in RFCs to Indicate Requirement Levels"</span>, <span class="seriesInfo">BCP 14</span>, <span class="seriesInfo">RFC 2119</span>, <span class="seriesInfo">DOI 10.17487/RFC2119</span>, <time datetime="1997-03" class="refDate">March 1997</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc2119">https://www.rfc-editor.org/info/rfc2119</a>&gt;</span>. </dd>
<dd class="break"></dd>
<dt id="RFC5646">[RFC5646]</dt>
        <dd>
<span class="refAuthor">Phillips, A., Ed.</span><span class="refAuthor"> and M. Davis, Ed.</span>, <span class="refTitle">"Tags for Identifying Languages"</span>, <span class="seriesInfo">BCP 47</span>, <span class="seriesInfo">RFC 5646</span>, <span class="seriesInfo">DOI 10.17487/RFC5646</span>, <time datetime="2009-09" class="refDate">September 2009</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc5646">https://www.rfc-editor.org/info/rfc5646</a>&gt;</span>. </dd>
<dd class="break"></dd>
<dt id="RFC6351">[RFC6351]</dt>
        <dd>
<span class="refAuthor">Perreault, S.</span>, <span class="refTitle">"xCard: vCard XML Representation"</span>, <span class="seriesInfo">RFC 6351</span>, <span class="seriesInfo">DOI 10.17487/RFC6351</span>, <time datetime="2011-08" class="refDate">August 2011</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc6351">https://www.rfc-editor.org/info/rfc6351</a>&gt;</span>. </dd>
<dd class="break"></dd>
<dt id="RFC7303">[RFC7303]</dt>
        <dd>
<span class="refAuthor">Thompson, H.</span><span class="refAuthor"> and C. Lilley</span>, <span class="refTitle">"XML Media Types"</span>, <span class="seriesInfo">RFC 7303</span>, <span class="seriesInfo">DOI 10.17487/RFC7303</span>, <time datetime="2014-07" class="refDate">July 2014</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc7303">https://www.rfc-editor.org/info/rfc7303</a>&gt;</span>. </dd>
<dd class="break"></dd>
<dt id="RFC7852">[RFC7852]</dt>
        <dd>
<span class="refAuthor">Gellens, R.</span><span class="refAuthor">, Rosen, B.</span><span class="refAuthor">, Tschofenig, H.</span><span class="refAuthor">, Marshall, R.</span><span class="refAuthor">, and J. Winterbottom</span>, <span class="refTitle">"Additional Data Related to an Emergency Call"</span>, <span class="seriesInfo">RFC 7852</span>, <span class="seriesInfo">DOI 10.17487/RFC7852</span>, <time datetime="2016-07" class="refDate">July 2016</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc7852">https://www.rfc-editor.org/info/rfc7852</a>&gt;</span>. </dd>
<dd class="break"></dd>
<dt id="RFC8126">[RFC8126]</dt>
        <dd>
<span class="refAuthor">Cotton, M.</span><span class="refAuthor">, Leiba, B.</span><span class="refAuthor">, and T. Narten</span>, <span class="refTitle">"Guidelines for Writing an IANA Considerations Section in RFCs"</span>, <span class="seriesInfo">BCP 26</span>, <span class="seriesInfo">RFC 8126</span>, <span class="seriesInfo">DOI 10.17487/RFC8126</span>, <time datetime="2017-06" class="refDate">June 2017</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc8126">https://www.rfc-editor.org/info/rfc8126</a>&gt;</span>. </dd>
<dd class="break"></dd>
<dt id="RFC8174">[RFC8174]</dt>
        <dd>
<span class="refAuthor">Leiba, B.</span>, <span class="refTitle">"Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words"</span>, <span class="seriesInfo">BCP 14</span>, <span class="seriesInfo">RFC 8174</span>, <span class="seriesInfo">DOI 10.17487/RFC8174</span>, <time datetime="2017-05" class="refDate">May 2017</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc8174">https://www.rfc-editor.org/info/rfc8174</a>&gt;</span>. </dd>
<dd class="break"></dd>
<dt id="RFC8845">[RFC8845]</dt>
        <dd>
<span class="refAuthor">Duckworth, M., Ed.</span><span class="refAuthor">, Pepperell, A.</span><span class="refAuthor">, and S. Wenger</span>, <span class="refTitle">"Framework for Telepresence Multi-Streams"</span>, <span class="seriesInfo">RFC 8845</span>, <span class="seriesInfo">DOI 10.17487/RFC8845</span>, <time datetime="2021-01" class="refDate">January 2021</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc8845">https://www.rfc-editor.org/info/rfc8845</a>&gt;</span>. </dd>
<dd class="break"></dd>
<dt id="RFC8847">[RFC8847]</dt>
        <dd>
<span class="refAuthor">Presta, R.</span><span class="refAuthor"> and S P. Romano</span>, <span class="refTitle">"Protocol for Controlling Multiple Streams for Telepresence (CLUE)"</span>, <span class="seriesInfo">RFC 8847</span>, <span class="seriesInfo">DOI 10.17487/RFC8847</span>, <time datetime="2021-01" class="refDate">January 2021</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc8847">https://www.rfc-editor.org/info/rfc8847</a>&gt;</span>. </dd>
<dd class="break"></dd>
<dt id="RFC8850">[RFC8850]</dt>
      <dd>
<span class="refAuthor">Holmberg, C.</span>, <span class="refTitle">"Controlling Multiple Streams for Telepresence (CLUE) Protocol Data Channel"</span>, <span class="seriesInfo">RFC 8850</span>, <span class="seriesInfo">DOI 10.17487/RFC8850</span>, <time datetime="2021-01" class="refDate">January 2021</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc8850">https://www.rfc-editor.org/info/rfc8850</a>&gt;</span>. </dd>
<dd class="break"></dd>
</dl>
</section>
<section id="section-29.2">
        <h3 id="name-informative-references">
<a href="#section-29.2" class="section-number selfRef">29.2. </a><a href="#name-informative-references" class="section-name selfRef">Informative References</a>
        </h3>
<dl class="references">
<dt id="RFC3550">[RFC3550]</dt>
        <dd>
<span class="refAuthor">Schulzrinne, H.</span><span class="refAuthor">, Casner, S.</span><span class="refAuthor">, Frederick, R.</span><span class="refAuthor">, and V. Jacobson</span>, <span class="refTitle">"RTP: A Transport Protocol for Real-Time Applications"</span>, <span class="seriesInfo">STD 64</span>, <span class="seriesInfo">RFC 3550</span>, <span class="seriesInfo">DOI 10.17487/RFC3550</span>, <time datetime="2003-07" class="refDate">July 2003</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc3550">https://www.rfc-editor.org/info/rfc3550</a>&gt;</span>. </dd>
<dd class="break"></dd>
<dt id="RFC3688">[RFC3688]</dt>
        <dd>
<span class="refAuthor">Mealling, M.</span>, <span class="refTitle">"The IETF XML Registry"</span>, <span class="seriesInfo">BCP 81</span>, <span class="seriesInfo">RFC 3688</span>, <span class="seriesInfo">DOI 10.17487/RFC3688</span>, <time datetime="2004-01" class="refDate">January 2004</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc3688">https://www.rfc-editor.org/info/rfc3688</a>&gt;</span>. </dd>
<dd class="break"></dd>
<dt id="RFC4353">[RFC4353]</dt>
        <dd>
<span class="refAuthor">Rosenberg, J.</span>, <span class="refTitle">"A Framework for Conferencing with the Session Initiation Protocol (SIP)"</span>, <span class="seriesInfo">RFC 4353</span>, <span class="seriesInfo">DOI 10.17487/RFC4353</span>, <time datetime="2006-02" class="refDate">February 2006</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc4353">https://www.rfc-editor.org/info/rfc4353</a>&gt;</span>. </dd>
<dd class="break"></dd>
<dt id="RFC6838">[RFC6838]</dt>
        <dd>
<span class="refAuthor">Freed, N.</span><span class="refAuthor">, Klensin, J.</span><span class="refAuthor">, and T. Hansen</span>, <span class="refTitle">"Media Type Specifications and Registration Procedures"</span>, <span class="seriesInfo">BCP 13</span>, <span class="seriesInfo">RFC 6838</span>, <span class="seriesInfo">DOI 10.17487/RFC6838</span>, <time datetime="2013-01" class="refDate">January 2013</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc6838">https://www.rfc-editor.org/info/rfc6838</a>&gt;</span>. </dd>
<dd class="break"></dd>
<dt id="RFC7667">[RFC7667]</dt>
      <dd>
<span class="refAuthor">Westerlund, M.</span><span class="refAuthor"> and S. Wenger</span>, <span class="refTitle">"RTP Topologies"</span>, <span class="seriesInfo">RFC 7667</span>, <span class="seriesInfo">DOI 10.17487/RFC7667</span>, <time datetime="2015-11" class="refDate">November 2015</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc7667">https://www.rfc-editor.org/info/rfc7667</a>&gt;</span>. </dd>
<dd class="break"></dd>
</dl>
</section>
</section>
<section id="section-appendix.a">
      <h2 id="name-acknowledgements">
<a href="#name-acknowledgements" class="section-name selfRef">Acknowledgements</a>
      </h2>
<p id="section-appendix.a-1">

The authors thank all the CLUE contributors for their valuable feedback and
support. Thanks also to <span class="contact-name">Alissa Cooper</span>, whose AD review
helped us improve the quality of the document.<a href="#section-appendix.a-1" class="pilcrow">¶</a></p>
</section>
<div id="authors-addresses">
<section id="section-appendix.b">
      <h2 id="name-authors-addresses">
<a href="#name-authors-addresses" class="section-name selfRef">Authors' Addresses</a>
      </h2>
<address class="vcard">
        <div dir="auto" class="left"><span class="fn nameRole">Roberta Presta</span></div>
<div dir="auto" class="left"><span class="org">University of Napoli</span></div>
<div dir="auto" class="left"><span class="street-address">Via Claudio 21</span></div>
<div dir="auto" class="left">
<span class="postal-code">80125</span> <span class="locality">Napoli</span> </div>
<div dir="auto" class="left"><span class="country-name">Italy</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:roberta.presta@unina.it" class="email">roberta.presta@unina.it</a>
</div>
</address>
<address class="vcard">
        <div dir="auto" class="left"><span class="fn nameRole">Simon Pietro Romano</span></div>
<div dir="auto" class="left"><span class="org">University of Napoli</span></div>
<div dir="auto" class="left"><span class="street-address">Via Claudio 21</span></div>
<div dir="auto" class="left">
<span class="postal-code">80125</span> <span class="locality">Napoli</span> </div>
<div dir="auto" class="left"><span class="country-name">Italy</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:spromano@unina.it" class="email">spromano@unina.it</a>
</div>
</address>
</section>
</div>
<script>const toc = document.getElementById("toc");
toc.querySelector("h2").addEventListener("click", e => {
  toc.classList.toggle("active");
});
toc.querySelector("nav").addEventListener("click", e => {
  toc.classList.remove("active");
});
</script>
</body>
</html>