-
Notifications
You must be signed in to change notification settings - Fork 15
/
validationsAndCarousels.json
126 lines (126 loc) · 3.59 KB
/
validationsAndCarousels.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
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
{
"id": "validationsAndCarousels",
"type": "sequence",
"steps": [
{
"id": "myCarousel",
"type": "carousel",
"data": {
"text": "Can you see a carousel of hero cards bellow?",
"cards": [
{
"id": "myOtherCard",
"type": "heroCard",
"data": {
"title": "Space Needle",
"text": "The <b>Space Needle</b> is an observation tower in Seattle, Washington, a landmark of the Pacific Northwest, and an icon of Seattle.",
"images": [
"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Seattlenighttimequeenanne.jpg/320px-Seattlenighttimequeenanne.jpg"
],
"buttons": [
{
"label": "Wikipedia",
"action": "openUrl",
"value": "https://en.wikipedia.org/wiki/Space_Needle"
},
{
"label": "Select",
"action": "imBack",
"value": "select:100"
}
]
}
},
{
"id": "myOtherOtherCard",
"type": "heroCard",
"data": {
"title": "Pikes Place Market",
"text": "<b>Pike Place Market</b> is a public market overlooking the Elliott Bay waterfront in Seattle, Washington, United States.",
"images": [
"https://upload.wikimedia.org/wikipedia/en/thumb/2/2a/PikePlaceMarket.jpg/320px-PikePlaceMarket.jpg"
],
"buttons": [
{
"label": "Wikipedia",
"action": "openUrl",
"value": "https://en.wikipedia.org/wiki/Pike_Place_Market"
},
{
"label": "Select",
"action": "imBack",
"value": "select:101"
}
]
}
}
]
}
},
{
"id": "myCard",
"type": "heroCard",
"data": {
"title": "Space Needle",
"subtitle": "Our Subtitle",
"text": "The <b>Space Needle</b> is an observation tower in Seattle, Washington, a landmark of the Pacific Northwest, and an icon of Seattle.",
"images": [
"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Seattlenighttimequeenanne.jpg/320px-Seattlenighttimequeenanne.jpg"
],
"tap": {
"action": "openUrl",
"value": "https://en.wikipedia.org/wiki/Space_Needle"
},
"buttons": [
{
"label": "Wikipedia",
"action": "openUrl",
"value": "https://en.wikipedia.org/wiki/Space_Needle"
}
]
}
},
{
"type": "text",
"data": {
"text": "Lets start!"
}
},
{
"id": "isTesting",
"type": "prompt",
"data": {
"type": "text",
"text": "What are you doing? (I'll validate using regex: ^test)",
"validation": {
"type": "regex",
"setup": {
"pattern": "^test"
}
}
}
},
{
"id": "flightDate",
"type": "prompt",
"data": {
"type": "time",
"text": "When would you like to fly?",
"validation": {
"type": "date",
"setup": {
"min_date": "2016-11-15 00:00:00",
"max_date": "2016-11-25 23:59:59",
"invalid_msg": "Oops, wrong date!"
}
}
}
},
{
"type": "text",
"data": {
"text": "All good :)"
}
}
]
}