forked from alexa-samples/skill-sample-nodejs-linked-profile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
skill.json
41 lines (41 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
{
"manifest": {
"publishingInformation": {
"locales": {
"en-US": {
"summary": "End To End Account Linking Demo Skill",
"examplePhrases": [
"Alexa open link demo",
"Alexa ask link demo for my information",
"Alexa tell link demo to provide my email address"
],
"name": "End To End Account Linking Demo",
"description": "Sample skill to demonstrate account linking using OAUTH 2.0"
},
"en-AU": {
"summary": "End To End Account Linking Demo Skill",
"examplePhrases": [
"Alexa open link demo",
"Alexa ask link demo for my information",
"Alexa tell link demo to provide my email address"
],
"name": "End To End Account Linking Demo",
"description": "Sample skill to demonstrate account linking using OAUTH 2.0"
}
},
"isAvailableWorldwide": true,
"testingInstructions": "Sample Testing Instructions.",
"category": "EDUCATION_AND_REFERENCE",
"distributionCountries": []
},
"apis": {
"custom": {
"endpoint": {
"sourceDir": "lambda/custom",
"uri": "ask-linked-profile"
}
}
},
"manifestVersion": "1.0"
}
}