forked from dabblelab/3-alexa-audio-streaming-example-skill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
skill.json
56 lines (56 loc) · 1.58 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
{
"manifest": {
"publishingInformation": {
"locales": {
"en-US": {
"summary": "An audio streaming example skill.",
"examplePhrases": [
"Alexa, open Template Three",
"Alexa, play Template Three",
"Alexa, ask Template Three to play"
],
"keywords": [
"audio streaming",
"music",
"live music"
],
"name": "Template 3 - Audio Streaming Example",
"description": "A starter template for an Alexa audio streaming skill.",
"smallIconUri": "https://s3.amazonaws.com/cdn.dabblelab.com/img/skill-template-default-sm.png",
"largeIconUri": "https://s3.amazonaws.com/cdn.dabblelab.com/img/skill-template-default-lg.png"
}
},
"isAvailableWorldwide": true,
"testingInstructions": "No special instructions",
"category": "STREAMING_SERVICE",
"distributionCountries": []
},
"apis": {
"custom": {
"endpoint": {
"sourceDir": "lambda/custom"
},
"interfaces": [
{
"type": "AUDIO_PLAYER"
}
]
}
},
"manifestVersion": "1.0",
"permissions": [],
"privacyAndCompliance": {
"allowsPurchases": false,
"locales": {
"en-US": {
"termsOfUseUrl": "http://dabblelab.com/terms",
"privacyPolicyUrl": "http://dabblelab.com/privacy"
}
},
"isExportCompliant": true,
"containsAds": false,
"isChildDirected": false,
"usesPersonalInfo": false
}
}
}