-
Notifications
You must be signed in to change notification settings - Fork 244
/
HMI_API.xml
7625 lines (7201 loc) · 373 KB
/
HMI_API.xml
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
<?xml version="1.0" standalone="yes"?>
<!--
* Copyright (c) 2016, Ford Motor Company
* 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="2.2.0" date="2021-04-14">
<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="WindowType">
<element name="MAIN">
<description>
This window type describes the main screen on a display.
</description>
</element>
<element name="WIDGET">
<description>
A widget is a small window that the app can create to provide information and softbuttons for a quick app control.
</description>
</element>
</enum>
<enum name="CapacityUnit">
<element name="LITERS" />
<element name="KILOWATTHOURS" />
<element name="KILOGRAMS" />
</enum>
<enum name="PredefinedWindows">
<element name="DEFAULT_WINDOW" value="0">
<description>The default window is a main window pre-created on behalf of the app.</description>
</element>
<element name="PRIMARY_WIDGET" value="1">
<description>The primary widget of the app.</description>
</element>
</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"/>
<element name="CLOUD_WEBSOCKET"/>
<element name="WEBENGINE_WEBSOCKET"/>
</enum>
<enum name="ButtonName">
<description>Defines the hard (physical) and soft (touchscreen) buttons available from SYNC</description>
<element name="OK"/>
<element name="PLAY_PAUSE"/>
<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" />
<!-- Navigation Subscription Buttons -->
<element name="NAV_CENTER_LOCATION" />
<element name="NAV_ZOOM_IN" />
<element name="NAV_ZOOM_OUT" />
<element name="NAV_PAN_UP" />
<element name="NAV_PAN_UP_RIGHT" />
<element name="NAV_PAN_RIGHT" />
<element name="NAV_PAN_DOWN_RIGHT" />
<element name="NAV_PAN_DOWN" />
<element name="NAV_PAN_DOWN_LEFT" />
<element name="NAV_PAN_LEFT" />
<element name="NAV_PAN_UP_LEFT" />
<element name="NAV_TILT_TOGGLE">
<description>If supported, this toggles between a top-down view and an angled/3D view. If your app supports different, but substantially similar options, then you may implement those. If you don't implement these or similar options, do not subscribe to this button.</description>
</element>
<element name="NAV_ROTATE_CLOCKWISE" />
<element name="NAV_ROTATE_COUNTERCLOCKWISE" />
<element name="NAV_HEADING_TOGGLE">
<description>If supported, this toggles between locking the orientation to north or to the vehicle's heading. If your app supports different, but substantially similar options, then you may implement those. If you don't implement these or similar options, do not subscribe to this button.</description>
</element>
</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" />
<element name="WEB_VIEW" />
</enum>
<enum name="CloudConnectionStatus">
<element name="NOT_CONNECTED">
<description>No active websocket session or ongoing connection attempts</description>
</element>
<element name="CONNECTED">
<description>Websocket is active</description>
</element>
<element name="RETRY">
<description>Websocket connection failed and retry attempts are ongoing</description>
</element>
</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="AudioStreamingIndicator">
<element name="PLAY_PAUSE">
<description>Default playback indicator.</description>
</element>
<element name="PLAY">
<description>Indicates that a button press of the Play/Pause button would start the playback.</description>
</element>
<element name="PAUSE">
<description>Indicates that a button press of the Play/Pause button would pause the current playback.</description>
</element>
<element name="STOP">
<description>Indicates that a button press of the Play/Pause button would stop the current playback.</description>
</element>
</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" />
<element name="FILE" />
</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>
<element name="CLOSE_CLOUD_CONNECTION">
<description>By getting this value, SDL puts the named app to NONE HMILevel. Used by the HMI to close a cloud app connection.</description>
</element>
<element name="RESOURCE_CONSTRAINT">
<description>By getting this value, SDL should unregister the application to allow the HMI to close the 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="templateTitle">
<description>The title of the new template that will be displayed; 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="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 phone number of intended location / establishment (if applicable) for SendLocation.</description>
</element>
<element name="timeToDestination">
<description>Optional time to destination field for ShowConstantTBT</description>
</element>
<element name="turnText">
<description>Turn text for turnList parameter of UpdateTurnList</description>
</element>
<element name="subtleAlertText1">
<description>The first line of the subtle alert text field; applies to `SubtleAlert` `alertText1`</description>
</element>
<element name="subtleAlertText2">
<description>The second line of the subtle alert text field; applies to `SubtleAlert` `alertText2`</description>
</element>
<element name="subtleAlertSoftButtonText">
<description>A text field in the soft button of a subtle alert; applies to `SubtleAlert` `softButtons`</description>
</element>
<element name="menuCommandSecondaryText">
<description>Secondary text for AddCommand</description>
</element>
<element name="menuCommandTertiaryText">
<description>Tertiary text for AddCommand</description>
</element>
<element name="menuSubMenuSecondaryText">
<description>Secondary text for AddSubMenu</description>
</element>
<element name="menuSubMenuTertiaryText">
<description>Tertiary text for AddSubMenu</description>
</element>
</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>
<element name="alertIcon">
<description>The image field for Alert</description>
</element>
<element name="subMenuIcon">
<description>The image field for AddSubMenu.menuIcon</description>
</element>
<element name="subtleAlertIcon">
<description>The image of the subtle alert; applies to `SubtleAlert` `alertIcon`</description>
</element>
<element name="menuCommandSecondaryImage">
<description>The secondary image field for AddCommand</description>
</element>
<element name="menuSubMenuSecondaryImage">
<description>The secondary image field for AddSubMenu</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>
<enum name="AppCapabilityType">
<description>Enumerations of all available app capability types</description>
<element name="VIDEO_STREAMING"/>
</enum>
<!--IVI part-->
<enum name="ElectronicParkBrakeStatus">
<element name="CLOSED">
<description>
Park brake actuators have been fully applied.
</description>
</element>
<element name="TRANSITION">
<description>
Park brake actuators are transitioning to either Apply/Closed or Release/Open state.
</description>
</element>
<element name="OPEN">
<description>
Park brake actuators are released.
</description>
</element>
<element name="DRIVE_ACTIVE">
<description>
When driver pulls the Electronic Park Brake switch while driving "at speed".
</description>
</element>
<element name="FAULT">
<description>
When system has a fault or is under maintenance.
</description>
</element>
</enum>
<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>
<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>
<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>
<param name="level" type="Float" minvalue="-6" maxvalue="1000000" mandatory="false">
<description>The relative remaining capacity of this fuel type (percentage).</description>
</param>
<param name="levelState" type="Common.ComponentVolumeStatus" mandatory="false">
<description>The fuel level state</description>
</param>
<param name="capacity" type="Float" minvalue="0" maxvalue="1000000" mandatory="false">
<description>The absolute capacity of this fuel type.</description>
</param>
<param name="capacityUnit" type="Common.CapacityUnit" mandatory="false">
<description>The unit of the capacity of this fuel type such as liters for gasoline or kWh for batteries.</description>
</param>
</struct>
<enum name="TPMS">
<element name="UNKNOWN">
<description>If set the status of the tire is not known.</description>
</element>
<element name="SYSTEM_FAULT">
<description>TPMS does not function.</description>
</element>
<element name="SENSOR_FAULT">
<description>The sensor of the tire does not function.</description>
</element>
<element name="LOW">
<description>TPMS is reporting a low tire pressure for the tire.</description>
</element>
<element name="SYSTEM_ACTIVE">
<description>TPMS is active and the tire pressure is monitored.</description>
</element>
<element name="TRAIN">
<description>TPMS is reporting that the tire must be trained.</description>
</element>
<element name="TRAINING_COMPLETE">
<description>TPMS reports the training for the tire is completed.</description>
</element>
<element name="NOT_TRAINED">
<description>TPMS reports the tire is not trained.</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">
<description>Regular Drive mode</description>
</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>