-
Notifications
You must be signed in to change notification settings - Fork 3
/
inputData.json
97 lines (97 loc) · 2.08 KB
/
inputData.json
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"displayName": "aNewDest",
"formFields": [
{
"type": "textInput",
"label": "Label1",
"configKey": "key1",
"required": true,
"regex": "^(.{1,100})$",
"placeholder": "value1",
"secret": false
},
{
"type": "textInput",
"label": "Label2",
"configKey": "key2",
"required": true,
"regex": "^(.{1,100})$",
"placeholder": "value2",
"secret": false
},
{
"type": "checkbox",
"label": "Label3",
"required": false,
"note": "Any additional note for this field",
"configKey": "key3",
"default": true
},
{
"type": "textInput",
"label": "Label4",
"configKey": "key4",
"required": false,
"regex": "^(.{0,100})$",
"placeholder": "value4",
"secret": false,
"preRequisites": {
"fields": [
{
"configKey": "key3",
"value": true
}
]
}
},
{
"type": "singleSelect",
"configKey": "key5",
"label": "Label5",
"note": "Any additional note for this field",
"required": false,
"options": [
{
"label": "optionLabel1",
"value": "optionKey1"
},
{
"label": "optionLabel2",
"value": "optionKey2"
},
{
"label": "optionLabel3",
"value": "optionKey3"
}
],
"default": "optionKey2"
},
{
"type": "multiSelect",
"label": "Label6",
"configKey": "key6",
"required": false,
"note": "Any additional note for this field",
"options": [
{
"label": "optionLabel1",
"value": "optionKey1"
},
{
"label": "optionLabel2",
"value": "optionKey2"
}
],
"default": ["optionKey1"]
},
{
"type": "tagInput",
"label": "Label7",
"configKey": "key7",
"required": false,
"note": "Any additional note for this field",
"tagKey": "tagKey1",
"placeholder": "e.g: Credit card visit"
}
]
}