summaryrefslogtreecommitdiff
path: root/src/components/interfaces/HMI_API.xml
blob: 33f23409eaa284db2e44f283a4d195b1786d8c42 (plain)
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
<?xml version="1.0" standalone="yes"?>

<!--
 * Copyright (c) 2016, Ford Motor Company
 * All rights reserved.
 *
 * Copyright (c) 2017 Xevo Inc.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * Redistributions of source code must retain the above copyright notice, this
 * list of conditions and the following disclaimer.
 *
 * Redistributions in binary form must reproduce the above copyright notice,
 * this list of conditions and the following
 * disclaimer in the documentation and/or other materials provided with the
 * distribution.
 *
 * Neither the name of the Ford Motor Company nor the names of its contributors
 * may be used to endorse or promote products derived from this software
 * without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE. -->


<interfaces name="SmartDeviceLink HMI API">

<interface name="Common" version="1.7.0" date="2017-10-20">

<enum name="Result">
    <element name="SUCCESS" value="0"/>
    <element name="UNSUPPORTED_REQUEST" value="1"/>
    <element name="UNSUPPORTED_RESOURCE" value="2"/>
    <element name="DISALLOWED" value="3"/>
    <element name="REJECTED" value="4"/>
    <element name="ABORTED" value="5"/>
    <element name="IGNORED" value="6"/>
    <element name="RETRY" value="7"/>
    <element name="IN_USE"  value="8"/>
    <element name="DATA_NOT_AVAILABLE" value="9"/>
    <element name="TIMED_OUT" value="10"/>
    <element name="INVALID_DATA" value="11"/>
    <element name="CHAR_LIMIT_EXCEEDED" value="12"/>
    <element name="INVALID_ID" value="13"/>
    <element name="DUPLICATE_NAME" value="14"/>
    <element name="APPLICATION_NOT_REGISTERED" value="15"/>
    <element name="WRONG_LANGUAGE" value="16"/>
    <element name="OUT_OF_MEMORY" value="17"/>
    <element name="TOO_MANY_PENDING_REQUESTS" value="18"/>
    <element name="NO_APPS_REGISTERED" value="19"/>
    <element name="NO_DEVICES_CONNECTED" value="20"/>
    <element name="WARNINGS" value="21"/>
    <element name="GENERIC_ERROR" value="22"/>
    <element name="USER_DISALLOWED" value="23"/>
    <element name="TRUNCATED_DATA" value="24"/>
    <element name="SAVED" value="25"/>
    <element name="READ_ONLY" value="26"/>
</enum>

<enum name="TransportType">
  <description>Lists of the transport types used for device connection to HU.</description>
  <element name="BLUETOOTH"/>
  <element name="USB_IOS"/>
  <element name="USB_AOA"/>
  <element name="WIFI"/>
</enum>

<enum name="ButtonName">
    <description>Defines the hard (physical) and soft (touchscreen) buttons available from SYNC</description>
    <element name="OK"/>
    <element name="SEEKLEFT"/>
    <element name="SEEKRIGHT"/>
    <element name="TUNEUP"/>
    <element name="TUNEDOWN"/>
    <element name="PRESET_0"/>
    <element name="PRESET_1"/>
    <element name="PRESET_2"/>
    <element name="PRESET_3"/>
    <element name="PRESET_4"/>
    <element name="PRESET_5"/>
    <element name="PRESET_6"/>
    <element name="PRESET_7"/>
    <element name="PRESET_8"/>
    <element name="PRESET_9"/>
    <element name="CUSTOM_BUTTON"/>
    <element name="SEARCH"/>
      <!-- Climate Buttons -->
    <element name="AC_MAX" />
    <element name="AC" />
    <element name="RECIRCULATE" />
    <element name="FAN_UP" />
    <element name="FAN_DOWN" />
    <element name="TEMP_UP" />
    <element name="TEMP_DOWN" />
    <element name="DEFROST_MAX" />
    <element name="DEFROST" />
    <element name="DEFROST_REAR" />
    <element name="UPPER_VENT" />
    <element name="LOWER_VENT" />

    <!-- Radio Buttons -->
    <element name="VOLUME_UP" />
    <element name="VOLUME_DOWN" />
    <element name="EJECT" />
    <element name="SOURCE" />
    <element name="SHUFFLE" />
    <element name="REPEAT" />
</enum>

<enum name="ButtonEventMode">
    <element name="BUTTONUP">
        <description>A button has been released up</description>
    </element>
    <element name="BUTTONDOWN">
        <description>A button has been pressed down</description>
    </element>
</enum>

<enum name="ButtonPressMode">
    <element name="LONG">
        <description>A button was released, after it was pressed for a long time. Actual timing is defined by head unit and may vary</description>
    </element>
    <element name="SHORT">
        <description>A button was released, after it was pressed for a short time. Actual timing is defined by head unit and may vary</description>
    </element>
</enum>

 <enum name="Language">
     <element name="EN-US" internal_name="EN_US">
      <description>English - US</description>
    </element>
    <element name="ES-MX" internal_name="ES_MX">
      <description>Spanish - Mexico</description>
    </element>
    <element name="FR-CA" internal_name="FR_CA">
      <description>French - Canada</description>
    </element>
    <element name="DE-DE" internal_name="DE_DE">
      <description>German - Germany</description>
    </element>
     <element name="ES-ES" internal_name="ES_ES">
      <description>Spanish - Spain</description>
    </element>
    <element name="EN-GB" internal_name="EN_GB">
      <description>English - GB</description>
    </element>
     <element name="RU-RU" internal_name="RU_RU">
      <description>Russian - Russia</description>
    </element>
     <element name="TR-TR" internal_name="TR_TR">
      <description>Turkish - Turkey</description>
    </element>
     <element name="PL-PL" internal_name="PL_PL">
      <description>Polish - Poland</description>
    </element>
     <element name="FR-FR" internal_name="FR_FR">
      <description>French - France</description>
    </element>
     <element name="IT-IT" internal_name="IT_IT">
      <description>Italian - Italy</description>
    </element>
     <element name="SV-SE" internal_name="SV_SE">
      <description>Swedish - Sweden</description>
    </element>
     <element name="PT-PT" internal_name="PT_PT">
      <description>Portuguese - Portugal</description>
    </element>
     <element name="NL-NL" internal_name="NL_NL">
      <description>Dutch (Standard) - Netherlands</description>
    </element>
     <element name="EN-AU" internal_name="EN_AU">
      <description>English - Australia</description>
    </element>
     <element name="ZH-CN" internal_name="ZH_CN">
      <description>Mandarin - China</description>
    </element>
     <element name="ZH-TW" internal_name="ZH_TW">
      <description>Mandarin - Taiwan</description>
    </element>
     <element name="JA-JP" internal_name="JA_JP">
      <description>Japanese - Japan</description>
    </element>
     <element name="AR-SA" internal_name="AR_SA">
      <description>Arabic - Saudi Arabia</description>
    </element>
     <element name="KO-KR" internal_name="KO_KR">
      <description>Korean - South Korea</description>
    </element>
     <element name="PT-BR" internal_name="PT_BR">
      <description>Portuguese - Brazil</description>
    </element>
     <element name="CS-CZ" internal_name="CS_CZ">
      <description>Czech - Czech Republic</description>
    </element>
     <element name="DA-DK" internal_name="DA_DK">
      <description>Danish - Denmark</description>
    </element>
     <element name="NO-NO" internal_name="NO_NO">
      <description>Norwegian - Norway</description>
    </element>
    <element name="NL-BE" internal_name="NL_BE">
      <description>Dutch (Flemish) - Belgium</description>
    </element>
    <element name="EL-GR" internal_name="EL_GR">
      <description>Greek - Greece</description>
    </element>
    <element name="HU-HU" internal_name="HU_HU">
      <description>Hungarian - Hungary</description>
    </element>
    <element name="FI-FI" internal_name="FI_FI">
      <description>Finnish - Finland</description>
    </element>
    <element name="SK-SK" internal_name="SK_SK">
      <description>Slovak - Slovakia</description>
    </element>
    <element name="EN-IN" internal_name="EN_IN">
      <description>English - India</description>
    </element>
    <element name="TH-TH" internal_name="TH_TH">
      <description>Thai - Thailand</description>
    </element>
    <element name="EN-SA" internal_name="EN_SA">
      <description>English - Middle East</description>
    </element>
    <element name="HE-IL" internal_name="HE_IL">
      <description>Hebrew - Israel</description>
    </element>
    <element name="RO-RO" internal_name="RO_RO">
      <description>Romanian - Romania</description>
    </element>
    <element name="UK-UA" internal_name="UK_UA">
      <description>Ukrainian - Ukraine</description>
    </element>
    <element name="ID-ID" internal_name="ID_ID">
      <description>Indonesian - Indonesia</description>
    </element>
    <element name="VI-VN" internal_name="VI_VN">
      <description>Vietnamese - Vietnam</description>
    </element>
    <element name="MS-MY" internal_name="MS_MY">
      <description>Malay - Malaysia</description>
    </element>
    <element name="HI-IN" internal_name="HI_IN">
      <description>Hindi - India</description>
    </element>
</enum>

<enum name="SoftButtonType">
  <description>Contains information about the SoftButton capabilities.</description>
  <element name="TEXT" internal_name="SBT_TEXT"/>
  <element name="IMAGE" internal_name="SBT_IMAGE"/>
  <element name="BOTH" internal_name="SBT_BOTH"/>
</enum>

<enum name="SystemAction">
  <description>Enumeration that describes system actions that can be triggered.</description>
  <element name="DEFAULT_ACTION">
    <description>Default action occurs.  Standard behavior (e.g. SoftButton clears overlay).</description>
  </element>
  <element name="STEAL_FOCUS">
    <description>The calling app's dialog or related event should clear and the app should be brought into HMI_FULL.</description>
  </element>
  <element name="KEEP_CONTEXT">
    <description>Current system context is maintained.  An overlay is persisted even though a SoftButton has been pressed and the notification sent.</description>
  </element>
</enum>

<enum name="AppHMIType">
  <description>Enumeration listing possible app types.</description>
  <element name="DEFAULT" />
  <element name="COMMUNICATION" />
  <element name="MEDIA" />
  <element name="MESSAGING" />
  <element name="NAVIGATION" />
  <element name="INFORMATION" />
  <element name="SOCIAL" />
  <element name="BACKGROUND_PROCESS" />
  <element name="TESTING" />
  <element name="SYSTEM" />
  <element name="PROJECTION" />
  <element name="REMOTE_CONTROL" />
</enum>

  <enum name="WayPointType">
    <description>Describes what kind of waypoint is requested/provided.</description>
    <element name="ALL" />
    <element name="DESTINATION" />
  </enum>

  <struct name="Coordinate">
    <param name="latitudeDegrees" minvalue="-90" maxvalue="90" type="Float" mandatory="true">
      <description>Latitude of the location.</description>
    </param>
    <param name="longitudeDegrees" minvalue="-180" maxvalue="180" type="Float" mandatory="true">
      <description>Longitude of the location.</description>
    </param>
  </struct>

<enum name="LayoutMode">
  <description>For touchscreen interactions, the mode of how the choices are presented.</description>
  <element name="ICON_ONLY" />
    <description>This mode causes the interaction to display the previous set of choices as icons.</description>
  <element name="ICON_WITH_SEARCH" />
    <description>This mode causes the interaction to display the previous set of choices as icons along with a search field in the HMI.</description>
  <element name="LIST_ONLY" />
    <description>This mode causes the interaction to display the previous set of choices as a list.</description>
  <element name="LIST_WITH_SEARCH" />
    <description>This mode causes the interaction to display the previous set of choices as a list along with a search field in the HMI.</description>
  <element name="KEYBOARD" />
    <description>This mode causes the interaction to immediately display a keyboard entry through the HMI.</description>
</enum>

<enum name="ClockUpdateMode">
  <description>Describes how the media clock timer should behave on the platform</description>
  <element name="COUNTUP" />
  <description>Starts the media clock timer counting upwards, as in time elapsed.</description>
  <element name="COUNTDOWN" />
  <description>Starts the media clock timer counting downwards, as in time remaining.</description>
  <element name="PAUSE" />
  <description>Pauses the media clock timer</description>
  <element name="RESUME" />
  <description>Resume the media clock timer</description>
  <element name="CLEAR" />
  <description>Clears the media clock timer (previously done through Show->mediaClock)</description>
</enum>

<enum name="SystemContext">
  <description>Enumeration that describes possible contexts the application might be in on HU.</description>
  <description>Communicated to whichever app is in HMI FULL, except Alert.</description>
  <element name="MAIN" internal_name="SYSCTXT_MAIN">
    <description>The app's persistent display (whether media/non-media/navigation) is fully visible onscreen.</description>
    <description> There is currently no user interaction (user-initiated or app-initiated) with the head-unit</description>
  </element>
  <element name="VRSESSION" internal_name="SYSCTXT_VRSESSION">
    <description>The system is currently in a VR session (with whatever dedicated VR screen being overlaid onscreen).</description>
  </element>
  <element name="MENU" internal_name="SYSCTXT_MENU">
    <description>The system is currently displaying a system or in-App menu onscreen.</description>
  </element>
  <element name="HMI_OBSCURED" internal_name="SYSCTXT_HMI_OBSCURED">
    <description>The app's display HMI is currently obscuring with either a system or other app's overlay (except of Alert element).</description>
  </element>
  <element name="ALERT" internal_name="SYSCTXT_ALERT">
    <description>Broadcast only to whichever app has an alert currently being displayed.</description>
  </element>
</enum>

<enum name="HmiZoneCapabilities">
  <description>Contains information about the HMI zone capabilities.</description>
  <description>For future use.</description>
  <element name="FRONT" />
  <element name="BACK" />
</enum>

<enum name="SpeechCapabilities">
  <description>Contains information about the TTS capabilities.</description>
  <element name="TEXT" internal_name="SC_TEXT" />
  <element name="SAPI_PHONEMES" />
  <element name="LHPLUS_PHONEMES" />
  <element name="PRE_RECORDED" />
  <element name="SILENCE" />
</enum>

<enum name="VrCapabilities">
  <description>Contains information about the VR capabilities.</description>
  <element name="TEXT" internal_name="VR_TEXT" />
</enum>

<enum name="PrerecordedSpeech">
  <description>Contains a list of prerecorded speech items present on the platform.</description>
  <element name="HELP_JINGLE" />
  <element name="INITIAL_JINGLE" />
  <element name="LISTEN_JINGLE" />
  <element name="POSITIVE_JINGLE" />
  <element name="NEGATIVE_JINGLE" />
</enum>

<enum name="TBTState">
  <description>Enumeration that describes possible states of turn-by-turn client or SmartDeviceLink app.</description>
  <element name="ROUTE_UPDATE_REQUEST" />
  <element name="ROUTE_ACCEPTED" />
  <element name="ROUTE_REFUSED" />
  <element name="ROUTE_CANCELLED" />
  <element name="ETA_REQUEST" />
  <element name="NEXT_TURN_REQUEST" />
  <element name="ROUTE_STATUS_REQUEST" />
  <element name="ROUTE_SUMMARY_REQUEST" />
  <element name="TRIP_STATUS_REQUEST" />
  <element name="ROUTE_UPDATE_REQUEST_TIMEOUT" />
</enum>

<enum name="ApplicationsCloseReason">
  <description>Describes the reasons for exiting all of applications.</description>
  <element name="IGNITION_OFF" />
  <element name="MASTER_RESET" />
  <element name="FACTORY_DEFAULTS" />
  <element name="SUSPEND" />
</enum>

<enum name="DisplayType">
    <description>The possible types of HU display.</description>
    <element name="CID">
    <description> A 2-line x 20 character "dot matrix" display </description>
    </element>
    <element name="TYPE2">
    <description> 1 line older radio head unit.</description>
    </element>
    <element name="TYPE5">
    <description> Old radio head unit.</description>
    </element>
    <element name="NGN">
    <description> Next Generation Navigation display.</description>
    </element>
    <element name="GEN2_8_DMA">
    <description> GEN-2, 8 inch display.</description>
    </element>
    <element name="GEN2_6_DMA">
    <description> GEN-2, 6 inch display.</description>
    </element>
    <element name="MFD3">
    <description> 3 inch GEN1.1 display </description>
    </element>
    <element name="MFD4">
    <description> 4 inch GEN1.1 display </description>
    </element>
    <element name="MFD5">
    <description> 5 inch GEN1.1 display </description>
    </element>
    <element name="GEN3_8_INCH"/>
    <element name="SDL_GENERIC" />
  </enum>

<enum name="ImageType">
  <description>Contains information about the type of image.</description>
  <element name="STATIC" />
  <element name="DYNAMIC" />
</enum>

<enum name="ApplicationExitReason">
  <element name="DRIVER_DISTRACTION_VIOLATION" >
    <description>By getting this value, SDL puts the named app to NONE HMILevel</description>
  </element>
  <element name="USER_EXIT" >
    <description>By getting this value, SDL puts the named app to NONE HMILevel</description>
  </element>
  <element name="UNAUTHORIZED_TRANSPORT_REGISTRATION">
    <description>By getting this value, SDL unregisters the named application</description>
  </element>
  <element name="UNSUPPORTED_HMI_RESOURCE">
    <description>By getting this value, SDL unregisters the named application</description>
  </element>
</enum>

<enum name="TextFieldName">
  <element name="mainField1">
    <description>The first line of first set of main fields of the persistent display; applies to "Show"</description>
  </element>
  <element name="mainField2">
    <description>The second line of first set of main fields of the persistent display; applies to "Show"</description>
  </element>
  <element name="mainField3">
    <description>The first line of second set of main fields of persistent display; applies to "Show"</description>
  </element>
  <element name="mainField4">
    <description>The second line of second set of main fields of the persistent display; applies to "Show"</description>
  </element>
  <element name="statusBar">
    <description>The status bar on NGN; applies to "Show"</description>
  </element>
  <element name="mediaClock">
    <description>Text value for MediaClock field; applies to "Show"</description>
  </element>
  <element name="mediaTrack">
    <description>The track field of NGN and GEN1.1 MFD displays. This field is only available for media applications; applies to "Show"</description>
  </element>
  <element name="alertText1">
    <description>The first line of the alert text field; applies to "Alert"</description>
  </element>
  <element name="alertText2">
    <description>The second line of the alert text field; applies to "Alert"</description>
  </element>
  <element name="alertText3">
    <description>The third line of the alert text field; applies to "Alert"</description>
  </element>
  <element name="scrollableMessageBody">
    <description>Long form body of text that can include newlines and tabs; applies to "ScrollableMessage"</description>
  </element>
  <element name="initialInteractionText">
    <description> First line suggestion for a user response (in the case of VR enabled interaction</description>
  </element>
  <element name="navigationText1">
    <description> First line of navigation text</description>
  </element>
  <element name="navigationText2">
    <description> Second line of navigation text</description>
  </element>
  <element name="ETA">
    <description> Estimated Time of Arrival time for navigation</description>
  </element>
  <element name="totalDistance">
    <description> Total distance to destination for navigation</description>
  </element>
  <element name="audioPassThruDisplayText1">
    <description> First line of text for audio pass thru</description>
  </element>
  <element name="audioPassThruDisplayText2">
    <description> Second line of text for audio pass thru</description>
  </element>
  <element name="sliderHeader">
    <description> Header text for slider</description>
  </element>
  <element name="sliderFooter">
    <description> Footer text for slider</description>
  </element>
  <element name="menuName">
    <description> Primary text for Choice</description>
  </element>
  <element name="secondaryText">
    <description> Secondary text for Choice</description>
  </element>
  <element name="tertiaryText">
    <description> Tertiary text for Choice</description>
  </element>
  <element name="menuTitle">
    <description> Optional text to label an app menu button (for certain touchscreen platforms).</description>
  </element>
  <element name="navigationText">
    <description>Navigation text for UpdateTurnList.</description>
  </element>
  <element name="notificationText">
    <description>Text of notification to be displayed on screen.</description>
  </element>
  <element name="locationName">
    <description> Optional name / title of intended location for SendLocation.</description>
  </element>
  <element name="locationDescription">
    <description> Optional description of intended location / establishment (if applicable) for SendLocation.</description>
  </element>
  <element name="addressLines">
    <description> Optional location address (if applicable) for SendLocation.</description>
  </element>
  <element name="phoneNumber">
    <description> Optional hone number of intended location / establishment (if applicable) for SendLocation.</description>
  </element>
  <element name="timeToDestination"/>
    <!-- TO DO to be removed -->
    <element name="turnText"/>
</enum>

<enum name="MetadataType">
  <element name="mediaTitle">
    <description>The data in this field contains the title of the currently playing audio track.</description>
  </element>
  <element name="mediaArtist">
    <description>The data in this field contains the artist or creator of the currently playing audio track.</description>
  </element>
  <element name="mediaAlbum">
    <description>The data in this field contains the album title of the currently playing audio track.</description>
  </element>
  <element name="mediaYear">
    <description>The data in this field contains the creation year of the currently playing audio track.</description>
  </element>
  <element name="mediaGenre">
    <description>The data in this field contains the genre of the currently playing audio track.</description>
  </element>
  <element name="mediaStation">
    <description>The data in this field contains the name of the current source for the media.</description>
  </element>
  <element name="rating">
    <description>The data in this field is a rating.</description>
  </element>
  <element name="currentTemperature">
    <description>The data in this field is the current temperature.</description>
  </element>
  <element name="maximumTemperature">
    <description>The data in this field is the maximum temperature for the day.</description>
  </element>
  <element name="minimumTemperature">
    <description>The data in this field is the minimum temperature for the day.</description>
  </element>
  <element name="weatherTerm">
    <description>The data in this field describes the current weather (ex. cloudy, clear, etc.).</description>
  </element>
  <element name="humidity">
    <description>The data in this field describes the current humidity value.</description>
  </element>
</enum>

<enum name="ImageFieldName">
  <element name="softButtonImage">
    <description>The image field for SoftButton</description>
  </element>
  <element name="choiceImage">
    <description>The first image field for Choice</description>
  </element>
  <element name="choiceSecondaryImage">
    <description>The secondary image field for Choice</description>
  </element>
  <element name="vrHelpItem">
    <description>The image field for vrHelpItem</description>
  </element>
  <element name="turnIcon">
    <description>The image field for Turn</description>
  </element>
  <element name="menuIcon">
    <description>The image field for the menu icon in SetGlobalProperties</description>
  </element>
  <element name="cmdIcon">
    <description>The image field for AddCommand</description>
  </element>
  <element name="appIcon">
    <description>The image field for the app icon (set by setAppIcon)</description>
  </element>
  <element name="graphic">
    <description>The primary image field for Show</description>
  </element>
  <element name="secondaryGraphic">
    <description>The secondary image field for Show</description>
  </element>
  <element name="showConstantTBTIcon">
    <description>The primary image field for ShowConstantTBT</description>
  </element>
  <element name="showConstantTBTNextTurnIcon">
    <description>The secondary image field for ShowConstantTBT</description>
  </element>
  <element name="locationImage">
    <description>The optional image of a destination / location</description>
  </element>
</enum>

<enum name="TextAlignment">
  <description>The list of possible alignments, left, right, or centered</description>
  <element name="LEFT_ALIGNED" />
  <element name="RIGHT_ALIGNED" />
  <element name="CENTERED" />
</enum>

<enum name="DriverDistractionState">
  <description>Enumeration that describes possible states of driver distraction.</description>
  <element name="DD_ON" />
  <element name="DD_OFF" />
</enum>

<enum name="EmergencyState">
  <description>Enumeration that describes possible states of emergency event.</description>
  <element name="EMERGENCY_ON" />
  <element name="EMERGENCY_OFF" />
</enum>

<enum name="MediaClockFormat">
  <element name="CLOCK1">
    <description>
      minutesFieldWidth = 2;minutesFieldMax = 19;secondsFieldWidth = 2;secondsFieldMax = 99;maxHours = 19;maxMinutes = 59;maxSeconds = 59;
      Is used for Type II, NGN and CID head units.
    </description>
  </element>
  <element name="CLOCK2">
    <description>
      minutesFieldWidth = 3;minutesFieldMax = 199;secondsFieldWidth = 2;secondsFieldMax = 99;maxHours = 59;maxMinutes = 59;maxSeconds = 59;
    Is used for Type V head units.
    </description>
  </element>
  <element name="CLOCK3">
    <description>
      minutesFieldWidth = 2;minutesFieldMax = 59;secondsFieldWidth = 2;secondsFieldMax = 59;maxHours = 9;maxMinutes = 59;maxSeconds = 59;
    Is used for GEN1.1 (i.e. MFD3/4/5) head units.
    </description>
  </element>
  <element name="CLOCKTEXT1">
    <description>
      5 characters possible
      Format:      1|sp   c   :|sp   c   c
      1|sp : digit "1" or space
      c    : character out of following character set: sp|0-9|[letters
      :|sp : colon or space
    Is used for Type II head unit
    </description>
  </element>
  <element name="CLOCKTEXT2">
    <description>
      5 chars possible
      Format:      1|sp   c   :|sp   c   c
      1|sp : digit "1" or space
      c    : character out of following character set: sp|0-9|[letters
      :|sp : colon or space
    Is used for CID and NGN head unit
    </description>
  </element>
  <element name="CLOCKTEXT3">
    <description>
      6 chars possible
      Format:      1|sp   c   c   :|sp   c   c
      1|sp : digit "1" or space
      c    : character out of following character set: sp|0-9|[letters
      :|sp : colon or space
    Is used for Type V head unit
  </description>
  </element>
  <element name="CLOCKTEXT4">
    <description>
      6 chars possible
      Format:      c   :|sp   c   c   :   c   c
      :|sp : colon or space
      c    : character out of following character set: sp|0-9|[letters].
    Is used for GEN1.1 (i.e. MFD3/4/5) head units
  </description>
  </element>
</enum>

<enum name="VRCommandType">
  <element name="Choice">
    <description>Type that expound that current AddCommand should be pocessed as choise for initiated PerformInteraction request for current active on HMI.</description>
  </element>
  <element name="Command">
    <description>Type that expound that current AddCommand should be pocessed as common command for current application on HMI.</description>
  </element>
</enum>

<!--IVI part-->
<enum name="FuelType">
    <element name="GASOLINE" />
    <element name="DIESEL" />
    <element name="CNG">
        <description>
            For vehicles using compressed natural gas.
        </description>
    </element>
    <element name="LPG">
        <description>
            For vehicles using liquefied petroleum gas.
        </description>
    </element>
    <element name="HYDROGEN">
        <description>For FCEV (fuel cell electric vehicle).</description>
    </element>
    <element name="BATTERY">
        <description>For BEV (Battery Electric Vehicle), PHEV (Plug-in Hybrid Electric Vehicle), solar vehicles and other vehicles which run on a battery.</description>
    </element>
</enum>

<struct name="FuelRange">
    <param name="type" type="Common.FuelType" mandatory="false"/>
    <param name="range" type="Float" minvalue="0" maxvalue="10000" mandatory="false">
        <description>
            The estimate range in KM the vehicle can travel based on fuel level and consumption.
        </description>
    </param>
</struct>

<enum name="ComponentVolumeStatus">
  <description>The volume status of a vehicle component.</description>
  <element name="UNKNOWN" internal_name="CVS_UNKNOWN">
  <description> The data is unknown.</description>
  </element>
  <element name="NORMAL" internal_name="CVS_NORMAL">
  <description> The volume is normal.</description>
  </element>
  <element name="LOW" internal_name="CVS_LOW">
  <description> The volume is low.</description>
  </element>
  <element name="FAULT" internal_name="CVS_FAULT">
  <description> The module/sensor is currently faulted. </description>
  </element>
  <element name="ALERT"  internal_name="CVS_ALERT">
  <description> The component`s volume is in critical level.</description>
  </element>
  <element name="NOT_SUPPORTED" internal_name="CVS_NOT_SUPPORTED">
  <description> The data is not supported.</description>
  </element>
</enum>

<enum name="PRNDL">
  <description>The selected gear.</description>
  <element name="PARK">
    <description>Parking</description>
  </element>
  <element name="REVERSE">
    <description>Reverse gear</description>
  </element>
  <element name="NEUTRAL">
    <description>No gear</description>
  </element>
  <element name="DRIVE">
  </element>
  <element name="SPORT">
    <description>Drive Sport mode</description>
  </element>
  <element name="LOWGEAR">
    <description>1st gear hold</description>
  </element>
  <element name="FIRST">
  </element>
  <element name="SECOND">
  </element>
  <element name="THIRD">
  </element>
  <element name="FOURTH">
  </element>
  <element name="FIFTH">
  </element>
  <element name="SIXTH">
  </element>
  <element name="SEVENTH">
  </element>
  <element name="EIGHTH">
  </element>
  <element name="FAULT">
  </element>
</enum>

<enum name="VehicleDataEventStatus">
  <description>Reflects the status of a vehicle data event; e.g. a seat belt event status.</description>
  <element name="NO_EVENT" internal_name="VDES_NO_EVENT">
  <description> The system does not have the adequate information to send valid YES or NO states.</description>
  </element>
  <element name="NO" internal_name="VDES_NO">
  <description> The requested event is in NO state.</description>
  </element>
  <element name="YES" internal_name="VDES_YES">
  <description> The requested event is in YES state.</description>
  </element>
  <element name="NOT_SUPPORTED" internal_name="VDES_NOT_SUPPORTED">
  <description> The requested data is not supported </description>
  </element>
  <element name="FAULT" internal_name="VDES_FAULT">
  <description> The module/sensor is currently faulted.</description>
  </element>
</enum>

<enum name="VehicleDataStatus">
  <description>Reflects the status of a binary vehicle data item.</description>
  <element name="NO_DATA_EXISTS" internal_name="VDS_NO_DATA_EXISTS">
  </element>
  <element name="OFF" internal_name="VDS_OFF">
  </element>
  <element name="ON" internal_name="VDS_ON">
  </element>
</enum>

<enum name="IgnitionStableStatus">
  <description>Reflects the ignition switch stability.</description>
  <element name="IGNITION_SWITCH_NOT_STABLE">
  </element>
  <element name="IGNITION_SWITCH_STABLE">
  </element>
  <element name="MISSING_FROM_TRANSMITTER">
  <description> Either the data is not accessible or the sensor is broken.</description>
  </element>
</enum>

<enum name="IgnitionStatus">
  <description>Reflects the status of ignition.</description>
  <element name="UNKNOWN" internal_name="IS_UNKNOWN">
  <description> The information is not acceptable. </description>
  </element>
  <element name="OFF" internal_name="IS_OFF">
  <description> The ignition is off.</description>
  </element>
  <element name="ACCESSORY" internal_name="IS_ACCESSORY">
  <description> The accessories are active (power windows, audio, display, etc.).</description>
  </element>
  <element name="RUN" internal_name="IS_RUN">
   <description> Ignition is active.</description>
  </element>
  <element name="START" internal_name="IS_START">
  <description> Starter is switched.</description>
  </element>
  <element name="INVALID" internal_name="IS_INVALID">
  <description> The data is provided, but there is some sort of fault or problem.</description>
  </element>
</enum>

<enum name="DeviceLevelStatus">
  <description>Reflects the reported component status of the connected device, if reported.</description>
  <element name="ZERO_LEVEL_BARS">
  </element>
  <element name="ONE_LEVEL_BARS">
  </element>
  <element name="TWO_LEVEL_BARS">
  </element>
  <element name="THREE_LEVEL_BARS">
  </element>
  <element name="FOUR_LEVEL_BARS">
  </element>
  <element name="NOT_PROVIDED">
  </element>
</enum>

<enum name="PrimaryAudioSource">
  <description>Reflects the current primary audio source (if selected).</description>
  <element name="NO_SOURCE_SELECTED">
  </element>
  <element name="USB">
  </element>
  <element name="USB2">
  </element>
  <element name="BLUETOOTH_STEREO_BTST">
  </element>
  <element name="LINE_IN">
  </element>
  <element name="IPOD">
  </element>
  <element name="MOBILE_APP">
  </element>
</enum>

<enum name="CompassDirection">
  <description>The list of potential compass directions</description>
  <element name="NORTH">
  </element>
  <element name="NORTHWEST">
  </element>
  <element name="WEST">
  </element>
  <element name="SOUTHWEST">
  </element>
  <element name="SOUTH">
  </element>
  <element name="SOUTHEAST">
  </element>
  <element name="EAST">
  </element>
  <element name="NORTHEAST">
  </element>
</enum>

<enum name="Dimension">
  <description>The supported dimensions of the GPS</description>
  <element name="NO_FIX" internal_name="Dimension_NO_FIX">
    <description>No GPS at all</description>
  </element>
  <element name="2D" internal_name="Dimension_2D">
    <description>Longitude and lattitude</description>
  </element>
  <element name="3D" internal_name="Dimension_3D">
    <description>Longitude and lattitude and altitude</description>
  </element>
</enum>

<enum name="TouchType">
  <element name="BEGIN"/>
  <element name="MOVE"/>
  <element name="END"/>
  <element name="CANCEL"/>
</enum>

<enum name="WarningLightStatus">
  <description>Reflects the status of a cluster instrument warning light.</description>
  <element name="OFF" internal_name="WLS_OFF">
  </element>
  <element name="ON" internal_name="WLS_ON">
  </element>
  <element name="FLASH" internal_name="WLS_FLASH">
  </element>
  <element name="NOT_USED" internal_name="WLS_NOT_USED">
  </element>
</enum>

<enum name="VehicleDataResultCode">
  <description>Enumeration that describes possible result codes of a vehicle data entry request.</description>
  <element name="SUCCESS" internal_name="VDRC_SUCCESS"/>
  <element name="TRUNCATED_DATA" internal_name="VDRC_TRUNCATED_DATA"/>
  <element name="DISALLOWED" internal_name="VDRC_DISALLOWED"/>
  <element name="USER_DISALLOWED" internal_name="VDRC_USER_DISALLOWED"/>
  <element name="INVALID_ID" internal_name="VDRC_INVALID_ID"/>
  <element name="VEHICLE_DATA_NOT_AVAILABLE" internal_name="VDRC_DATA_NOT_AVAILABLE"/>
  <element name="DATA_ALREADY_SUBSCRIBED" internal_name="VDRC_DATA_ALREADY_SUBSCRIBED"/>
  <element name="DATA_NOT_SUBSCRIBED" internal_name="VDRC_DATA_NOT_SUBSCRIBED"/>
  <element name="IGNORED" internal_name="VDRC_IGNORED"/>
</enum>

<enum name="VehicleDataType">
  <description>Defines the data types that can be published and subscribed to.</description>
  <element name="VEHICLEDATA_GPS">
    <description>Notifies GPSData may be subscribed</description>
  </element>
  <element name="VEHICLEDATA_SPEED" />
  <element name="VEHICLEDATA_RPM" />
  <element name="VEHICLEDATA_FUELLEVEL" />
  <element name="VEHICLEDATA_FUELLEVEL_STATE" />
  <element name="VEHICLEDATA_FUELCONSUMPTION" />
  <element name="VEHICLEDATA_EXTERNTEMP" />
  <element name="VEHICLEDATA_VIN" />
  <element name="VEHICLEDATA_PRNDL" />
  <element name="VEHICLEDATA_TIREPRESSURE" />
  <element name="VEHICLEDATA_ODOMETER" />
  <element name="VEHICLEDATA_BELTSTATUS" />
  <element name="VEHICLEDATA_BODYINFO" />
  <element name="VEHICLEDATA_DEVICESTATUS" />
  <element name="VEHICLEDATA_ECALLINFO" />
  <element name="VEHICLEDATA_AIRBAGSTATUS" />
  <element name="VEHICLEDATA_EMERGENCYEVENT" />
  <element name="VEHICLEDATA_CLUSTERMODESTATUS" />
  <element name="VEHICLEDATA_MYKEY" />
  <element name="VEHICLEDATA_BRAKING" />
  <element name="VEHICLEDATA_WIPERSTATUS" />
  <element name="VEHICLEDATA_HEADLAMPSTATUS" />
  <element name="VEHICLEDATA_BATTVOLTAGE" />
  <element name="VEHICLEDATA_ENGINETORQUE" />
  <element name="VEHICLEDATA_ACCPEDAL" />
  <element name="VEHICLEDATA_STEERINGWHEEL" />
  <element name="VEHICLEDATA_FUELRANGE" />
  <element name="VEHICLEDATA_ENGINEOILLIFE" />
</enum>

<enum name="WiperStatus">
  <description>Reflects the status of the wipers.</description>
  <element name="OFF">
    <description> The wipers are off.</description>
  </element>
  <element name="AUTO_OFF">
    <description> The wipers are automatically off </description>
  </element>
  <element name="OFF_MOVING">
    <description> Means that though set to off, somehow the wipers have been engaged (physically moved enough to engage a wiping motion).</description>
  </element>
  <element name="MAN_INT_OFF">
    <description> The wipers are manually off after having been working.</description>
  </element>
  <element name="MAN_INT_ON">
    <description> The wipers are manually on.</description>
  </element>
  <element name="MAN_LOW">
    <description> The wipers are manually set to low speed.</description>
  </element>
  <element name="MAN_HIGH">
    <description> The wipers are manually set to high speed.</description>
  </element>
  <element name="MAN_FLICK">
    <description> The wipers are manually set for doing a flick.</description>
  </element>
  <element name="WASH">
    <description> The wipers are set to use the water from vehicle washer bottle for cleaning the windscreen.</description>
  </element>
  <element name="AUTO_LOW">
    <description> The wipers are automatically set to low speed.</description>
  </element>
  <element name="AUTO_HIGH">
    <description> The wipers are automatically set to high speed.</description>
  </element>
  <element name="COURTESYWIPE">
    <description> This is for when a user has just initiated a WASH and several seconds later a secondary wipe is automatically initiated to clear remaining fluid.</description>
  </element>
  <element name="AUTO_ADJUST">
    <description> This is set as the user moves between possible automatic wiper speeds.</description>
  </element>
  <element name="STALLED">
    <description> The wiper is stalled to its place. </description>
  </element>
  <element name="NO_DATA_EXISTS">
    <description> The sensor / module cannot provide any information for wiper.</description>
  </element>
</enum>

<enum name="SamplingRate">
  <description>Describes different sampling options for PerformAudioPassThru.</description>
  <element name="8KHZ" internal_name="RATE_8KHZ"/>
  <element name="16KHZ" internal_name="RATE_16KHZ"/>
  <element name="22KHZ" internal_name="RATE_22KHZ"/>
  <element name="44KHZ" internal_name="RATE_44KHZ"/>
</enum>

<enum name="BitsPerSample">
  <description>Describes different quality options for PerformAudioPassThru.</description>
  <element name="8_BIT" internal_name="RATE_8_BIT"/>
  <element name="16_BIT" internal_name="RATE_16_BIT"/>
</enum>

<enum name="AudioType">
  <description>Describes different audio type options for PerformAudioPassThru.</description>
  <element name="PCM" />
</enum>

<enum name="KeyboardLayout">
  <description>Enumeration listing possible keyboard layouts.</description>
  <element name="QWERTY" />
  <element name="QWERTZ" />
  <element name="AZERTY" />
</enum>

<enum name="KeyboardEvent">
  <description>Enumeration listing possible keyboard events.</description>
  <element name="KEYPRESS" />
  <element name="ENTRY_SUBMITTED" />
  <element name="ENTRY_VOICE" />
  <element name="ENTRY_CANCELLED" />
  <element name="ENTRY_ABORTED" />
</enum>

<enum name="KeypressMode">
  <description>Enumeration listing possible keyboard events.</description>
  <element name="SINGLE_KEYPRESS">
    <description>Each keypress is individually sent as the user presses the keyboard keys.</description>
  </element>
  <element name="QUEUE_KEYPRESSES">
    <description>The keypresses are queued and a string is eventually sent once the user chooses to submit their entry.</description>
  </element>
  <element name="RESEND_CURRENT_ENTRY">
    <description>The keypresses are queue and a string is sent each time the user presses a keyboard key; the string contains the entire current entry.</description>
  </element>
</enum>

<enum name="AmbientLightStatus">
  <description>Reflects the status of the ambient light sensor.</description>
  <element name="NIGHT" />
  <element name="TWILIGHT_1" />
  <element name="TWILIGHT_2" />
  <element name="TWILIGHT_3" />
  <element name="TWILIGHT_4" />
  <element name="DAY" />
  <element name="UNKNOWN" />
  <element name="INVALID" />
</enum>

<enum name="FileType">
  <description>Enumeration listing possible file types.</description>
  <element name="GRAPHIC_BMP" />
  <element name="GRAPHIC_JPEG" />
  <element name="GRAPHIC_PNG" />
  <element name="AUDIO_WAVE" />
  <element name="AUDIO_MP3" />
  <element name="AUDIO_AAC" />
  <element name="BINARY" />
  <element name="JSON" />
</enum>

<enum name="RequestType">
  <description>Enumeration listing possible asynchronous requests.</description>
  <element name="HTTP" />
  <element name="FILE_RESUME" />
  <element name="AUTH_REQUEST" />
  <element name="AUTH_CHALLENGE" />
  <element name="AUTH_ACK" />
  <element name="PROPRIETARY" />
  <element name="QUERY_APPS" />
  <element name="LAUNCH_APP" />
  <element name="LOCK_SCREEN_ICON_URL" />
  <element name="TRAFFIC_MESSAGE_CHANNEL" />
  <element name="DRIVER_PROFILE" />
  <element name="VOICE_SEARCH" />
  <element name="NAVIGATION" />
  <element name="PHONE" />
  <element name="CLIMATE" />
  <element name="SETTINGS" />
  <element name="VEHICLE_DIAGNOSTICS" />
  <element name="EMERGENCY" />
  <element name="MEDIA" />
  <element name="FOTA" />
  <element name="OEM_SPECIFIC"/>
</enum>

<enum name="ECallConfirmationStatus">
  <description>Reflects the status of the eCall Notification.</description>
  <element name="NORMAL" internal_name="ECCS_NORMAL">
  </element>
  <element name="CALL_IN_PROGRESS" internal_name="ECCS_CALL_IN_PROGRESS">
  </element>
  <element name="CALL_CANCELLED" internal_name="ECCS_CALL_CANCELLED">
  </element>
  <element name="CALL_COMPLETED">
  </element>
  <element name="CALL_UNSUCCESSFUL" internal_name="ECCS_CALL_UNSUCCESSFUL">
  </element>
  <element name="ECALL_CONFIGURED_OFF" internal_name="ECCS_ECALL_CONFIGURED_OFF">
  </element>
  <element name="CALL_COMPLETE_DTMF_TIMEOUT" internal_name="ECCS_CALL_COMPLETE_DTMF_TIMEOUT">
  </element>
</enum>

<enum name="VehicleDataNotificationStatus">
  <description>Reflects the status of a vehicle data notification.</description>
  <element name="NOT_SUPPORTED" internal_name="VDNS_NOT_SUPPORTED">
  </element>
  <element name="NORMAL" internal_name="VDNS_NORMAL">
  </element>
  <element name="ACTIVE" internal_name="VDNS_ACTIVE">
  </element>
  <element name="NOT_USED" internal_name="VDNS_NOT_USED">
  </element>
</enum>

<enum name="EmergencyEventType">
  <description>Reflects the emergency event status of the vehicle.</description>
  <element name="NO_EVENT" internal_name="EET_NO_EVENT">
  </element>
  <element name="FRONTAL" internal_name="EET_FRONTAL">
  </element>
  <element name="SIDE" internal_name="EET_SIDE">
  </element>
  <element name="REAR" internal_name="EET_REAR">
  </element>
  <element name="ROLLOVER" internal_name="EET_ROLLOVER">
  </element>
  <element name="NOT_SUPPORTED" internal_name="EET_NOT_SUPPORTED">
  </element>
  <element name="FAULT" internal_name="EET_FAULT">
  </element>
</enum>

<enum name="FuelCutoffStatus">
  <description>Reflects the status of the RCM fuel cutoff.</description>
  <element name="TERMINATE_FUEL" internal_name="FCS_TERMINATE_FUEL">
  </element>
  <element name="NORMAL_OPERATION" internal_name="FCS_NORMAL_OPERATION">
  </element>
  <element name="FAULT" internal_name="FCS_FAULT">
  </element>
</enum>

<enum name="PowerModeQualificationStatus">
  <description>Reflects the status of the current power mode qualification.</description>
  <element name="POWER_MODE_UNDEFINED">
  </element>
  <element name="POWER_MODE_EVALUATION_IN_PROGRESS">
  </element>
  <element name="NOT_DEFINED">
  </element>
  <element name="POWER_MODE_OK">
  </element>
</enum>

<enum name="CarModeStatus">
  <description>Reflects the status of the current car mode.</description>
  <element name="NORMAL" internal_name="CMS_NORMAL">
  </element>
  <element name="FACTORY" internal_name="CMS_FACTORY">
  </element>
  <element name="TRANSPORT" internal_name="CMS_TRANSPORT">
  </element>
  <element name="CRASH" internal_name="CMS_CRASH">
  </element>
</enum>

<enum name="PowerModeStatus">
  <description>Reflects the status of the current power mode.</description>
  <element name="KEY_OUT">
  </element>
  <element name="KEY_RECENTLY_OUT">
  </element>
  <element name="KEY_APPROVED_0">
  </element>
  <element name="POST_ACCESORY_0">
  </element>
  <element name="ACCESORY_1">
  </element>
  <element name="POST_IGNITION_1">
  </element>
  <element name="IGNITION_ON_2">
  </element>
  <element name="RUNNING_2">
  </element>
  <element name="CRANK_3">
  </element>
</enum>

<enum name="CharacterSet">
  <description>The list of potential character sets</description>
  <element name="TYPE2SET">
    <description>See [@TODO: create file ref]</description>
  </element>
  <element name="TYPE5SET">
    <description>See [@TODO: create file ref]</description>
  </element>
  <element name="CID1SET">
    <description>See [@TODO: create file ref]</description>
  </element>
  <element name="CID2SET">
    <description>See [@TODO: create file ref]</description>
  </element>
</enum>

<!-- End of IVI part-->

<enum name="AppPriority">
  <element name="EMERGENCY"/>
  <element name="NAVIGATION"/>
  <element name="VOICE_COMMUNICATION"/>
  <element name="COMMUNICATION"/>
  <element name="NORMAL"/>
  <element name="NONE"/>
</enum>

<enum name="MethodName">
  <description>Defines the type of the request which causes text-to-speech prompt</description>
  <element name="ALERT" />
  <element name="SPEAK" />
  <element name="AUDIO_PASS_THRU" />
  <element name="ALERT_MANEUVER" />
</enum>

<enum name="AlertType">
<description>Defines the type of the request which causes text-to-speech prompt</description>
<element name="UI" />
<element name="BOTH" />
</enum>

<enum name="HMILevel">
  <element name="FULL"/>
  <element name="LIMITED" />
  <element name="BACKGROUND"/>
  <element name="NONE"/>
</enum>

<enum name="EventTypes">
  <description>Reflects the current active event</description>
  <element name="AUDIO_SOURCE">
    <description>Navigated to audio(radio, etc)</description>
  </element>
  <element name="EMBEDDED_NAVI">
    <description>Navigated to navigation screen</description>
  </element>
  <element name="PHONE_CALL">
    <description>Phone call is active</description>
  </element>
  <element name="EMERGENCY_EVENT">
    <description>Active emergency event, active parking event</description>
  </element>
  <element name="DEACTIVATE_HMI">
    <description> GAL/DIO is active </description>
  </element>
</enum>

<enum name="DeliveryMode">
  <description>The mode in which the SendLocation request is sent</description>
  <element name="PROMPT" />
  <element name="DESTINATION" />
  <element name="QUEUE" />
</enum>

<enum name="VideoStreamingProtocol">
  <description>Enum for each type of video streaming protocol type.</description>
  <element name="RAW">
    <description>
      Raw stream bytes that contains no timestamp data and is the lowest supported video streaming
    </description>
  </element>
  <element name="RTP">
    <description>
      RTP facilitates the transfer of real-time data. Information provided by this protocol include
      timestamps (for synchronization), sequence numbers (for packet loss and reordering detection)
      and the payload format which indicates the encoded format of the data.
    </description>
  </element>
  <element name="RTSP">
    <description>
      The transmission of streaming data itself is not a task of RTSP. Most RTSP servers use the
      Real-time Transport Protocol (RTP) in conjunction with Real-time Control Protocol (RTCP)
      for media stream delivery. However, some vendors implement proprietary transport protocols.
    </description>
  </element>
  <element name="RTMP">
    <description>
      Real-Time Messaging Protocol (RTMP) was initially a proprietary protocol developed by
      Macromedia for streaming audio, video and data over the Internet, between a Flash player
      and a server. Macromedia is now owned by Adobe, which has released an incomplete version
      of the specification of the protocol for public use.
    </description>
  </element>
  <element name="WEBM">
    <description>
      The WebM container is based on a profile of Matroska. WebM initially supported VP8 video and
      Vorbis audio streams. In 2013 it was updated to accommodate VP9 video and Opus audio.
    </description>
  </element>
</enum>

<enum name="VideoStreamingCodec">
  <description>Enum for each type of video streaming codec.</description>
  <element name="H264">
    <description>
      A block-oriented motion-compensation-based video compression standard.
      As of 2014 it is one of the most commonly used formats for the recording, compression, and
      distribution of video content.
    </description>
  </element>
  <element name="H265">
    <description>
      High Efficiency Video Coding (HEVC), also known as H.265 and MPEG-H Part 2, is a video
      compression standard, one of several potential successors to the widely used AVC (H.264 or
      MPEG-4 Part 10). In comparison to AVC, HEVC offers about double the data compression ratio
      at the same level of video quality, or substantially improved video quality at the same
      bit rate. It supports resolutions up to 8192x4320, including 8K UHD.
    </description>
  </element>
  <element name="Theora">
    <description>
      Theora is derived from the formerly proprietary VP3 codec, released into the public domain
      by On2 Technologies. It is broadly comparable in design and bitrate efficiency to
      MPEG-4 Part 2, early versions of Windows Media Video, and RealVideo while lacking some of
      the features present in some of these other codecs. It is comparable in open standards
      philosophy to the BBC's Dirac codec.
    </description>
  </element>
  <element name="VP8">
    <description>
      VP8 can be multiplexed into the Matroska-based container format WebM along with Vorbis and
      Opus audio. The image format WebP is based on VP8's intra-frame coding. VP8's direct
      successor, VP9, and the emerging royalty-free internet video format AV1 from the Alliance for
      Open Media (AOMedia) are based on VP8.
    </description>
  </element>
  <element name="VP9">
    <description>
      Similar to VP8, but VP9 is customized for video resolutions beyond high-definition video (UHD)
      and also enables lossless compression.
    </description>
  </element>
</enum>

<!-- Policies -->
  <enum name="UpdateResult">
    <element name="UP_TO_DATE"/>
    <element name="UPDATING" />
    <element name="UPDATE_NEEDED"/>
  </enum>
  
  <enum name="SystemError">
    <element name="SYNC_REBOOTED"/>
    <element name="SYNC_OUT_OF_MEMMORY" />
  </enum>
  
  <enum name="StatisticsType">
    <element name="iAPP_BUFFER_FULL"/>
  </enum>
  
  <enum name="ConsentSource">
    <element name="GUI"/>
    <element name="VUI" />
  </enum>
  
  <enum name="DeviceState">
    <element name="UNKNOWN"/>
    <element name="UNPAIRED"/>
  </enum>
  <struct name="UserFriendlyMessage" scope="internal">
    <param name="messageCode" type="String" mandatory="true"/>
    <param name="ttsString" type="String" mandatory="false"/>
    <param name="label" type="String" mandatory="false" />
    <param name="line1" type="String" mandatory="false"/>
    <param name="line2" type="String" mandatory="false"/>
    <param name="textBody" type="String" mandatory="false"/>
  </struct>
  
  <struct name="PermissionItem">
    <param name="name" type="String" mandatory="true">
      <description>Code of message of user-friendly text about functional group to be allowed/disallowed</description>
    </param>
    <param name="id" type="Integer" mandatory="true">
      <description>Id of corresponding functional group, needed by SDL.</description>
    </param>
    <param name="allowed" type="Boolean" mandatory="false">
      <description>Specifies whether functionality was allowed/disallowed. If ommited - no information about User Consent is yet found for app.</description>
    </param>
  </struct>  
  <struct name="ServiceInfo">
    <param name="url" type="String" mandatory="true">
      <description>Get URL based on service type.</description>
    </param>
    <param name="appID" type="Integer" mandatory="false">
      <description>ID of application that requested this RPC.</description>
    </param>
  </struct>

  <enum name="EntityStatus">
    <element name="ON"/>
    <element name="OFF"/>
  </enum>

  <struct name="ExternalConsentStatus">
    <param name="entityType" type="Integer" minvalue="0" maxvalue="128" mandatory="true">
      <description>The entityType which status is informed by "status" param.</description>
    </param>
    <param name="entityID" type="Integer" minvalue="0" maxvalue="128" mandatory="true">
      <description>The corresponding ID of entityType which status is informed by "status" param</description>
    </param>
    <param name="status" type="Common.EntityStatus" mandatory="true">
      <description>Status of the ExternalConsentStatus entity: "ON" or "OFF". </description>
    </param>
  </struct>
<!-- End of Policies -->

<!-- Remote Control -->
<enum name="ModuleType">
   <element name="CLIMATE"/>
   <element name="RADIO"/>
 </enum>

 <enum name="RadioBand">
   <element name="AM"/>
   <element name="FM"/>
   <element name="XM"/>
 </enum>

 <struct name="RdsData">
  <param name="PS" type="String" minlength="0" maxlength="8" mandatory="false">
     <description>Program Service Name</description>
   </param>
  <param name="RT" type="String" minlength="0" maxlength="64" mandatory="false">
     <description>Radio Text</description>
   </param>
   <param name="CT" type="String" minlength="24" maxlength="24" mandatory="false">
     <description>The clock text in UTC format as YYYY-MM-DDThh:mm:ss.sTZD</description>
   </param>
  <param name="PI" type="String" minlength="0" maxlength="6" mandatory="false">
     <description>Program Identification - the call sign for the radio station</description>
   </param>
  <param name="PTY" type="Integer" minvalue="0" maxvalue="31" mandatory="false">
     <description>The program type - The region should be used to differentiate between EU and North America program types</description>
   </param>
  <param name="TP" type="Boolean" mandatory="false">
     <description>Traffic Program Identification - Identifies a station that offers traffic</description>
   </param>
  <param name="TA" type="Boolean" mandatory="false">
     <description>Traffic Announcement Identification - Indicates an ongoing traffic announcement</description>
   </param>
  <param name="REG" type="String" mandatory="false">
     <description>Region</description>
   </param>
 </struct>

 <enum name="RadioState">
   <element name="ACQUIRING"/>
   <element name="ACQUIRED"/>
   <element name="MULTICAST"/>
   <element name="NOT_FOUND"/>
 </enum>

 <struct name="RadioControlData">
   <param name="frequencyInteger" type="Integer" minvalue="0" maxvalue="1710" mandatory="false">
     <description>The integer part of the frequency ie for 101.7 this value should be 101</description>
   </param>
   <param name="frequencyFraction" type="Integer" minvalue="0" maxvalue="9" mandatory="false">
     <description>The fractional part of the frequency for 101.7 is 7</description>
   </param>
   <param name="band" type="Common.RadioBand" mandatory="false">
   </param>
   <param name="rdsData" type="Common.RdsData" mandatory="false">
   </param>
   <param name="availableHDs" type="Integer" minvalue="1" maxvalue="3" mandatory="false">
     <description>number of HD sub-channels if available</description>
   </param>
   <param name="hdChannel" type="Integer" minvalue="1" maxvalue="3" mandatory="false">
     <description>Current HD sub-channel if available</description>
   </param>
   <param name="signalStrength" type="Integer" minvalue="0" maxvalue="100" mandatory="false">
   </param>
   <param name="signalChangeThreshold" type="Integer" minvalue="0" maxvalue="100" mandatory="false">
     <description>If the signal strength falls below the set value for this parameter, the radio will tune to an alternative frequency</description>
   </param>
   <param name="radioEnable" type="Boolean" mandatory="false">
     <description> True if the radio is on, false is the radio is off</description>
   </param>
   <param name="state" type="Common.RadioState" mandatory="false">
   </param>
 </struct>

 <struct name="RadioControlCapabilities">
   <description>Contains information about a radio control module's capabilities.</description>
   <param name="moduleName" type="String" maxlength="100" mandatory="true" >
     <description>The short name or a short description of the radio control module.</description>
   </param>
   <param name="radioEnableAvailable" type="Boolean" mandatory="false">
     <description>
       Availability of the control of enable/disable radio.
       True: Available, False: Not Available, Not present: Not Available.
     </description>
   </param>
   <param name="radioBandAvailable" type="Boolean" mandatory="false" >
     <description>
       Availability of the control of radio band.
       True: Available, False: Not Available, Not present: Not Available.
     </description>
   </param>
   <param name="radioFrequencyAvailable" type="Boolean" mandatory="false" >
     <description>
       Availability of the control of radio frequency.
       True: Available, False: Not Available, Not present: Not Available.
     </description>
   </param>
   <param name="hdChannelAvailable" type="Boolean" mandatory="false" >
     <description>
       Availability of the control of HD radio channel.
       True: Available, False: Not Available, Not present: Not Available.
     </description>
   </param>
   <param name="rdsDataAvailable" type="Boolean" mandatory="false" >
     <description>
       Availability of the getting Radio Data System (RDS) data.
       True: Available, False: Not Available, Not present: Not Available.
     </description>
   </param>
   <param name="availableHDsAvailable" type="Boolean" mandatory="false" >
     <description>
       Availability of the getting the number of available HD channels.
       True: Available, False: Not Available, Not present: Not Available.
     </description>
   </param>
   <param name="stateAvailable" type="Boolean" mandatory="false" >
     <description>
       Availability of the getting the Radio state.
       True: Available, False: Not Available, Not present: Not Available.
     </description>
   </param>
   <param name="signalStrengthAvailable" type="Boolean" mandatory="false" >
     <description>
       Availability of the getting the signal strength.
       True: Available, False: Not Available, Not present: Not Available.
     </description>
   </param>
   <param name="signalChangeThresholdAvailable" type="Boolean" mandatory="false" >
     <description>
       Availability of the getting the signal Change Threshold.
       True: Available, False: Not Available, Not present: Not Available.
     </description>
   </param>
 </struct>

 <enum name="DefrostZone">
   <element name="FRONT"/>
   <element name="REAR"/>
   <element name="ALL"/>
   <element name="NONE"/>
 </enum>

 <enum name="VentilationMode">
   <element name="UPPER"/>
   <element name="LOWER"/>
   <element name="BOTH"/>
   <element name="NONE"/>
 </enum>

 <enum name="TemperatureUnit">
   <element name="FAHRENHEIT"/>
   <element name="CELSIUS"/>
 </enum>

 <struct name="Temperature">
    <param name="unit" type="TemperatureUnit" mandatory="true" >
      <description>Temperature Unit</description>
    </param>
    <param name="value" type="Float" mandatory="true" >
      <description>Temperature Value in TemperatureUnit specified unit. Range depends on OEM and is not checked by SDL.</description>
    </param>
  </struct>

 <struct name="ClimateControlData">
   <param name="fanSpeed" type="Integer" minvalue="0" maxvalue="100" mandatory="false">
   </param>
   <param name="currentTemperature" type="Common.Temperature" mandatory="false">
   </param>
   <param name="desiredTemperature" type="Common.Temperature" mandatory="false">
   </param>
   <param name="acEnable" type="Boolean" mandatory="false">
   </param>
   <param name="circulateAirEnable" type="Boolean" mandatory="false">
   </param>
   <param name="autoModeEnable" type="Boolean" mandatory="false">
   </param>
   <param name="defrostZone" type="DefrostZone" mandatory="false">
   </param>
   <param name="dualModeEnable" type="Boolean" mandatory="false">
   </param>
   <param name="acMaxEnable" type="Boolean" mandatory="false">
   </param>
   <param name="ventilationMode" type="Common.VentilationMode" mandatory="false">
   </param>
 </struct>

   <struct name="ClimateControlCapabilities">
   <description>Contains information about a climate control module's capabilities.</description>
   <param name="moduleName" type="String" maxlength="100" mandatory="true" >
     <description>The short name or a short description of the climate control module.</description>
   </param>
   <param name="currentTemperatureAvailable" type="Boolean" mandatory="false">
     <description>
       Availability of the reading of current temperature.
       True: Available, False: Not Available, Not present: Not Available.
     </description>
   </param>
   <param name="fanSpeedAvailable" type="Boolean" mandatory="false">
     <description>
       Availability of the control of fan speed.
       True: Available, False: Not Available, Not present: Not Available.
     </description>
   </param>
   <param name="desiredTemperatureAvailable" type="Boolean" mandatory="false">
     <description>
       Availability of the control of desired temperature.
       True: Available, False: Not Available, Not present: Not Available.
     </description>
   </param>
   <param name="acEnableAvailable" type="Boolean" mandatory="false">
     <description>
       Availability of the control of turn on/off AC.
       True: Available, False: Not Available, Not present: Not Available.
     </description>
   </param>
   <param name="acMaxEnableAvailable" type="Boolean" mandatory="false">
     <description>
       Availability of the control of enable/disable air conditioning is ON on the maximum level.
       True: Available, False: Not Available, Not present: Not Available.
     </description>
   </param>
   <param name="circulateAirEnableAvailable" type="Boolean" mandatory="false">
     <description>
       Availability of the control of enable/disable circulate Air mode.
       True: Available, False: Not Available, Not present: Not Available.
     </description>
   </param>
   <param name="autoModeEnableAvailable" type="Boolean" mandatory="false">
     <description>
       Availability of the control of enable/disable auto mode.
       True: Available, False: Not Available, Not present: Not Available.
     </description>
   </param>
   <param name="dualModeEnableAvailable" type="Boolean" mandatory="false">
     <description>
       Availability of the control of enable/disable dual mode.
       True: Available, False: Not Available, Not present: Not Available.
     </description>
   </param>
   <param name="defrostZoneAvailable" type="Boolean" mandatory="false">
     <description>
       Availability of the control of defrost zones.
       True: Available, False: Not Available, Not present: Not Available.
     </description>
   </param>
   <param name="defrostZone" type="Common.DefrostZone" minsize="1" maxsize="100" array="true" mandatory="false">
     <description>
       A set of all defrost zones that are controllable.
     </description>
   </param>
   <param name="ventilationModeAvailable" type="Boolean" mandatory="false">
     <description>
       Availability of the control of air ventilation mode.
       True: Available, False: Not Available, Not present: Not Available.
     </description>
   </param>
   <param name="ventilationMode" type="Common.VentilationMode" minsize="1" maxsize="100" array="true" mandatory="false">
     <description>
       A set of all ventilation modes that are controllable.
     </description>
   </param>
 </struct>

 <struct name="ModuleData">
   <description>The moduleType indicates which type of data should be changed and identifies which data object exists in this struct. For example, if the moduleType is CLIMATE then a "climateControlData" should exist</description>
   <param name="moduleType" type="Common.ModuleType" mandatory="true" >
   </param>
   <param name="radioControlData" type="Common.RadioControlData" mandatory="false">
   </param>
   <param name="climateControlData" type="Common.ClimateControlData" mandatory="false">
   </param>
 </struct>

<enum name="RCAccessMode">
  <description>Enumeration that describes possible remote control access mode the application might be in on HU.</description>
  <element name="AUTO_ALLOW"/>
  <element name="AUTO_DENY"/>
  <element name="ASK_DRIVER"/>
</enum>

<!-- End Remote Control -->
<struct name="TextField">
  <param name="name" type="Common.TextFieldName" mandatory="true">
    <description>The name that identifies the field. See TextFieldName.</description>
  </param>
  <param name="characterSet" type="Common.CharacterSet" mandatory="true">
    <description>The character set that is supported in this field. See CharacterSet.</description>
  </param>
  <param name="width" type="Integer" minvalue="1" maxvalue="500" mandatory="true">
    <description>The number of characters in one row of this field.</description>
  </param>
  <param name="rows" type="Integer" minvalue="1" maxvalue="8" mandatory="true">
    <description>The number of rows of this field.</description>
  </param>
</struct>

<struct name="ButtonCapabilities">
    <description>Contains the information about capabilities of a button.</description>
    <param name="name" type="Common.ButtonName" mandatory="true">
        <description>The name of the Button from the ButtonName enum</description>
    </param>
    <param name="shortPressAvailable" type="Boolean" mandatory="true">
        <description>The button supports a short press. Whenever the button is pressed short, onButtonPressed(SHORT) should be invoked.</description>
    </param>
    <param name="longPressAvailable" type="Boolean" mandatory="true">
        <description>The button supports a LONG press. Whenever the button is pressed long, onButtonPressed(LONG) should be invoked.</description>
    </param>
    <param name="upDownAvailable" type="Boolean" mandatory="true">
        <description>The button supports "button down" and "button up". Whenever the button is pressed, onButtonEvent(DOWN) should be invoked. Whenever the button is released, onButtonEvent(UP) should be invoked.</description>
    </param>
</struct>

<struct name="VehicleDataResult">
  <description>Individual published data request result</description>
  <param name="dataType" type="Common.VehicleDataType" mandatory="true">
    <description>Defined published data element type.</description>
  </param>
  <param name="resultCode" type="Common.VehicleDataResultCode" mandatory="true">
    <description>Published data result code.</description>
  </param>
</struct>

<struct name="TouchCoord">
  <param name="x" type="Integer" mandatory="true" minvalue="0" maxvalue="10000">
    <description>The x coordinate of the touch.</description>
  </param>
  <param name="y" type="Integer" mandatory="true" minvalue="0" maxvalue="10000">
    <description>The y coordinate of the touch.</description>
  </param>
</struct>

<struct name="TouchEvent">
  <param name="id" type="Integer" mandatory="true" minvalue="0" maxvalue="9">
    <description>
      A touch's unique identifier.  The application can track the current touch events by id.
      If a touch event has type begin, the id should be added to the set of touches.
      If a touch event has type end, the id should be removed from the set of touches.
    </description>
  </param>
  <param name="ts" type="Integer" mandatory="true" array="true" minvalue="0" maxvalue="2147483647" minsize="1" maxsize="1000">
    <description>
      The time that the touch was recorded.  This number can the time since the beginning of the session or something else as long as the units are in milliseconds.
      The timestamp is used to determined the rate of change of position of a touch.
      The application also uses the time to verify whether two touches, with different ids, are part of a single action by the user.
      If there is only a single timestamp in this array, it is the same for every coordinate in the coordinates array.
    </description>
  </param>
  <param name="c" type="Common.TouchCoord" mandatory="true" array="true" minsize="1" maxsize="1000">
  </param>
</struct>

<struct name="PresetBankCapabilities">
    <description>Contains information about on-screen preset capabilities (whether the HW preset buttons could be duplicated with onscreen buttons).</description>
    <param name="onScreenPresetsAvailable" type="Boolean" mandatory="true">
        <description>Must be true if onscreen custom presets are available.</description>
    </param>
</struct>

<struct name="Image">
  <param name="value" maxlength="65535" type="String" mandatory="true">
    <description>The path to the dynamic image stored on HU or the static binary image itself.</description>
  </param>
  <param name="imageType" type="Common.ImageType" mandatory="true">
    <description>Describes, whether it is a static or dynamic image.</description>
  </param>
</struct>

<struct name="DeviceInfo">
  <param name="name" type="String" mandatory="true">
    <description>The name of the device connected.</description>
  </param>
  <param name="id" type="String" mandatory="true">
    <description>The ID of the device connectedi: either hash of device's USB serial number(in case of USB connection) or has of device's MAC address(in case of BlueTooth or WIFI connection</description>
  </param>
  <param name="transportType" type="Common.TransportType" mandatory="false">
    <description>The transport type the named-app's-device is connected over HU(BlueTooth, USB or WiFi). It must be provided in OnAppRegistered and in UpdateDeviceList</description>
  </param>
  <param name="isSDLAllowed" type="Boolean" mandatory="false">
    <description>Sent by SDL in UpdateDeviceList. ’true’ – if device is allowed for PolicyTable Exchange; ‘false’ – if device is NOT allowed for PolicyTable Exchange </description>
  </param>
</struct>

<struct name="SoftButton">
    <param name="type" type="Common.SoftButtonType" mandatory="true">
      <description>Describes, whether text, icon or both text and image should be displayed on the soft button. See softButtonType</description>
    </param>
    <param name="text" maxlength="500" type="String" mandatory="false">
      <description>Optional text to be displayed (if defined as TEXT or BOTH)</description>
    </param>
    <param name="image" type="Common.Image" mandatory="false">
      <description>Optional image struct for SoftButton (if defined as IMAGE or BOTH)</description>
    </param>
    <param name="isHighlighted" type="Boolean" mandatory="false">
      <description>If true, must be highlighted</description>
      <description>If false, must be not</description>
    </param>
    <param name="softButtonID" type="Integer" minvalue="0" maxvalue="65535" mandatory="true">
      <description>Value which must be returned via OnButtonPress / OnButtonEvent</description>
    </param>
    <param name="systemAction" type="Common.SystemAction" mandatory="true">
      <description>Parameter indicates whether clicking a SoftButton must call a specific system action.  See SystemAction</description>
    </param>
 </struct>

<struct name="TTSChunk">
    <description>A TTS chunk, that consists of the text/phonemes to be spoken</description>
    <param name="text" type="String" mandatory="true" maxlength="500">
        <description>The text or phonemes to be spoken.</description>
    </param>
    <param name="type" type="Common.SpeechCapabilities" mandatory="true">
      <description>Describes, whether it is text or a specific phoneme set. See SpeechCapabilities.</description>
    </param>
</struct>

<struct name="RGBColor">
  <param name="red" type="Integer" minvalue="0" maxvalue="255" mandatory="true" />
  <param name="green" type="Integer" minvalue="0" maxvalue="255" mandatory="true" />
  <param name="blue" type="Integer" minvalue="0" maxvalue="255" mandatory="true" />
</struct>

<struct name="TemplateColorScheme">
  <description>
    A color scheme for all display layout templates.
  </description>
  <param name="primaryColor" type="Common.RGBColor" mandatory="false">
    <description>The primary "accent" color</description>
  </param>
  <param name="secondaryColor" type="Common.RGBColor" mandatory="false">
      <description>The secondary "accent" color</description>
  </param>
  <param name="backgroundColor" type="Common.RGBColor" mandatory="false">
    <description>The color of the background</description>
  </param>
</struct>

<struct name="HMIApplication">
    <description>Data type containing information about application needed by HMI.</description>
    <param name="appName" type="String" maxlength="100" mandatory="true">
      <description>The mobile application name, e.g. "Ford Drive Green".</description>
    </param>
    <param name="ngnMediaScreenAppName" type="String" maxlength="100" mandatory="false">
      <description>Provides an abbreviated version of the app name (if needed), that may be displayed on the NGN media screen.</description>
      <description>If not provided, the appName should be used instead (and may be truncated if too long)</description>
    </param>
    <param name="icon" type="String" mandatory="false">
      <description>Path to application icon stored on HU.</description>
    </param>
    <param name="deviceInfo" type="Common.DeviceInfo" mandatory="true">
       <description>The ID, serial number, transport type the named-app's-device is connected over to HU.</description>
    </param>
    <param name="policyAppID" type="String" maxlength="50" minlength="1" mandatory="true">
      <description>Policy ID(=the appID the application registers with) of registered application.</description>
    </param>
    <param name="ttsName" type="Common.TTSChunk" minsize="1" maxsize="100" array="true" mandatory="false" >
      <description>
        TTS string for VR recognition of the mobile application name, e.g. "Ford Drive Green".
        Meant to overcome any failing on speech engine in properly pronouncing / understanding app name.
        May not be empty.
        May not start with a new line character.
        Not unique value
      </description>
    </param>
    <param name="vrSynonyms" type="String" maxlength="40" minsize="1" maxsize="100" array="true" mandatory="false">
      <description>
        Defines an additional voice recognition command.
        Must not interfere with any name of previously registered applications(SDL makes check).
      </description>
    </param>
    <param name="appID" type="Integer" mandatory="true">
      <description>Unique (during ignition cycle) id of the application. To be used in all RPCs sent by both HU system and SDL</description>
    </param>
    <param name="hmiDisplayLanguageDesired" type="Common.Language" mandatory="false">
      <description>The language the application intends to use on HU  </description>
    </param>
    <param name="isMediaApplication" type="Boolean" mandatory="false">
      <description>Indicates whether it is a media or a non-media application.</description>
    </param>
    <param name="appType" type="Common.AppHMIType" minsize="1" maxsize="100" array="true" mandatory="false">
      <description>List of all applicable app types stating which classifications to be given to the app.</description>
      <description>e.g. for platforms like GEN2, this determines which "corner(s)" the app can populate.</description>
    </param>
    <param name="greyOut" type="Boolean" mandatory="false">
      <description>Indicates whether application should be dimmed on the screen.</description>
      <description>Applicable only for apps received through QueryApps and still not registered.</description>
    </param>
    <param name="requestType" type="Common.RequestType" minsize="0" maxsize="100" array="true" mandatory="false">
      <description>The list of SystemRequest's RequestTypes allowed by policies for the named application</description>
      <description>(the app's SystemRequest sent with RequestType out of this list will get 'disallowed' response from SDL).</description>
      <description>If SDL sends an empty array - any RequestType is allowed for this app.</description>
      <description>If SDL omits this parameter - none RequestType is allowed for this app</description>
      <description>(either this is a pre-registered app or such is dictated by policies).</description>
    </param>
	<param name="requestSubType" type="String" maxlength="100" minsize="0" maxsize="100" array="true" mandatory="false">
        <description>
            The list of SystemRequest's requestSubTypes allowed by policies for the named application.
            If the app sends a requestSubType which is not specified in this list, then that request should be rejected.
            An empty array signifies that any value of requestSubType is allowed for this app.
            If this parameter is omitted, then a request with any value of requestSubType is now allowed for this app
        </description>
    </param>
    <param name="dayColorScheme" type="Common.TemplateColorScheme" mandatory="false"></param>
    <param name="nightColorScheme" type="Common.TemplateColorScheme" mandatory="false"></param> 
</struct>

<struct name="MenuParams">
  <param name="parentID" type="Integer" minvalue="0" maxvalue="2000000000" mandatory="false">
    <description>unique ID of the sub menu, the command must be added to.</description>
    <description>If not provided, the command must be added to the top level of the in application menu.</description>
  </param>
  <param name="position" type="Integer" minvalue="0" maxvalue="1000" mandatory="false">
    <description>Position within the items that are at the top level of the in application menu.</description>
    <description>0 should insert at the front.</description>
    <description>1 should insert at the second position.</description>
    <description>if position is greater than or equal to the number of items on the top level, the the sub menu/command should be appended to the end.</description>
    <description>If this param is omitted the entry should be added at the end.</description>
  </param>
  <param name="menuName" type="String" maxlength="500" mandatory="true">
    <description>The name of the sub menu/command.</description>
  </param>
</struct>

<struct name="Choice">
  <description>A choice is an option given to the user which can be selected either by menu, or through voice recognition system.</description>
  <param name="choiceID" type="Integer" minvalue="0" maxvalue="65535" mandatory="true">
    <description> The unique within the concerned application identifier for this choice </description>
  </param>
  <param name="menuName" type="String" maxlength="500" mandatory="false">
    <description> The name of the choice </description>
  </param>
  <param name="image" type="Common.Image" mandatory="false">
    <description> The image for representing the choice </description>
  </param>
  <param name="secondaryText" maxlength="500" type="String" mandatory="false">
    <description>Optional secondary text to display; e.g. address of POI in a search result entry</description>
  </param>
  <param name="tertiaryText" maxlength="500" type="String" mandatory="false">
    <description>Optional tertiary text to display; e.g. distance to POI for a search result entry</description>
  </param>
  <param name="secondaryImage" type="Common.Image" mandatory="false">
    <description>Optional secondary image struct for choice</description>
  </param>
</struct>

<struct name="VrHelpItem">
  <param name="text" maxlength="500" type="String" mandatory="true">
    <description>Text to display for VR Help item</description>
  </param>
  <param name="image" type="Common.Image" mandatory="false">
    <description>Image struct for VR Help item</description>
  </param>
  <param name="position" type="Integer" minvalue="1" maxvalue="100" mandatory="true">
    <description>Position to display item in VR Help list</description>
  </param>
</struct>

<struct name="TimeFormat">
  <param name="hours" type="Integer" minvalue="0" maxvalue="59" mandatory="true">
    <description>The hour of the media clock.</description>
    <description>Some units only support a max of 19 hours. If out of range, it should be rejected.</description>
  </param>
  <param name="minutes" type="Integer" minvalue="0" maxvalue="59" mandatory="true"/>
  <param name="seconds" type="Integer" minvalue="0" maxvalue="59" mandatory="true"/>
</struct>

<struct name="TouchEventCapabilities">
  <param name="pressAvailable" type="Boolean" mandatory="true">
  </param>
  <param name="multiTouchAvailable" type="Boolean" mandatory="true">
  </param>
  <param name="doublePressAvailable" type="Boolean" mandatory="true">
  </param>
</struct>

<struct name="ImageResolution">
  <param name="resolutionWidth" type="Integer" minvalue="1" maxvalue="10000" mandatory="true">
    <description>The image resolution width.</description>
  </param>
  <param name="resolutionHeight" type="Integer" minvalue="1" maxvalue="10000" mandatory="true">
    <description>The image resolution height.</description>
  </param>
</struct>

<struct name="ScreenParams">
  <param name="resolution" type="Common.ImageResolution" mandatory="true">
    <description>The resolution of the prescribed screen area.</description>
  </param>
  <param name="touchEventAvailable" type="Common.TouchEventCapabilities" mandatory="false">
    <description>Types of screen touch events available in screen area.</description>
  </param>
</struct>

<struct name="ImageField">
  <param name="name" type="Common.ImageFieldName" mandatory="true">
    <description>The name that identifies the field. See ImageFieldName.</description>
  </param>
  <param name="imageTypeSupported" type="Common.FileType" maxsize="100" array="true" mandatory="false" minsize="1">
    <description>The image types that are supported in this field. See FileType.</description>
  </param>
  <param name="imageResolution" type="Common.ImageResolution" mandatory="false">
    <description>The image resolution of this field.</description>
  </param>
</struct>

<struct name="VideoStreamingFormat">
  <description>Video streaming formats and their specifications.</description>
  <param name="protocol" type="Common.VideoStreamingProtocol" mandatory="true">
    <description>Protocol type, see VideoStreamingProtocol</description>
  </param>
  <param name="codec" type="Common.VideoStreamingCodec" mandatory="true">
    <description>Codec type, see VideoStreamingCodec</description>
  </param>
</struct>

<struct name="VideoConfig">
  <description>Configuration of a video stream.</description>
  <param name="protocol" type="Common.VideoStreamingProtocol" mandatory="false">
    <description>The video protocol configuration</description>
  </param>
  <param name="codec" type="Common.VideoStreamingCodec" mandatory="false">
    <description>The video codec configuration</description>
  </param>
  <param name="width" type="Integer" mandatory="false">
    <description>Width of the video stream, in pixels.</description>
  </param>
  <param name="height" type="Integer" mandatory="false">
    <description>Height of the video stream, in pixels.</description>
  </param>
</struct>

<struct name="DisplayCapabilities">
  <description>Contains information about the display capabilities.</description>
  <param name="displayType" type="Common.DisplayType" mandatory="true">
    <description>The type of the display. See DisplayType</description>
  </param>
  <param name="textFields" type="Common.TextField" minsize="0" maxsize="100" array="true" mandatory="true">
    <description>A set of all fields for text displaying supported by HU. See TextFieldName.</description>
    <description>If there are no textfields supported, the empty array must be returned</description>
  </param>
  <param name="imageFields" type="Common.ImageField" minsize="1" maxsize="100" array="true" mandatory="false">
    <description>A set of all fields that support images. See ImageField</description>
  </param>
  <param name="mediaClockFormats" type="Common.MediaClockFormat" minsize="0" maxsize="100" array="true" mandatory="true">
    <description>A set of all supported formats of the media clock. See MediaClockFormat</description>
  </param>
  <param name="imageCapabilities" type="Common.ImageType" array="true" minsize="0" maxsize="2" mandatory="false">
  </param>
  <param name="graphicSupported" type="Boolean" mandatory="true">
    <description>The display's persistent screen supports referencing a static or dynamic image.</description>
  </param>
  <param name="templatesAvailable" type="String" minsize="0" maxsize="100" maxlength="100" array="true" mandatory="true">
    <description>A set of all predefined persistent display templates available on headunit.  To be referenced in SetDisplayLayout.</description>
  </param>
  <param name="screenParams" type="Common.ScreenParams" mandatory="false">
    <description>A set of all parameters related to a prescribed screen area (e.g. for video / touch input).</description>
  </param>
  <param name="numCustomPresetsAvailable" type="Integer" minvalue="1" maxvalue="100" mandatory="false">
    <description>The number of on-screen custom presets available (if any); otherwise omitted.</description>
  </param>
</struct>

<struct name="SoftButtonCapabilities">
  <description>Contains information about a SoftButton's capabilities.</description>
  <param name="shortPressAvailable" type="Boolean" mandatory="true">
    <description>The button supports a short press.</description>
    <description>Whenever the button is pressed short, onButtonPressed( SHORT) must be invoked.</description>
  </param>
  <param name="longPressAvailable" type="Boolean" mandatory="true">
    <description>The button supports a LONG press.</description>
    <description>Whenever the button is pressed long, onButtonPressed( LONG) must be invoked.</description>
  </param>
  <param name="upDownAvailable" type="Boolean" mandatory="true">
    <description>The button supports "button down" and "button up".</description>
    <description>Whenever the button is pressed, onButtonEvent( DOWN) must be invoked.</description>
    <description>Whenever the button is released, onButtonEvent( UP) must be invoked.</description>
  </param>
  <param name="imageSupported" type="Boolean" mandatory="true">
    <description>Must be true if the button supports referencing a static or dynamic image.</description>
  </param>
</struct>

<struct name="HMICapabilities">
  <param name="navigation" type="Boolean" mandatory="false">
    <description>Availability of build in Nav. True: Available, False: Not Available</description>
  </param>
  <param name="phoneCall" type="Boolean" mandatory="false">
    <description>Availability of build in phone. True: Available, False: Not Available</description>
  </param>
  <param name="videoStreaming" type="Boolean" mandatory="false">
    <description>Availability of built-in video streaming. True: Available, False: Not Available</description>
  </param>
</struct>

<struct name="AudioPassThruCapabilities">
  <description>
    Describes different audio type configurations for PerformAudioPassThru.
    e.g. 8kHz,8-bit,PCM
  </description>
  <param name="samplingRate" type="Common.SamplingRate" mandatory="true"/>
  <param name="bitsPerSample" type="Common.BitsPerSample" mandatory="true"/>
  <param name="audioType" type="Common.AudioType" mandatory="true"/>
</struct>

<struct name="TextFieldStruct">
  <param name="fieldName" type="Common.TextFieldName" mandatory="true">
    <description>The name of the field for displaying the text.</description>
  </param>
  <param name="fieldText" type="String" maxlength="500" mandatory="true">
    <description>The  text itself.</description>
  </param>
  <param name="fieldTypes" type="Common.MetadataType" minsize="0" maxsize="5" array="true" mandatory="false">
    <description>The type of data contained in the field.</description>
  </param>
</struct>

<struct name="KeyboardProperties">
  <description>Configuration of on-screen keyboard (if available).</description>
  <param name="language" type="Common.Language" mandatory="false">
    <description>The keyboard language.</description>
  </param>
  <param name="keyboardLayout" type="Common.KeyboardLayout" mandatory="false" >
    <description>Desired keyboard layout.</description>
  </param>
  <param name="keypressMode" type="Common.KeypressMode" mandatory="false" >
    <description>
        Desired keypress mode.
        If omitted, this value will be set to RESEND_CURRENT_ENTRY.
    </description>
  </param>
  <param name="limitedCharacterList" type="String" maxlength="1" minsize="1" maxsize="100" array="true" mandatory="false">
    <description>Array of keyboard characters to enable.</description>
    <description>All omitted characters will be greyed out (disabled) on the keyboard.</description>
    <description>If omitted, the entire keyboard will be enabled.</description>
  </param>
  <param name="autoCompleteText" type="String" maxlength="1000" mandatory="false">
    <description>Allows an app to prepopulate the text field with a suggested or completed entry as the user types</description>
  </param>
</struct>

<struct name="Turn">
  <param name="navigationText" type="Common.TextFieldStruct" mandatory="false">
    <description>Uses navigationText from TextFieldStruct.</description>
  </param>
  <param name="turnIcon" type="Common.Image" mandatory="false">
  </param>
</struct>

<struct name="VehicleType">
  <param name="make" type="String" maxlength="500" mandatory="false">
    <description>Make of the vehicle</description>
    <description>e.g. Ford</description>
  </param>
  <param name="model" type="String" maxlength="500" mandatory="false">
    <description>Model of the vehicle</description>
    <description>e.g. Fiesta</description>
  </param>
  <param name="modelYear" type="String" maxlength="500" mandatory="false">
    <description>Model Year of the vehicle</description>
    <description>e.g. 2013</description>
  </param>
  <param name="trim" type="String" maxlength="500" mandatory="false">
    <description>Trim of the vehicle</description>
    <description>e.g. SE</description>
  </param>
</struct>

<!--IVI part-->
<struct name="GPSData">
  <description>Struct with the GPS data.</description>
  <param name="longitudeDegrees" type="Float" minvalue="-180" maxvalue="180" mandatory="false">
  </param>
  <param name="latitudeDegrees" type="Float" minvalue="-90" maxvalue="90" mandatory="false">
  </param>
  <param name="utcYear" type="Integer" minvalue="2010" maxvalue="2100" mandatory="false">
    <description>The current UTC year.</description>
  </param>
  <param name="utcMonth" type="Integer" minvalue="1" maxvalue="12" mandatory="false">
    <description>The current UTC month.</description>
  </param>
  <param name="utcDay" type="Integer" minvalue="1" maxvalue="31" mandatory="false">
    <description>The current UTC day.</description>
  </param>
  <param name="utcHours" type="Integer" minvalue="0" maxvalue="23" mandatory="false">
    <description>The current UTC hour.</description>
  </param>
  <param name="utcMinutes" type="Integer" minvalue="0" maxvalue="59" mandatory="false">
    <description>The current UTC minute.</description>
  </param>
  <param name="utcSeconds" type="Integer" minvalue="0" maxvalue="59" mandatory="false">
    <description>The current UTC second.</description>
  </param>
  <param name="compassDirection" type="Common.CompassDirection" mandatory="false">
    <description>See CompassDirection.</description>
  </param>
  <param name="pdop" type="Float" minvalue="0" maxvalue="10" mandatory="false">
    <description>PDOP.</description>
  </param>
  <param name="hdop" type="Float" minvalue="0" maxvalue="10" mandatory="false">
    <description>HDOP.</description>
  </param>
  <param name="vdop" type="Float" minvalue="0" maxvalue="10" mandatory="false">
    <description>VDOP.</description>
  </param>
  <param name="actual" type="Boolean" mandatory="false">
    <description>
      True, if actual.
      False, if infered.
    </description>
  </param>
  <param name="satellites" type="Integer" minvalue="0" maxvalue="31" mandatory="false">
    <description>Number of satellites in view</description>
  </param>
  <param name="dimension" type="Common.Dimension" mandatory="false">
    <description>See Dimension</description>
  </param>
  <param name="altitude" type="Float" minvalue="-10000" maxvalue="10000" mandatory="false">
    <description>Altitude in meters</description>
  </param>
  <param name="heading" type="Float" minvalue="0" maxvalue="359.99" mandatory="false">
    <description>The heading. North is 0. Resolution is 0.01</description>
  </param>
  <param name="speed" type="Float" minvalue="0" maxvalue="500" mandatory="false">
    <description>The speed in KPH</description>
  </param>
</struct>

<struct name="SingleTireStatus">
  <param name="status" type="Common.ComponentVolumeStatus" mandatory="true">
    <description>The status of component volume. See ComponentVolumeStatus.</description>
</param>
</struct>

<struct name="DIDResult">
  <description>Individual requested DID result and data</description>
  <param name="resultCode" type="Common.VehicleDataResultCode" mandatory="true">
    <description>Individual DID result code.</description>
  </param>
  <param name="didLocation" type="Integer" minvalue="0" maxvalue="65535" mandatory="true">
    <description>Location of raw data (the address from ReadDID request)</description>
  </param>
  <param name="data" type="String" maxlength="5000" mandatory="false">
    <description>Raw DID-based data returned for requested element.</description>
  </param>
</struct>

<struct name="HeadLampStatus">
  <param name="lowBeamsOn" type="Boolean" mandatory="true">
    <description>Status of the low beam lamps.</description>
  </param>
  <param name="highBeamsOn" type="Boolean" mandatory="true">
    <description>Status of the high beam lamps.</description>
  </param>
  <param name="ambientLightSensorStatus" type="Common.AmbientLightStatus" mandatory="true">
    <description>Status of the ambient light sensor.</description>
  </param>
</struct>

<struct name="TireStatus">
  <description>The status and pressure of the tires.</description>
  <param name="pressureTelltale" type="Common.WarningLightStatus" mandatory="false">
    <description>Status of the Tire Pressure Telltale. See WarningLightStatus.</description>
  </param>
  <param name="leftFront" type="Common.SingleTireStatus" mandatory="false">
    <description>The status of the left front tire.</description>
  </param>
  <param name="rightFront" type="Common.SingleTireStatus" mandatory="false">
    <description>The status of the right front tire.</description>
  </param>
  <param name="leftRear" type="Common.SingleTireStatus" mandatory="false">
    <description>The status of the left rear tire.</description>
  </param>
  <param name="rightRear" type="Common.SingleTireStatus" mandatory="false">
    <description>The status of the right rear tire.</description>
  </param>
  <param name="innerLeftRear" type="Common.SingleTireStatus" mandatory="false">
    <description>The status of the inner left rear.</description>
  </param>
  <param name="innerRightRear" type="Common.SingleTireStatus" mandatory="false">
    <description>The status of the inner right rear.</description>
  </param>
</struct>

<struct name="BeltStatus">
  <param name="driverBeltDeployed" type="Common.VehicleDataEventStatus" mandatory="false">
    <description>See VehicleDataEventStatus.</description>
  </param>
  <param name="passengerBeltDeployed" type="Common.VehicleDataEventStatus" mandatory="false">
    <description>See VehicleDataEventStatus.</description>
  </param>
  <param name="passengerBuckleBelted" type="Common.VehicleDataEventStatus" mandatory="false">
    <description>See VehicleDataEventStatus.</description>
  </param>
  <param name="driverBuckleBelted" type="Common.VehicleDataEventStatus" mandatory="false">
    <description>See VehicleDataEventStatus.</description>
  </param>
  <param name="leftRow2BuckleBelted" type="Common.VehicleDataEventStatus" mandatory="false">
    <description>See VehicleDataEventStatus.</description>
  </param>
  <param name="passengerChildDetected" type="Common.VehicleDataEventStatus" mandatory="false">
    <description>See VehicleDataEventStatus.</description>
  </param>
  <param name="rightRow2BuckleBelted" type="Common.VehicleDataEventStatus" mandatory="false">
    <description>See VehicleDataEventStatus.</description>
  </param>
  <param name="middleRow2BuckleBelted" type="Common.VehicleDataEventStatus" mandatory="false">
    <description>See VehicleDataEventStatus.</description>
  </param>
  <param name="middleRow3BuckleBelted" type="Common.VehicleDataEventStatus" mandatory="false">
    <description>See VehicleDataEventStatus.</description>
  </param>
  <param name="leftRow3BuckleBelted" type="Common.VehicleDataEventStatus" mandatory="false">
    <description>See VehicleDataEventStatus.</description>
  </param>
  <param name="rightRow3BuckleBelted" type="Common.VehicleDataEventStatus" mandatory="false">
    <description>See VehicleDataEventStatus.</description>
  </param>
  <param name="leftRearInflatableBelted" type="Common.VehicleDataEventStatus" mandatory="false">
    <description>See VehicleDataEventStatus.</description>
  </param>
  <param name="rightRearInflatableBelted" type="Common.VehicleDataEventStatus" mandatory="false">
    <description>See VehicleDataEventStatus.</description>
  </param>
  <param name="middleRow1BeltDeployed" type="Common.VehicleDataEventStatus" mandatory="false">
    <description>See VehicleDataEventStatus.</description>
  </param>
  <param name="middleRow1BuckleBelted" type="Common.VehicleDataEventStatus" mandatory="false">
    <description>See VehicleDataEventStatus.</description>
  </param>
</struct>

<struct name="BodyInformation">
  <param name="parkBrakeActive" type="Boolean" mandatory="true">
    <description>Must be true if the park brake is active</description>
  </param>
  <param name="ignitionStableStatus" type="Common.IgnitionStableStatus" mandatory="true">
    <description>Information about the ignition switch. See IgnitionStableStatus.</description>
  </param>
  <param name="ignitionStatus" type="Common.IgnitionStatus" mandatory="true">
    <description>The status of the ignition. See IgnitionStatus.</description>
  </param>
  <param name="driverDoorAjar" type="Boolean" mandatory="false">
    <description>References signal "DrStatDrv_B_Actl".</description>
  </param>
  <param name="passengerDoorAjar" type="Boolean" mandatory="false">
    <description>References signal "DrStatPsngr_B_Actl".</description>
  </param>
  <param name="rearLeftDoorAjar" type="Boolean" mandatory="false">
    <description>References signal "DrStatRl_B_Actl".</description>
  </param>
  <param name="rearRightDoorAjar" type="Boolean" mandatory="false">
    <description>References signal "DrStatRr_B_Actl".</description>
  </param>
</struct>

<struct name="DeviceStatus">
  <param name="voiceRecOn" type="Boolean" mandatory="false">
    <description>Must be true if the voice recording is on.</description>
  </param>
  <param name="btIconOn" type="Boolean" mandatory="false">
    <description>Must be true if Bluetooth icon is displayed.</description>
  </param>
  <param name="callActive" type="Boolean" mandatory="false">
    <description>Must be true if there is an active call..</description>
  </param>
  <param name="phoneRoaming" type="Boolean" mandatory="false">
    <description>Must be true if ther is a phone roaming.</description>
  </param>
  <param name="textMsgAvailable" type="Boolean" mandatory="false">
    <description>Must be true if the text message is available.</description>
  </param>
  <param name="battLevelStatus" type="Common.DeviceLevelStatus" mandatory="false">
    <description>Device battery level status. See DeviceLevelStatus.</description>
  </param>
  <param name="stereoAudioOutputMuted" type="Boolean" mandatory="false">
    <description>Must be true if stereo audio output is muted.</description>
  </param>
  <param name="monoAudioOutputMuted" type="Boolean" mandatory="false">
    <description>Must be true if mono audio output is muted.</description>
  </param>
  <param name="signalLevelStatus" type="Common.DeviceLevelStatus" mandatory="false">
    <description>Device signal level status. See DeviceLevelStatus.</description>
  </param>
  <param name="primaryAudioSource" type="Common.PrimaryAudioSource" mandatory="false">
    <description>See PrimaryAudioSource.</description>
  </param>
  <param name="eCallEventActive" type="Boolean" mandatory="false">
    <description>Must be true if emergency call event is active.</description>
  </param>
</struct>

<struct name="ECallInfo">
  <param name="eCallNotificationStatus" type="Common.VehicleDataNotificationStatus" mandatory="true">
    <description>References signal "eCallNotification_4A". See VehicleDataNotificationStatus.</description>
  </param>
  <param name="auxECallNotificationStatus" type="Common.VehicleDataNotificationStatus" mandatory="true">
    <description>References signal "eCallNotification". See VehicleDataNotificationStatus.</description>
  </param>
  <param name="eCallConfirmationStatus" type="Common.ECallConfirmationStatus" mandatory="true">
    <description>References signal "eCallConfirmation". See ECallConfirmationStatus.</description>
  </param>
</struct>

<struct name="AirbagStatus">
  <param name="driverAirbagDeployed" type="Common.VehicleDataEventStatus" mandatory="true">
    <description>References signal "VedsDrvBag_D_Ltchd". See VehicleDataEventStatus.</description>
  </param>
  <param name="driverSideAirbagDeployed" type="Common.VehicleDataEventStatus" mandatory="true">
    <description>References signal "VedsDrvSideBag_D_Ltchd". See VehicleDataEventStatus.</description>
  </param>
  <param name="driverCurtainAirbagDeployed" type="Common.VehicleDataEventStatus" mandatory="true">
    <description>References signal "VedsDrvCrtnBag_D_Ltchd". See VehicleDataEventStatus.</description>
  </param>
  <param name="passengerAirbagDeployed" type="Common.VehicleDataEventStatus" mandatory="true">
    <description>References signal "VedsPasBag_D_Ltchd". See VehicleDataEventStatus.</description>
  </param>
  <param name="passengerCurtainAirbagDeployed" type="Common.VehicleDataEventStatus" mandatory="true">
    <description>References signal "VedsPasCrtnBag_D_Ltchd". See VehicleDataEventStatus.</description>
  </param>
  <param name="driverKneeAirbagDeployed" type="Common.VehicleDataEventStatus" mandatory="true">
    <description>References signal "VedsKneeDrvBag_D_Ltchd". See VehicleDataEventStatus.</description>
  </param>
  <param name="passengerSideAirbagDeployed" type="Common.VehicleDataEventStatus" mandatory="true">
    <description>References signal "VedsPasSideBag_D_Ltchd". See VehicleDataEventStatus.</description>
  </param>
  <param name="passengerKneeAirbagDeployed" type="Common.VehicleDataEventStatus" mandatory="true">
    <description>References signal "VedsKneePasBag_D_Ltchd". See VehicleDataEventStatus.</description>
  </param>
</struct>

<struct name="EmergencyEvent">
  <param name="emergencyEventType" type="Common.EmergencyEventType" mandatory="true">
    <description>References signal "VedsEvntType_D_Ltchd". See EmergencyEventType.</description>
  </param>
  <param name="fuelCutoffStatus" type="Common.FuelCutoffStatus" mandatory="true">
    <description>References signal "RCM_FuelCutoff". See FuelCutoffStatus.</description>
  </param>
  <param name="rolloverEvent" type="Common.VehicleDataEventStatus" mandatory="true">
    <description>References signal "VedsEvntRoll_D_Ltchd". See VehicleDataEventStatus.</description>
  </param>
  <param name="maximumChangeVelocity" type="Common.VehicleDataEventStatus" mandatory="true">
    <description>References signal "VedsMaxDeltaV_D_Ltchd". See VehicleDataEventStatus.</description>
  </param>
  <param name="multipleEvents" type="Common.VehicleDataEventStatus" mandatory="true">
    <description>References signal "VedsMultiEvnt_D_Ltchd". See VehicleDataEventStatus.</description>
  </param>
</struct>

<struct name="ClusterModeStatus">
  <param name="powerModeActive" type="Boolean" mandatory="true">
    <description>References signal "PowerMode_UB".</description>
  </param>
  <param name="powerModeQualificationStatus" type="Common.PowerModeQualificationStatus" mandatory="true">
    <description>References signal "PowerModeQF". See PowerModeQualificationStatus.</description>
  </param>
  <param name="carModeStatus" type="Common.CarModeStatus" mandatory="true">
    <description>References signal "CarMode". See CarMode.</description>
  </param>
  <param name="powerModeStatus" type="Common.PowerModeStatus" mandatory="true">
    <description>References signal "PowerMode". See PowerMode.</description>
  </param>
</struct>

<struct name="MyKey">
  <param name="e911Override" type="Common.VehicleDataStatus" mandatory="true">
    <description>Indicates whether e911 override is on. See VehicleDataStatus.</description>
  </param>
</struct>
<!--end of IVI part-->

<struct name="DateTime">
  <param name="millisecond" type="Integer" minvalue="0" maxvalue="999" mandatory="false">
    <description>Milliseconds </description>     
  </param>
  <param name="second" type="Integer" minvalue="0" maxvalue="60" mandatory="false">
    <description>Seconds part of time</description>
  </param>
  <param name="minute" type="Integer" minvalue="0" maxvalue="59" mandatory="false">
    <description>Minutes part of time</description>
  </param>
  <param name="hour" type="Integer" minvalue="0" maxvalue="23" mandatory="false">
    <description>Hours part of time. Note that this structure accepts time only in 24 Hr format</description>
  </param>
  <param name="day" type="Integer" minvalue="1" maxvalue="31" mandatory="false">
    <description>Day of the month</description>
  </param>
  <param name="month" type="Integer" minvalue="1" maxvalue="12" mandatory="false">
    <description>Month of the year</description>
  </param>
  <param name="year" type="Integer" maxvalue="4095" mandatory="false">
    <description>The year in YYYY format</description>
  </param>
  <param name="tz_hour" type="Integer" minvalue="-12" maxvalue="14" defvalue="0" mandatory="false">
    <description>Time zone offset in Hours wrt UTC.</description>
  </param>
  <param name="tz_minute" type="Integer" minvalue="0" maxvalue="59" defvalue="0" mandatory="false">
    <description>Time zone offset in Min wrt UTC.</description>
  </param>
</struct>

<struct name="OASISAddress">
  <param name="countryName" minlength="0" maxlength="200" type="String" mandatory="false">
    <description>Name of the country (localized)</description>
  </param>
  <param name="countryCode" minlength="0" maxlength="50" type="String" mandatory="false">
    <description>Name of country (ISO 3166-2)</description>
  </param>
  <param name="postalCode" minlength="0" maxlength="16" type="String" mandatory="false">
    <description>(PLZ, ZIP, PIN, CAP etc.)</description>
  </param>
  <param name="administrativeArea" minlength="0" maxlength="200" type="String" mandatory="false">
    <description>Portion of country (e.g. state)</description>
  </param>
  <param name="subAdministrativeArea" minlength="0" maxlength="200" type="String" mandatory="false">
    <description>Portion of e.g. state (e.g. county)</description>
  </param>
  <param name="locality" minlength="0" maxlength="200" type="String" mandatory="false">
    <description>Hypernym for e.g. city/village</description>
  </param>
  <param name="subLocality" minlength="0" maxlength="200" type="String" mandatory="false">
    <description>Hypernym for e.g. district</description>
  </param>
  <param name="thoroughfare" minlength="0" maxlength="200" type="String" mandatory="false">
    <description>Hypernym for street, road etc.</description>
  </param>
  <param name="subThoroughfare" minlength="0" maxlength="200" type="String" mandatory="false">
    <description>Portion of thoroughfare e.g. house number</description>
  </param>
</struct>

  <struct name="LocationDetails">
    <param name="coordinate" type="Coordinate" mandatory="false">
      <description>Latitude/Longitude of the location.</description>
    </param>
    <param name="locationName" type="String" maxlength="500" mandatory="false">
      <description>Name of location.</description>
    </param>
    <param name="addressLines" type="String" maxlength="500" minsize="0" maxsize="4" array="true" mandatory="false">
      <description>Location address for display purposes only</description>
    </param>
    <param name="locationDescription" type="String" maxlength="500" mandatory="false">
      <description>Description intended location / establishment (if applicable)</description>
    </param>
    <param name="phoneNumber" type="String" maxlength="500" mandatory="false">
      <description>Phone number of location / establishment.</description>
    </param>
    <param name="locationImage" type="Image" mandatory="false">
      <description>Image / icon of intended location.</description>
    </param>
    <param name="searchAddress" type="OASISAddress" mandatory="false">
      <description>Address to be used by navigation engines for search</description>
    </param>
  </struct>

  <struct name="NavigationCapability">
    <description>Extended capabilities for an onboard navigation system</description>
    <param name="sendLocationEnabled" type="Boolean" mandatory="false">
      <description>If the module has the ability to add locations to the onboard nav</description>
    </param>
    <param name="getWayPointsEnabled" type="Boolean" mandatory="false">
      <description>If the module has the ability to return way points from onboard nav</description>
    </param>
  </struct>

  <struct name="PhoneCapability">
    <description>Extended capabilities of the module's phone feature</description>
    <param name="dialNumberEnabled" type="Boolean" mandatory="false">
      <description>If the module has the abiulity to perform dial number</description>
    </param>
  </struct>

  <struct name="VideoStreamingCapability">
    <description>Contains information about this system's video streaming capabilities.</description>
    <param name="preferredResolution" type="Common.ImageResolution" mandatory="false">
      <description>The preferred resolution of a video stream for decoding and rendering on HMI.</description>
    </param>
    <param name="maxBitrate" type="Integer" minvalue="0" maxvalue="2147483647" mandatory="false">
      <description>The maximum bitrate of video stream that is supported, in kbps.</description>
    </param>
    <param name="supportedFormats" type="Common.VideoStreamingFormat" array="true" mandatory="false">
      <description>
        Detailed information on each format supported by this system, in its preferred order
        (i.e. the first element in the array is most preferable to the system).
        Each object will contain a VideoStreamingFormat that describes what can be expected.
      </description>
    </param>
    <param name="hapticSpatialDataSupported" type="Boolean" mandatory="false">
      <description>True if the system can utilize the haptic spatial data from the source being streamed. </description>
    </param>
  </struct>

  <struct name="SystemCapabilities">
      <param name="navigationCapability" type="NavigationCapability" mandatory="false">
      </param>
      <param name="phoneCapability" type="PhoneCapability" mandatory="false">
      </param>
      <param name="videoStreamingCapability" type="VideoStreamingCapability" mandatory="false">
      </param>
  </struct>

  <struct name="RemoteControlCapabilities">
    <param name="climateControlCapabilities" type="ClimateControlCapabilities" mandatory="false" minsize="1" maxsize="100" array="true">
      <description>If included, the platform supports RC climate controls. For this baseline version, maxsize=1. i.e. only one climate control module is supported.</description >
    </param>
    <param name="radioControlCapabilities" type="RadioControlCapabilities" mandatory="false" minsize="1" maxsize="100" array="true">
      <description>If included, the platform supports RC radio controls. For this baseline version, maxsize=1. i.e. only one climate control module is supported.</description >
    </param>
    <param name="buttonCapabilities" type="ButtonCapabilities"  mandatory="false" minsize="1" maxsize="100" array="true" >
      <description>If included, the platform supports RC button controls with the included button names.</description >
    </param>
  </struct>

  <struct name="Rectangle">
    <param name="x" type="Float" mandatory="true">
      <description>The X-coordinate of the user control</description>
    </param>
    <param name="y" type="Float" mandatory="true">
      <description>The Y-coordinate of the user control</description>
    </param>
    <param name="width" type="Float" mandatory="true">
      <description>The width of the user control's bounding rectangle</description>
    </param>
    <param name="height" type="Float" mandatory="true">
      <description>The height of the user control's bounding rectangle</description>
    </param>
  </struct>

  <struct name="HapticRect">
    <description>Defines haptic rectangle data for each user control object for video streaming application</description>
    <param name="id" type="Integer" minvalue="0" maxvalue="2000000000" mandatory="true">
      <description>A user control spatial identifier</description>
    </param>
    <param name="rect" type="Common.Rectangle" mandatory="true">
      <description>The position of the haptic rectangle to be highlighted. The center of this rectangle will be "touched" when a press occurs.</description>
    </param>
  </struct>

</interface>

<interface name="Buttons" version="1.3.0" date="2017-07-18">
    <function name="GetCapabilities" messagetype="request">
      <description>Method is invoked at system start-up. SDL requests the information about all supported hardware buttons and their capabilities</description>
    </function>
    <function name="GetCapabilities" messagetype="response">
      <param name="capabilities" type="Common.ButtonCapabilities" array="true" minsize="1" maxsize="100" mandatory="true">
        <description>Response must provide the names of available buttons and their capabilities.See ButtonCapabilities</description>
      </param>
      <param name="presetBankCapabilities" type="Common.PresetBankCapabilities" mandatory="false">
        <description>Must be returned if the platform supports custom on-screen Presets</description>
      </param>
    </function>

    <function name="ButtonPress" messagetype="request">
      <description>Method is invoked when the application tries to press a button</description>
      <param name="moduleType" type="Common.ModuleType" mandatory="true" >
        <description>The module where the button should be pressed</description>
      </param>
      <param name="buttonName" type="Common.ButtonName" mandatory="true" />
      <param name="buttonPressMode" type="Common.ButtonPressMode" mandatory="true" >
        <description>Indicates whether this is a LONG or SHORT button press event.</description>
      </param>
      <param name="appID" type="Integer" mandatory="true">
        <description>ID of the application that triggers the permission prompt.</description>
      </param>
    </function>
    <function name="ButtonPress" messagetype="response">
    </function>

    <function name="OnButtonEvent" messagetype="notification">
      <description>HU system must notify about every UP/DOWN event for buttons</description>
      <param name="name" type="Common.ButtonName" mandatory="true"/>
      <param name="mode" type="Common.ButtonEventMode" mandatory="true">
            <description>Indicates whether this is an UP or DOWN event.</description>
      </param>
      <param name="customButtonID" type="Integer" mandatory="false" minvalue="0" maxvalue="65536">
        <description>Must be provided if ButtonName is CUSTOM_BUTTON, this references the integer ID passed by a custom button. (e.g. softButtonName)</description>
      </param>
      <param name="appID" type="Integer" mandatory="false">
        <description>
                In case the ButtonName is CUSTOM_BUTTON or OK, HMI must include appID parameters to OnButtonPress notification sent to SDL.
                If appID is not sent together with CUSTOM_BUTTON, this notification will be ignored by SDL.
                If appID is present for OK button -> SDL transfers notification to the named app only if it is in FULL or LIMITED (ignores if app is in NONE or BACKGROUND).
                If appID is omited for OK button -> SDL transfers notification to app in FULL
        </description>
      </param>
    </function>
    <function name="OnButtonPress" messagetype="notification">
        <param name="name" type="Common.ButtonName" mandatory="true"/>
        <param name="mode" type="Common.ButtonPressMode" mandatory="true">
            <description>Indicates whether this is a LONG or SHORT button press event.</description>
        </param>
        <param name="customButtonID" type="Integer" mandatory="false" minvalue="0" maxvalue="65536">
            <description>Must be returned if ButtonName is CUSTOM_BUTTON, this references the string passed by a custom button. (e.g. softButtonName)</description>
        </param>
        <param name="appID" type="Integer" mandatory="false">
            <description>
                In case the ButtonName is CUSTOM_BUTTON or OK, HMI must include appID parameters to OnButtonEvent notification sent to SDL.
                If appID is not sent together with CUSTOM_BUTTON, this notification will be ignored by SDL.
                If appID is present for OK button -> SDL transfers notification to the named app only if it is in FULL or LIMITED (ignores if app is in NONE or BACKGROUND).
                If appID is omited for OK button -> SDL transfers notification to app in FULL
            </description>
        </param>
    </function>
    <function name="OnButtonSubscription" messagetype="notification">
      <description>
        Sender: SDL->HMI. Purpose: to notify about button subscription state is changed for the named application
      </description>
      <param name="name" type="Common.ButtonName" mandatory="true" />
      <param name="isSubscribed" type="Boolean" mandatory="true">
        <description>
          Defines whether the named button has status of 'subscribed' or 'unsubscribed':
          If "true" - the named button is subscribed.
          If "false" - the named button is unsubscribed.
        </description>
      </param>
      <param name="appID" type="Integer" mandatory="true">
        <description>
          The ID of application that relates to this button-subscription status change.
        </description>
      </param>
    </function>
</interface>

<interface name="BasicCommunication" version="1.2.1" date="2017-08-02">
    <function name="OnReady" messagetype="notification">
      <description>HMI must notify SDL about its readiness to start communication. In fact, this has to be the first message between SDL and HMI.</description>
    </function>
    <function name="OnStartDeviceDiscovery" messagetype="notification">
      <description>Initiated by HMI user for getting the list of connected devices.</description>
    </function>
    <function name="OnUpdateDeviceList" messagetype="notification">
      <description>Notification from HMI to SDL sent when HMI requires update of device list (i.e. when user clicks 'Change Device' button)</description>
    </function>
    <function name="OnResumeAudioSource" messagetype="notification">
      <description>This method must be invoked by SDL to update audio state.</description>
      <param name="appID" type="Integer" mandatory="true">
        <description>The ID of app to be resumed audio source.</description>
      </param>
    </function>
    <function name="OnSDLPersistenceComplete" messagetype="notification">
    </function>
    <function name="UpdateAppList" messagetype="request">
      <description>Issued by SDL to notify HMI about new applications registered.</description>
      <param name="applications" type="Common.HMIApplication" mandatory="true" array="true" minsize="0" maxsize="100"/>
    </function>
    <function name="UpdateAppList" messagetype="response">
    </function>
    <function name="UpdateDeviceList" messagetype="request">
      <description>Request from SmartDeviceLink to HMI to change device list.</description>
      <param name="deviceList" type="Common.DeviceInfo" mandatory="true" array="true" minsize="0" maxsize="100">
        <description>The array of names/IDs of connected devices</description>
      </param>
    </function>
    <function name="UpdateDeviceList" messagetype="response">
    </function>
    <function name="OnFileRemoved" messagetype="notification">
      <description>Notifies HMI in case some application file has been removed</description>
      <param name="fileName" type="String" minlength="1" maxlength="30" mandatory="true">
        <description>The name of the removed file</description>
      </param>
      <param name="fileType" type="Common.FileType" mandatory="true">
        <description>The file type. See FileType.</description>
      </param>
      <param name="appID" type="Integer" mandatory="true">
        <description>ID of the application.</description>
      </param>
    </function>
    <function name="AllowDeviceToConnect" messagetype="request">
        <description>Request from SmartDeviceLink to HMI to get the permissions of new device connection.</description>
        <param name="device" type="Common.DeviceInfo" mandatory="true"/>
    </function>
    <function name="AllowDeviceToConnect" messagetype="response">
      <param name="allow" type="Boolean" mandatory="true"/>
    </function>
    <function name="OnDeviceChosen" messagetype="notification">
      <description>Notification must be initiated by HMI on user selecting device in the list of devices.</description>
      <param name="deviceInfo" type="Common.DeviceInfo" mandatory="true">
        <description>The name and ID of the device chosen</description>
      </param>
    </function>
    <function name="OnFindApplications" messagetype="notification">
      <description>This method must be invoked by HMI to get list of registered apps.</description>
      <param name="deviceInfo" type="Common.DeviceInfo" mandatory="false">
        <description>The name and ID of the device the list of registered applications is required for.</description>
      </param>
    </function>
    <function name="ActivateApp" messagetype="request">
      <description>Request from SDL to HMI to bring specified application to front on UI e.g make it HMI status 'FULL'.</description>
      <param name="appID" type="Integer" mandatory="true">
        <description>ID of deactivated application.</description>
      </param>
      <param name="priority" type="Common.AppPriority" mandatory="false">
        <description>Send to HMI so that it can coordinate order of requests/notifications correspondingly.</description>
      </param>
      <param name="level" type="Common.HMILevel" mandatory="false">
        <description>If level for application is to be changed to something else then FULL then this parameter should be used.</description>
      </param>
    </function>
    <function name="ActivateApp" messagetype="response">
    </function>
    <function name="OnAppActivated" messagetype="notification">
      <description>Must be sent by HU system when the user clicks on app in the list of registered apps or on soft button with 'STEAL_FOCUS' action.</description>
      <param name="appID" type="Integer" mandatory="true">
        <description>ID of selected application.</description>
      </param>
    </function>
    <function name="OnAppDeactivated" messagetype="notification">
      <description>Must be sent by HU system when the user switches to any functionality which is not other mobile application.</description>
      <param name="appID" type="Integer" mandatory="true">
        <description>ID of deactivated application.</description>
      </param>
    </function>
    <function name="OnAppRegistered" messagetype="notification">
      <description>Issued by SDL to notify HMI about new application registered.</description>
      <param name="application" type="Common.HMIApplication" mandatory="true">
        <description>The information about application registered. See HMIApplication. </description>
      </param>
      <param name="ttsName" type="Common.TTSChunk" minsize="1" maxsize="100" array="true" mandatory="false" >
        <description>
          TTS string for VR recognition of the mobile application name, e.g. "Ford Drive Green".
          Meant to overcome any failing on speech engine in properly pronouncing / understanding app name.
          May not be empty.
          May not start with a new line character.
          Not unique value
        </description>
      </param>
      <param name="vrSynonyms" type="String" maxlength="40" minsize="1" maxsize="100" array="true" mandatory="false">
        <description>
          Defines an additional voice recognition command.
          Must not interfere with any name of previously registered applications(SDL makes check).
        </description>
      </param>
      <param name="resumeVrGrammars" type="Boolean" mandatory="false">
        <description>The flag if VR grammars resume is required</description>
      </param>
      <param name="priority" type="Common.AppPriority" mandatory="false">
        <description>Send to HMI so that it can coordinate order of requests/notifications correspondingly.</description>
      </param>
    </function>
    <function name="OnAppUnregistered" messagetype="notification">
      <description>
        Issued by SDL to notify HMI about application unregistered.
        Application then to be removed from application list; all data connected with application has to be cleared up.
      </description>
      <param name="unexpectedDisconnect" type="Boolean" mandatory="true">
        <description>
          SDL sends 'true' in case the connection is unexpectedly lost.
          SDL sends 'false' in case the mobile app is unregistered gracefully (via appropriate RPC)
        </description>
      </param>
      <param name="appID" type="Integer" mandatory="true">
        <description>ID of the application unregistered</description>
      </param>
    </function>
    <function name="OnExitApplication" messagetype="notification">
      <description>Must be sent by HMI when the User chooses to exit the application..</description>
      <param name="reason" type="Common.ApplicationExitReason" mandatory="true">
        <description>Specifies reason of moving the app to NONE</description>
      </param>
      <param name="appID" type="Integer" mandatory="true">
        <description>ID of the application to be exited.</description>
      </param>
    </function>
    <function name="OnExitAllApplications" messagetype="notification">
      <description>Sent by HMI to SDL to close all registered applications.</description>
      <param name="reason" type="Common.ApplicationsCloseReason" mandatory="true">
        <description>Specifies reason for exiting all apllications.</description>
      </param>
    </function>
    <function name="OnAwakeSDL" messagetype="notification">
        <description>
            Sender: HMI->SDL. Must be sent to return SDL to normal operation after 'Suspend' or 'LowVoltage' events
        </description>
    </function>
    <function name="MixingAudioSupported" messagetype="request">
      <description>Request from SDL to HMI to find out if the last one supports mixing audio (i.e. recording TTS command and playing audio).</description>
    </function>
    <function name="MixingAudioSupported" messagetype="response">
      <description>If no response received SDL supposes that mixing audio is not supported</description>
      <param name="attenuatedSupported" type="Boolean" mandatory="true">
        <description>Must be true if supported</description>
      </param>
    </function>
    <function name="DialNumber" messagetype="request">
      <description>Request from SDL to call a specific number.</description>
      <param name="number" type="String" maxlength="40" mandatory="true">
        <description>The number to dial. Only the character + and numbers are allowed.</description>
      </param>
      <param name="appID" type="Integer" mandatory="true">
        <description>ID of application that concerns this RPC.</description>
      </param>
    </function>
    <function name="DialNumber" messagetype="response">
    </function>
    <!-- Policies -->

    <!-- SyncP RPC-->
    <function name="OnSystemRequest" messagetype="notification" >
      <description>
        An asynchronous request from the system for specific data from the device or the cloud or response to a request from the device or cloud
        Binary data can be included in hybrid part of message for some requests (such as Authentication request responses)
      </description>
      <param name="requestType" type="Common.RequestType" mandatory="true">
        <description>The type of system request.</description>
      </param>
      <param name="requestSubType" type="String" maxlength="255" mandatory="false">
        <description>
          This parameter is filled for supporting OEM proprietary data exchanges.
        </description>
      </param>
      <param name="url" type="String" maxlength="1000" minlength="1" mandatory="false">
        <description>Optional array of URL(s) for HTTP requests.</description>
      </param>
      <param name="fileType" type="Common.FileType" mandatory="false">
        <description>Optional file type (meant for HTTP file requests).</description>
      </param>
      <param name="offset" type="Integer" minvalue="0" maxvalue="100000000000" mandatory="false">
        <description>Optional offset in bytes for resuming partial data chunks</description>
      </param>
      <param name="length" type="Integer" minvalue="0" maxvalue="100000000000" mandatory="false">
        <description>Optional length in bytes for resuming partial data chunks</description>
      </param>
      <param name="timeout" type="Integer" minvalue="0" maxvalue="2000000000" mandatory="false">
      </param>
      <param name="fileName" type="String" maxlength="255" minlength="1" mandatory="true">
        <description>File reference name.</description>
      </param>
      <param name="appID" type="Integer" mandatory="false">
        <description>ID of application that requested this RPC.</description>
      </param>
    </function>
    <function name="SystemRequest" messagetype="request">
      <description>An asynchronous request from the device; binary data can be included in hybrid part of message for some requests (such as Authentication requests)</description>
      <param name="requestType" type="Common.RequestType" mandatory="true">
          <description>The type of system request.</description>
      </param>
      <param name="requestSubType" type="String" maxlength="255" mandatory="false">
          <description>
              This parameter is filled for supporting OEM proprietary data exchanges.
          </description>
      </param>
      <param name="fileName" type="String" maxlength="255" minlength="1" mandatory="true">
          <description>The path to file.</description>
      </param>
      <param name="appID" type="Integer" mandatory="true">
        <description>Internal ID of the application that requested this RPC.</description>
      </param>
    </function>
    <function name="SystemRequest" messagetype="response">
    </function>
    <function name="PolicyUpdate" messagetype="request">
      <description>
        From: SDL
        To: SYNCP Manager
        Asks SYNCP Manager to send given Policy Table snapshot to the backend
      </description>
      <param name="file" type="String" minlength="1" maxlength="255" mandatory="true">
        <description>
          Location of policy table snapshot
        </description>
      </param>
      <param name="timeout" type="Integer" minvalue="0" maxvalue="65535" mandatory="true">
        <description>
          Send attempt timeout in seconds
        </description>
      </param>
      <param name="retry" type="Integer" minvalue="0" maxvalue="65535" array="true" minsize="1" maxsize="5" mandatory="true">
        <description>
          Array of delays to wait after failed atempts
        </description>
      </param>
    </function>
    <function name="PolicyUpdate" messagetype="response">
    </function>
    <!-- End of SyncP RPC-->

    <function name="OnSDLClose" messagetype="notification">
      <description>SDL must notify HMI about finish working application</description>
    </function>

    <function name="OnPutFile" messagetype="notification" >
    <description>
      Notification, that comes to HMI when mobile sents file with systemFile flag
    </description>

    <param name="offset" type="Integer" minvalue="0" maxvalue="100000000000" mandatory="false">
      <description>Optional offset in bytes for resuming partial data chunks</description>
    </param>
    <param name="length" type="Integer" minvalue="0" maxvalue="100000000000" mandatory="false">
      <description>Optional length in bytes for resuming partial data chunks</description>
    </param>

    <param name="fileSize" type="Integer" minvalue="0" maxvalue="100000000000" mandatory="false">
      <description>Full Size of file. sends in first OnPutFile notification if file is splited
                   into many PutFiles
      </description>
    </param>

    <param name="FileName" type="String" maxlength="255" mandatory="true">
      <description>File reference name.</description>
    </param>

    <param name="syncFileName" type="String" maxlength="255" mandatory="true">
      <description>File reference name.</description>
    </param>

    <param name="fileType" type="Common.FileType" mandatory="true">
        <description>Selected file type.</description>
    </param>

    <param name="persistentFile" type="Boolean" defvalue="false" mandatory="false">
      <description>
        Indicates if the file is meant to persist between sessions / ignition cycles.
        If set to TRUE, then the system will aim to persist this file through session / cycles.
        While files with this designation will have priority over others, they are subject to deletion by the system at any time.
        In the event of automatic deletion by the system, the app will receive a rejection and have to resend the file.
        If omitted, the value will be set to false.
      </description>
    </param>
  </function>

<!-- Policies -->
  <function name="GetSystemInfo" messagetype="request">
    <description>Request from SDL to HMI to obtain information about head unit system.</description>
  </function>
  <function name="GetSystemInfo" messagetype="response">
    <param name="ccpu_version" type="String" maxlength="500" mandatory="true">
      <description>Software version of the module</description>
    </param>
    <param name="language" type="Common.Language" mandatory="true">
      <description>ISO 639-1 combined with ISO 3166 alpha-2 country code (i.e. en-us)</description>
    </param>
    <param name="wersCountryCode" type="String" maxlength="500" mandatory="true">
      <description>Country code from the Ford system WERS (i.e.WAEGB).</description>
    </param>
  </function>
  <function name="OnSystemInfoChanged" messagetype="notification">
    <description>Issued by system to SDL to notify that some system param has changed. Currently applied for Sync Language.</description>
    <param name="language" type="Common.Language" mandatory="true"/>
  </function>
  <function name="OnIgnitionCycleOver" messagetype="notification">
    <description>Notification from system to SDL to let it know that ignition cycle is over.</description>
  </function>
  <function name="DecryptCertificate" messagetype="request">
     <description>Sender: SDL->HMI. Purpose: to decrypt the certificate received via the Updated Policy Table. </description>
     <param name="fileName" type="String" maxlength="255" minlength="1" mandatory="true">
         <description>The path to the file with the encrypted certificate from the PolicyTable.</description>
     </param>
   </function>
   <function name="DecryptCertificate" messagetype="response">
         <description>SUCCESS - in case the certificate is decrypted and placed to the same file from request.</description>
   </function>
  <!-- End of Policies -->
   <function name="OnEventChanged" messagetype="notification">
     <description>Sender: HMI->SDL. When event is become active</description>
     <param name="eventName" type="Common.EventTypes" mandatory="true">
        <description>Specifies the types of active events.</description>
     </param>
     <param name="isActive" type="Boolean" mandatory="true">
        <description>Must be 'true' - when the event is started on HMI. Must be 'false' when the event is ended on HMI</description>
     </param>
   </function>
</interface>

<interface name="VR" version="1.1.0" date="2017-04-27">
  <function name="IsReady" messagetype="request">
    <description>Method is invoked at system startup. Response provides information about presence of VR module and its readiness to cooperate with SDL.</description>
  </function>
  <function name="IsReady" messagetype="response">
    <param name="available" type="Boolean" mandatory="true">
      <description>Must be true if VR is present and ready to communicate with SDL.</description>
    </param>
  </function>
  <function name="Started" messagetype="notification">
    <description>Must be initiated  by VR module to let SDL know that VR session has started.</description>
  </function>
  <function name="Stopped" messagetype="notification">
    <description>Must be initiated by VR module to let SDL know that VR session has stopped.</description>
  </function>
  <function name="AddCommand" messagetype="request">
    <description>Request from SDL to add a command(string with associated id) to VR.</description>
    <param name="cmdID" type="Integer" minvalue="0" maxvalue="2000000000" mandatory="true">
      <description>ID of a command (further to be used in OnCommand notification).</description>
    </param>
    <param name="vrCommands" type="String" mandatory="true" maxlength="99" minsize="1" maxsize="100" array="true">
      <description>List of strings to be used as VR commands.</description>
    </param>
    <param name="type" type="Common.VRCommandType" mandatory="true">
      <description>Type of added command. See VRCommandType.</description>
    </param>
    <param name="grammarID" type="Integer" minvalue="0" maxvalue="2000000000" mandatory="true">
      <description>
        ID of the specific grammar, whether top-level or choice set.
      </description>
    </param>
    <param name="appID" type="Integer" mandatory="false">
      <description>ID of application that requested this RPC.</description>
    </param>
  </function>
  <function name="AddCommand" messagetype="response">
  </function>
  <function name="DeleteCommand" messagetype="request">
    <description>Request from SDL to delete a command from VR.</description>
    <param name="cmdID" type="Integer" minvalue="0" maxvalue="2000000000" mandatory="true">
      <description>Id of a command (list of strings), previously sent by AddCommand.</description>
    </param>
    <param name="type" type="Common.VRCommandType" mandatory="true">
      <description>Type of added command. See VRCommandType.</description>
    </param>
    <param name="grammarID" type="Integer" minvalue="0" maxvalue="2000000000" mandatory="true">
      <description>ID of the specific grammar.</description>
    </param>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of application that requested this RPC.</description>
    </param>
  </function>
  <function name="DeleteCommand" messagetype="response">
  </function>
  <function name="PerformInteraction" messagetype="request">
    <description>
      Sets some properties for the application initiated request.
    </description>
    <param name="helpPrompt" type="Common.TTSChunk" minsize="1" maxsize="100" array="true" mandatory="false">
      <description>
        The help prompt. An array of text chunks of type TTSChunk. See TTSChunk. The array must have at least one item.
      </description>
    </param>
    <param name="initialPrompt" type="Common.TTSChunk" minsize="1" maxsize="100" array="true" mandatory="false">
      <description>
        This is the intial prompt spoken to the user at the start of an interaction. An array of text chunks of type TTSChunk. See TTSChunk. The array must have at least one item.
      </description>
    </param>
    <param name="timeoutPrompt" type="Common.TTSChunk" minsize="1" maxsize="100" array="true" mandatory="false">
      <description>
        Help text for a wait timeout. An array of text chunks of type TTSChunk. See TTSChunk. The array must have at least one item.
      </description>
    </param>
    <param name="timeout" type="Integer" mandatory="true">
      <description>Timeout initiate timeoutPrompt</description>
    </param>
    <param name="grammarID" type="Integer" minvalue="0" maxvalue="2000000000" minsize="1" maxsize="100" array="true" mandatory="false">
      <description>
        IDs of the specific compiled grammars for this voice interaction.
      </description>
    </param>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of application related to this RPC.</description>
    </param>
  </function>
  <function name="PerformInteraction" messagetype="response">
    <param name="choiceID" type="Integer" minvalue="0" maxvalue="2000000000" mandatory="false">
      <description>
        ID of the choice that was selected in response to PerformInteraction.
      </description>
    </param>
  </function>
  <function name="OnCommand" messagetype="notification">
    <description>Notifies SDL about command trigerred via VR</description>
    <param name="cmdID" type="Integer" mandatory="true" minvalue="0" maxvalue="2000000000">
      <description>ID of of the command (list of strings)</description>
    </param>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of application related to this RPC.</description>
    </param>
  </function>
  <function name="ChangeRegistration" messagetype="request">
    <description>Request from SmartDeviceLink to HMI to change language of VR.</description>
    <param name="vrSynonyms" type="String" maxlength="40" minsize="1" maxsize="100" array="true" mandatory="false">
      <description>
        Request new VR synonyms registration
        Defines an additional voice recognition command.
        Must not interfere with any name of previously registered applications(SDL makes check).
      </description>
    </param>
    <param name="language" type="Common.Language" mandatory="true">
      <description>The language application wants to switch to.</description>
    </param>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of application that concerns this RPC.</description>
    </param>
  </function>
  <function name="ChangeRegistration" messagetype="response">
  </function>
  <function name="OnLanguageChange" messagetype="notification">
    <description>Notification from HMI to SmartDeviceLink about change of  language.</description>
    <param name="language" type="Common.Language" mandatory="true">
      <description>Language VR has switched to.</description>
    </param>
  </function>
  <function name="GetSupportedLanguages" messagetype="request">
    <description>Method is invoked at system start-up. Response must provide the information about VR supported languages.</description>
  </function>
  <function name="GetSupportedLanguages" messagetype="response">
    <param name="languages" type="Common.Language" mandatory="true" array="true" minsize="1" maxsize="100">
      <description>List of languages supported in VR.</description>
    </param>
  </function>
  <function name="GetLanguage" messagetype="request">
    <description>Request from SmartDeviceLink to HMI to get currently active  VR language</description>
  </function>
  <function name="GetLanguage" messagetype="response">
    <param name="language" type="Common.Language" mandatory="true"/>
  </function>
  <function name="GetCapabilities" messagetype="request">
    <description>Method is invoked at system startup by SDL to request information about VR capabilities of HMI.</description>
  </function>
  <function name="GetCapabilities" messagetype="response">
    <param name="vrCapabilities" type="Common.VrCapabilities" minsize="1" maxsize="100" array="true" mandatory="false">
      <description>Types of input recognized by VR module.</description>
    </param>
  </function>
</interface>

<interface name="TTS" version="1.1.0" date="2017-04-27">
  <description>RPCs for communication between TTS and SDL.</description>
  <function name="GetCapabilities" messagetype="request">
    <description>Method is invoked at system start-up. SDL requests the information about all supported hardware and their capabilities</description>
  </function>
  <function name="GetCapabilities" messagetype="response">
    <param name="speechCapabilities" type="Common.SpeechCapabilities" minsize="1" maxsize="5" array="true" mandatory="true">
      <description>See SpeechCapabilities</description>
    </param>
    <param name="prerecordedSpeechCapabilities" type="Common.PrerecordedSpeech" minsize="1" maxsize="5" array="true" mandatory="true">
      <description>See PrerecordedSpeech</description>
    </param>
  </function>
  <function name="Started" messagetype="notification">
    <description>Must be initiated  by TTS module to let SDL know that TTS session has started.</description>
  </function>
  <function name="Stopped" messagetype="notification">
    <description>Must be initiated by TTS module to let SDL know that TTS session has stopped.</description>
  </function>
  <function name="IsReady" messagetype="request">
    <description>Method is invoked at system start-up. Response must provide the information about presence of TTS module and its readiness to cooperate with SDL.</description>
  </function>
  <function name="IsReady" messagetype="response">
    <param name="available" type="Boolean" mandatory="true">
      <description>Must be true if TTS is present and ready to communicate with SDL.</description>
    </param>
  </function>
  <function name="Speak" messagetype="request">
    <description>RPC from SDL to TTS for speaking the text.</description>
    <param name="ttsChunks" type="Common.TTSChunk" mandatory="true" array="true" minsize="1" maxsize="100">
      <description>List of strings to be spoken.</description>
    </param>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of application that requested this RPC.</description>
    </param>
    <param name="speakType" type="Common.MethodName" mandatory="false">
      <description>Defines the type of the request which causes text-to-speech</description>
    </param>
    <param name="playTone" type="Boolean" mandatory="false">
      <description>Defines that the tone should be played</description>
    </param>
  </function>
  <function name="Speak" messagetype="response">
    <description>Provides information about success of operation.</description>
  </function>
  <function name="StopSpeaking" messagetype="request">
    <description>Initiated by SDL to stop speaking the text.</description>
  </function>
  <function name="StopSpeaking" messagetype="response">
  </function>
  <function name="ChangeRegistration" messagetype="request">
    <description>Request from SmartDeviceLink to HMI to change language of TTS.</description>
    <param name="ttsName" type="Common.TTSChunk" minsize="1" maxsize="100" array="true" mandatory="false" >
      <description>
        Request new ttsName registration
        TTS string for VR recognition of the mobile application name, e.g. "Ford Drive Green".
        Meant to overcome any failing on speech engine in properly pronouncing / understanding app name.
        May not be empty.
        May not start with a new line character.
        Not unique value (SDL makes all the checks)
      </description>
    </param>
    <param name="language" type="Common.Language" mandatory="true">
      <description>The language application wants to switch to.</description>
    </param>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of application related to this RPC.</description>
    </param>
  </function>
  <function name="ChangeRegistration" messagetype="response">
  </function>
  <function name="OnLanguageChange" messagetype="notification">
    <description>Notification from HMI to SmartDeviceLink about change of  language.</description>
    <param name="language" type="Common.Language" mandatory="true">
      <description>Language TTS has switched to.</description>
    </param>
  </function>
  <function name="GetSupportedLanguages" messagetype="request">
    <description>Method is invoked at system start-up by SDL. Response must provide the information about TTS supported languages.</description>
  </function>
  <function name="GetSupportedLanguages" messagetype="response">
    <param name="languages" type="Common.Language" mandatory="true" array="true" minsize="1" maxsize="100">
      <description>List of languages supported in TTS.</description>
    </param>
  </function>
  <function name="GetLanguage" messagetype="request">
    <description>Request from SmartDeviceLink to HMI to get currently active  TTS language</description>
  </function>
  <function name="GetLanguage" messagetype="response">
    <param name="language" type="Common.Language" mandatory="true"/>
  </function>
  <function name="SetGlobalProperties" messagetype="request">
    <description>Sets some properties for the application initiated request.</description>
    <param name="helpPrompt" type="Common.TTSChunk" minsize="0" maxsize="100" array="true" mandatory="false" >
      <description>
          The help prompt.
          An array of text chunks of type TTSChunk. See TTSChunk.
      </description>
    </param>
    <param name="timeoutPrompt" type="Common.TTSChunk" minsize="1" maxsize="100" array="true" mandatory="false" >
      <description>
          Help text for a wait timeout.
          An array of text chunks of type TTSChunk. See TTSChunk.
          The array must have at least one item.
      </description>
    </param>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of application related to this RPC.</description>
    </param>
  </function>
  <function name="SetGlobalProperties" messagetype="response">
  </function>
  <function name="OnResetTimeout" messagetype="notification">
    <description>
      Sender: HMI->SDL. HMI must send this notification every 10 sec. in case the 'methodName'
      results long processing on HMI
    </description>
    <param name="appID" type="Integer" mandatory="true">
      <description>Id of application that concerns the 'methodName'.</description>
    </param>
    <param name="methodName" type="String" mandatory="true">
      <description>The name of the method, the renew of timeout is required for</description>
    </param>
  </function>
</interface>

<interface name="UI" version="1.2.0" date="2017-09-05">
  <function name="Alert" messagetype="request">
    <description>Request from SDL to show an alert message on the display.</description>
    <param name="alertStrings" type="Common.TextFieldStruct" mandatory="true" array="true" minsize="0" maxsize="3">
      <description>Array of lines of alert text fields. See TextFieldStruct. Uses alertText1, alertText2, alertText3.</description>
    </param>
    <param name="duration" type="Integer" mandatory="true" minvalue="3000" maxvalue="10000">
      <description>Timeout in milliseconds.</description>
    </param>
    <param name="softButtons" type="Common.SoftButton" mandatory="false" minsize="0" maxsize="4" array="true">
      <description>App defined SoftButtons</description>
    </param>
    <param name="progressIndicator" type="Boolean" mandatory="false">
      <description>If supported on the given platform, the alert GUI will include some sort of animation indicating that loading of a feature is progressing.  e.g. a spinning wheel or hourglass, etc.</description>
    </param>
    <param name="alertType" type="Common.AlertType" mandatory="true">
      <description>Defines if only UI or BOTH portions of the Alert request are being sent to HMI Side</description>
    </param>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of application requested this RPC.</description>
    </param>
  </function>
  <function name="Alert" messagetype="response">
    <param name="tryAgainTime" type="Integer" mandatory="false" minvalue="0" maxvalue="2000000000">
      <description>Amount of time (in milliseconds) that SDL must wait before resending an alert. Must be provided if another system event or overlay currently has a higher priority than this alert.</description>
    </param>
  </function>
  <function name="Show" messagetype="request">
    <param name="showStrings" type="Common.TextFieldStruct" mandatory="true" array="true" minsize="0" maxsize="7">
      <description>Array of lines of show text fields. See TextFieldStruct. Uses mainField1, mainField2, mainField3, mainField4. If some field is not set, the corresponding text should stay unchanged. If field's text is empty "", the field must be cleared.
          mainField1: The text that should be displayed in a single or upper display line.
          mainField2: The text that should be displayed on the second display line.
          mainField3: The text that should be displayed on the second "page" first display line.
          mainField4: The text that should be displayed on the second "page" second display line.
          statusBar: statusBar.
          mediaClock: Text value for MediaClock field.
          mediaTrack: The text that should be displayed in the track field. This field is only valid for media applications on NGN type ACMs.
      </description>
    </param>
    <param name="alignment" type="Common.TextAlignment" mandatory="false">
      <description>Specifies how mainField1 and mainField2 texts should be aligned on the display.</description>
      <description>If omitted, texts must be centered</description>
    </param>
    <param name="graphic" type="Common.Image" mandatory="false">
      <description>Path to optional dynamic image or the static binary image itself.  See Image. If omitted, the displayed graphic should not change.</description>
    </param>
    <param name="secondaryGraphic" type="Common.Image" mandatory="false">
      <description>
        Image struct determining whether static or dynamic secondary image to display in app.
        If omitted on supported displays, the displayed secondary graphic shall not change.
      </description>
    </param>
    <param name="softButtons" type="Common.SoftButton" minsize="0" maxsize="8" array="true" mandatory="false">
      <description>App defined SoftButtons.</description>
      <description>If omitted, the currently displayed SoftButton values should not change.</description>
    </param>
    <param name="customPresets" type="String" maxlength="500" minsize="0" maxsize="10" array="true" mandatory="false">
      <description>App labeled on-screen presets (i.e. GEN3 media presets or dynamic search suggestions).</description>
      <description>If omitted on supported displays, the presets will be shown as not defined.</description>
    </param>
    <param name="appID" type="Integer" mandatory="true">
      <description>Id of application related to this RPC.</description>
    </param>
  </function>
  <function name="Show" messagetype="response">
  </function>
  <function name="AddCommand" messagetype="request">
    <description>Request from SDL to add a command to the application menu.</description>
    <param name="cmdID" type="Integer" minvalue="0" maxvalue="2000000000" mandatory="true">
      <description>ID of the command to be added.</description>
    </param>
    <param name="menuParams" type="Common.MenuParams" mandatory="false">
      <description>Optional sub value containing parameters of the command (position, name, etc.). See MenuParams. If omitted the command should be added to the end of the list of commands.</description>
    </param>
    <param name="cmdIcon" type="Common.Image" mandatory="false">
      <description>Image to be displayed for representing the command. See Image.</description>
      <description>If omitted, no (or the default if applicable) icon should be displayed.</description>
    </param>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of application that concerns this RPC.</description>
    </param>
  </function>
  <function name="AddCommand" messagetype="response">
    </function>
  <function name="DeleteCommand" messagetype="request">
    <description>Request from SDL to delete a command from the in-application menu with the specified command id.</description>
    <param name="cmdID" type="Integer" mandatory="true" minvalue="0" maxvalue="2000000000">
      <description>cmdId previously sent via AddCommand request - id of the command to be deleted.</description>
    </param>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of application that concerns this RPC.</description>
    </param>
  </function>
  <function name="DeleteCommand" messagetype="response">
  </function>
  <function name="AddSubMenu" messagetype="request">
    <description>Request from SDL to add a sub menu to the in-application menu.</description>
    <param name="menuID" type="Integer" minvalue="1" maxvalue="2000000000" mandatory="true">
      <description>ID of the sub menu to be added. Unique for the application.</description>
    </param>
    <param name="menuParams" type="Common.MenuParams" mandatory="true">
      <description>Position and name of menu to be added. 'parent' field is omitted for this RPC.  </description>
    </param>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of application that requested this RPC.</description>
    </param>
  </function>
  <function name="AddSubMenu" messagetype="response">
  </function>
  <function name="DeleteSubMenu" messagetype="request">
    <description>Request from SDL to delete a submenu from the in-application menu.</description>
    <param name="menuID" type="Integer" minvalue="1" maxvalue="2000000000" mandatory="true" >
      <description>The "menuID" of the sub-menu to be deleted. (See addSubMenu.menuID)</description>
    </param>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of application that concerns this RPC.</description>
    </param>
  </function>
  <function name="DeleteSubMenu" messagetype="response">
  </function>
  <function name="PerformInteraction" messagetype="request">
    <description>Request from SDL for triggering an interaction (e.g. "Permit GPS?" - Yes, no, Always Allow).</description>
    <param name="initialText" type="Common.TextFieldStruct" mandatory="false">
      <description>Uses initialInteractionText. See TextFieldStruct.</description>
    </param>
    <param name="choiceSet" type="Common.Choice" minsize="1" maxsize="100" array="true" mandatory="false">
      <description>The list of choices to be used for the interaction with the user</description>
    </param>
    <param name="vrHelpTitle" type="String" maxlength="500" mandatory="false">
      <description>VR Help Title text.</description>
      <description>If omitted on supported displays, the default HU system help title should be used.</description>
    </param>
    <param name="vrHelp" type="Common.VrHelpItem" minsize="1" maxsize="100" array="true" mandatory="false">
      <description>VR Help Items. If omitted on supported displays, the default HU system generated help items should be used.</description>
    </param>
    <param name="timeout" type="Integer" minvalue="5000" maxvalue="100000" defvalue="10000" mandatory="true">
      <description>Timeout in milliseconds.</description>
    </param>
    <param name="interactionLayout" type="Common.LayoutMode" mandatory="false">
      <description>See LayoutMode.</description>
    </param>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of application that concerns this RPC.</description>
    </param>
  </function>
  <function name="PerformInteraction" messagetype="response">
    <param name="choiceID" type="Integer" minvalue="0" maxvalue="2000000000" mandatory="false">
      <description>ID of the choice that was selected in response to PerformInteraction.</description>
    </param>
    <param name="manualTextEntry" type="String" minlength="0" maxlength="500" mandatory="false">
      <description>
            Manually entered text selection, e.g. through keyboard
            Can be returned in lieu of choiceID, depending on trigger source
      </description>
    </param>
  </function>
  <function name="SetMediaClockTimer" messagetype="request">
    <description>Sets the initial media clock value and automatic update method.</description>
    <param name="startTime" type="Common.TimeFormat" mandatory="false">
      <description>SDL transfers startTime together with modes: "COUNTUP", "COUNTDOWN", "PAUSE" to HMI.
      SDL ignores startTime for modes: "RESUME", and "CLEAR"</description>
    </param>
    <param name="endTime" type="Common.TimeFormat" mandatory="false">
      <description>
          See TimeFormat.
          SDL transfers endTime together with modes: "COUNTUP", "COUNTDOWN", "PAUSE" to HMI. To be used to calculate any visual progress bar (if not provided, this feature is ignored).
          SDL ignores endTime for modes: "RESUME", and "CLEAR"
      </description>
    </param>
    <param name="updateMode" type="Common.ClockUpdateMode" mandatory="true">
      <description>The update method of the media clock.</description>
      <description>In case of pause, resume, or clear, the start time value is ignored and shall be left out.  For resume, the time continues with the same value as it was when paused.</description>
    </param>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of application that requested this RPC.</description>
    </param>
  </function>
  <function name="SetMediaClockTimer" messagetype="response">
  </function>
  <function name="SetGlobalProperties" messagetype="request">
    <description>Request from SDL to set some properties for VR help.</description>
    <param name="vrHelpTitle" type="String" maxlength="500" mandatory="false">
      <description>VR Help Title text.</description>
      <description>If omitted on supported displays, the default HU system help title should be used.</description>
    </param>
    <param name="vrHelp" type="Common.VrHelpItem" minsize="1" maxsize="100" array="true" mandatory="false">
      <description>VR Help Items. If omitted on supported displays, the default HU system generated help items should be used.</description>
    </param>
    <param name="menuTitle" maxlength="500" type="String" mandatory="false">
      <description>Optional text to label an app menu button (for certain touchscreen platforms).</description>
    </param>
    <param name="menuIcon" type="Common.Image" mandatory="false">
      <description>Optional icon to draw on an app menu button (for certain touchscreen platforms).</description>
    </param>
    <param name="keyboardProperties" type="Common.KeyboardProperties" mandatory="false">
      <description>On-screen keybaord configuration (if available).</description>
    </param>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of application that concerns this RPC.</description>
    </param>
  </function>
  <function name="SetGlobalProperties" messagetype="response">
  </function>
  <function name="OnCommand" messagetype="notification">
    <description>Notification must be initiated by HMI on user choosing menu item.</description>
    <param name="cmdID" type="Integer" minvalue="0" maxvalue="2000000000" mandatory="true">
      <description>Command ID, which is related to a specific menu entry (previously sent with AddCommand).</description>
    </param>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of application that is related to this RPC.</description>
    </param>
  </function>
  <function name="OnSystemContext" messagetype="notification">
    <description>
      Notification must be initiated by HMI when the user changes the context of application: goes to menu (in-application menu or system menu);
      switches to VR; pop-up appears on screen etc.
    </description>
    <param name="systemContext" type="Common.SystemContext" mandatory="true">
      <description>The context the application is brought into.</description>
    </param>
    <param name="appID" type="Integer" mandatory="false">
      <description>ID of application that is related to this RPC.</description>
    </param>
  </function>
  <function name="GetCapabilities" messagetype="request">
    <description>Method is invoked at system startup by SDL to request information about UI capabilities of HMI.</description>
  </function>
  <function name="GetCapabilities" messagetype="response">
    <param name="displayCapabilities" type="Common.DisplayCapabilities" mandatory="true">
      <description>Information about the capabilities of the display: its type, text field supported, etc. See DisplayCapabilities. </description>
    </param>
    <param name="audioPassThruCapabilities" type="Common.AudioPassThruCapabilities" mandatory="true"/>
    <param name="hmiZoneCapabilities" type="Common.HmiZoneCapabilities" mandatory="true"/>
    <param name="softButtonCapabilities" type="Common.SoftButtonCapabilities" minsize="1" maxsize="100" array="true" mandatory="false">
      <description>Must be returned if the platform supports on-screen SoftButtons.</description>
    </param>
    <param name="hmiCapabilities" type="Common.HMICapabilities" mandatory="false">
      <description>Specifies the HMI’s capabilities. See HMICapabilities.</description>
    </param>
    <param name="systemCapabilities" type="Common.SystemCapabilities" mandatory="false">
      <description>Specifies system capabilities. See SystemCapabilities</description>
    </param>
  </function>
  <function name="ChangeRegistration" messagetype="request">
    <description>Request from SmartDeviceLink to HMI to change language for app.</description>
    <param name="appName" type="String" maxlength="100" mandatory="false">
      <description>
        Request new app name registration
        Needs to be unique over all applications.
        May not be empty. May not start with a new line character.
        May not interfere with any name or synonym of any registered applications.
        Applications with the same name will be rejected. (SDL makes all the checks)
      </description>
    </param>
    <param name="ngnMediaScreenAppName" type="String" maxlength="100" mandatory="false">
      <description>Request new app short name registration</description>
    </param>
    <param name="language" type="Common.Language" mandatory="true">
      <description>The language application wants to switch to.</description>
    </param>
    <param name="appHMIType" type="Common.AppHMIType" minsize="1" maxsize="100" array="true" mandatory="false">
      <description>
       Sent when app's requested-during-registration AppHMIType is changed to different one due to Policies update. Contains the updated list of all allowed app's AppHMITypes.
      </description>
    </param>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of application that concerns this RPC.</description>
    </param>
  </function>
  <function name="ChangeRegistration" messagetype="response">
  </function>
  <function name="OnLanguageChange" messagetype="notification">
    <description>Notification from HMI to SmartDeviceLink about change of  language.</description>
    <param name="language" type="Common.Language" mandatory="true">
      <description>Language UI has switched to.</description>
    </param>
  </function>
  <function name="GetSupportedLanguages" messagetype="request">
    <description>Method should be invoked at system startup. Response provides information about UI supported languages.</description>
  </function>
  <function name="GetSupportedLanguages" messagetype="response">
    <param name="languages" type="Common.Language" mandatory="true" array="true" minsize="1" maxsize="100">
      <description>List of languages supported in UI.</description>
    </param>
  </function>
  <function name="GetLanguage" messagetype="request">
    <description>Request from SmartDeviceLink to HMI to get currently active  UI language</description>
  </function>
  <function name="GetLanguage" messagetype="response">
    <param name="language" type="Common.Language" mandatory="true"/>
  </function>
  <function name="OnDriverDistraction" messagetype="notification">
    <description>Notification must be sent from HMI to SDL when driver distraction state is changed. Driver distraction rules are defined by the platform.</description>
    <param name="state" type="Common.DriverDistractionState" mandatory="true">
      <description>See DriverDistractionState. </description>
    </param>
  </function>
  <function name="SetAppIcon" messagetype="request">
    <description>Used to set existing local file on SYNC as the app's icon.</description>
    <param name="syncFileName" type="Common.Image" mandatory="true">
      <description>Either the path to the dynamic image stored on HY or the static binary image itself. See Image</description>
    </param>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of application related to this RPC.</description>
    </param>
  </function>
  <function name="SetAppIcon" messagetype="response">
  </function>
  <function name="SetDisplayLayout" messagetype="request">
    <param name="displayLayout" type="String" maxlength="500" mandatory="true">
      <description>
        Predefined or dynamically created screen layout.
        Currently only predefined screen layouts are defined.
      </description>
    </param>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of application related to this RPC.</description>
    </param>
    <param name="dayColorScheme" type="Common.TemplateColorScheme" mandatory="false"></param>
    <param name="nightColorScheme" type="Common.TemplateColorScheme" mandatory="false"></param> 
  </function>
  <function name="SetDisplayLayout" messagetype="response">
    <param name="displayCapabilities" type="Common.DisplayCapabilities" mandatory="false">
      <description>See DisplayCapabilities</description>
    </param>
    <param name="buttonCapabilities" type="Common.ButtonCapabilities" minsize="1" maxsize="100" array="true" mandatory="false">
      <description>See ButtonCapabilities</description >
    </param>
    <param name="softButtonCapabilities" type="Common.SoftButtonCapabilities" minsize="1" maxsize="100" array="true" mandatory="false">
      <description>If returned, the platform supports on-screen SoftButtons; see SoftButtonCapabilities.</description >
    </param>
    <param name="presetBankCapabilities" type="Common.PresetBankCapabilities" mandatory="false">
      <description>If returned, the platform supports custom on-screen Presets; see PresetBankCapabilities.</description >
    </param>
  </function>
  <function name="ShowCustomForm" messagetype="request">
    <description>Used to show a custom form; it can be a parent or child screen. If no parent screen is designated, it is set as a parent screen.</description>
    <param name="customFormID" type="String" maxlength="500" mandatory="true">
      <description>
            Predefined or dynamically created screen layout.
            Currently only predefined forms are defined.
            Predefined layouts include:
                "DEFAULT" - Default media / non-media screen
                "ONSCREEN_PRESETS" - Custom root media screen containing app-defined onscreen presets.
                "KEYBOARD_SEARCH" - Custom template containing app-configured on-screen keyboard with active search updating; user also can trigger voice search.
                "NAV_FULLSCREEN_MAP" - Custom root template screen containing full screen map with navigation controls.
                "NAV_POI_MENU" - Custom template containing app-defined POI options.
                "NAV_SEARCH_RESULTS" - Custom template containing a list of app-defined search results
                "NAV_POI_INFO" - Custom template containing app-defined POI information (and potentially map data).
      </description>
    </param>
    <param name="parentFormID" type="String" maxlength="500" defvalue="DEFAULT" mandatory="false">
      <description>
            Parent screen of predefined form to display.
            Currently only predefined forms are defined.
            If not provided, then set to "DEFAULT".
            Predefined layouts include:
                "DEFAULT" - Default media / non-media screen
                "ONSCREEN_PRESETS" - Custom root media screen containing app-defined onscreen presets.
                "NAV_FULLSCREEN_MAP" - Custom template containing full screen map with navigation controls.
      </description>
    </param>
  </function>
  <function name="ShowCustomForm" messagetype="response">
    <param name="info" type="String" maxlength="1000" mandatory="false" platform="documentation">
      <description>Provides additional human readable info regarding the result.</description>
    </param>
  </function>
  <function name="OnKeyboardInput" messagetype="notification">
    <description>On-screen keyboard event.</description>
    <description>Can be full string or individual keypresses depending on keyboard mode.</description>
    <param name="event" type="Common.KeyboardEvent" mandatory="true">
      <description>On-screen keyboard input data.</description>
    </param>
    <param name="data" type="String" minlength="0" maxlength="500" mandatory="false">
      <description>On-screen keyboard input data.</description>
      <description>For dynamic keypress events, this will be the current compounded string of entry text.</description>
      <description>For entry submission events, this will be the full text entry (this will always return regardless of the mode).</description>
      <description>For entry cancelled and entry aborted events, this data param will be omitted.</description>
    </param>
  </function>
  <function name="OnTouchEvent" messagetype="notification">
    <description>Notifies about touch events on the screen's prescribed area</description>
    <param name="type" type="Common.TouchType" mandatory="true">
      <description>The type of touch event.</description>
    </param>
    <param name="event" type="Common.TouchEvent" mandatory="true" minsize="1" maxsize="10" array="true">
      <description>List of all individual touches involved in this event.</description>
    </param>
  </function>
  <function name="Slider" messagetype="request">
    <description>Creates a full screen or pop-up overlay (depending on platform) with a single user controlled slider.</description>
    <param name="numTicks" type="Integer" minvalue="2" maxvalue="26" mandatory="true">
      <description>Number of selectable items on a horizontal axis</description>
    </param>
    <param name="position" type="Integer" minvalue="1" maxvalue="26" mandatory="true">
      <description>Initial position of slider control (cannot exceed numTicks)</description>
    </param>
    <param name="sliderHeader" type="String" maxlength="500" mandatory="true">
      <description>Text header to be displayed.</description>
    </param>
    <param name="sliderFooter" type="String" maxlength="500"  minsize="1" maxsize="26" array="true" mandatory="false">
      <description>Text footer to be displayed (meant to display min/max threshold descriptors).</description>
      <description>For a static text footer, only one footer string shall be provided in the array.</description>
      <description>For a dynamic text footer, the number of footer text string in the array must match the numTicks value.</description>
      <description>For a dynamic text footer, text array string should correlate with potential slider position index.</description>
      <description>If omitted on supported displays, no footer text shall be displayed.</description>
    </param>
    <param name="timeout" type="Integer" minvalue="1000" maxvalue="65535" mandatory="true">
      <description>Timeout. The slider should be displayed until the defined amount of time has elapsed. </description>
    </param>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of application that concerns this RPC.</description>
    </param>
  </function>
  <function name="Slider" messagetype="response">
    <param name="sliderPosition" type="Integer" minvalue="1" maxvalue="26" mandatory="false">
      <description>Current slider position. Must be returned when the user has clicked the ‘Save’ or ‘Canceled’ button or by the timeout </description>
    </param>
  </function>
  <function name="ScrollableMessage" messagetype="request">
    <description>Creates a full screen overlay containing a large block of formatted text that can be scrolled with up to 8 SoftButtons defined</description>
    <param name="messageText" type="Common.TextFieldStruct" mandatory="true">
      <description>Body of text that can include newlines and tabs. Uses scrollableMessageBody.</description>
    </param>
    <param name="timeout" type="Integer" minvalue="0" maxvalue="65535" mandatory="true">
      <description>Timeout in milliseconds. The message should be displayed until the time defined is up.</description>
    </param>
    <param name="softButtons" type="Common.SoftButton" minsize="0" maxsize="8" array="true" mandatory="false">
      <description>App defined SoftButtons.</description>
      <description>If omitted on supported displays, only the system defined "Close" SoftButton should be displayed.</description>
    </param>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of application related to this RPC.</description>
    </param>
  </function>
  <function name="ScrollableMessage" messagetype="response">
  </function>
  <function name="PerformAudioPassThru" messagetype="request">
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of application related to this RPC.</description>
    </param>
    <param name="audioPassThruDisplayTexts" type="Common.TextFieldStruct" mandatory="true" minsize="0" maxsize="2" array="true">
      <description>Uses
            audioPassThruDisplayText1: First line of text displayed during audio capture.
            audioPassThruDisplayText2: Second line of text displayed during audio capture.</description>
    </param>
    <param name="maxDuration" type="Integer" minvalue="1" maxvalue="1000000" mandatory="true">
      <description>The maximum duration of audio recording in milliseconds. If not provided, the recording should be performed until EndAudioPassThru arrives.</description>
    </param>
    <param name="muteAudio" type="Boolean" mandatory="true">
      <description>
        Defines if the current audio source should be muted during the APT session. If not, the audio source will play without interruption.
        If omitted, the value is set to true.
      </description>
    </param>
  </function>
  <function name="PerformAudioPassThru" messagetype="response">
  </function>
  <function name="EndAudioPassThru" messagetype="request">
    <description>Request is sent by SDL to stop the audio capturing.</description>
  </function>
  <function name="EndAudioPassThru" messagetype="response">
  </function>
  <function name="IsReady" messagetype="request">
    <description>Method is invoked at system startup. Response provides information about presence of UI module and its readiness to cooperate with SDL.</description>
  </function>
  <function name="IsReady" messagetype="response">
    <param name="available" type="Boolean" mandatory="true">
      <description>Must be true if UI is present and ready to communicate with SDL.</description>
    </param>
  </function>
  <function name="ClosePopUp" messagetype="request">
    <description>Initiated by SDL to close currently active pop-up on HMI.</description>
    <param name="methodName" type="String" mandatory="false">
      <description>Method to be closed</description>
    </param>
  </function>
  <function name="ClosePopUp" messagetype="response">
    <description>Provides the result of operation.</description>
  </function>
  <function name="OnResetTimeout" messagetype="notification">
    <description>HMI must provide SDL with notifications specific to the current Turn-By-Turn client status on the module</description>
    <param name="appID" type="Integer" mandatory="true">
      <description>Id of application that invoked notifcation.</description>
    </param>
    <param name="methodName" type="String" mandatory="true">
      <description>Currently used method name on which was triggered action</description>
    </param>
  </function>
  <function name="OnRecordStart" messagetype="notification">
    <description>Issued by SDL to notify HMI about capturing mic data should be started</description>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of application related to this RPC.</description>
    </param>
  </function>
  <function name="SendHapticData" messagetype="request">
    <description>Send the UI spatial data from MOBILE. This data will be utilized by the HMI to determine how and when haptic events should occur</description>
    <param name="appID" type="Integer" mandatory="true">
      <description>Internal ID of the application that requested this RPC.</description>
    </param>
    <param name="hapticRectData" type="Common.HapticRect" minsize="0" maxsize="1000" mandatory="false" array="true">
      <description>
        Array of rectangle data structures that represent the locations of all user controls present on the HMI.
        This data should be updated if/when the application presents a new screen.
        When a request is sent, if successful, it will replace all rectangle data previously sent through RPC.
        Avoidance of doubt, when an empty hapticRectData, it will be clear all rectangle data previously sent through RPC.
      </description>
    </param>
  </function>
  <function name="SendHapticData" messagetype="response">
  </function>
</interface>

<interface name="Navigation" version="1.5.0" date="2017-08-15"> 

  <function name="IsReady" messagetype="request">
    <description>Method is invoked at system startup. Response must provide the information about presence of UI Navigation module and its readiness to cooperate with SDL.</description>
  </function>
  <function name="IsReady" messagetype="response">
    <param name="available" type="Boolean" mandatory="true">
      <description>Must be true if Navigation is present and ready to communicate with SDL.</description>
    </param>
  </function>
  <function name="SendLocation" messagetype="request">
      <description>That allows the app to send a destination to the embedded nav system.</description>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of application related to this RPC.</description>
    </param>
    <param name="longitudeDegrees" type="Float" minvalue="-180" maxvalue="180" mandatory="false">
    </param>
    <param name="latitudeDegrees" type="Float" minvalue="-90" maxvalue="90" mandatory="false">
    </param>
    <param name="locationName" type="String" maxlength="500" mandatory="false">
      <description>     Name / title of intended location   </description>
    </param>
    <param name="locationDescription" type="String" maxlength="500" mandatory="false">
      <description>        Description intended location / establishment (if applicable)   </description>
    </param>
    <param name="addressLines" type="String" maxlength="500" minsize="0" maxsize="4" array="true" mandatory="false">
      <description>     Location address (if applicable)   </description>
    </param>
    <param name="phoneNumber" type="String" maxlength="500" mandatory="false">
      <description>     Phone number of intended location / establishment (if applicable)   </description>
    </param>
    <param name="locationImage" type="Common.Image" mandatory="false">
      <description>     Image / icon of intended location (if applicable and supported)   </description>
    </param>
    <param name="timeStamp" type="Common.DateTime" mandatory="false">
        <description>
            timestamp in ISO 8601 format
        </description>
    </param>
    <param name="address" type="Common.OASISAddress" mandatory="false">
        <description>Address to be used for setting destination</description>
    </param>
    <param name="deliveryMode" type="Common.DeliveryMode" mandatory="false">
      <description>Defines the mode of prompt for user</description>
    </param>
  </function>
  <function name="SendLocation" messagetype="response" >
  </function>
  <function name="ShowConstantTBT" messagetype="request">
    <description>Request from SmartDeviceLinkCore to HMI to show info about navigation.</description>
    <param name="navigationTexts" type="Common.TextFieldStruct" mandatory="true" array="true" minsize="0" maxsize="5">
      <description>See TextFieldStruct. Uses:
        navigationText1
        navigationText2
        ETA
        totalDistance
        timeToDestination.
      </description>
    </param>
    <param name="turnIcon" type="Common.Image" mandatory="false">
    </param>
    <param name="nextTurnIcon" type="Common.Image" mandatory="false">
    </param>
    <param name="distanceToManeuver" type="Float" minvalue="0" maxvalue="1000000000" mandatory="true">
      <description>Fraction of distance till next maneuver (from previous maneuver).</description>
      <description>May be used to calculate progress bar.</description>
    </param>
    <param name="distanceToManeuverScale" type="Float" minvalue="0" maxvalue="1000000000" mandatory="true">
      <description>Fraction of distance till next maneuver (starting from when AlertManeuver is triggered).</description>
      <description>May be used to calculate progress bar.</description>
    </param>
    <param name="maneuverComplete" type="Boolean" mandatory="false">
      <description>If and when a maneuver has completed while an AlertManeuver is active, SDL will send this value set to TRUE in order to clear the AlertManeuver overlay.</description>
      <description>If omitted the value should be assumed as FALSE.</description>
    </param>
    <param name="softButtons" type="Common.SoftButton" minsize="0" maxsize="3" array="true" mandatory="false">
      <description>Three dynamic SoftButtons available</description>
      <description>If omitted on supported displays, the currently displayed SoftButton values will not change.</description>
    </param>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of application related to this RPC.</description>
    </param>
  </function>
  <function name="ShowConstantTBT" messagetype="response">
  </function>
  <function name="AlertManeuver" messagetype="request">
    <description>Request from SmartDeviceLinkCore to HMI to announce navigation maneuver</description>
    <param name="softButtons" type="Common.SoftButton" minsize="0" maxsize="3" array="true" mandatory="false">
      <description>If omitted, only the system defined "Close" SoftButton should be displayed.</description>
    </param>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of the application requested this RPC.</description>
    </param>
  </function>
  <function name="AlertManeuver" messagetype="response">
  </function>
  <function name="UpdateTurnList" messagetype="request">
    <description>Request from SmartDeviceLinkCore to HMI to update turn list.</description>
    <param name="turnList" type="Common.Turn" minsize="1" maxsize="100" array="true" mandatory="false">
    </param>
    <param name="softButtons" type="Common.SoftButton" minsize="0" maxsize="1" array="true" mandatory="false">
      <description>If omitted, app-defined SoftButton should be left blank.</description>
    </param>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of application related to this RPC.</description>
    </param>
  </function>
  <function name="UpdateTurnList" messagetype="response">
  </function>
  <function name="OnTBTClientState" messagetype="notification">
    <description>HMI must provide SDL with notifications specific to the current Turn-By-Turn client status on the module</description>
    <param name="state" type="Common.TBTState" mandatory="true">
      <description>Current State of TBT client</description>
    </param>
  </function>
  <function name="SetVideoConfig" messagetype="request">
    <description>Request from SDL to HMI to ask whether HMI accepts a video stream with given configuration.</description>
    <param name="config" type="Common.VideoConfig" mandatory="true">
      <description>Configuration of a video stream.</description>
    </param>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of application related to this RPC.</description>
    </param>
  </function>
  <function name="SetVideoConfig" messagetype="response">
    <description>
      Response from HMI to SDL whether the configuration is accepted.
      In a negative response, a list of rejected parameters are supplied.
    </description>
    <param name="rejectedParams" type="String" array="true" minsize="1" maxsize="1000" mandatory="false">
      <description>
        List of params of VideoConfig struct which are not accepted by HMI, e.g. "protocol" and "codec".
        This param exists only when the response is negative.
      </description>
    </param>
  </function>
  <function name="StartStream" messagetype="request">
    <description>Request from SmartDeviceLinkCore to HMI to start playing video streaming.</description>
    <param name="url" type="String" minlength="21" maxlength="500" mandatory="true">
      <description>URL that HMI start playing.</description>
    </param>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of application related to this RPC.</description>
    </param>
  </function>
  <function name="StartStream" messagetype="response">
  </function>
  <function name="StopStream" messagetype="request">
    <description>Request from SmartDeviceLinkCore to HMI to stop playing video streaming.</description>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of application related to this RPC.</description>
    </param>
  </function>
  <function name="StopStream" messagetype="response">
  </function>
  <function name="StartAudioStream" messagetype="request">
    <description>Request from SmartDeviceLinkCore to HMI to start playing audio streaming.</description>
    <param name="url" type="String" minlength="21" maxlength="500" mandatory="true">
      <description>URL that HMI start playing.</description>
    </param>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of application related to this RPC.</description>
    </param>
  </function>
  <function name="StartAudioStream" messagetype="response">
  </function>
  <function name="StopAudioStream" messagetype="request">
    <description>Request from SmartDeviceLinkCore to HMI to stop playing audio streaming.</description>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of application related to this RPC.</description>
    </param>
  </function>
  <function name="StopAudioStream" messagetype="response">
  </function>
  <function name="OnAudioDataStreaming" messagetype="notification">
    <description>Sender: SDL->HMI. Purpose: notify about raw audio data presence over the URL provided via StartAudioStream SDL's request.</description>
    <param name="available" type="Boolean" mandatory="true">
      <description>If "true" - audio data started. If "false" - audio data stopped.</description>
    </param>
  </function>
  <function name="OnVideoDataStreaming" messagetype="notification">
    <description>Sender: SDL->HMI. Purpose: notify about raw video data presence over the URL provided via StartStream SDL's request.</description>
    <param name="available" type="Boolean" mandatory="true">
      <description>If "true" - video data started. If "false" - video data stopped.</description>
    </param>
  </function>
  <function name="GetWayPoints" functionID="GetWayPointsID" messagetype="request">
    <description>Request for getting waypoint/destination data.</description>
    <param name="wayPointType" type="Common.WayPointType" mandatory="true">
      <description>To request for either the destination only or for all waypoints including destination</description>
    </param>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of the application.</description>
    </param>
  </function>
  <function name="GetWayPoints" functionID="GetWayPointsID" messagetype="response">
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of the application.</description>
    </param>
    <param name="wayPoints" type="Common.LocationDetails" mandatory="false" array="true" minsize="1" maxsize="10">
      <description>See LocationDetails</description>
    </param>
  </function>
  <function name="OnWayPointChange" functionID="OnWayPointChangeID" messagetype="notification">
    <description>Notification which provides the entire LocationDetails when there is a change to any waypoints or destination.</description>
    <param name="wayPoints" type="Common.LocationDetails" mandatory="true" array="true" minsize="1" maxsize="10">
      <description>See LocationDetails</description>
    </param>
  </function>

  <function name="SubscribeWayPoints" functionID="SubscribeWayPointsID" messagetype="request">
    <description>To subscribe in getting changes for Waypoints/destinations</description>
  </function>

  <function name="SubscribeWayPoints" functionID="SubscribeWayPointsID" messagetype="response">
  </function>

  <function name="UnsubscribeWayPoints" functionID="UnsubscribeWayPointsID" messagetype="request">
    <description>Request to unsubscribe from WayPoints and Destination</description>
  </function>

  <function name="UnsubscribeWayPoints" functionID="UnsubscribeWayPointsID" messagetype="response">
  </function>

</interface>

<interface name="VehicleInfo" version="1.1.0" date="2017-04-27">
  <function name="IsReady" messagetype="request">
    <description>Method is invoked at system startup. Response should provide information about presence of any of vehicle information modules (ECU, GPS, etc) and their readiness to cooperate with SDL.</description>
  </function>
  <function name="IsReady" messagetype="response">
    <param name="available" type="Boolean" mandatory="true">
      <description>Must be true if vehicle data modules are present and ready to communicate with SDL.</description>
    </param>
  </function>
  <function name="GetVehicleType" messagetype="request">
    <description>Request from SmartDeviceLinkCore to HMI to get info about the vehicle (type, model, etc.).</description>
  </function>
  <function name="GetVehicleType" messagetype="response">
    <param name="vehicleType" type="Common.VehicleType" mandatory="true"/>
  </function>
  <function name="ReadDID" messagetype="request">
    <description>Request from SDL for vehicle data reading.</description>
    <param name="ecuName" type="Integer" minvalue="0" maxvalue="65535" mandatory="true">
      <description>Name of ECU.</description>
    </param>
    <param name="didLocation" type="Integer" minvalue="0" maxvalue="65535" minsize="1" maxsize="1000" array="true" mandatory="true">
      <description>Get raw data from vehicle data DID location(s).</description>
    </param>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of application related to this RPC.</description>
    </param>
  </function>
  <function name="ReadDID" messagetype="response">
    <param name="didResult" type="Common.DIDResult" minsize="0" maxsize="1000" array="true" mandatory="false">
      <description>Array of requested DID results (with data if available).</description>
    </param>
  </function>
  <function name="GetDTCs" messagetype="request">
    <description>Vehicle module diagnostic trouble code request.</description>
    <param name="ecuName" type="Integer" minvalue="0" maxvalue="65535" mandatory="true">
      <description>Name of ECU.</description>
    </param>
    <param name="dtcMask" type="Integer" minvalue="0" maxvalue="255" mandatory="false">
      <description>DTC Mask Byte to be sent in diagnostic request to module .</description>
    </param>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of application that requested this RPC.</description>
    </param>
  </function>
  <function name="GetDTCs" messagetype="response">
    <param name="ecuHeader" type="Integer" minvalue="0" maxvalue="65535" mandatory="true">
      <description>2 byte ECU Header for DTC response (as defined in VHR_Layout_Specification_DTCs.pdf)</description>
    </param>
    <param name="dtc" type="String" mandatory="false" minsize="1" maxsize="15" maxlength="10" array="true">
      <description>
        Array of all reported DTCs on module. Each DTC is represented with 4 bytes:
        3 bytes for data
        1 byte for status
      </description>
    </param>
  </function>
  <function name="DiagnosticMessage" messagetype="request">
    <description>Non periodic vehicle diagnostic request</description>
    <param name="targetID" type="Integer" minvalue="0" maxvalue="65535" mandatory="true">
      <description>Name of target ECU.</description>
    </param>
    <param name="messageLength" type="Integer" minvalue="0" maxvalue="65535" mandatory="true">
      <description>Length of message (in bytes).</description>
    </param>
    <param name="messageData" type="Integer" minvalue="0" maxvalue="255" minsize="1" maxsize="65535" array="true" mandatory="true">
      <description>
        Array of bytes comprising CAN message.
      </description>
    </param>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of application that requested this RPC.</description>
    </param>
  </function>
  <function name="DiagnosticMessage" messagetype="response">
    <param name="messageDataResult" type="Integer" minvalue="0" maxvalue="255" minsize="1" maxsize="65535" array="true" mandatory="true">
      <description>
        Array of bytes comprising CAN message result.
      </description>
    </param>
  </function>
  <function name="SubscribeVehicleData" messagetype="request">
    <description>
        Subscribes for specific published data items.
        The data will be only sent if it has changed.
        The application will be notified by the onVehicleData notification whenever new data is available.
        To unsubscribe the notifications, use unsubscribe with the same subscriptionType.
    </description>
    <param name="gps" type="Boolean" mandatory="false">
      <description>See GPSData</description>
    </param>
    <param name="speed" type="Boolean" mandatory="false">
      <description>The vehicle speed in kilometers per hour</description>
    </param>
    <param name="rpm" type="Boolean" mandatory="false">
      <description>The number of revolutions per minute of the engine</description>
    </param>
    <param name="fuelLevel" type="Boolean" mandatory="false">
      <description>The fuel level in the tank (percentage)</description>
    </param>
    <param name="fuelLevel_State" type="Boolean" mandatory="false">
      <description>The fuel level state</description>
    </param>
    <param name="instantFuelConsumption" type="Boolean" mandatory="false">
      <description>The instantaneous fuel consumption in microlitres</description>
    </param>
    <param name="fuelRange" type="Boolean" mandatory="false">
        <description>The estimate range in KM the vehicle can travel based on fuel level and consumption</description>
    </param>
    <param name="externalTemperature" type="Boolean" mandatory="false">
      <description>The external temperature in degrees celsius</description>
    </param>
    <param name="prndl" type="Boolean" mandatory="false">
      <description>See PRNDL</description>
    </param>
    <param name="tirePressure" type="Boolean" mandatory="false">
      <description>See TireStatus</description>
    </param>
    <param name="odometer" type="Boolean" mandatory="false">
      <description>Odometer in km</description>
    </param>
    <param name="beltStatus" type="Boolean" mandatory="false">
      <description>The status of the seat belts</description>
    </param>
    <param name="bodyInformation" type="Boolean" mandatory="false">
      <description>The body information including power modes</description>
    </param>
    <param name="deviceStatus" type="Boolean" mandatory="false">
      <description>The device status including signal and battery strength</description>
    </param>
    <param name="driverBraking" type="Boolean" mandatory="false">
      <description>The status of the brake pedal</description>
    </param>
    <param name="wiperStatus" type="Boolean" mandatory="false">
      <description>The status of the wipers</description>
    </param>
    <param name="headLampStatus" type="Boolean" mandatory="false">
      <description>Status of the head lamps</description>
    </param>
    <param name="engineTorque" type="Boolean" mandatory="false">
      <description>Torque value for engine (in Nm) on non-diesel variants</description>
    </param>
    <param name="accPedalPosition" type="Boolean" mandatory="false">
      <description>Accelerator pedal position (percentage depressed)</description>
    </param>
    <param name="steeringWheelAngle" type="Boolean" mandatory="false">
      <description>Current angle of the steering wheel (in deg)</description>
    </param>
    <param name="engineOilLife" type="Boolean" mandatory="false">
      <description>The estimated percentage of remaining oil life of the engine.</description>
    </param>
        <!-- Ford Specific Data Items -->
    <param name="eCallInfo" type="Boolean" mandatory="false">
      <description>Emergency Call notification and confirmation data</description>
    </param>
    <param name="airbagStatus" type="Boolean" mandatory="false">
      <description>The status of the air bags</description>
    </param>
    <param name="emergencyEvent" type="Boolean" mandatory="false">
      <description>Information related to an emergency event (and if it occurred)</description>
    </param>
    <param name="clusterModeStatus" type="Boolean" mandatory="false">
      <description>The status modes of the cluster</description>
    </param>
    <param name="myKey" type="Boolean" mandatory="false">
      <description>Information related to the MyKey feature</description>
    </param>
        <!-- / Ford Specific Data Items -->
  </function>
  <function name="SubscribeVehicleData" messagetype="response">
    <param name="gps" type="Common.VehicleDataResult" mandatory="false">
      <description>See GPSData</description>
    </param>
    <param name="speed" type="Common.VehicleDataResult" mandatory="false">
      <description>The vehicle speed in kilometers per hour</description>
    </param>
    <param name="rpm" type="Common.VehicleDataResult" mandatory="false">
      <description>The number of revolutions per minute of the engine</description>
    </param>
    <param name="fuelLevel" type="Common.VehicleDataResult" mandatory="false">
      <description>The fuel level in the tank (percentage)</description>
    </param>
    <param name="fuelLevel_State" type="Common.VehicleDataResult" mandatory="false">
      <description>The fuel level state</description>
    </param>
    <param name="instantFuelConsumption" type="Common.VehicleDataResult" mandatory="false">
      <description>The instantaneous fuel consumption in microlitres</description>
    </param>
    <param name="fuelRange" type="Common.VehicleDataResult" mandatory="false">
        <description>The estimate range in KM the vehicle can travel based on fuel level and consumption</description>
    </param>
    <param name="externalTemperature" type="Common.VehicleDataResult" mandatory="false">
      <description>The external temperature in degrees celsius.</description>
    </param>
    <param name="prndl" type="Common.VehicleDataResult" mandatory="false">
      <description>See PRNDL</description>
    </param>
    <param name="tirePressure" type="Common.VehicleDataResult" mandatory="false">
      <description>See TireStatus</description>
    </param>
    <param name="odometer" type="Common.VehicleDataResult" mandatory="false">
      <description>Odometer in km</description>
    </param>
    <param name="beltStatus" type="Common.VehicleDataResult" mandatory="false">
      <description>The status of the seat belts</description>
    </param>
    <param name="bodyInformation" type="Common.VehicleDataResult" mandatory="false">
      <description>The body information including power modes</description>
    </param>
    <param name="deviceStatus" type="Common.VehicleDataResult" mandatory="false">
      <description>The device status including signal and battery strength</description>
    </param>
    <param name="driverBraking" type="Common.VehicleDataResult" mandatory="false">
      <description>The status of the brake pedal</description>
    </param>
    <param name="wiperStatus" type="Common.VehicleDataResult" mandatory="false">
      <description>The status of the wipers</description>
    </param>
    <param name="headLampStatus" type="Common.VehicleDataResult" mandatory="false">
      <description>Status of the head lamps</description>
    </param>
    <param name="engineTorque" type="Common.VehicleDataResult" mandatory="false">
      <description>Torque value for engine (in Nm) on non-diesel variants</description>
    </param>
    <param name="accPedalPosition" type="Common.VehicleDataResult" mandatory="false">
      <description>Accelerator pedal position (percentage depressed)</description>
    </param>
    <param name="steeringWheelAngle" type="Common.VehicleDataResult" mandatory="false">
      <description>Current angle of the steering wheel (in deg)</description>
    </param>
    <param name="engineOilLife" type="Common.VehicleDataResult" mandatory="false">
      <description>The estimated percentage of remaining oil life of the engine.</description>
    </param>
        <!-- Ford Specific Data Items -->
    <param name="eCallInfo" type="Common.VehicleDataResult" mandatory="false">
      <description>Emergency Call notification and confirmation data</description>
    </param>
    <param name="airbagStatus" type="Common.VehicleDataResult" mandatory="false">
      <description>The status of the air bags</description>
    </param>
    <param name="emergencyEvent" type="Common.VehicleDataResult" mandatory="false">
      <description>Information related to an emergency event (and if it occurred)</description>
    </param>
    <param name="clusterModes" type="Common.VehicleDataResult" mandatory="false">
      <description>The status modes of the cluster</description>
    </param>
    <param name="myKey" type="Common.VehicleDataResult" mandatory="false">
      <description>Information related to the MyKey feature</description>
    </param>
        <!-- / Ford Specific Data Items -->
  </function>
  <function name="UnsubscribeVehicleData" messagetype="request">
    <description>
      This function is used to unsubscribe the notifications from the subscribeVehicleData function.
    </description>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of application that requested this RPC.</description>
    </param>
    <param name="gps" type="Boolean" mandatory="false">
      <description>See GPSData</description>
    </param>
    <param name="speed" type="Boolean" mandatory="false">
      <description>The vehicle speed in kilometers per hour</description>
    </param>
    <param name="rpm" type="Boolean" mandatory="false">
      <description>The number of revolutions per minute of the engine</description>
    </param>
    <param name="fuelLevel" type="Boolean" mandatory="false">
      <description>The fuel level in the tank (percentage)</description>
    </param>
    <param name="fuelLevel_State" type="Boolean" mandatory="false">
      <description>The fuel level state</description>
    </param>
    <param name="instantFuelConsumption" type="Boolean" mandatory="false">
      <description>The instantaneous fuel consumption in microlitres</description>
    </param>
    <param name="fuelRange" type="Boolean" mandatory="false">
        <description>The estimate range in KM the vehicle can travel based on fuel level and consumption</description>
    </param>
    <param name="externalTemperature" type="Boolean" mandatory="false">
      <description>The external temperature in degrees celsius.</description>
    </param>
    <param name="prndl" type="Boolean" mandatory="false">
      <description>See PRNDL</description>
    </param>
    <param name="tirePressure" type="Boolean" mandatory="false">
      <description>See TireStatus</description>
    </param>
    <param name="odometer" type="Boolean" mandatory="false">
      <description>Odometer in km</description>
    </param>
    <param name="beltStatus" type="Boolean" mandatory="false">
      <description>The status of the seat belts</description>
    </param>
    <param name="bodyInformation" type="Boolean" mandatory="false">
      <description>The body information including power modes</description>
    </param>
    <param name="deviceStatus" type="Boolean" mandatory="false">
      <description>The device status including signal and battery strength</description>
    </param>
    <param name="driverBraking" type="Boolean" mandatory="false">
      <description>The status of the brake pedal</description>
    </param>
    <param name="wiperStatus" type="Boolean" mandatory="false">
      <description>The status of the wipers</description>
    </param>
    <param name="headLampStatus" type="Boolean" mandatory="false">
      <description>Status of the head lamps</description>
    </param>
    <param name="engineTorque" type="Boolean" mandatory="false">
      <description>Torque value for engine (in Nm) on non-diesel variants</description>
    </param>
    <param name="accPedalPosition" type="Boolean" mandatory="false">
      <description>Accelerator pedal position (percentage depressed)</description>
    </param>
    <param name="steeringWheelAngle" type="Boolean" mandatory="false">
      <description>Current angle of the steering wheel (in deg)</description>
    </param>
    <param name="engineOilLife" type="Boolean" mandatory="false">
      <description>The estimated percentage of remaining oil life of the engine.</description>
    </param>
        <!-- Ford Specific Data Items -->
    <param name="eCallInfo" type="Boolean" mandatory="false">
      <description>Emergency Call notification and confirmation data</description>
    </param>
    <param name="airbagStatus" type="Boolean" mandatory="false">
      <description>The status of the air bags</description>
    </param>
    <param name="emergencyEvent" type="Boolean" mandatory="false">
      <description>Information related to an emergency event (and if it occurred)</description>
    </param>
    <param name="clusterModeStatus" type="Boolean" mandatory="false">
      <description>The status modes of the cluster</description>
    </param>
    <param name="myKey" type="Boolean" mandatory="false">
      <description>Information related to the MyKey feature</description>
    </param>
        <!-- / Ford Specific Data Items -->
  </function>
  <function name="UnsubscribeVehicleData" messagetype="response">
    <param name="gps" type="Common.VehicleDataResult" mandatory="false">
      <description>See GPSData</description>
    </param>
    <param name="speed" type="Common.VehicleDataResult" mandatory="false">
      <description>The vehicle speed in kilometers per hour</description>
    </param>
    <param name="rpm" type="Common.VehicleDataResult" mandatory="false">
      <description>The number of revolutions per minute of the engine</description>
    </param>
    <param name="fuelLevel" type="Common.VehicleDataResult" mandatory="false">
      <description>The fuel level in the tank (percentage)</description>
    </param>
    <param name="fuelLevel_State" type="Common.VehicleDataResult" mandatory="false">
      <description>The fuel level state</description>
    </param>
    <param name="instantFuelConsumption" type="Common.VehicleDataResult" mandatory="false">
      <description>The instantaneous fuel consumption in microlitres</description>
    </param>
    <param name="fuelRange" type="Common.VehicleDataResult" mandatory="false">
        <description>The estimate range in KM the vehicle can travel based on fuel level and consumption</description>
    </param>
    <param name="externalTemperature" type="Common.VehicleDataResult" mandatory="false">
      <description>The external temperature in degrees celsius</description>
    </param>
    <param name="prndl" type="Common.VehicleDataResult" mandatory="false">
      <description>See PRNDL</description>
    </param>
    <param name="tirePressure" type="Common.VehicleDataResult" mandatory="false">
      <description>See TireStatus</description>
    </param>
    <param name="odometer" type="Common.VehicleDataResult" mandatory="false">
      <description>Odometer in km</description>
    </param>
    <param name="beltStatus" type="Common.VehicleDataResult" mandatory="false">
      <description>The status of the seat belts</description>
    </param>
    <param name="bodyInformation" type="Common.VehicleDataResult" mandatory="false">
      <description>The body information including power modes</description>
    </param>
    <param name="deviceStatus" type="Common.VehicleDataResult" mandatory="false">
      <description>The device status including signal and battery strength</description>
    </param>
    <param name="driverBraking" type="Common.VehicleDataResult" mandatory="false">
      <description>The status of the brake pedal</description>
    </param>
    <param name="wiperStatus" type="Common.VehicleDataResult" mandatory="false">
      <description>The status of the wipers</description>
    </param>
    <param name="headLampStatus" type="Common.VehicleDataResult" mandatory="false">
      <description>Status of the head lamps</description>
    </param>
    <param name="engineTorque" type="Common.VehicleDataResult" mandatory="false">
      <description>Torque value for engine (in Nm) on non-diesel variants</description>
    </param>
    <param name="accPedalPosition" type="Common.VehicleDataResult" mandatory="false">
      <description>Accelerator pedal position (percentage depressed)</description>
    </param>
    <param name="steeringWheelAngle" type="Common.VehicleDataResult" mandatory="false">
      <description>Current angle of the steering wheel (in deg)</description>
    </param>
    <param name="engineOilLife" type="Common.VehicleDataResult" mandatory="false">
      <description>The estimated percentage of remaining oil life of the engine.</description>
    </param>
        <!-- Ford Specific Data Items -->
    <param name="eCallInfo" type="Common.VehicleDataResult" mandatory="false">
      <description>Emergency Call notification and confirmation data</description>
    </param>
    <param name="airbagStatus" type="Common.VehicleDataResult" mandatory="false">
      <description>The status of the air bags</description>
    </param>
    <param name="emergencyEvent" type="Common.VehicleDataResult" mandatory="false">
      <description>Information related to an emergency event (and if it occurred)</description>
    </param>
    <param name="clusterModes" type="Common.VehicleDataResult" mandatory="false">
      <description>The status modes of the cluster</description>
    </param>
    <param name="myKey" type="Common.VehicleDataResult" mandatory="false">
      <description>Information related to the MyKey feature</description>
    </param>
        <!-- / Ford Specific Data Items -->
  </function>
  <function name="GetVehicleData" messagetype="request">
    <description>Non periodic vehicle data read request.</description>
    <param name="gps" type="Boolean" mandatory="false">
      <description>See GPSData</description>
    </param>
    <param name="speed" type="Boolean" mandatory="false">
      <description>The vehicle speed in kilometers per hour</description>
    </param>
    <param name="rpm" type="Boolean" mandatory="false">
      <description>The number of revolutions per minute of the engine</description>
    </param>
    <param name="fuelLevel" type="Boolean" mandatory="false">
      <description>The fuel level in the tank (percentage)</description>
    </param>
    <param name="fuelLevel_State" type="Boolean" mandatory="false">
      <description>The fuel level state</description>
    </param>
    <param name="instantFuelConsumption" type="Boolean" mandatory="false">
      <description>The instantaneous fuel consumption in microlitres</description>
    </param>
    <param name="fuelRange" type="Boolean" mandatory="false">
        <description>The estimate range in KM the vehicle can travel based on fuel level and consumption</description>
    </param>
    <param name="externalTemperature" type="Boolean" mandatory="false">
      <description>The external temperature in degrees celsius</description>
    </param>
    <param name="vin" type="Boolean" mandatory="false">
      <description>Vehicle identification number</description>
    </param>
    <param name="prndl" type="Boolean" mandatory="false">
      <description>See PRNDL</description>
    </param>
    <param name="tirePressure" type="Boolean" mandatory="false">
      <description>See TireStatus</description>
    </param>
    <param name="odometer" type="Boolean" mandatory="false">
      <description>Odometer in km</description>
    </param>
    <param name="beltStatus" type="Boolean" mandatory="false">
      <description>The status of the seat belts</description>
    </param>
    <param name="bodyInformation" type="Boolean" mandatory="false">
      <description>The body information including ignition status and internal temp</description>
    </param>
    <param name="deviceStatus" type="Boolean" mandatory="false">
      <description>The device status including signal and battery strength</description>
    </param>
    <param name="driverBraking" type="Boolean" mandatory="false">
      <description>The status of the brake pedal</description>
    </param>
    <param name="wiperStatus" type="Boolean" mandatory="false">
      <description>The status of the wipers</description>
    </param>
    <param name="headLampStatus" type="Boolean" mandatory="false">
      <description>Status of the head lamps</description>
    </param>
    <param name="engineTorque" type="Boolean" mandatory="false">
      <description>Torque value for engine (in Nm) on non-diesel variants</description>
    </param>
    <param name="accPedalPosition" type="Boolean" mandatory="false">
      <description>Accelerator pedal position (percentage depressed)</description>
    </param>
    <param name="steeringWheelAngle" type="Boolean" mandatory="false">
      <description>Current angle of the steering wheel (in deg)</description>
    </param>
    <param name="engineOilLife" type="Boolean" mandatory="false">
      <description>The estimated percentage of remaining oil life of the engine.</description>
    </param>
    <param name="eCallInfo" type="Boolean" mandatory="false">
      <description>Emergency Call notification and confirmation data</description>
    </param>
    <param name="airbagStatus" type="Boolean" mandatory="false">
      <description>The status of the air bags</description>
    </param>
    <param name="emergencyEvent" type="Boolean" mandatory="false">
      <description>Information related to an emergency event (and if it occurred)</description>
    </param>
    <param name="clusterModeStatus" type="Boolean" mandatory="false">
      <description>The status modes of the cluster</description>
    </param>
    <param name="myKey" type="Boolean" mandatory="false">
      <description>Information related to the MyKey feature</description>
    </param>
  </function>
  <function name="GetVehicleData" messagetype="response">
    <param name="gps" type="Common.GPSData" mandatory="false">
      <description>See GPSData</description>
    </param>
    <param name="speed" type="Float" minvalue="0" maxvalue="700" mandatory="false">
      <description>The vehicle speed in kilometers per hour</description>
    </param>
    <param name="rpm" type="Integer" minvalue="0" maxvalue="20000" mandatory="false">
      <description>The number of revolutions per minute of the engine</description>
    </param>
    <param name="fuelLevel" type="Float" minvalue="-6" maxvalue="106" mandatory="false">
      <description>The fuel level in the tank (percentage)</description>
    </param>
    <param name="fuelLevel_State" type="Common.ComponentVolumeStatus" mandatory="false">
      <description>The fuel level state</description>
    </param>
    <param name="instantFuelConsumption" type="Float" minvalue="0" maxvalue="25575" mandatory="false">
      <description>The instantaneous fuel consumption in microlitres</description>
    </param>
    <param name="fuelRange" type="Common.FuelRange" minsize="0" maxsize="100" array="true" mandatory="false">
        <description>The estimate range in KM the vehicle can travel based on fuel level and consumption</description>
    </param>
    <param name="externalTemperature" type="Float" minvalue="-40" maxvalue="100" mandatory="false">
      <description>The external temperature in degrees celsius</description>
    </param>
    <param name="vin" type="String" maxlength="17" mandatory="false">
      <description>Vehicle identification number</description>
    </param>
    <param name="prndl" type="Common.PRNDL" mandatory="false">
      <description>See PRNDL</description>
    </param>
    <param name="tirePressure" type="Common.TireStatus" mandatory="false">
      <description>See TireStatus</description>
    </param>
    <param name="odometer" type="Integer" minvalue="0" maxvalue="17000000" mandatory="false">
      <description>Odometer in km</description>
    </param>
    <param name="beltStatus" type="Common.BeltStatus" mandatory="false">
      <description>The status of the seat belts</description>
    </param>
    <param name="bodyInformation" type="Common.BodyInformation" mandatory="false">
      <description>The body information including power modes</description>
    </param>
    <param name="deviceStatus" type="Common.DeviceStatus" mandatory="false">
      <description>The device status including signal and battery strength</description>
    </param>
    <param name="driverBraking" type="Common.VehicleDataEventStatus" mandatory="false">
      <description>The status of the brake pedal</description>
    </param>
    <param name="wiperStatus" type="Common.WiperStatus" mandatory="false">
      <description>The status of the wipers</description>
    </param>
    <param name="headLampStatus" type="Common.HeadLampStatus" mandatory="false">
      <description>Status of the head lamps</description>
    </param>
    <param name="engineTorque" type="Float" minvalue="-1000" maxvalue="2000" mandatory="false">
      <description>Torque value for engine (in Nm) on non-diesel variants</description>
    </param>
    <param name="accPedalPosition" type="Float" minvalue="0" maxvalue="100" mandatory="false">
      <description>Accelerator pedal position (percentage depressed)</description>
    </param>
    <param name="steeringWheelAngle" type="Float" minvalue="-2000" maxvalue="2000" mandatory="false">
      <description>Current angle of the steering wheel (in deg)</description>
    </param>
    <param name="engineOilLife" type="Float" minvalue="0" maxvalue="100" mandatory="false">
      <description>The estimated percentage of remaining oil life of the engine.</description>
    </param>
    <param name="eCallInfo" type="Common.ECallInfo" mandatory="false">
      <description>Emergency Call notification and confirmation data</description>
    </param>
    <param name="airbagStatus" type="Common.AirbagStatus" mandatory="false">
      <description>The status of the air bags</description>
    </param>
    <param name="emergencyEvent" type="Common.EmergencyEvent" mandatory="false">
      <description>Information related to an emergency event (and if it occurred)</description>
    </param>
    <param name="clusterModeStatus" type="Common.ClusterModeStatus" mandatory="false">
      <description>The status modes of the cluster</description>
    </param>
    <param name="myKey" type="Common.MyKey" mandatory="false">
      <description>Information related to the MyKey feature</description>
    </param>
  </function>
  <function name="OnVehicleData" messagetype="notification">
    <description>Callback for the periodic and non periodic vehicle data read function.</description>
    <param name="gps" type="Common.GPSData" mandatory="false">
      <description>See GPSData</description>
    </param>
    <param name="speed" type="Float" minvalue="0" maxvalue="700" mandatory="false">
      <description>The vehicle speed in kilometers per hour</description>
    </param>
    <param name="rpm" type="Integer" minvalue="0" maxvalue="20000" mandatory="false">
      <description>The number of revolutions per minute of the engine</description>
    </param>
    <param name="fuelLevel" type="Float" minvalue="-6" maxvalue="106" mandatory="false">
      <description>The fuel level in the tank (percentage)</description>
    </param>
    <param name="fuelLevel_State" type="Common.ComponentVolumeStatus" mandatory="false">
      <description>The fuel level state</description>
    </param>
    <param name="instantFuelConsumption" type="Float" minvalue="0" maxvalue="25575" mandatory="false">
      <description>The instantaneous fuel consumption in microlitres</description>
    </param>
    <param name="fuelRange" type="Common.FuelRange" minsize="0" maxsize="100" array="true" mandatory="false">
        <description>The estimate range in KM the vehicle can travel based on fuel level and consumption</description>
    </param>
    <param name="externalTemperature" type="Float" minvalue="-40" maxvalue="100" mandatory="false">
      <description>The external temperature in degrees celsius</description>
    </param>
    <param name="vin" type="String" maxlength="17" mandatory="false">
      <description>Vehicle identification number.</description>
    </param>
    <param name="prndl" type="Common.PRNDL" mandatory="false">
      <description>See PRNDL</description>
    </param>
    <param name="tirePressure" type="Common.TireStatus" mandatory="false">
      <description>See TireStatus</description>
    </param>
    <param name="odometer" type="Integer" minvalue="0" maxvalue="17000000" mandatory="false">
      <description>Odometer in km</description>
    </param>
    <param name="beltStatus" type="Common.BeltStatus" mandatory="false">
      <description>The status of the seat belts</description>
    </param>
    <param name="bodyInformation" type="Common.BodyInformation" mandatory="false">
      <description>The body information including power modes</description>
    </param>
    <param name="deviceStatus" type="Common.DeviceStatus" mandatory="false">
      <description>The device status including signal and battery strength</description>
    </param>
    <param name="driverBraking" type="Common.VehicleDataEventStatus" mandatory="false">
      <description>The status of the brake pedal</description>
    </param>
    <param name="wiperStatus" type="Common.WiperStatus" mandatory="false">
      <description>The status of the wipers</description>
    </param>
    <param name="headLampStatus" type="Common.HeadLampStatus" mandatory="false">
      <description>Status of the head lamps</description>
    </param>
    <param name="engineTorque" type="Float" minvalue="-1000" maxvalue="2000" mandatory="false">
      <description>Torque value for engine (in Nm) on non-diesel variants</description>
    </param>
    <param name="accPedalPosition" type="Float" minvalue="0" maxvalue="100" mandatory="false">
      <description>Accelerator pedal position (percentage depressed)</description>
    </param>
    <param name="steeringWheelAngle" type="Float" minvalue="-2000" maxvalue="2000" mandatory="false">
      <description>Current angle of the steering wheel (in deg)</description>
    </param>
    <param name="eCallInfo" type="Common.ECallInfo" mandatory="false">
      <description>Emergency Call notification and confirmation data</description>
    </param>
    <param name="airbagStatus" type="Common.AirbagStatus" mandatory="false">
      <description>The status of the air bags</description>
    </param>
    <param name="emergencyEvent" type="Common.EmergencyEvent" mandatory="false">
      <description>Information related to an emergency event (and if it occurred)</description>
    </param>
    <param name="clusterModeStatus" type="Common.ClusterModeStatus" mandatory="false">
      <description>The status modes of the cluster</description>
    </param>
    <param name="myKey" type="Common.MyKey" mandatory="false">
      <description>Information related to the MyKey feature</description>
    </param>
  </function>
</interface>

 <!-- Policies -->
<interface name="SDL" version="1.1.0" date="2017-04-27">
<function name="ActivateApp" messagetype="request">
    <param name="appID" type="Integer" mandatory="true">
    </param>
  </function>
  <function name="ActivateApp" messagetype="response">
    <param name="isSDLAllowed" type="Boolean" mandatory="true" scope="internal"/>
    <param name="device" type="Common.DeviceInfo" mandatory="false" scope="internal">
      <description>If isSDLAllowed is false, consent for sending PT through specified device is required.</description>
    </param>
    <param name="isPermissionsConsentNeeded" type="Boolean" mandatory="true"/>
    <param name="isAppPermissionsRevoked" type="Boolean" mandatory="true"/>
    <param name="appRevokedPermissions" type="Common.PermissionItem" array="true" minsize="1" maxsize="100" mandatory="false">
        <description>If app permissions were reduced (isAppPermissionsRevoked == true), then this array specifies list of removed permissions. </description>
      </param>
    <param name="isAppRevoked" type="Boolean" mandatory="true"/>
    <param name="priority" type="Common.AppPriority" mandatory="false">
        <description>Send to HMI so that it can coordinate order of requests/notifications correspondingly.</description>
      </param>
  </function>

  <function name="GetUserFriendlyMessage" messagetype="request" scope="internal">
      <description>Request from HMI to SDL to get user friendly messages for UI/TTS info boxes/texts (i.e. for help/dialogs etc) from Policy Table.</description>
      <param name="messageCodes" type="String" array="true" minsize="1" maxsize="100" maxlength="500" mandatory="true">
        <description>Id of message to be received according to Policy Table i.e. StatusNeeded, Notifications, DrivingCharacteristics etc.</description>
      </param>
      <param name="language" type="Common.Language" mandatory="false">
        <description>Optional parameter if HMI wants message in some other language then its current one already known to SDL.</description>
      </param>
    </function>
    <function name="GetUserFriendlyMessage" messagetype="response">
      <param name="messages" type="Common.UserFriendlyMessage" array="true" minsize="1" maxsize="100" mandatory="false">
        <description>If no message was found in PT for specified message code and for HMI current or specified language, this parameter will be omitted.</description>
      </param>
    </function>

    <function name="OnAllowSDLFunctionality" messagetype="notification">
     <description>Initiated by HMI. Notifies about user/HMI allowing SDL functionality or disallowing access to all mobile apps. Needed if HMI has additional ways of asking user about this (i.e. Settings etc)</description>
     <param name="device" type="Common.DeviceInfo" mandatory="false">
        <description>If no device is specified permission counts for SDL functionality in general.</description>
      </param>
      <param name="allowed" type="Boolean" mandatory="true">
        <description>Must be true if allowed</description>
      </param>
      <param name="source" type="Common.ConsentSource" mandatory="true"/>
    </function>

    <!-- SyncP RPC-->
    <function name="OnReceivedPolicyUpdate" messagetype="notification">
      <description>
        From: SYNCP Manager
        To: SDL
        Notification sent to SDL when SYNCP Manager receives and decrypts updated policy table
      </description>
      <param name="policyfile" type="String" minlength="1" maxlength="255" mandatory="true">
        <description>Location of decrypted policy table Json file on target</description>
      </param>
    </function>

    <function name="OnPolicyUpdate" messagetype="notification">
      <description>
        From: SYNCP Manager
        To: SDL
        Notifies SDL to supply a new "PolicyUpdate" request with more recent snapshot data
      </description>
    </function>
    <!-- End of SyncP RPC-->

    <function name="GetListOfPermissions"  messagetype="request">
      <description>Request from HMI to SDL to get list of permissions for app. If no app specified - list of permissions for all apps.</description>
      <param name="appID" type="Integer" mandatory="false"/>
    </function>
    <function name="GetListOfPermissions" messagetype="response">
      <param name="allowedFunctions" type="Common.PermissionItem" mandatory="true" array="true" minsize="0" maxsize="100">
        <description>If no permissions were specified for application the array will come empty.</description>
      </param>
      <param name="externalConsentStatus" type="Common.ExternalConsentStatus" mandatory="true" array="true" minsize="0" maxsize="100">
        <description>External User Consent Settings (defined by entityType and entityID) status: enabled/disabled. If empty array is returned, SDL does not have any stored status.</description>
      </param>
    </function>

    <function name="OnAppPermissionConsent" messagetype="notification">
      <description>Initiated by HMI for specifying the allowance for the application to perform some functionality. Duplicates functionality of the request, needed if HMI has specific ways to allow/disallow functionality (i.e.Setting Menu)</description>
      <param name="appID" type="Integer" mandatory="false">
        <description>Information about the application. See HMIApplication. If omitted - allow/disallow all applications </description>
      </param>
      <param name="consentedFunctions" type="Common.PermissionItem" mandatory="false" array="true" minsize="1" maxsize="100"/>
      <param name="externalConsentStatus" type="Common.ExternalConsentStatus" mandatory="false" array="true" minsize="1" maxsize="100"/>
      <param name="source" type="Common.ConsentSource" mandatory="true"/>
     </function>

    <function name="OnAppPermissionChanged" messagetype="notification">
      <description>Notification from SDL to HMI. Occurs when app permissions were reduced. If no permission specified means that app was dissallowed and has to be unregitstered.</description>
      <param name="appID" type="Integer" mandatory="true"/>
      <param name="isAppPermissionsRevoked" type="Boolean" mandatory="false"/>
      <param name="appRevokedPermissions" type="Common.PermissionItem" array="true" minsize="1" maxsize="100" mandatory="false">
        <description>If app permissions were reduced (isAppPermissionsRevoked == true), then this array specifies list of removed permissions. </description>
      </param>
      <param name="appRevoked" type="Boolean" mandatory="false">
        <description>If present then specified application was prohibited to used with Sync.</description>
      </param>
      <param name="appPermissionsConsentNeeded" type="Boolean" mandatory="false">
        <description>If present specifies that permissions were added to application that require User Consent, then HMI can send GetListOfPermissions request to obtain list of permissions.</description>
      </param>
      <param name="appUnauthorized" type="Boolean" mandatory="false">
        <description>When present and set to true (should be if present) then this means that application was not authorized (nickname check failed.)</description>
      </param>
      <param name="priority" type="Common.AppPriority" mandatory="false">
        <description>Send to HMI so that it can coordinate order of requests/notifications correspondingly.</description>
      </param>
      <param name="requestType" type="Common.RequestType" minsize="0" maxsize="100" array="true" mandatory="false">
        <description>The list of SystemRequest's RequestTypes allowed by policies for the named application (the app's SystemRequest sent with RequestType           out of this list will get 'disallowed' response from SDL).
        If SDL sends an empty array - any RequestType is allowed for this app.
        If SDL omits this parameter - nothing is changed for RequestType in the policies
      </description>
      </param>
      <param name="requestSubType" type="String" maxlength="100" minsize="0" maxsize="100" array="true" mandatory="false">
          <description>
              The list of SystemRequest's requestSubTypes allowed by policies for the named application.
              If the app sends a requestSubType which is not specified in this list, then that request should be rejected.
              An empty array signifies that any value of requestSubType is allowed for this app.
              If this parameter is omitted, then a request with any value of requestSubType is now allowed for this app
          </description>
      </param>
    </function>

  <function name="OnSDLConsentNeeded" messagetype="notification">
    <description>Send from SDL to HMI to notify that data consent is needed for device either because PT update or Retry strategy.</description>
    <param name="device" type="Common.DeviceInfo" mandatory="true"/>
  </function>

  <function name="UpdateSDL" messagetype="request">
      <description>Request from HMI to SDL to start update of Policy Table.</description>
    </function>
    <function name="UpdateSDL" messagetype="response">
      <description>Specify result: no update needed, update was successful/unsuccessful etc</description>
      <param name="result" type="Common.UpdateResult" mandatory="true"/>
    </function>

    <function name="GetStatusUpdate" messagetype="request">
      <description>Request from HMI to SDL to find out current status of PT exchange process.</description>
    </function>
    <function name="GetStatusUpdate" messagetype="response">
      <param name="status" type="Common.UpdateResult" mandatory="true"/>
    </function>
    <function name="OnStatusUpdate" messagetype="notification">
      <description>Notification from SDL to HMI when current status of PT exchange changed (i.e. it Succeded or Failed etc)</description>
      <param name="status" type="Common.UpdateResult" mandatory="true" />
    </function>

    <function name="OnSystemError" messagetype="notification">
      <param name="error" type="Common.SystemError" mandatory="true"/>
    </function>

    <function name="AddStatisticsInfo" messagetype="notification">
      <description>Sent by system to record statiscs and error counts. Increases statistics specified by statisticType by one.</description>
      <param name="statisticType" type="Common.StatisticsType" mandatory="true"/>
    </function>

    <function name="GetURLS" messagetype="request" scope="internal">
      <description>Sent by system to SDL to get list of URL for specified service type and optionally policy's application id.</description>
      <param name="service" type="Integer" minvalue="0" maxvalue="100" mandatory="true"/>
    </function>
    <function name="GetURLS" messagetype="response" scope="internal">
      <param name="urls" type="Common.ServiceInfo" array="true" mandatory="false" minsize="1" maxsize="100"/>
    </function>
    <function name="OnDeviceStateChanged" messagetype="notification" scope="internal">
      <param name="deviceState" type="Common.DeviceState" mandatory="true" />
      <param name="deviceInternalId" type="String" mandatory="true" minlength="0" maxlength="500" />
      <param name="deviceId" type="Common.DeviceInfo" mandatory="false"/>
    </function>
</interface>

<interface name="RC" version="1.1.0" date="2017-07-18">
  <function name="IsReady" messagetype="request">
    <description>Method is invoked at system startup. Response should provide information about presence of any of remote controllable module and its readiness to cooperate with SDL.</description>
  </function>
  <function name="IsReady" messagetype="response">
    <param name="available" type="Boolean" mandatory="true">
      <description>Must be true if vehicle RC modules are present and ready to communicate with SDL.</description>
    </param>
  </function>

  <function name="GetCapabilities" messagetype="request">
    <description>Method is invoked at system startup by SDL to request information about Remote Control capabilities of HMI.</description>
  </function>
  <function name="GetCapabilities" messagetype="response">
    <param name="remoteControlCapability" type="Common.RemoteControlCapabilities" mandatory="false">
      <description>See RemoteControlCapabilities, all available RC modules and buttons shall be returned.</description>
    </param>
  </function>

 <function name="SetInteriorVehicleData" functionID="SetInteriorVehicleDataID" messagetype="request">
    <param name="moduleData" type="Common.ModuleData" mandatory="true" >
      <description>The module type and data to set</description>
    </param>
    <param name="appID" type="Integer" mandatory="true">
      <description>Internal SDL-assigned ID of the related application</description>
    </param>
  </function>

  <function name="SetInteriorVehicleData" messagetype="response">
    <description>Used to set the values of one zone and one data type within that zone</description>
    <param name="moduleData" type="Common.ModuleData" mandatory="true" >
    </param>
  </function>

<function name="GetInteriorVehicleData" messagetype="request">
  <param name="moduleType" type="Common.ModuleType" mandatory="true" >
    <description>The module data to retrieve from the vehicle for that type</description>
  </param>
  <param name="subscribe" type="Boolean" mandatory="false" defvalue="false">
    <description>If subscribe is true, the head unit will send onInteriorVehicleData notifications for the module type</description>
  </param>
  <param name="appID" type="Integer" mandatory="true">
    <description>Internal SDL-assigned ID of the related application</description>
  </param>
</function>

<function name="GetInteriorVehicleData" messagetype="response">
  <param name="moduleData" type="Common.ModuleData" mandatory="true" >
  </param>
  <param name="isSubscribed" type="Boolean" mandatory="false" >
    <description>Is a conditional-mandatory parameter: must be returned in case "subscribe" parameter was present in the related request.
    if "true" - the "moduleType" from request is successfully subscribed and  the head unit will send onInteriorVehicleData notifications for the moduleDescription.
    if "false" - the "moduleType" from request is either unsubscribed or failed to subscribe.</description>
  </param>
</function>

<function name="GetInteriorVehicleDataConsent" messagetype="request">
    <description>Sender: SDL->HMI. </description>
    <description>HMI is expected to display a permission prompt to the driver showing the RC module and app details (for example, app's name).
    The driver is expected to have an ability to grant or deny the permission.</description>
    <param name="moduleType" type="Common.ModuleType" mandatory="true">
      <description>The module type that the app requests to control.</description>
    </param>
    <param name="appID" type="Integer" mandatory="true">
      <description>ID of the application that triggers the permission prompt.</description>
    </param>
  </function>
  <function name="GetInteriorVehicleDataConsent" messagetype="response">
    <param name="allowed" type="Boolean" mandatory="true">
      <description>"true" - if the driver grants the permission for controlling to the named app;
      "false" - in case the driver denies the permission for controlling to the named app.</description>
    </param>
</function>

<function name="OnInteriorVehicleData" messagetype="notification">
  <param name="moduleData" type="Common.ModuleData" mandatory="true" >
  </param>
</function>

<function name="OnRemoteControlSettings" messagetype="notification">
  <description>Sender: vehicle -> RSDL. Notification about remote-control settings changed. Sent after User`s choice through HMI.</description>
  <param name="allowed" type="Boolean" mandatory="false" >
    <description>If "true" - RC is allowed; if "false" - RC is disallowed.</description>
  </param>
  <param name="accessMode" type="Common.RCAccessMode" mandatory="false" >
    <description>The remote control access mode specified by the driver via HMI.</description>
  </param>
</function>
</interface>
</interfaces>