forked from smartdevicelink/sdl_core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MOBILE_API.xml
6052 lines (5481 loc) · 297 KB
/
MOBILE_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="no"?>
<?xml-stylesheet type="text/xml" href="protocol2html.xsl"?>
<interface name="SmartDeviceLink RAPI" version="4.5.0" date="2017-09-22">
<enum name="Result" internal_scope="base">
<element name="SUCCESS">
<description>The request succeeded</description>
</element>
<element name="UNSUPPORTED_REQUEST">
<description>The request is not supported by the headunit</description>
</element>
<element name="UNSUPPORTED_RESOURCE">
<description>
A button that was requested for subscription is not supported under the current system.
</description>
</element>
<element name="DISALLOWED">
<description>RPC is not authorized in local policy table.</description>
</element>
<element name="REJECTED">
<description>
The requested command was rejected, e.g. because mobile app is in background and cannot perform any HMI commands.
Or an HMI command (e.g. Speak) is rejected because a higher priority HMI command (e.g. Alert) is playing.
</description>
</element>
<element name="ABORTED">
<description>
A command was aborted, for example due to user interaction (e.g. user pressed button).
Or an HMI command (e.g. Speak) is aborted because a higher priority HMI command (e.g. Alert) was requested.
</description>
</element>
<element name="IGNORED">
<description>
A command was ignored, because the intended result is already in effect.
For example, SetMediaClockTimer was used to pause the media clock although the clock is paused already.
NOTE: potentially replaces SUBSCRIBED_ALREADY
</description>
</element>
<element name="RETRY">
<description>The user interrupted the RPC (e.g. PerformAudioPassThru) and indicated to start over. Note, the app must issue the new RPC.</description>
</element>
<element name="IN_USE">
<description>
The data may not be changed, because it is currently in use.
For example when trying to delete a command set that is currently involved in an interaction.
</description>
</element>
<element name="VEHICLE_DATA_NOT_AVAILABLE">
<description>The requested vehicle data is not available on this vehicle or is not published.</description>
</element>
<element name="TIMED_OUT">
<description>Overlay reached the maximum timeout and closed.</description>
</element>
<element name="INVALID_DATA">
<description>
The data sent is invalid. For example:
Invalid Json syntax
Parameters out of bounds (number or enum range)
Mandatory parameters not provided
Parameter provided with wrong type
Invalid characters
Empty string
</description>
</element>
<element name="CHAR_LIMIT_EXCEEDED"></element>
<element name="INVALID_ID">
<description>
One of the provided IDs is not valid. For example
This applies to CorrelationID, SubscriptionID, CommandID, MenuID, etc.
</description>
</element>
<element name="DUPLICATE_NAME">
<description>There was a conflict with an registered name (application or menu item) or vr command</description>
</element>
<element name="APPLICATION_NOT_REGISTERED">
<description>An command can not be executed because no application has been registered with RegisterApplication.</description>
</element>
<element name="WRONG_LANGUAGE">
<description>
The requested language is currently not supported.
Might be because of a mismatch of the currently active language on the headunit and the requested language
</description>
</element>
<element name="OUT_OF_MEMORY">
<description>The system could not process the request because the necessary memory couldn't be allocated</description>
</element>
<element name="TOO_MANY_PENDING_REQUESTS">
<description>There are too many requests pending (means, that the response has not been delivered, yet).There may be a maximum of 1000 pending requests at a time.</description>
</element>
<element name="TOO_MANY_APPLICATIONS">
<description>There are already too many registered applications</description>
</element>
<element name="APPLICATION_REGISTERED_ALREADY">
<description>RegisterApplication has been called again, after a RegisterApplication was successful before.</description>
</element>
<element name="WARNINGS">
<description>The RPC (e.g. SubscribeVehicleData) executed successfully but one or more items have a warning or failure.</description>
</element>
<element name="GENERIC_ERROR">
<description>Provided data is valid but something went wrong in the lower layers.</description>
</element>
<element name="USER_DISALLOWED">
<description>RPC is included in a functional group explicitly blocked by the user.</description>
</element>
<element name="TRUNCATED_DATA">
<description>The RPC (e.g. ReadDID) executed successfully but the data exceeded the platform maximum threshold and thus, only part of the data is available.</description>
</element>
<element name="UNSUPPORTED_VERSION">
<description>Sync doesn't support the protocol that is requested by the mobile application</description>
</element>
<element name="VEHICLE_DATA_NOT_ALLOWED">
<description>The user has turned off access to vehicle data, and it is globally unavailable to mobile applications.</description>
</element>
<element name="FILE_NOT_FOUND">
<description>A specified file could not be found on the headunit.</description>
</element>
<element name="CANCEL_ROUTE">
<description>User selected to Cancel Route.</description>
</element>
<element name="SAVED">
<description>The RPC (e.g. Slider) executed successfully and the user elected to save the current position / value.</description>
</element>
<element name="INVALID_CERT">
<description>The certificate provided during authentication is invalid.</description>
</element>
<element name="EXPIRED_CERT">
<description>The certificate provided during authentication is expired.</description>
</element>
<element name="RESUME_FAILED">
<description>The provided hash ID does not match the hash of the current set of registered data or the core could not resume the previous data.</description>
</element>
<element name="DATA_NOT_AVAILABLE">
<description>The requested information is currently not available. This is different than UNSUPPORTED_RESOURCE because it implies the data is at some point available. </description>
</element>
<element name="READ_ONLY">
<description>The value being set is read only</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 the headunit 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 the headunit and may vary
</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="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="UpdateMode">
<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>
<element name="COUNTDOWN" >
<description>Starts the media clock timer counting downwards, as in time remaining.</description>
</element>
<element name="PAUSE" >
<description>Pauses the media clock timer</description>
</element>
<element name="RESUME" >
<description>Resume the media clock timer</description>
</element>
<element name="CLEAR" >
<description>Clears the media clock timer (previously done through Show->mediaClock)</description>
</element>
</enum>
<enum name="TimerMode">
<element name="UP" >
<description>Causes the media clock timer to update from 0:00 to a specified time</description>
</element>
<element name="DOWN" >
<description>Causes the media clock timer to update from a specified time to 0:00</description>
</element>
<element name="NONE" >
<description>Indicates to not use the media clock timer</description>
</element>
</enum>
<enum name="InteractionMode">
<description>For application-requested interactions, this mode indicates the method in which the user is notified and uses the interaction.</description>
<element name="MANUAL_ONLY" >
<description>This mode causes the interaction to only occur on the display, meaning the choices are provided only via the display. No Voice Interaction.</description>
</element>
<element name="VR_ONLY" >
<description>This mode causes the interaction to only occur using the headunits VR system. Selections are made by saying the command.</description>
</element>
<element name="BOTH" >
<description>This mode causes both a VR and display selection option for an interaction. The user will first be asked via Voice Interaction (if available). If this is unsuccessful, the system will switch to manual input.</description>
</element>
</enum>
<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>
<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>
<element name="LIST_ONLY" >
<description>This mode causes the interaction to display the previous set of choices as a list.</description>
</element>
<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>
<element name="KEYBOARD" >
<description>This mode causes the interaction to immediately display a keyboard entry through the HMI.</description>
</element>
</enum>
<enum name="HMILevel">
<description>Enumeration that describes current levels of HMI.</description>
<element name="FULL" internal_name="HMI_FULL" />
<element name="LIMITED" internal_name="HMI_LIMITED" />
<element name="BACKGROUND" internal_name="HMI_BACKGROUND" />
<element name="NONE" internal_name="HMI_NONE" />
</enum>
<enum name="AudioStreamingState">
<description>Enumeration that describes possible states of audio streaming.</description>
<element name="AUDIBLE" />
<element name="ATTENUATED" />
<element name="NOT_AUDIBLE" />
</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>App is 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="SystemContext">
<description>Enumeration that describes possible contexts an app's HMI might be in. 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>
</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 an in-App menu onscreen.</description>
</element>
<element name="HMI_OBSCURED" internal_name="SYSCTXT_HMI_OBSCURED">
<description>The app's display HMI is currently being obscured by either a system or other app's overlay.</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="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="AppInterfaceUnregisteredReason">
<description>Error code, which comes from the module side.</description>
<!-- Deprecate
<element name="USER_EXIT" />
-->
<element name="IGNITION_OFF" />
<element name="BLUETOOTH_OFF" />
<element name="USB_DISCONNECTED" />
<element name="REQUEST_WHILE_IN_NONE_HMI_LEVEL" />
<element name="TOO_MANY_REQUESTS" />
<element name="DRIVER_DISTRACTION_VIOLATION" />
<element name="LANGUAGE_CHANGE" />
<element name="MASTER_RESET" />
<element name="FACTORY_DEFAULTS" />
<element name="APP_UNAUTHORIZED" />
<element name="PROTOCOL_VIOLATION" />
<element name="UNSUPPORTED_HMI_RESOURCE" />
</enum>
<enum name="TriggerSource">
<description>Indicates the source from where the command was triggered.</description>
<element name="MENU" internal_name="TS_MENU" />
<element name="VR" internal_name="TS_VR" />
<element name="KEYBOARD" internal_name="TS_KEYBOARD" />
</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="SamplingRate">
<description>Describes different sampling options for PerformAudioPassThru.</description>
<element name="8KHZ" internal_name="SamplingRate_8KHZ"/>
<element name="16KHZ" internal_name="SamplingRate_16KHZ"/>
<element name="22KHZ" internal_name="SamplingRate_22KHZ"/>
<element name="44KHZ" internal_name="SamplingRate_44KHZ"/>
</enum>
<enum name="BitsPerSample">
<description>Describes different quality options for PerformAudioPassThru.</description>
<element name="8_BIT" internal_name="BitsPerSample_8_BIT"/>
<element name="16_BIT" internal_name="BitsPerSample_16_BIT"/>
</enum>
<enum name="AudioType">
<description>Describes different audio type options for PerformAudioPassThru.</description>
<element name="PCM" />
</enum>
<struct name="AudioPassThruCapabilities">
<description>
Describes different audio type configurations for PerformAudioPassThru.
e.g. {8kHz,8-bit,PCM}
</description>
<param name="samplingRate" type="SamplingRate" mandatory="true"/>
<param name="bitsPerSample" type="BitsPerSample" mandatory="true"/>
<param name="audioType" type="AudioType" mandatory="true"/>
</struct>
<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" />
</enum>
<enum name="ButtonName">
<description>Defines the hard (physical) and soft (touchscreen) buttons available from the module</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="MediaClockFormat">
<element name="CLOCK1">
<description>
minutesFieldWidth = 2;minutesFieldMax = 19;secondsFieldWidth = 2;secondsFieldMax = 99;maxHours = 19;maxMinutes = 59;maxSeconds = 59;
used for Type II and CID headunits
</description>
</element>
<element name="CLOCK2">
<description>
minutesFieldWidth = 3;minutesFieldMax = 199;secondsFieldWidth = 2;secondsFieldMax = 99;maxHours = 59;maxMinutes = 59;maxSeconds = 59;
used for Type V headunit
</description>
</element>
<element name="CLOCK3">
<description>
minutesFieldWidth = 2;minutesFieldMax = 59;secondsFieldWidth = 2;secondsFieldMax = 59;maxHours = 9;maxMinutes = 59;maxSeconds = 59;
used for GEN1.1 MFD3/4/5 headunits
</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, see TypeII column in XLS. See [@TODO: create file ref]]
:|sp : colon or space
used for Type II headunit
</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, see CID column in XLS. See [@TODO: create file ref]]
:|sp : colon or space
used for CID headunit
NOTE: difference between CLOCKTEXT1 and CLOCKTEXT2 is the supported character set
</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, see Type 5 column in XLS]. See [@TODO: create file ref]
:|sp : colon or space
used for Type V headunit
</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].
used for GEN1.1 MFD3/4/5 headunits
</description>
</element>
</enum>
<enum name="DisplayType">
<description>See DAES for further infos regarding the displays</description>
<element name="CID"/>
<element name="TYPE2" />
<element name="TYPE5" />
<element name="NGN" />
<element name="GEN2_8_DMA" />
<element name="GEN2_6_DMA" />
<element name="MFD3" />
<element name="MFD4" />
<element name="MFD5" />
<element name="GEN3_8-INCH" internal_name="GEN3_8_INCH" />
<element name="SDL_GENERIC" />
</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="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>
</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 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="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>
<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="TBTState">
<description>Enumeration that describes possible states of turn-by-turn client or AppLink 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="DriverDistractionState">
<description>Enumeration that describes possible states of driver distraction.</description>
<element name="DD_ON" />
<element name="DD_OFF" />
</enum>
<enum name="ImageType">
<description>Contains information about the type of image.</description>
<element name="STATIC" />
<element name="DYNAMIC" />
</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>
<struct name="Image">
<param name="value" minlength="0" maxlength="65535" type="String" mandatory="true">
<description>Either the static hex icon value or the binary image file name identifier (sent by PutFile).</description>
</param>
<param name="imageType" type="ImageType" mandatory="true">
<description>Describes, whether it is a static or dynamic image.</description>
</param>
</struct>
<struct name="SoftButton">
<param name="type" type="SoftButtonType" mandatory="true">
<description>Describes, whether it is text, highlighted text, icon, or dynamic image. See softButtonType</description>
</param>
<param name="text" minlength="0" maxlength="500" type="String" mandatory="false">
<description>Optional text to display (if defined as TEXT or BOTH)</description>
</param>
<param name="image" type="Image" mandatory="false">
<description>Optional image struct for SoftButton (if defined as IMAGE or BOTH)</description>
</param>
<param name="isHighlighted" type="Boolean" defvalue="false" mandatory="false">
<description>
True, if highlighted
False, if not highlighted
</description>
</param>
<param name="softButtonID" type="Integer" minvalue="0" maxvalue="65535" mandatory="true">
<description>Value which is returned via OnButtonPress / OnButtonEvent</description>
</param>
<param name="systemAction" type="SystemAction" defvalue="DEFAULT_ACTION" mandatory="false">
<description>Parameter indicating whether selecting a SoftButton shall call a specific system action. This is intended to allow Notifications to bring the callee into full / focus; or in the case of persistent overlays, the overlay can persist when a SoftButton is pressed.</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"/>
<param name="menuName" type="String" maxlength="500" mandatory="true"/>
<param name="vrCommands" type="String" minsize="1" maxsize="100" maxlength="99" array="true" mandatory="true"/>
<param name="image" type="Image" mandatory="false"/>
<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="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="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="SyncMsgVersion">
<description>Specifies the version number of the SmartDeviceLink protocol that is supported by the mobile application</description>
<param name="majorVersion" type="Integer" minvalue="1" maxvalue="10" mandatory="true">
<description>The major version indicates versions that is not-compatible to previous versions.</description>
</param>
<param name="minorVersion" type="Integer" minvalue="0" maxvalue="1000" mandatory="true">
<description>The minor version indicates a change to a previous version that should still allow to be run on an older version (with limited functionality)</description>
</param>
<param name="patchVersion" type="Integer" minvalue="0" maxvalue="1000" mandatory="false">
<description>The patch version indicates a fix to existing functionality in a previous version that should still be able to be run on an older version </description>
</param>
</struct>
<enum name="GlobalProperty">
<description>The different global properties.</description>
<element name="HELPPROMPT">
<description>The property helpPrompt of setGlobalProperties</description>
</element>
<element name="TIMEOUTPROMPT">
<description>The property timeoutPrompt of setGlobalProperties</description>
</element>
<element name="VRHELPTITLE">
<description>The property vrHelpTitle of setGlobalProperties</description>
</element>
<element name="VRHELPITEMS">
<description>The property array of vrHelp of setGlobalProperties</description>
</element>
<element name="MENUNAME">
<description>The property in-app menu name of setGlobalProperties</description>
</element>
<element name="MENUICON">
<description>The property in-app menu icon of setGlobalProperties</description>
</element>
<element name="KEYBOARDPROPERTIES">
<description>The on-screen keyboard configuration of setGlobalProperties</description>
</element>
</enum>
<enum name="CompassDirection">
<description>The list of potential compass directions</description>
<element name="NORTH">
</element>
<element name="NORTHWEST">