This repository has been archived by the owner on Apr 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
skill.json
69 lines (69 loc) · 2.2 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"manifest": {
"publishingInformation": {
"locales": {
"en-US": {
"summary": "This is an example skill to show how to use the Echo Buttons 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."
},
"en-GB": {
"summary": "This is an example skill to show how to use the Echo Buttons API",
"examplePhrases": [
"Alexa, open colour changer",
"Alexa, launch colour changer"
],
"keywords": [
"buttons",
"games"
],
"name": "colour changer",
"description": "A Colour 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",
"uri": "ask-custom-ColorChangerSkill"
},
"interfaces": [
{
"type": "GAME_ENGINE"
},
{
"type": "GADGET_CONTROLLER"
}
]
}
},
"manifestVersion": "1.0",
"privacyAndCompliance": {
"allowsPurchases": false,
"usesPersonalInfo": false,
"isChildDirected": false,
"isExportCompliant": true,
"containsAds": false
}
}
}