forked from alexa-samples/skill-sample-nodejs-howto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskill.json
48 lines (48 loc) · 1.28 KB
/
skill.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"skillManifest": {
"publishingInformation": {
"locales": {
"de-DE": {
"name": "Assistent für Minecraft in Deutsch"
},
"en-US": {
"summary": "Spend some time coming up with an interesting, succinct description.",
"examplePhrases": [
"Alexa open Minecraft Helper",
"Alexa ask Minecraft Helper what's the recipe for a chest",
"Alexa ask Minecraft Helper how do I get a map"
],
"keywords": [
"Minecraft",
"game"
],
"name": "Minecraft Helper",
"description": "Sample Full Description"
},
"en-GB": {
"name": "British Minecraft Helper"
}
},
"isAvailableWorldwide": true,
"testingInstructions": "Sample Testing Instructions.",
"category": "EDUCATION_AND_REFERENCE",
"distributionCountries": []
},
"apis": {
"custom": {
"endpoint": {
"sourceDir": "lambda/custom"
}
}
},
"manifestVersion": "1.0",
"permissions": [],
"privacyAndCompliance": {
"allowsPurchases": false,
"isExportCompliant": true,
"containsAds": false,
"isChildDirected": false,
"usesPersonalInfo": false
}
}
}