"$schema": "https://schemas.botframework.com/schemas/skills/v2.2/skill-manifest.json",
"$id": "xxx-crmbot-skill-010",
"name": "xxxCRMBotSkill",
"version": "1.0",
"description": "Production endpoint for SkillBot in xxxx",
"publisherName": "xxxxxxx.",
"privacyUrl": "https://www.abcdef.com/privacy-policies",
"copyright": "Copyright (c) xxxxxx. All rights reserved.",
"license": "",
"iconUrl": "https://img.icons8.com/ios/100/000000/product.png",
"tags": [
"CRM",
"Product Inquiry",
"Stock Availability"
],
"endpoints": [
{
"name": "default",
"protocol": "BotFrameworkV3",
"description": "Production endpoint for xxx CRM Bot",
"endpointUrl": "https://xxxxxxxxxxxx.azurewebsites.net/api/messages",
"msAppId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
}
],
"activities": {
"inquireProductAvailability": {
"type": "message",
"description": "Action to inquire about product availability",
"triggerPatterns": [
{
"regex": "(check|find) (product|stock) availability"
}
]
},
"message": {
"type": "message",
"description": "Handles the user's utterance"
},
"typing": {
"type": "typing"
},
"conversationUpdate": {
"type": "conversationUpdate"
}
}
}