-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathexample.json
62 lines (59 loc) · 1.76 KB
/
example.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
{
"Event_name":"Valo",
"title":"User Forms",
"description":"Form for Collecting User Data",
"questions":[
{
"title":"What is your age group",
"description":"Enter Your Age group Range",
"options_type":"mcq",
"options":[
"15-18",
"19-25",
"26-30",
"30-40"
],
"required":1
},
{
"title":"Enter Your Name",
"description":"Please Enter Your Name",
"options_type":"short",
"options":[],
"required":1
}
],
"User Forms": {
"Format": {
"Event_name": "",
"description": "",
"questions": [
{
"description": "Enter Your Age group Range",
"options": [
"15-18",
"19-25",
"26-30",
"30-40"
],
"options_type": "mcq",
"required":1,
"title": "What is your age group",
"answers": [
"19-25"
]
},
{
"description": "Please Enter Your Name",
"options_type": "short",
"required":1,
"title": "Enter Your Name",
"answers":[
"LoremIpsum"
]
}
],
"title": "User Forms"
}
}
}