-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadd-form.json
More file actions
180 lines (180 loc) · 4.46 KB
/
Copy pathadd-form.json
File metadata and controls
180 lines (180 loc) · 4.46 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
{
"type": "modal",
"title": {
"type": "plain_text",
"text": "Add Key Learning",
"emoji": true
},
"submit": {
"type": "plain_text",
"text": "Save",
"emoji": true
},
"close": {
"type": "plain_text",
"text": "Cancel",
"emoji": true
},
"blocks": [
{
"type": "context",
"elements": [
{
"type": "mrkdwn",
"text": "please scroll down, and fill in as much as you can 😇"
}
]
},
{
"type": "input",
"element": {
"type": "plain_text_input",
"action_id": "keyLearning",
"multiline": true,
"placeholder": {
"type": "plain_text",
"text": "What key learnings would you like to share with your fellow IDEO-ers? Short and sweet insights are the best insights!"
}
},
"label": {
"type": "plain_text",
"text": "Key Learning",
"emoji": true
}
},
{
"type": "input",
"element": {
"type": "plain_text_input",
"action_id": "context",
"multiline": true,
"placeholder": {
"type": "plain_text",
"text": "Tell us a story about a research participant or some other way you learned this."
}
},
"label": {
"type": "plain_text",
"text": "Guiding Context",
"emoji": true
}
},
{
"type": "input",
"optional": true,
"label": {
"type": "plain_text",
"text": "Client"
},
"element": {
"type": "multi_static_select",
"action_id": "predefinedClientTags",
"placeholder": {
"type": "plain_text",
"text": "Choose from a list of existing clients",
"emoji": true
},
"options": []
}
},
{
"type": "input",
"optional": true,
"element": {
"type": "plain_text_input",
"action_id": "newClientTags",
"placeholder": {
"type": "plain_text",
"text": "Add a new client name"
}
},
"label": {
"type": "plain_text",
"text": "If you did not find your client name above, add it below and it will show up in future searches."
}
},
{
"type": "input",
"optional": true,
"label": {
"type": "plain_text",
"text": "Industry Tags"
},
"element": {
"type": "multi_static_select",
"action_id": "predefinedIndustryTags",
"placeholder": {
"type": "plain_text",
"text": "Choose from a list of existing industry tags.",
"emoji": true
},
"options": []
}
},
{
"type": "input",
"optional": true,
"element": {
"type": "plain_text_input",
"action_id": "newIndustryTags",
"placeholder": {
"type": "plain_text",
"text": "Add new Industry tag(s) separated by commas."
}
},
"label": {
"type": "plain_text",
"text": "If you didn't find relevant industry tags above, add them here separated by commas. They will show up in future searches."
}
},
{
"type": "input",
"optional": true,
"label": {
"type": "plain_text",
"text": "Related Themes"
},
"element": {
"type": "multi_static_select",
"action_id": "predefinedRelatedThemeTags",
"placeholder": {
"type": "plain_text",
"text": "Choose from a list of existing related themes.",
"emoji": true
},
"options": []
}
},
{
"type": "input",
"optional": true,
"element": {
"type": "plain_text_input",
"action_id": "newRelatedThemeTags",
"placeholder": {
"type": "plain_text",
"text": "Add new Related themes(s) separated by commas."
}
},
"label": {
"type": "plain_text",
"text": "If you didn't find relevant related themes above, add them here separated by commas. They will show up in future searches."
}
},
{
"block_id": "my_block_id",
"type": "input",
"optional": true,
"label": {
"type": "plain_text",
"text": "Select a channel to notify once this entry has been added."
},
"element": {
"action_id": "my_action_id",
"type": "conversations_select",
"default_to_current_conversation": true,
"response_url_enabled": true
}
}
]
}