json-object-editor 0.10.654 → 0.10.660
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -1
- package/_www/mcp-test.html +287 -276
- package/css/joe-styles.css +6 -0
- package/css/joe.css +7 -1
- package/css/joe.min.css +1 -1
- package/docs/React_Form_Integration_Strategy.md +398 -0
- package/form-qs.json +1007 -0
- package/js/JsonObjectEditor.jquery.craydent.js +56 -12
- package/js/joe-ai.js +2275 -2052
- package/js/joe.js +57 -13
- package/js/joe.min.js +1 -1
- package/package.json +1 -1
- package/react-form-spa-ex.js +570 -0
- package/readme.md +34 -1
- package/server/fields/core.js +4 -1
- package/server/modules/MCP.js +1364 -1237
- package/server/modules/Sites.js +79 -0
- package/server/modules/Storage.js +28 -1
- package/server/plugins/chatgpt.js +1864 -1495
- package/server/schemas/ai_assistant.js +15 -1
- package/server/schemas/ai_prompt.js +389 -324
- package/server/schemas/ai_response.js +414 -374
- package/server/schemas/ai_widget_conversation.js +31 -0
package/form-qs.json
ADDED
|
@@ -0,0 +1,1007 @@
|
|
|
1
|
+
{
|
|
2
|
+
"formId": "hw_health_questionnaire",
|
|
3
|
+
"formName": "Harmonious Wellness Health Questionnaire",
|
|
4
|
+
"version": "2026-01-04",
|
|
5
|
+
"owner": "Harmonious Wellness (Kelly Shay)",
|
|
6
|
+
"settings": {
|
|
7
|
+
"allowSaveAndResume": true,
|
|
8
|
+
"showProgressBar": true,
|
|
9
|
+
"defaultRequiredMessage": "This field is required.",
|
|
10
|
+
"ui": {
|
|
11
|
+
"layout": "multi_step",
|
|
12
|
+
"sectionStyle": "cards"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"logicConventions": {
|
|
16
|
+
"operators": ["eq", "neq", "in", "contains", "gt", "gte", "lt", "lte", "truthy"],
|
|
17
|
+
"notes": [
|
|
18
|
+
"Use visibility.whenAll/whenAny arrays of conditions.",
|
|
19
|
+
"Use 'text_contains' style logic via 'contains' operator on string fields."
|
|
20
|
+
]
|
|
21
|
+
},
|
|
22
|
+
"sections": [
|
|
23
|
+
{
|
|
24
|
+
"id": "demographics",
|
|
25
|
+
"title": "Demographics",
|
|
26
|
+
"description": "Basic identifying and contact details.",
|
|
27
|
+
"fields": [
|
|
28
|
+
{
|
|
29
|
+
"id": "first_name",
|
|
30
|
+
"label": "First Name",
|
|
31
|
+
"type": "text",
|
|
32
|
+
"required": true,
|
|
33
|
+
"placeholder": "First name"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"id": "last_name",
|
|
37
|
+
"label": "Last Name",
|
|
38
|
+
"type": "text",
|
|
39
|
+
"required": true,
|
|
40
|
+
"placeholder": "Last name"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"id": "gender",
|
|
44
|
+
"label": "Gender",
|
|
45
|
+
"type": "select",
|
|
46
|
+
"required": true,
|
|
47
|
+
"options": [
|
|
48
|
+
{ "value": "female", "label": "Female" },
|
|
49
|
+
{ "value": "male", "label": "Male" },
|
|
50
|
+
{ "value": "nonbinary", "label": "Non-binary" },
|
|
51
|
+
{ "value": "prefer_not_to_say", "label": "Prefer not to say" }
|
|
52
|
+
]
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"id": "age",
|
|
56
|
+
"label": "Age",
|
|
57
|
+
"type": "number",
|
|
58
|
+
"required": true,
|
|
59
|
+
"min": 0,
|
|
60
|
+
"max": 120
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"id": "height",
|
|
64
|
+
"label": "Height",
|
|
65
|
+
"type": "text",
|
|
66
|
+
"required": true,
|
|
67
|
+
"placeholder": "e.g., 5'8\" or 173 cm"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"id": "weight",
|
|
71
|
+
"label": "Weight",
|
|
72
|
+
"type": "text",
|
|
73
|
+
"required": true,
|
|
74
|
+
"placeholder": "e.g., 165 lb or 75 kg"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"id": "email",
|
|
78
|
+
"label": "Email Address",
|
|
79
|
+
"type": "email",
|
|
80
|
+
"required": true,
|
|
81
|
+
"placeholder": "name@email.com"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"id": "location_time_zone",
|
|
85
|
+
"label": "Location / Time Zone",
|
|
86
|
+
"type": "text",
|
|
87
|
+
"required": true,
|
|
88
|
+
"placeholder": "City, State and Time Zone"
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"id": "phone_number",
|
|
92
|
+
"label": "Phone Number",
|
|
93
|
+
"type": "phone",
|
|
94
|
+
"required": true,
|
|
95
|
+
"placeholder": "(555) 555-5555"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"id": "preferred_communication_method",
|
|
99
|
+
"label": "Preferred Communication Method",
|
|
100
|
+
"type": "select",
|
|
101
|
+
"required": true,
|
|
102
|
+
"options": [
|
|
103
|
+
{ "value": "text", "label": "Text" },
|
|
104
|
+
{ "value": "email", "label": "Email" },
|
|
105
|
+
{ "value": "phone", "label": "Phone Call" }
|
|
106
|
+
]
|
|
107
|
+
}
|
|
108
|
+
]
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"id": "primary_concerns_history",
|
|
112
|
+
"title": "Primary Concerns and Medical History",
|
|
113
|
+
"description": "Your main concerns and key medical background.",
|
|
114
|
+
"fields": [
|
|
115
|
+
{
|
|
116
|
+
"id": "main_health_concerns",
|
|
117
|
+
"label": "Main Health Concerns you'd like support on",
|
|
118
|
+
"type": "textarea",
|
|
119
|
+
"required": true,
|
|
120
|
+
"placeholder": "Briefly describe your top concerns."
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"id": "diagnosed_medical_conditions",
|
|
124
|
+
"label": "Diagnosed Medical Conditions",
|
|
125
|
+
"type": "textarea",
|
|
126
|
+
"required": true,
|
|
127
|
+
"placeholder": "List diagnoses or type “None”."
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"id": "current_medications",
|
|
131
|
+
"label": "Current Medications",
|
|
132
|
+
"type": "text",
|
|
133
|
+
"required": true,
|
|
134
|
+
"placeholder": "List medications or type “None”."
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"id": "current_supplements",
|
|
138
|
+
"label": "Current Supplements",
|
|
139
|
+
"type": "text",
|
|
140
|
+
"required": true,
|
|
141
|
+
"placeholder": "List supplements or type “None”."
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"id": "past_major_surgeries",
|
|
145
|
+
"label": "Past Major Surgeries",
|
|
146
|
+
"type": "text",
|
|
147
|
+
"required": true,
|
|
148
|
+
"placeholder": "List surgeries or type “N/A”."
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"id": "pregnant_or_breastfeeding",
|
|
152
|
+
"label": "Pregnant or Breastfeeding",
|
|
153
|
+
"type": "boolean",
|
|
154
|
+
"required": true,
|
|
155
|
+
"visibility": {
|
|
156
|
+
"whenAll": [
|
|
157
|
+
{ "field": "gender", "op": "eq", "value": "female" }
|
|
158
|
+
]
|
|
159
|
+
}
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"id": "gallbladder_removed",
|
|
163
|
+
"label": "Gallbladder Removed",
|
|
164
|
+
"type": "boolean",
|
|
165
|
+
"required": true
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"id": "history_of_heart_issues",
|
|
169
|
+
"label": "History of Heart Issues (Arrhythmia, Stent, Pacemaker, etc.)",
|
|
170
|
+
"type": "text",
|
|
171
|
+
"required": true,
|
|
172
|
+
"placeholder": "Describe or type “N/A”."
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"id": "cancer_history_explain",
|
|
176
|
+
"label": "Cancer History (Please explain)",
|
|
177
|
+
"type": "text",
|
|
178
|
+
"required": true,
|
|
179
|
+
"visibility": {
|
|
180
|
+
"whenAny": [
|
|
181
|
+
{ "field": "diagnosed_medical_conditions", "op": "contains", "value": "cancer" },
|
|
182
|
+
{ "field": "diagnosed_medical_conditions", "op": "contains", "value": "Cancer" }
|
|
183
|
+
]
|
|
184
|
+
},
|
|
185
|
+
"placeholder": "Type and location, or “N/A”."
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"id": "diabetes_type",
|
|
189
|
+
"label": "Diabetes Type",
|
|
190
|
+
"type": "select",
|
|
191
|
+
"required": true,
|
|
192
|
+
"options": [
|
|
193
|
+
{ "value": "none", "label": "None" },
|
|
194
|
+
{ "value": "type_1", "label": "Type 1" },
|
|
195
|
+
{ "value": "type_2", "label": "Type 2" },
|
|
196
|
+
{ "value": "unsure", "label": "Unsure" }
|
|
197
|
+
]
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"id": "kidney_disease",
|
|
201
|
+
"label": "Kidney Disease",
|
|
202
|
+
"type": "boolean",
|
|
203
|
+
"required": true,
|
|
204
|
+
"visibility": {
|
|
205
|
+
"whenAny": [
|
|
206
|
+
{ "field": "diagnosed_medical_conditions", "op": "contains", "value": "kidney" },
|
|
207
|
+
{ "field": "diagnosed_medical_conditions", "op": "contains", "value": "Kidney" }
|
|
208
|
+
]
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"id": "liver_hepatitis_history",
|
|
213
|
+
"label": "Liver/Hepatitis History",
|
|
214
|
+
"type": "boolean",
|
|
215
|
+
"required": true,
|
|
216
|
+
"visibility": {
|
|
217
|
+
"whenAny": [
|
|
218
|
+
{ "field": "diagnosed_medical_conditions", "op": "contains", "value": "liver" },
|
|
219
|
+
{ "field": "diagnosed_medical_conditions", "op": "contains", "value": "Liver" },
|
|
220
|
+
{ "field": "diagnosed_medical_conditions", "op": "contains", "value": "hepatitis" },
|
|
221
|
+
{ "field": "diagnosed_medical_conditions", "op": "contains", "value": "Hepatitis" }
|
|
222
|
+
]
|
|
223
|
+
}
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"id": "known_allergies_food_environmental",
|
|
227
|
+
"label": "Known Allergies (Food/Environmental)",
|
|
228
|
+
"type": "text",
|
|
229
|
+
"required": true,
|
|
230
|
+
"placeholder": "List allergies or type “N/A”."
|
|
231
|
+
}
|
|
232
|
+
]
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"id": "gi_digestion",
|
|
236
|
+
"title": "Digestion and Elimination",
|
|
237
|
+
"description": "Digestive function, reactions, and stool patterns.",
|
|
238
|
+
"fields": [
|
|
239
|
+
{
|
|
240
|
+
"id": "overall_digestion",
|
|
241
|
+
"label": "Overall Digestion",
|
|
242
|
+
"type": "scale",
|
|
243
|
+
"required": true,
|
|
244
|
+
"min": 0,
|
|
245
|
+
"max": 5,
|
|
246
|
+
"minLabel": "Very poor",
|
|
247
|
+
"maxLabel": "Excellent"
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
"id": "bloating_after_meals",
|
|
251
|
+
"label": "Bloating After Meals",
|
|
252
|
+
"type": "scale",
|
|
253
|
+
"required": true,
|
|
254
|
+
"min": 0,
|
|
255
|
+
"max": 5
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"id": "reaction_to_fats",
|
|
259
|
+
"label": "Reaction to Fats",
|
|
260
|
+
"type": "scale",
|
|
261
|
+
"required": true,
|
|
262
|
+
"min": 0,
|
|
263
|
+
"max": 5
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"id": "gas_frequency",
|
|
267
|
+
"label": "Gas Frequency",
|
|
268
|
+
"type": "scale",
|
|
269
|
+
"required": false,
|
|
270
|
+
"min": 0,
|
|
271
|
+
"max": 5
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"id": "constipation_tendency",
|
|
275
|
+
"label": "Constipation Tendency",
|
|
276
|
+
"type": "scale",
|
|
277
|
+
"required": true,
|
|
278
|
+
"min": 0,
|
|
279
|
+
"max": 5
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"id": "diarrhea_tendency",
|
|
283
|
+
"label": "Diarrhea Tendency",
|
|
284
|
+
"type": "scale",
|
|
285
|
+
"required": true,
|
|
286
|
+
"min": 0,
|
|
287
|
+
"max": 5
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"id": "stool_form_bristol",
|
|
291
|
+
"label": "Stool Form (Bristol Scale)",
|
|
292
|
+
"type": "select",
|
|
293
|
+
"required": true,
|
|
294
|
+
"options": [
|
|
295
|
+
{ "value": "1", "label": "Type 1 (hard lumps)" },
|
|
296
|
+
{ "value": "2", "label": "Type 2 (lumpy sausage)" },
|
|
297
|
+
{ "value": "3", "label": "Type 3 (cracked sausage)" },
|
|
298
|
+
{ "value": "4", "label": "Type 4 (smooth sausage)" },
|
|
299
|
+
{ "value": "5", "label": "Type 5 (soft blobs)" },
|
|
300
|
+
{ "value": "6", "label": "Type 6 (mushy)" },
|
|
301
|
+
{ "value": "7", "label": "Type 7 (watery)" }
|
|
302
|
+
]
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"id": "stool_frequency",
|
|
306
|
+
"label": "Stool Frequency",
|
|
307
|
+
"type": "select",
|
|
308
|
+
"required": true,
|
|
309
|
+
"options": [
|
|
310
|
+
{ "value": "0_1", "label": "0–1 per day" },
|
|
311
|
+
{ "value": "1_2", "label": "1–2 per day" },
|
|
312
|
+
{ "value": "2_3", "label": "2–3 per day" },
|
|
313
|
+
{ "value": "3_plus", "label": "3+ per day" }
|
|
314
|
+
]
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"id": "food_sensitivities",
|
|
318
|
+
"label": "Food Sensitivities",
|
|
319
|
+
"type": "text",
|
|
320
|
+
"required": false,
|
|
321
|
+
"placeholder": "List foods or type “N/A”."
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"id": "acid_reflux_heartburn",
|
|
325
|
+
"label": "Acid Reflux / Heartburn",
|
|
326
|
+
"type": "scale",
|
|
327
|
+
"required": true,
|
|
328
|
+
"min": 0,
|
|
329
|
+
"max": 5
|
|
330
|
+
}
|
|
331
|
+
]
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"id": "energy_metabolic",
|
|
335
|
+
"title": "Energy and Metabolic Signals",
|
|
336
|
+
"description": "Energy patterns, weight patterns, and cravings.",
|
|
337
|
+
"fields": [
|
|
338
|
+
{
|
|
339
|
+
"id": "daily_energy_level",
|
|
340
|
+
"label": "Daily Energy Level",
|
|
341
|
+
"type": "scale",
|
|
342
|
+
"required": true,
|
|
343
|
+
"min": 0,
|
|
344
|
+
"max": 5
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
"id": "midday_crashes",
|
|
348
|
+
"label": "Midday Crashes",
|
|
349
|
+
"type": "scale",
|
|
350
|
+
"required": false,
|
|
351
|
+
"min": 0,
|
|
352
|
+
"max": 5
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"id": "morning_fatigue",
|
|
356
|
+
"label": "Morning Fatigue",
|
|
357
|
+
"type": "scale",
|
|
358
|
+
"required": true,
|
|
359
|
+
"min": 0,
|
|
360
|
+
"max": 5
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
"id": "over_or_under_weight",
|
|
364
|
+
"label": "Are you Overweight or Underweight?",
|
|
365
|
+
"type": "select",
|
|
366
|
+
"required": true,
|
|
367
|
+
"options": [
|
|
368
|
+
{ "value": "overweight", "label": "Overweight" },
|
|
369
|
+
{ "value": "underweight", "label": "Underweight" },
|
|
370
|
+
{ "value": "neither", "label": "Neither" }
|
|
371
|
+
]
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
"id": "easy_gain_hard_lose",
|
|
375
|
+
"label": "Easy to Gain Weight & Hard to Loose It?",
|
|
376
|
+
"type": "boolean",
|
|
377
|
+
"required": false
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"id": "blood_sugar_symptoms",
|
|
381
|
+
"label": "Blood Sugar Symptoms",
|
|
382
|
+
"type": "scale",
|
|
383
|
+
"required": true,
|
|
384
|
+
"min": 0,
|
|
385
|
+
"max": 5
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
"id": "cravings_sweets_salt_caffeine",
|
|
389
|
+
"label": "Cravings (Sweets/Salt/Caffeine)",
|
|
390
|
+
"type": "select",
|
|
391
|
+
"required": true,
|
|
392
|
+
"options": [
|
|
393
|
+
{ "value": "none", "label": "None" },
|
|
394
|
+
{ "value": "sweets", "label": "Sweets" },
|
|
395
|
+
{ "value": "salt", "label": "Salt" },
|
|
396
|
+
{ "value": "caffeine", "label": "Caffeine" },
|
|
397
|
+
{ "value": "multiple", "label": "Multiple" }
|
|
398
|
+
]
|
|
399
|
+
}
|
|
400
|
+
]
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
"id": "hormones_repro",
|
|
404
|
+
"title": "Hormones and Reproductive Health",
|
|
405
|
+
"description": "Hormonal symptoms and sex-specific health signals.",
|
|
406
|
+
"fields": [
|
|
407
|
+
{
|
|
408
|
+
"id": "hormonal_imbalance_symptoms",
|
|
409
|
+
"label": "Hormonal Imbalance Symptoms",
|
|
410
|
+
"type": "scale",
|
|
411
|
+
"required": true,
|
|
412
|
+
"min": 0,
|
|
413
|
+
"max": 5
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"id": "temperature_sensitivity",
|
|
417
|
+
"label": "Temperature Sensitivity",
|
|
418
|
+
"type": "scale",
|
|
419
|
+
"required": true,
|
|
420
|
+
"min": 0,
|
|
421
|
+
"max": 5
|
|
422
|
+
},
|
|
423
|
+
{
|
|
424
|
+
"id": "hot_flashes_night_sweats",
|
|
425
|
+
"label": "Hot Flashes / Night Sweats",
|
|
426
|
+
"type": "boolean",
|
|
427
|
+
"required": true
|
|
428
|
+
},
|
|
429
|
+
{
|
|
430
|
+
"id": "libido_level",
|
|
431
|
+
"label": "Libido Level",
|
|
432
|
+
"type": "select",
|
|
433
|
+
"required": true,
|
|
434
|
+
"options": [
|
|
435
|
+
{ "value": "low", "label": "Low" },
|
|
436
|
+
{ "value": "moderate", "label": "Moderate" },
|
|
437
|
+
{ "value": "high", "label": "High" }
|
|
438
|
+
]
|
|
439
|
+
},
|
|
440
|
+
|
|
441
|
+
{
|
|
442
|
+
"id": "cycle_regularity",
|
|
443
|
+
"label": "Cycle Regularity",
|
|
444
|
+
"type": "boolean",
|
|
445
|
+
"required": true,
|
|
446
|
+
"visibility": { "whenAll": [{ "field": "gender", "op": "eq", "value": "female" }] }
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
"id": "pms_severity",
|
|
450
|
+
"label": "PMS Severity",
|
|
451
|
+
"type": "scale",
|
|
452
|
+
"required": true,
|
|
453
|
+
"min": 0,
|
|
454
|
+
"max": 5,
|
|
455
|
+
"visibility": { "whenAll": [{ "field": "gender", "op": "eq", "value": "female" }] }
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"id": "menstrual_pain",
|
|
459
|
+
"label": "Menstrual Pain",
|
|
460
|
+
"type": "scale",
|
|
461
|
+
"required": true,
|
|
462
|
+
"min": 0,
|
|
463
|
+
"max": 5,
|
|
464
|
+
"visibility": { "whenAll": [{ "field": "gender", "op": "eq", "value": "female" }] }
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
"id": "menopause_perimenopause_symptoms",
|
|
468
|
+
"label": "Menopause or Perimenopause Symptoms",
|
|
469
|
+
"type": "scale",
|
|
470
|
+
"required": true,
|
|
471
|
+
"min": 0,
|
|
472
|
+
"max": 5,
|
|
473
|
+
"visibility": { "whenAll": [{ "field": "gender", "op": "eq", "value": "female" }] }
|
|
474
|
+
},
|
|
475
|
+
|
|
476
|
+
{
|
|
477
|
+
"id": "prostate_symptoms",
|
|
478
|
+
"label": "Prostate Symptoms",
|
|
479
|
+
"type": "boolean",
|
|
480
|
+
"required": true,
|
|
481
|
+
"visibility": { "whenAll": [{ "field": "gender", "op": "eq", "value": "male" }] }
|
|
482
|
+
},
|
|
483
|
+
{
|
|
484
|
+
"id": "erectile_function_concerns",
|
|
485
|
+
"label": "Erectile Function Concerns",
|
|
486
|
+
"type": "boolean",
|
|
487
|
+
"required": true,
|
|
488
|
+
"visibility": { "whenAll": [{ "field": "gender", "op": "eq", "value": "male" }] }
|
|
489
|
+
}
|
|
490
|
+
]
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"id": "sleep_stress_emotions",
|
|
494
|
+
"title": "Sleep, Stress, and Emotional Health",
|
|
495
|
+
"description": "Sleep quality and nervous system load.",
|
|
496
|
+
"fields": [
|
|
497
|
+
{
|
|
498
|
+
"id": "sleep_quality",
|
|
499
|
+
"label": "Sleep Quality",
|
|
500
|
+
"type": "scale",
|
|
501
|
+
"required": true,
|
|
502
|
+
"min": 0,
|
|
503
|
+
"max": 5
|
|
504
|
+
},
|
|
505
|
+
{
|
|
506
|
+
"id": "time_to_fall_asleep",
|
|
507
|
+
"label": "Time to Fall Asleep",
|
|
508
|
+
"type": "scale",
|
|
509
|
+
"required": true,
|
|
510
|
+
"min": 0,
|
|
511
|
+
"max": 5
|
|
512
|
+
},
|
|
513
|
+
{
|
|
514
|
+
"id": "difficulty_staying_asleep",
|
|
515
|
+
"label": "Difficulty Staying Asleep",
|
|
516
|
+
"type": "scale",
|
|
517
|
+
"required": false,
|
|
518
|
+
"min": 0,
|
|
519
|
+
"max": 5
|
|
520
|
+
},
|
|
521
|
+
{
|
|
522
|
+
"id": "difficulty_falling_asleep",
|
|
523
|
+
"label": "Difficulty Falling Asleep",
|
|
524
|
+
"type": "scale",
|
|
525
|
+
"required": false,
|
|
526
|
+
"min": 0,
|
|
527
|
+
"max": 5
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
"id": "overall_stress_level",
|
|
531
|
+
"label": "Overall Stress Level",
|
|
532
|
+
"type": "scale",
|
|
533
|
+
"required": true,
|
|
534
|
+
"min": 0,
|
|
535
|
+
"max": 5
|
|
536
|
+
},
|
|
537
|
+
{
|
|
538
|
+
"id": "anxiety_level",
|
|
539
|
+
"label": "Anxiety Level",
|
|
540
|
+
"type": "scale",
|
|
541
|
+
"required": true,
|
|
542
|
+
"min": 0,
|
|
543
|
+
"max": 5
|
|
544
|
+
},
|
|
545
|
+
{
|
|
546
|
+
"id": "overthinking_rumination",
|
|
547
|
+
"label": "Overthinking / Rumination",
|
|
548
|
+
"type": "scale",
|
|
549
|
+
"required": true,
|
|
550
|
+
"min": 0,
|
|
551
|
+
"max": 5
|
|
552
|
+
},
|
|
553
|
+
{
|
|
554
|
+
"id": "emotional_resilience",
|
|
555
|
+
"label": "Emotional Resilience",
|
|
556
|
+
"type": "scale",
|
|
557
|
+
"required": false,
|
|
558
|
+
"min": 0,
|
|
559
|
+
"max": 5
|
|
560
|
+
},
|
|
561
|
+
{
|
|
562
|
+
"id": "major_trauma_stress_history",
|
|
563
|
+
"label": "Major Trauma/Stress History",
|
|
564
|
+
"type": "text",
|
|
565
|
+
"required": false,
|
|
566
|
+
"placeholder": "Briefly describe or type “N/A”."
|
|
567
|
+
}
|
|
568
|
+
]
|
|
569
|
+
},
|
|
570
|
+
{
|
|
571
|
+
"id": "immune_lymph_skin",
|
|
572
|
+
"title": "Immune, Lymphatic, Skin, and Cognitive",
|
|
573
|
+
"description": "Immune resilience, lymph congestion signals, skin and cognition.",
|
|
574
|
+
"fields": [
|
|
575
|
+
{
|
|
576
|
+
"id": "swelling_puffiness",
|
|
577
|
+
"label": "Swelling / Puffiness",
|
|
578
|
+
"type": "scale",
|
|
579
|
+
"required": true,
|
|
580
|
+
"min": 0,
|
|
581
|
+
"max": 5
|
|
582
|
+
},
|
|
583
|
+
{
|
|
584
|
+
"id": "skin_issues_acne_eczema_rashes",
|
|
585
|
+
"label": "Skin Issues (Acne/Eczema/Rashes)",
|
|
586
|
+
"type": "scale",
|
|
587
|
+
"required": true,
|
|
588
|
+
"min": 0,
|
|
589
|
+
"max": 5
|
|
590
|
+
},
|
|
591
|
+
{
|
|
592
|
+
"id": "brain_fog",
|
|
593
|
+
"label": "Brain Fog",
|
|
594
|
+
"type": "scale",
|
|
595
|
+
"required": true,
|
|
596
|
+
"min": 0,
|
|
597
|
+
"max": 5
|
|
598
|
+
},
|
|
599
|
+
{
|
|
600
|
+
"id": "frequent_colds_low_immunity",
|
|
601
|
+
"label": "Frequent Colds or Low Immunity",
|
|
602
|
+
"type": "scale",
|
|
603
|
+
"required": true,
|
|
604
|
+
"min": 0,
|
|
605
|
+
"max": 5
|
|
606
|
+
},
|
|
607
|
+
{
|
|
608
|
+
"id": "sinus_congestion",
|
|
609
|
+
"label": "Sinus Congestion",
|
|
610
|
+
"type": "scale",
|
|
611
|
+
"required": false,
|
|
612
|
+
"min": 0,
|
|
613
|
+
"max": 5
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
"id": "lymph_node_swelling",
|
|
617
|
+
"label": "Lymph Node Swelling",
|
|
618
|
+
"type": "scale",
|
|
619
|
+
"required": false,
|
|
620
|
+
"min": 0,
|
|
621
|
+
"max": 5
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
"id": "hair_loss_thinning",
|
|
625
|
+
"label": "Hair Loss / Thinning",
|
|
626
|
+
"type": "boolean",
|
|
627
|
+
"required": false
|
|
628
|
+
},
|
|
629
|
+
{
|
|
630
|
+
"id": "autoimmune_diagnosis",
|
|
631
|
+
"label": "Autoimmune Diagnosis",
|
|
632
|
+
"type": "boolean",
|
|
633
|
+
"required": true,
|
|
634
|
+
"visibility": {
|
|
635
|
+
"whenAny": [
|
|
636
|
+
{ "field": "diagnosed_medical_conditions", "op": "contains", "value": "autoimmune" },
|
|
637
|
+
{ "field": "diagnosed_medical_conditions", "op": "contains", "value": "Autoimmune" }
|
|
638
|
+
]
|
|
639
|
+
}
|
|
640
|
+
}
|
|
641
|
+
]
|
|
642
|
+
},
|
|
643
|
+
{
|
|
644
|
+
"id": "respiratory_cardio_movement",
|
|
645
|
+
"title": "Respiratory, Cardiovascular, and Movement",
|
|
646
|
+
"description": "Breathing, heart-related symptoms, and activity tolerance.",
|
|
647
|
+
"fields": [
|
|
648
|
+
{
|
|
649
|
+
"id": "shortness_of_breath",
|
|
650
|
+
"label": "Shortness of Breath",
|
|
651
|
+
"type": "scale",
|
|
652
|
+
"required": true,
|
|
653
|
+
"min": 0,
|
|
654
|
+
"max": 5
|
|
655
|
+
},
|
|
656
|
+
{
|
|
657
|
+
"id": "exercise_intolerance",
|
|
658
|
+
"label": "Exercise Intolerance",
|
|
659
|
+
"type": "scale",
|
|
660
|
+
"required": true,
|
|
661
|
+
"min": 0,
|
|
662
|
+
"max": 5
|
|
663
|
+
},
|
|
664
|
+
{
|
|
665
|
+
"id": "chest_tightness",
|
|
666
|
+
"label": "Chest Tightness",
|
|
667
|
+
"type": "scale",
|
|
668
|
+
"required": true,
|
|
669
|
+
"min": 0,
|
|
670
|
+
"max": 5
|
|
671
|
+
},
|
|
672
|
+
{
|
|
673
|
+
"id": "chronic_cough",
|
|
674
|
+
"label": "Chronic Cough",
|
|
675
|
+
"type": "scale",
|
|
676
|
+
"required": true,
|
|
677
|
+
"min": 0,
|
|
678
|
+
"max": 5
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
"id": "mucus_production",
|
|
682
|
+
"label": "Mucus Production",
|
|
683
|
+
"type": "scale",
|
|
684
|
+
"required": true,
|
|
685
|
+
"min": 0,
|
|
686
|
+
"max": 5
|
|
687
|
+
},
|
|
688
|
+
{
|
|
689
|
+
"id": "smoking_or_exposure",
|
|
690
|
+
"label": "Smoking or Exposure",
|
|
691
|
+
"type": "boolean",
|
|
692
|
+
"required": true
|
|
693
|
+
},
|
|
694
|
+
{
|
|
695
|
+
"id": "smoking_amount",
|
|
696
|
+
"label": "If yes, how much? (amount or exposure details)",
|
|
697
|
+
"type": "text",
|
|
698
|
+
"required": false,
|
|
699
|
+
"visibility": {
|
|
700
|
+
"whenAll": [{ "field": "smoking_or_exposure", "op": "eq", "value": true }]
|
|
701
|
+
},
|
|
702
|
+
"placeholder": "e.g., packs/day, cigarettes/day, secondhand exposure"
|
|
703
|
+
},
|
|
704
|
+
{
|
|
705
|
+
"id": "cardiovascular_symptoms_chest_pain_pressure_arrhythmia",
|
|
706
|
+
"label": "Cardiovascular Symptoms (Chest pain, pressure, arrhythmia)",
|
|
707
|
+
"type": "scale",
|
|
708
|
+
"required": true,
|
|
709
|
+
"min": 0,
|
|
710
|
+
"max": 5
|
|
711
|
+
},
|
|
712
|
+
{
|
|
713
|
+
"id": "movement_frequency",
|
|
714
|
+
"label": "Movement Frequency",
|
|
715
|
+
"type": "select",
|
|
716
|
+
"required": true,
|
|
717
|
+
"options": [
|
|
718
|
+
{ "value": "rarely", "label": "Rarely" },
|
|
719
|
+
{ "value": "1_2_week", "label": "1–2x/week" },
|
|
720
|
+
{ "value": "3_4_week", "label": "3–4x/week" },
|
|
721
|
+
{ "value": "5_plus_week", "label": "5+ times/week" }
|
|
722
|
+
]
|
|
723
|
+
}
|
|
724
|
+
]
|
|
725
|
+
},
|
|
726
|
+
{
|
|
727
|
+
"id": "lifestyle_hydration_exposure",
|
|
728
|
+
"title": "Lifestyle, Hydration, and Exposures",
|
|
729
|
+
"description": "Daily rhythm inputs and environmental/toxic load.",
|
|
730
|
+
"fields": [
|
|
731
|
+
{
|
|
732
|
+
"id": "sunlight_exposure",
|
|
733
|
+
"label": "Sunlight Exposure",
|
|
734
|
+
"type": "select",
|
|
735
|
+
"required": true,
|
|
736
|
+
"options": [
|
|
737
|
+
{ "value": "low", "label": "Low" },
|
|
738
|
+
{ "value": "moderate", "label": "Moderate" },
|
|
739
|
+
{ "value": "high", "label": "High" }
|
|
740
|
+
]
|
|
741
|
+
},
|
|
742
|
+
{
|
|
743
|
+
"id": "workload_stress_load",
|
|
744
|
+
"label": "Workload / Stress Load",
|
|
745
|
+
"type": "scale",
|
|
746
|
+
"required": true,
|
|
747
|
+
"min": 0,
|
|
748
|
+
"max": 5
|
|
749
|
+
},
|
|
750
|
+
{
|
|
751
|
+
"id": "hydration_level",
|
|
752
|
+
"label": "Hydration Level",
|
|
753
|
+
"type": "scale",
|
|
754
|
+
"required": true,
|
|
755
|
+
"min": 0,
|
|
756
|
+
"max": 5
|
|
757
|
+
},
|
|
758
|
+
{
|
|
759
|
+
"id": "type_of_water_consumed",
|
|
760
|
+
"label": "Type of Water Consumed",
|
|
761
|
+
"type": "select",
|
|
762
|
+
"required": false,
|
|
763
|
+
"options": [
|
|
764
|
+
{ "value": "filtered", "label": "Filtered" },
|
|
765
|
+
{ "value": "spring", "label": "Spring" },
|
|
766
|
+
{ "value": "tap", "label": "Tap" },
|
|
767
|
+
{ "value": "reverse_osmosis", "label": "Reverse Osmosis" },
|
|
768
|
+
{ "value": "bottled", "label": "Bottled" },
|
|
769
|
+
{ "value": "other", "label": "Other" }
|
|
770
|
+
]
|
|
771
|
+
},
|
|
772
|
+
{
|
|
773
|
+
"id": "alcohol_caffeine_intake",
|
|
774
|
+
"label": "Alcohol / Caffeine Intake",
|
|
775
|
+
"type": "select",
|
|
776
|
+
"required": false,
|
|
777
|
+
"options": [
|
|
778
|
+
{ "value": "none", "label": "None" },
|
|
779
|
+
{ "value": "low", "label": "Low" },
|
|
780
|
+
{ "value": "moderate", "label": "Moderate" },
|
|
781
|
+
{ "value": "high", "label": "High" }
|
|
782
|
+
]
|
|
783
|
+
},
|
|
784
|
+
{
|
|
785
|
+
"id": "heavy_metal_exposure",
|
|
786
|
+
"label": "Heavy Metal Exposure",
|
|
787
|
+
"type": "boolean",
|
|
788
|
+
"required": true
|
|
789
|
+
},
|
|
790
|
+
{
|
|
791
|
+
"id": "mold_exposure",
|
|
792
|
+
"label": "Mold Exposure",
|
|
793
|
+
"type": "boolean",
|
|
794
|
+
"required": true
|
|
795
|
+
}
|
|
796
|
+
]
|
|
797
|
+
},
|
|
798
|
+
{
|
|
799
|
+
"id": "detox_case_history_goals",
|
|
800
|
+
"title": "Detox History, Case History, and Intentions",
|
|
801
|
+
"description": "Context for pacing, root causes, and your intention.",
|
|
802
|
+
"fields": [
|
|
803
|
+
{
|
|
804
|
+
"id": "past_detox_attempts",
|
|
805
|
+
"label": "Past Detox Attempts",
|
|
806
|
+
"type": "boolean",
|
|
807
|
+
"required": false
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
"id": "past_detox_reactions",
|
|
811
|
+
"label": "If yes, what happened? (reactions/notes)",
|
|
812
|
+
"type": "text",
|
|
813
|
+
"required": false,
|
|
814
|
+
"visibility": {
|
|
815
|
+
"whenAll": [{ "field": "past_detox_attempts", "op": "eq", "value": true }]
|
|
816
|
+
},
|
|
817
|
+
"placeholder": "Short notes"
|
|
818
|
+
},
|
|
819
|
+
{
|
|
820
|
+
"id": "onset_of_condition_symptoms",
|
|
821
|
+
"label": "Onset of condition symptoms (When did they begin?)",
|
|
822
|
+
"type": "text",
|
|
823
|
+
"required": true,
|
|
824
|
+
"placeholder": "Approx date or timeframe"
|
|
825
|
+
},
|
|
826
|
+
{
|
|
827
|
+
"id": "root_triggers_identified",
|
|
828
|
+
"label": "Root Triggers Identified",
|
|
829
|
+
"type": "text",
|
|
830
|
+
"required": false,
|
|
831
|
+
"placeholder": "If you suspect any triggers (stress, mold, diet, etc.)"
|
|
832
|
+
},
|
|
833
|
+
{
|
|
834
|
+
"id": "major_life_events_around_onset",
|
|
835
|
+
"label": "Major Life Events Around Onset",
|
|
836
|
+
"type": "text",
|
|
837
|
+
"required": false,
|
|
838
|
+
"placeholder": "Anything significant around that time"
|
|
839
|
+
},
|
|
840
|
+
{
|
|
841
|
+
"id": "what_do_you_want_most_from_this_protocol",
|
|
842
|
+
"label": "What Do You Want Most From This Protocol?",
|
|
843
|
+
"type": "text",
|
|
844
|
+
"required": true,
|
|
845
|
+
"placeholder": "Your primary outcome"
|
|
846
|
+
}
|
|
847
|
+
]
|
|
848
|
+
},
|
|
849
|
+
{
|
|
850
|
+
"id": "vitals_diet_family",
|
|
851
|
+
"title": "Vitals, Diet, and Family History",
|
|
852
|
+
"description": "Key anchors Kelly requested to see grouped and easy to reference.",
|
|
853
|
+
"fields": [
|
|
854
|
+
{
|
|
855
|
+
"id": "blood_pressure_right",
|
|
856
|
+
"label": "Blood Pressure Right",
|
|
857
|
+
"type": "text",
|
|
858
|
+
"required": true,
|
|
859
|
+
"placeholder": "e.g., 120/80 or type “N/A”"
|
|
860
|
+
},
|
|
861
|
+
{
|
|
862
|
+
"id": "blood_pressure_left",
|
|
863
|
+
"label": "Blood Pressure Left",
|
|
864
|
+
"type": "text",
|
|
865
|
+
"required": true,
|
|
866
|
+
"placeholder": "e.g., 120/80 or type “N/A”"
|
|
867
|
+
},
|
|
868
|
+
{
|
|
869
|
+
"id": "urine_ph",
|
|
870
|
+
"label": "Urine pH",
|
|
871
|
+
"type": "number",
|
|
872
|
+
"required": true,
|
|
873
|
+
"min": 0,
|
|
874
|
+
"max": 14,
|
|
875
|
+
"step": 0.1,
|
|
876
|
+
"placeholder": "e.g., 6.5 or type “N/A”"
|
|
877
|
+
},
|
|
878
|
+
{
|
|
879
|
+
"id": "daily_diet_breakfast_lunch_dinner_snacks",
|
|
880
|
+
"label": "What does your current daily diet consist of? (Breakfast/Lunch/Dinner/Snacks)",
|
|
881
|
+
"type": "textarea",
|
|
882
|
+
"required": true,
|
|
883
|
+
"placeholder": "List typical breakfast, lunch, dinner, and snacks."
|
|
884
|
+
},
|
|
885
|
+
{
|
|
886
|
+
"id": "family_history_all",
|
|
887
|
+
"label": "Please list all known health concerns for each family member (Mother/Father/Grandparents/Siblings). Leave blank if you aren’t sure.",
|
|
888
|
+
"type": "textarea",
|
|
889
|
+
"required": true,
|
|
890
|
+
"placeholder": "Mother: ... Father: ... Grandparents: ... Siblings: ..."
|
|
891
|
+
}
|
|
892
|
+
]
|
|
893
|
+
},
|
|
894
|
+
{
|
|
895
|
+
"id": "system_mapping_additions",
|
|
896
|
+
"title": "System Mapping (Kelly’s Key Adds)",
|
|
897
|
+
"description": "High-signal items reintroduced as explicit questions for clearer gland/system mapping.",
|
|
898
|
+
"fields": [
|
|
899
|
+
{ "id": "cold_hands_or_feet", "label": "Cold Hands or Feet", "type": "boolean", "required": true },
|
|
900
|
+
{ "id": "cold_all_the_time", "label": "Cold All the Time", "type": "boolean", "required": true },
|
|
901
|
+
{ "id": "are_your_fingernails", "label": "Are Your Fingernails:", "type": "select", "required": false, "options": [
|
|
902
|
+
{ "value": "weak", "label": "Weak" },
|
|
903
|
+
{ "value": "brittle", "label": "Brittle" },
|
|
904
|
+
{ "value": "ridged", "label": "Ridged" },
|
|
905
|
+
{ "value": "normal", "label": "Normal" }
|
|
906
|
+
]},
|
|
907
|
+
{ "id": "muscle_weakness", "label": "Muscle Weakness", "type": "boolean", "required": false },
|
|
908
|
+
{ "id": "varicose_veins", "label": "Varicose Veins", "type": "boolean", "required": false },
|
|
909
|
+
{ "id": "hemorrhoids", "label": "Hemorrhoids", "type": "boolean", "required": false },
|
|
910
|
+
{ "id": "prolapses", "label": "Prolapses", "type": "boolean", "required": true },
|
|
911
|
+
{ "id": "muscle_cramps", "label": "Muscle Cramps", "type": "boolean", "required": true },
|
|
912
|
+
{ "id": "low_bone_density", "label": "Low Bone Density", "type": "boolean", "required": true },
|
|
913
|
+
{ "id": "osteoporosis", "label": "Osteoporosis", "type": "boolean", "required": true },
|
|
914
|
+
{ "id": "scoliosis", "label": "Scoliosis", "type": "boolean", "required": true },
|
|
915
|
+
|
|
916
|
+
{
|
|
917
|
+
"id": "mental_health_challenges_list",
|
|
918
|
+
"label": "Mental Health Challenges (Depression, PTSD, OCD, etc.)",
|
|
919
|
+
"type": "text",
|
|
920
|
+
"required": true,
|
|
921
|
+
"placeholder": "List challenges or type “N/A”."
|
|
922
|
+
},
|
|
923
|
+
{ "id": "poor_memory", "label": "Poor Memory", "type": "boolean", "required": true },
|
|
924
|
+
{ "id": "lack_of_motivation", "label": "Lack of Motivation", "type": "boolean", "required": false },
|
|
925
|
+
{ "id": "depression_binary", "label": "Depression", "type": "boolean", "required": true },
|
|
926
|
+
{ "id": "slow_digestion_binary", "label": "Slow Digestion", "type": "boolean", "required": false },
|
|
927
|
+
{ "id": "nervousness", "label": "Nervousness", "type": "boolean", "required": true },
|
|
928
|
+
|
|
929
|
+
{
|
|
930
|
+
"id": "itis_condition_list",
|
|
931
|
+
"label": "Do You Have Any “Itis” Condition (Arthritis, Osteoarthritis, Bursitis, etc.) — Please List",
|
|
932
|
+
"type": "text",
|
|
933
|
+
"required": false,
|
|
934
|
+
"placeholder": "List or type “N/A”."
|
|
935
|
+
},
|
|
936
|
+
{ "id": "low_steroids_low_cortisol", "label": "Low Steroids / Low Cortisol", "type": "boolean", "required": true },
|
|
937
|
+
{ "id": "add", "label": "ADD (Attention Deficit Disorder)", "type": "boolean", "required": true },
|
|
938
|
+
{ "id": "adhd", "label": "ADHD (Attention Deficit Hyperactivity Disorder)", "type": "boolean", "required": true },
|
|
939
|
+
{ "id": "autism", "label": "Autism", "type": "boolean", "required": true },
|
|
940
|
+
|
|
941
|
+
{ "id": "fibroids", "label": "Fibroids", "type": "boolean", "required": true, "visibility": { "whenAll": [{ "field": "gender", "op": "eq", "value": "female" }] } },
|
|
942
|
+
{ "id": "endometriosis", "label": "Endometriosis", "type": "boolean", "required": true, "visibility": { "whenAll": [{ "field": "gender", "op": "eq", "value": "female" }] } },
|
|
943
|
+
|
|
944
|
+
{ "id": "fats_dairy_bloat", "label": "Fats and dairy cause stomach bloat", "type": "boolean", "required": false },
|
|
945
|
+
{ "id": "fats_dairy_pain", "label": "Fats and dairy cause stomach pain", "type": "boolean", "required": false },
|
|
946
|
+
{ "id": "anemia", "label": "Anemia", "type": "boolean", "required": true },
|
|
947
|
+
{ "id": "heart_attack", "label": "Heart Attack", "type": "boolean", "required": true },
|
|
948
|
+
|
|
949
|
+
{ "id": "sleep_apnea", "label": "Sleep Apnea", "type": "boolean", "required": true },
|
|
950
|
+
{ "id": "do_you_snore", "label": "Do You Snore?", "type": "boolean", "required": true },
|
|
951
|
+
|
|
952
|
+
{ "id": "uti", "label": "UTI", "type": "boolean", "required": true },
|
|
953
|
+
{ "id": "bladder_infection", "label": "Bladder Infection", "type": "boolean", "required": true },
|
|
954
|
+
{ "id": "sciatica", "label": "Sciatica", "type": "boolean", "required": false },
|
|
955
|
+
{ "id": "bags_under_eyes", "label": "Bags Under Eyes", "type": "boolean", "required": false },
|
|
956
|
+
{ "id": "frequent_urination", "label": "Frequent Urination", "type": "boolean", "required": true },
|
|
957
|
+
{ "id": "kidney_stones", "label": "Kidney Stones", "type": "boolean", "required": true },
|
|
958
|
+
{ "id": "lower_back_pain", "label": "Lower Back Pain", "type": "boolean", "required": false }
|
|
959
|
+
]
|
|
960
|
+
},
|
|
961
|
+
{
|
|
962
|
+
"id": "treatments_vaccines_substances",
|
|
963
|
+
"title": "Treatments, Vaccines, and Substances",
|
|
964
|
+
"description": "Safety and detox context.",
|
|
965
|
+
"fields": [
|
|
966
|
+
{
|
|
967
|
+
"id": "chemo_or_radiation_history",
|
|
968
|
+
"label": "Have You Gone Through Chemotherapy or Radiation?",
|
|
969
|
+
"type": "boolean",
|
|
970
|
+
"required": true
|
|
971
|
+
},
|
|
972
|
+
{
|
|
973
|
+
"id": "standard_vaccinations",
|
|
974
|
+
"label": "Have You Received the “Standard” Vaccinations?",
|
|
975
|
+
"type": "boolean",
|
|
976
|
+
"required": true
|
|
977
|
+
},
|
|
978
|
+
{
|
|
979
|
+
"id": "travel_vaccinations",
|
|
980
|
+
"label": "Have You Received Vaccinations for Travelling to Foreign Countries?",
|
|
981
|
+
"type": "boolean",
|
|
982
|
+
"required": true
|
|
983
|
+
},
|
|
984
|
+
{
|
|
985
|
+
"id": "flu_shot",
|
|
986
|
+
"label": "Have You Received a Flu Shot?",
|
|
987
|
+
"type": "boolean",
|
|
988
|
+
"required": true
|
|
989
|
+
},
|
|
990
|
+
{
|
|
991
|
+
"id": "recreational_drugs_list",
|
|
992
|
+
"label": "Please List Any ‘Recreational’ Drugs You Have Used:",
|
|
993
|
+
"type": "text",
|
|
994
|
+
"required": false,
|
|
995
|
+
"placeholder": "List or type “N/A”."
|
|
996
|
+
}
|
|
997
|
+
]
|
|
998
|
+
}
|
|
999
|
+
],
|
|
1000
|
+
"dataExport": {
|
|
1001
|
+
"flattening": {
|
|
1002
|
+
"delimiter": ".",
|
|
1003
|
+
"includeHiddenFields": false
|
|
1004
|
+
},
|
|
1005
|
+
"fieldMap": "use_field_ids_as_keys"
|
|
1006
|
+
}
|
|
1007
|
+
}
|