Last active
October 5, 2018 19:58
-
-
Save akhileshAwasthi/c9d2be38fcb00cf21b3eb5d1e737022e to your computer and use it in GitHub Desktop.
A sample skill.json file to launch a skill in mulitple locales
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"manifest": { | |
"publishingInformation": { | |
"locales": { | |
"en-CA": { | |
"summary": "description", | |
"examplePhrases": [ | |
"Alexa, open my skill", | |
"Alexa, launch my skill", | |
"Alexa, play my skill" | |
], | |
"keywords": [ | |
], | |
"name": "my skill", | |
"smallIconUri": "", | |
"description": "", | |
"largeIconUri": "" | |
}, | |
"en-US": { | |
"summary": "description", | |
"examplePhrases": [ | |
"Alexa, open my skill", | |
"Alexa, launch my skill", | |
"Alexa, play my skill" | |
], | |
"keywords": [ | |
], | |
"name": "my skill", | |
"smallIconUri": "", | |
"description": "", | |
"largeIconUri": ""}, | |
"en-IN": { | |
"summary": "description", | |
"examplePhrases": [ | |
"Alexa, open my skill", | |
"Alexa, launch my skill", | |
"Alexa, play my skill" | |
], | |
"keywords": [ | |
], | |
"name": "my skill", | |
"smallIconUri": "", | |
"description": "", | |
"largeIconUri": ""}, | |
"en-AU": { | |
"summary": "description", | |
"examplePhrases": [ | |
"Alexa, open my skill", | |
"Alexa, launch my skill", | |
"Alexa, play my skill" | |
], | |
"keywords": [ | |
], | |
"name": "my skill", | |
"smallIconUri": "", | |
"description": "", | |
"largeIconUri": "" }, | |
"en-GB": { | |
"summary": "description", | |
"examplePhrases": [ | |
"Alexa, open my skill", | |
"Alexa, launch my skill", | |
"Alexa, play my skill" | |
], | |
"keywords": [ | |
], | |
"name": "my skill", | |
"smallIconUri": "", | |
"description": "", | |
"largeIconUri": ""}, | |
"isAvailableWorldwide": true, | |
"testingInstructions": "Open my skill", | |
"category": "KNOWLEDGE_AND_TRIVIA", | |
"distributionCountries": [] | |
}, | |
"apis": { | |
"custom": { | |
"endpoint": { | |
"sourceDir": "lambda/custom" | |
}, | |
"interfaces": [] | |
} | |
}, | |
"manifestVersion": "1.0", | |
"privacyAndCompliance": { | |
"allowsPurchases": false, | |
"locales": { | |
"en-IN": { | |
"privacyPolicyUrl": "" | |
}, | |
"en-AU": { | |
"privacyPolicyUrl": "" | |
}, | |
"en-CA": { | |
"privacyPolicyUrl": "" | |
}, | |
"en-GB": { | |
"privacyPolicyUrl": "" | |
}, | |
"en-US": { | |
"privacyPolicyUrl": "" | |
} | |
}, | |
"isExportCompliant": true, | |
"containsAds": false, | |
"isChildDirected": false, | |
"usesPersonalInfo": false | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment