aboutsummaryrefslogtreecommitdiffstats
path: root/conf.d/project/etc/vshl-core-api.json
blob: 44d578af6d4623fcc371cde781706cc6e8573851 (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
{
  "$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",
  }],

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

  "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"
    }]
}