I'm trying to certify my skill (genius haiku) and I'm getting the following error:
Example phrases should contain the sample utterances that you have provided.
The skill's example phrases should contain the sample utterances that you have provided. For example: "Alexa, ask {your invocation name} to {sample utterance present in your intent}." The example phrases (s) that do not contain your sample utterances are provided below.
alexa open genius haiku for a poem
alexa launch genius haiku to tell me a poem
alexa ask genius haiku to tell me something
The JSON for the skill is below. As you see, all the utterances are mentioned there, despite that i am getting an error. please help.
{ "interactionModel": { "languageModel": { "invocationName": "genius haiku", "intents": [ { "name": "AMAZON.CancelIntent", "samples": [] }, { "name": "AMAZON.HelpIntent", "samples": [] }, { "name": "AMAZON.StopIntent", "samples": [] }, { "name": "HelloWorldIntent", "slots": [], "samples": [ "hello", "how are you", "say hi world", "say hi", "hi", "say hello world", "say hello" ] }, { "name": "AMAZON.NavigateHomeIntent", "samples": [] }, { "name": "AMAZON.FallbackIntent", "samples": [] }, { "name": "GetHaikuIntent", "slots": [], "samples": [ "launch genius haiku to give me a haiku", "launch genius haiku to read me a haiku", "launch genius haiku to tell me a haiku", "launch genius haiku to give me a poem", "launch genius haiku to read me a poem", "launch genius haiku to tell me a poem", "open genius haiku for a poem", "open genius haiku to give me a haiku", "ask genius haiku to read me a poem", "ask genius haiku to tell me something", "ask genius haiku to read me a haiku", "tell genius haiku to read me something", "tell genius haiku to give me a poem", "tell genius haiku to read me a poem", "tell genius haiku to give me a haiku", "tell genius haiku to read me a haiku" ] } ], "types": [] } } }