From 95811542b9431afe31da996d0a0c947d1d6816d9 Mon Sep 17 00:00:00 2001 From: Ted Date: Tue, 20 Aug 2019 10:29:04 -0700 Subject: [PATCH] remove event triggering for action from documentation (#2150) --- docs/_docs/reference/skills/skillmanifest.md | 28 +------------------- 1 file changed, 1 insertion(+), 27 deletions(-) diff --git a/docs/_docs/reference/skills/skillmanifest.md b/docs/_docs/reference/skills/skillmanifest.md index 210f2d018f..49b198e654 100644 --- a/docs/_docs/reference/skills/skillmanifest.md +++ b/docs/_docs/reference/skills/skillmanifest.md @@ -35,7 +35,6 @@ A manifest is made up of the following structure: - Trigger - UtteranceSources - Utterance - - Events ### Manifest Header @@ -116,7 +115,7 @@ Parameter | Description | Required ### Trigger -A given action can be trigged through different mechanisms, an utterance or an event. Example triggering utterances must be provided by a skill to enable a caller to train a natural language dispatcher so it can identify utterances that should be routed to a skill. +A given action can be trigged through different mechanisms or an utterance. Example triggering utterances must be provided by a skill to enable a caller to train a natural language dispatcher so it can identify utterances that should be routed to a skill. References to an source of utterances can be provided through the (`utteranceSource`) element. @@ -150,17 +149,6 @@ Utterances can also be provided in-line with the skill manifest as shown below. Both `utteranceSources` and `utterances` support multiple-locales enabling you to express the locales your Skill supports. -Actions can also be invoked through an event mechanism. The event trigger specifies the name of an Activity which will trigger a given action to be performed. In this case retrieve a meeting summary for today. - -```json - "triggers": { - "events": [ - { - "name": "summaryEvent" - }] -} -``` - ### Example Skill Manifest ```json @@ -291,20 +279,6 @@ Actions can also be invoked through an event mechanism. The event trigger specif } } }, - { - "id": "calendarskill_summary", - "definition": { - "description": "Retrieve a summary of meetings through an event invocation.", - "slots": [], - "triggers": { - "events": [ - { - "name": "summaryEvent" - } - ] - } - } - }, { "id": "calendarskill_timeRemaining", "definition": {