-
Notifications
You must be signed in to change notification settings - Fork 175
Expand file tree
/
Copy pathBotBuilderCommunity.InternetProtocolInput.schema
More file actions
45 lines (44 loc) · 1.23 KB
/
BotBuilderCommunity.InternetProtocolInput.schema
File metadata and controls
45 lines (44 loc) · 1.23 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
{
"$schema": "https://schemas.botframework.com/schemas/component/v1.0/component.schema",
"$role": [ "implements(Microsoft.IDialog)", "extends(Microsoft.InputDialog)" ],
"title": "Internet Protocol",
"description": "Collect information - Internet Protocol Type , based on the ProtocolType",
"type": "object",
"properties": {
"defaultLocale": {
"$ref": "schema:#/definitions/stringExpression",
"description": "Value from callers memory to use as localization",
"title": "DefaultLocale",
"examples": [
"en-us"
]
},
"resultProperty": {
"$ref": "schema:#/definitions/stringExpression",
"description": "Value from callers memory to store the result",
"title": "Result",
"examples": [
"127.0.0.1 (Select IpAddress) "
]
},
"ProtocolType": {
"title": "Protocol Type",
"description": "Input type to find the media type",
"oneOf": [
{
"type": "object",
"title": "ProtocolType",
"description": "Choose the Media Type",
"enum": [
"IpAddress",
"Url"
],
"default": "IpAddress"
}
]
}
},
"$policies": {
"interactive": true
}
}