diff --git a/source/_components/alexa.markdown b/source/_components/alexa.markdown index 179fb4076c1..bccf44f2e77 100644 --- a/source/_components/alexa.markdown +++ b/source/_components/alexa.markdown @@ -135,6 +135,13 @@ Custom slot type for scene support. The names must exactly match the scene names (minus underscores - amazon discards them anyway and we later map them back in with the template). +In the new Alexa Skills Kit, you can also create synonyms for slot type values, which can be used in place of the base value in utterances. Synonyms will be replaced with their associated slot value in the intent request sent to the Alexa API endpoint, but only if there are not multiple synonym matches. Otherwise, the value of the synonym that was spoken will be used. + +

+ +Custom slot values with synonyms. +

+ Add a sample utterance: ```text diff --git a/source/images/components/alexa/scene_slot_synonyms.png b/source/images/components/alexa/scene_slot_synonyms.png new file mode 100644 index 00000000000..48f9b0950e6 Binary files /dev/null and b/source/images/components/alexa/scene_slot_synonyms.png differ