-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfields.json
executable file
·119 lines (119 loc) · 3.16 KB
/
fields.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
{
"_embedded": {
"request_fields": [
{
"reference": null,
"name": "What will be the service?",
"label": "What will be the service?",
"placeholder": "What will be the service?",
"mask": "service type",
"type": "enumerable",
"required": true,
"allow_multiple_value": true,
"allow_custom_value": false,
"values": {
"Dye": "Dye",
"Haircut": "Haircut"
},
"_embedded": {
"nested_fields": []
}
},
{
"reference": null,
"name": "Who will the service be for?",
"label": "Who will the service be for?",
"placeholder": "Who will the service be for?",
"mask": "who the service will be for",
"type": "enumerable",
"required": false,
"allow_multiple_value": true,
"allow_custom_value": false,
"values": {
"Kids": "Kids",
"Man": "Man",
"Woman": "Woman"
},
"_embedded": {
"nested_fields": []
}
},
{
"reference": null,
"name": "How many people will the service be for?",
"label": "How many people will the service be for?",
"placeholder": "How many people will the service be for?",
"mask": "add the number of people",
"type": "enumerable",
"required": false,
"allow_multiple_value": false,
"allow_custom_value": false,
"values": {
"1": "1",
"2": "2",
"More than 3": "More than 3"
},
"_embedded": {
"nested_fields": []
}
},
{
"reference": null,
"name": "When do you need this service?",
"label": "When do you need this service?",
"placeholder": "When do you need this service?",
"mask": "Add the service deadline",
"type": "enumerable",
"required": true,
"allow_multiple_value": false,
"allow_custom_value": false,
"values": {
"Today or in the next few days": "Today or in the next few days",
"Next 30 days": "Next 30 days",
"Next 3 months": "Next 3 months",
"Not sure yet": "Not sure yet"
},
"_embedded": {
"nested_fields": []
}
},
{
"name": "Additional Information",
"label": "Additional Information",
"type": "big_text",
"placeholder": "Describe what you need",
"required": false
}
],
"user_fields": [
{
"name": "lat_lng",
"label": "Which neighbourhood will the service be in?",
"type": "lat_lng",
"placeholder": "",
"required": true
},
{
"name": "name",
"label": "Nome",
"type": "small_text",
"placeholder": "",
"required": true
},
{
"name": "email",
"label": "Email",
"type": "email",
"placeholder": "Ex: [email protected]",
"required": true
},
{
"name": "phone",
"label": "Cellphone",
"type": "phone",
"placeholder": "",
"required": true
}
]
}
}