-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskill.json
55 lines (55 loc) · 1.55 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
49
50
51
52
53
54
55
{
"manifest": {
"publishingInformation": {
"locales": {
"en-US": {
"summary": "This is an example skill to show how to use the Alexa Gadgets API",
"examplePhrases": [
"Alexa, open color changer",
"Alexa, launch color changer"
],
"keywords": [
"buttons",
"games"
],
"name": "color changer",
"description": "A Color Changer skill that showcases Echo Buttons functionality. The skill asks users to use to buttons, register them with the skill, and then use their voice to change the light animations playing on the buttons."
}
},
"isAvailableWorldwide": true,
"testingInstructions": "Open the skill and follow the prompts. You will need two Echo buttons to test.",
"category": "GAMES",
"distributionCountries": [],
"gadgetSupport": {
"requirement": "REQUIRED",
"numPlayersMin": 2,
"numPlayersMax": 2,
"minGadgetButtons": 2,
"maxGadgetButtons": 2
}
},
"apis": {
"custom": {
"endpoint": {
"sourceDir": "lambda/custom"
},
"interfaces": [
{
"type": "GAME_ENGINE"
},
{
"type": "GADGET_CONTROLLER"
}
]
}
},
"manifestVersion": "1.0",
"privacyAndCompliance": {
"allowsPurchases": false,
"usesPersonalInfo": false,
"isChildDirected": false,
"isExportCompliant": true,
"containsAds": false
}
}
}