-
Notifications
You must be signed in to change notification settings - Fork 175
Expand file tree
/
Copy pathBotBuilderCommunity.InternetProtocolInput.uischema
More file actions
63 lines (62 loc) · 1.35 KB
/
BotBuilderCommunity.InternetProtocolInput.uischema
File metadata and controls
63 lines (62 loc) · 1.35 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"$schema": "https://schemas.botframework.com/schemas/ui/v1.0/ui.schema",
"form": {
"label": "Prompt for Internet Protocol Type",
"subtitle": "Internet Protocol Type(Bot Builder Community)",
"helpLink": "https://aka.ms/bfc-understanding-dialogs",
"order": [
"ProtocolType",
"resultProperty",
"defaultLocale",
"*"
],
"hidden": [
"property"
],
"properties": {
"resultProperty": {
"intellisenseScopes": [
"variable-scopes"
]
}
}
},
"menu": {
"label": "Internet protocol type",
"submenu": [ "Ask a question","Community" ]
},
"flow": {
"widget": "PromptWidget",
"body": "=action.prompt",
"nowrap": true,
"botAsks": {
"widget": "ActionCard",
"header": {
"widget": "ActionHeader",
"icon": "MessageBot",
"colors": {
"theme": "#BBEAF4",
"icon": "#5C2E91"
}
},
"body": {
"widget": "LgWidget",
"field": "prompt",
"defaultContent": "<prompt>"
}
},
"userInput": {
"widget": "ActionCard",
"header": {
"widget": "ActionHeader",
"disableSDKTitle": false,
"icon": "User",
"menu": "none",
"colors": {
"theme": "#E5F0FF",
"icon": "#0078D4"
}
}
}
}
}