Skip to content

Instantly share code, notes, and snippets.

@akhileshAwasthi
Last active October 5, 2018 19:58
Show Gist options
  • Save akhileshAwasthi/c9d2be38fcb00cf21b3eb5d1e737022e to your computer and use it in GitHub Desktop.
Save akhileshAwasthi/c9d2be38fcb00cf21b3eb5d1e737022e to your computer and use it in GitHub Desktop.
A sample skill.json file to launch a skill in mulitple locales
{
"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