I am new to developing Alexa skills. I am working on app that has to understand acronyms. Like: BTW, TMI, CCDX, BA.
Since Alexa can't recognize these too well, my ideas was to spell it out using the military alphabet and have my code parse the 1st letter of each word to get the acronym. For example, for CCDX, I'd say:
"Alexa get Charlie Charlie Delta X-ray" so that my code would parse C.C.D.X. and then run a function based on that value and return results.
I am looking at the possible slots and doesn't look like I can just have a "String" type slot? Which slot type should I use, if this is possible, to have it pass my alphabet phrase (charlie charlie delta x-ray)?
Thank you kindly.