aboutsummaryrefslogtreecommitdiffstats
path: root/conf.d/project/etc/vshl-core-api.json
blob: f370a32472fcf2f8760a95b9b3e31aa461a02a92 (plain)
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
  "$schema": "http://iot.bzh/download/public/schema/json/ctl-schema.json",
  "metadata": {
    "uid": "vshl-core",
    "version": "1.0",
    "api": "vshl-core",
    "info": "High Level Voice Service Core APIs"
  },

  "onload": [{
    "uid": "loadVoiceAgentsConfig",
    "info": "Loading the information about voice agents managed by the high level voice service.",
    "action": "plugin://vshl-core#loadVoiceAgentsConfig",
    "args": {
      "default": "VA-001",
      "agents": [
        {
          "id": "VA-001",
          "active": true,
          "name": "Alexa",
          "api": "alexa-voiceagent",
          "wakewords": [
            "alexa",
            "computer",
            "echo"
          ],
          "activewakeword": "alexa",
          "description": "Alexa voice assistant by Amazon.",
          "vendor": "Amazon.com Services Inc"
        }
      ]
    }
  }],

  "plugins": [{
    "uid": "vshl-core",
    "info": "Plugin to handle high level voice service core API implementation",
    "libs": [
      "vshl-core-api.ctlso"
    ]
  }],

  "events": [{
      "uid": "alexa-voiceagent/voice_authstate_event",
      "action": "plugin://vshl-core#onAuthStateEvent"
    },{
      "uid": "alexa-voiceagent/voice_connectionstate_event",
      "action": "plugin://vshl-core#onConnectionStateEvent"
    },{
      "uid": "alexa-voiceagent/voice_dialogstate_event",
      "action": "plugin://vshl-core#onDialogStateEvent"
  }],

  "controls": [{
      "uid": "startListening",
      "action": "plugin://vshl-core#startListening"
    }, {
      "uid": "cancelListening",
      "action": "plugin://vshl-core#cancelListening"
    }, {
      "uid": "subscribe",
      "action": "plugin://vshl-core#subscribe"
    }, {
      "uid": "enumerateVoiceAgents",
      "privileges": "urn:AGL:permission:vshl-core:voiceagents:public",
      "action": "plugin://vshl-core#enumerateVoiceAgents"
    }, {
      "uid": "setDefaultVoiceAgent",
      "privileges": "urn:AGL:permission:vshl-core:voiceagents:public",
      "action": "plugin://vshl-core#setDefaultVoiceAgent"
    }]
}