forked from alexa-samples/skill-sample-nodejs-salesforce
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathskill.json
More file actions
41 lines (41 loc) · 1.81 KB
/
skill.json
File metadata and controls
41 lines (41 loc) · 1.81 KB
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": "A demonstration using Alexa to integrate with Salesforce.",
"examplePhrases": [
"Alexa, ask Salesforce Demo select opportunity United Oil Installations",
"Alexa, ask Salesforce Demo for an opportunity",
"Alexa, ask Salesforce Demo to change my voice code"
],
"name": "Salesforce Demo",
"description": "A demonstration of Alexa skills accessing Salesforce data.\n\nIn order to access your Salesforce data, you will need to set up a voice code for the first time you use this skill.\n\nAfterwards, when you request your data by saying \"Alexa, ask Salesforce Demo for a recent opportunity\", Alexa will have you validate your voice code first to help determine if it's you.\n\nYou can also change your voice code by requesting \"Alexa, ask Salesforce Demo to change my voice code\".\n\nAt anytime, you can stop the skill by saying \"Alexa, stop\".",
"smallIconUri": "https://s3.amazonaws.com/alexa-salesforce-demo/briefcase_108.png",
"largeIconUri": "https://s3.amazonaws.com/alexa-salesforce-demo/briefcase_512.png"
}
},
"isAvailableWorldwide": true,
"testingInstructions": "Required a Salesforce account to be linked for testing.",
"category": "BUSINESS_AND_FINANCE",
"distributionMode": "PRIVATE",
"distributionCountries": []
},
"apis": {
"custom": {
"endpoint": {
"sourceDir": "lambda/custom"
}
}
},
"manifestVersion": "1.0",
"permissions": [],
"privacyAndCompliance": {
"allowsPurchases": false,
"isExportCompliant": true,
"containsAds": false,
"isChildDirected": false,
"usesPersonalInfo": false
}
}
}