-
Notifications
You must be signed in to change notification settings - Fork 175
Expand file tree
/
Copy pathBotBuilderCommunity.MultiSelectChoiceInput.schema
More file actions
59 lines (59 loc) · 1.62 KB
/
BotBuilderCommunity.MultiSelectChoiceInput.schema
File metadata and controls
59 lines (59 loc) · 1.62 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
{
"$schema": "https://schemas.botframework.com/schemas/component/v1.0/component.schema",
"$role": [ "implements(Microsoft.IDialog)", "extends(Microsoft.InputDialog)" ],
"title": "MultipleChoice",
"description": "This will return the result of arg1*arg2",
"type": "object",
"additionalProperties": false,
"properties": {
"choices": {
"$role": "expression",
"title": "List of choices",
"description": "Multiple choices to choose from.",
"oneOf": [
{
"type": "array",
"title": "Simple choices",
"description": "Simple choices to choose from.",
"items": [
{
"type": "string",
"title": "Simple choice",
"description": "One choice for choice input."
}
]
}
]
},
"Orientation": {
"title": "Display Type",
"description": "Choose the control orientation type",
"oneOf": [
{
"type": "object",
"title": "Orientation",
"description": "Choose the control display Type",
"enum": [
"Horizontal",
"Vertical"
],
"default": "Vertical"
}
]
},
"ActionName": {
"$ref": "schema:#/definitions/stringExpression",
"description": "Action button caption name",
"title": "Action Name",
"examples": [
"Submit"
]
},
"Result": {
"$role": "expression",
"$ref": "schema:#/definitions/objectExpression",
"description": "Value from callers memory to store the result",
"title": "Result"
}
}
}