forked from alexa-samples/skill-sample-python-highlowgame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskill.json
41 lines (41 loc) · 1.51 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
{
"manifest": {
"publishingInformation": {
"locales": {
"en-US": {
"summary": "Guess a number, and Alexa will tell you if you need to guess higher or lower.",
"examplePhrases": [
"Alexa open high low game",
"Alexa start high low game",
"Alexa ask high low game is it {number}"
],
"name": "High Low Game",
"description": "Guess a number, and Alexa will tell you if you need to guess higher or lower. She will also tell you how many times you have played. "
},
"en-GB": {
"summary": "Guess a number, and Alexa will tell you if you need to guess higher or lower.",
"examplePhrases": [
"Alexa open high low game",
"Alexa start high low game",
"Alexa ask high low game is it {number}"
],
"name": "High Low Game",
"description": "Guess a number, and Alexa will tell you if you need to guess higher or lower. She will also tell you how many times you have played. "
}
},
"isAvailableWorldwide": true,
"testingInstructions": "Sample Testing Instructions.",
"category": "EDUCATION_AND_REFERENCE",
"distributionCountries": []
},
"apis": {
"custom": {
"endpoint": {
"sourceDir": "lambda/py",
"uri": "ask-custom-highlow-default"
}
}
},
"manifestVersion": "1.0"
}
}