-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsv.json
1733 lines (1733 loc) · 82.3 KB
/
sv.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
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"total": 5,
"items": [
{
"contentType": "app",
"name": "App",
"createDate": "2024-10-30T09:18:55.7292754",
"updateDate": "2025-01-23T23:10:32.8348569",
"route": {
"path": "/sv/",
"startItem": {
"id": "c676354f-53d5-4bec-86cf-0207a52545c8",
"path": "app"
}
},
"id": "c676354f-53d5-4bec-86cf-0207a52545c8",
"properties": {
"videoUrl": "https://www.youtube.com/watch?v=UvaXoSm2tP8",
"imageUrl": "https://solvatten.org/wp-content/uploads/2022/01/MG_0966-scaled.jpg"
},
"cultures": {
"sv": {
"path": "/sv/",
"startItem": {
"id": "c676354f-53d5-4bec-86cf-0207a52545c8",
"path": "app"
}
},
"en": {
"path": "/en/",
"startItem": {
"id": "c676354f-53d5-4bec-86cf-0207a52545c8",
"path": "app"
}
}
}
},
{
"contentType": "instructions",
"name": "Instruktioner",
"createDate": "2024-09-20T23:10:25.3865255",
"updateDate": "2025-01-15T16:23:49.1345228",
"route": {
"path": "/sv/instruktioner/",
"startItem": {
"id": "c676354f-53d5-4bec-86cf-0207a52545c8",
"path": "app"
}
},
"id": "df76bb6f-4d5c-4a11-a263-d34bb44d252b",
"properties": {
"title": "Innan du börjar...",
"block1": "Känn din vattenkälla. Använd vattnet som kommer från din vanliga basis. Om du är osäker på vattnets kvalitet bör du rådfråga din lokala vattenrådgivare. Solvatten behandlar inte kemisk förorening som arsenik eller fluor. Solvatten behandlar endast vatten som är förorenat med mikrobiologiska patogener.",
"block2": "Nu kör vi! :-)",
"chapters": {
"items": [
{
"content": {
"contentType": "chapter",
"id": "208faeb1-4c91-4e88-9b57-7ff3f7ca23e8",
"properties": {
"title": "Start early in the morning",
"content": null
}
},
"settings": null
}
]
}
},
"cultures": {
"sv": {
"path": "/sv/instruktioner/",
"startItem": {
"id": "c676354f-53d5-4bec-86cf-0207a52545c8",
"path": "app"
}
},
"en": {
"path": "/en/instructions/",
"startItem": {
"id": "c676354f-53d5-4bec-86cf-0207a52545c8",
"path": "app"
}
}
}
},
{
"contentType": "faq",
"name": "Faq",
"createDate": "2024-09-21T12:49:10.894209",
"updateDate": "2025-01-14T10:41:43.6852961",
"route": {
"path": "/sv/faq/",
"startItem": {
"id": "c676354f-53d5-4bec-86cf-0207a52545c8",
"path": "app"
}
},
"id": "a6ad7952-2eb1-4b21-ab5f-60588f03b761",
"properties": {
"content": {
"items": [
{
"content": {
"contentType": "faqItem",
"id": "26e205fa-a0e4-4b7a-93b7-34990b2b17cc",
"properties": {
"question": "What is Solvatten and how does it work?",
"answer": "Solvatten is a portable water purifier that uses solar energy to make water safe for drinking, cooking, and hygiene. It combines heat and ultraviolet (UV) radiation from the sun to treat contaminated water in a simple, sustainable way. The water is purified by placing the Solvatten unit in direct sunlight for 2-6 hours, depending on the weather conditions."
}
},
"settings": null
},
{
"content": {
"contentType": "faqItem",
"id": "1e531645-d3ef-4164-8273-ad885cfa285a",
"properties": {
"question": "How much water can Solvatten treat at once?",
"answer": "Each Solvatten unit can treat up to 10 liters of water at a time. The process can be repeated multiple times a day depending on sunlight availability, allowing families to purify enough water for their daily needs."
}
},
"settings": null
},
{
"content": {
"contentType": "faqItem",
"id": "e8091fe7-26fb-4e88-8686-fd55adce4d01",
"properties": {
"question": "Is Solvatten safe to use for children and the elderly?",
"answer": "Yes, Solvatten is designed to be safe for people of all ages. It uses a natural process with no chemicals, ensuring that the water is safe for consumption, including by children and the elderly."
}
},
"settings": null
},
{
"content": {
"contentType": "faqItem",
"id": "00a47463-034c-4628-ab19-82445c073039",
"properties": {
"question": "What kind of water can Solvatten purify?",
"answer": "Solvatten can treat water from various sources, including rivers, lakes, and rainwater. However, it is important to avoid using water that contains heavy contamination such as chemicals or industrial waste, as Solvatten is not designed to remove such pollutants."
}
},
"settings": null
},
{
"content": {
"contentType": "faqItem",
"id": "f2eda415-a2ed-423c-b1ee-20ed4585927b",
"properties": {
"question": "How long does the Solvatten unit last?",
"answer": "Solvatten units are built to last for up to 7-10 years with proper use and care. The durable materials are resistant to weather conditions and wear and tear."
}
},
"settings": null
},
{
"content": {
"contentType": "faqItem",
"id": "9c73cb20-01c9-4619-9dd5-9acd3a3becd5",
"properties": {
"question": "How can I tell if the water is safe to drink after using Solvatten?",
"answer": "Solvatten includes a visual indicator on the unit that shows when the water has reached a safe temperature and UV exposure level. Once the indicator shows that the water is ready, it is safe for consumption."
}
},
"settings": null
},
{
"content": {
"contentType": "faqItem",
"id": "ee9457f0-7fac-47c1-a9a5-3846f9e28d72",
"properties": {
"question": "Can Solvatten be used during cloudy days?",
"answer": "Yes, Solvatten can still work on cloudy days, but the purification process will take longer. It may take up to 6 hours or more for the water to be fully treated depending on the weather conditions."
}
},
"settings": null
},
{
"content": {
"contentType": "faqItem",
"id": "a43d3870-c1f1-4497-90a8-ad2aea954cb2",
"properties": {
"question": "Is Solvatten environmentally friendly?",
"answer": "Yes, Solvatten is highly sustainable. It reduces the need for boiling water over firewood or other fossil fuels, helping to decrease deforestation and carbon emissions. Additionally, it doesn’t require batteries or electricity, making it an eco-friendly solution."
}
},
"settings": null
},
{
"content": {
"contentType": "faqItem",
"id": "8257f134-61a4-4034-acc8-2650c6bdf51c",
"properties": {
"question": "Can Solvatten be used for purposes other than drinking water?",
"answer": "Yes, Solvatten-treated water can also be used for cooking, washing, and hygiene purposes. The unit provides hot water, which is useful for various household needs."
}
},
"settings": null
},
{
"content": {
"contentType": "faqItem",
"id": "6e8a6441-8b1e-43db-8e1a-6df6627109f7",
"properties": {
"question": "What maintenance is required for Solvatten?",
"answer": "Solvatten requires minimal maintenance. After each use, it is recommended to rinse the unit and let it dry. The transparent panels should be kept clean to ensure maximum sunlight exposure. Occasionally check for any wear and tear on the seals and parts."
}
},
"settings": null
},
{
"content": {
"contentType": "faqItem",
"id": "da7100d9-91fd-4da5-a5d4-bc79879321a5",
"properties": {
"question": "Where can I buy Solvatten?",
"answer": "Solvatten is available for purchase through the official Solvatten website, as well as through partner organizations and distributors. You can also contact local NGOs or humanitarian organizations that work with water access to inquire about availability in your region."
}
},
"settings": null
},
{
"content": {
"contentType": "faqItem",
"id": "d8539abc-5cc4-42aa-af7a-c0b6633ea598",
"properties": {
"question": "What are the benefits of using Solvatten in remote areas?",
"answer": "In remote areas without reliable access to clean water or electricity, Solvatten provides a self-sustaining solution for safe drinking water. It reduces the need for firewood to boil water, saving time and resources while promoting better health and hygiene."
}
},
"settings": null
},
{
"content": {
"contentType": "faqItem",
"id": "31621149-36d6-4a25-8419-ce17d49abb12",
"properties": {
"question": "Does Solvatten eliminate all harmful microorganisms from water?",
"answer": "Yes, Solvatten is effective at killing bacteria, viruses, and parasites through a combination of solar UV radiation and heat. However, it is not designed to remove chemical pollutants or heavy metals from the water."
}
},
"settings": null
},
{
"content": {
"contentType": "faqItem",
"id": "e68b18bc-f655-4d34-b6db-cf246bf971f3",
"properties": {
"question": "Test 1",
"answer": "Svar 1"
}
},
"settings": null
}
]
}
},
"cultures": {
"sv": {
"path": "/sv/faq/",
"startItem": {
"id": "c676354f-53d5-4bec-86cf-0207a52545c8",
"path": "app"
}
},
"en": {
"path": "/en/faq/",
"startItem": {
"id": "c676354f-53d5-4bec-86cf-0207a52545c8",
"path": "app"
}
}
}
},
{
"contentType": "quizzes",
"name": "Quizzes",
"createDate": "2024-09-21T13:06:35.9796093",
"updateDate": "2025-01-22T11:32:08.2277711",
"route": {
"path": "/sv/quizzes/",
"startItem": {
"id": "c676354f-53d5-4bec-86cf-0207a52545c8",
"path": "app"
}
},
"id": "ba5d6a77-7a1c-4a14-8711-91ea108f9123",
"properties": {
"quiz": {
"items": [
{
"content": {
"contentType": "quiz",
"id": "5b5f2846-c982-4213-964e-290929e8cd32",
"properties": {
"title": "Easy",
"items": {
"items": [
{
"content": {
"contentType": "quizQuestion",
"id": "1a92f52f-fe89-44d2-bc36-c9e1f6f591b1",
"properties": {
"question": "Where do you pour in the water?",
"image": null,
"type": "Multiple",
"answers": {
"items": [
{
"content": {
"contentType": "quizAnswer",
"id": "b03102f0-f3f9-4466-84c7-b894a1b4ce7f",
"properties": {
"value": "Through the openings with black caps and filters.",
"correct": true
}
},
"settings": null
},
{
"content": {
"contentType": "quizAnswer",
"id": "e670f983-2423-4204-a09e-7cd6e5df4378",
"properties": {
"value": "Through any of the openings.",
"correct": false
}
},
"settings": null
},
{
"content": {
"contentType": "quizAnswer",
"id": "5d876df5-61d8-435d-83fa-0779a086a0ef",
"properties": {
"value": "Through the narrow opening at the bottom of the container.",
"correct": false
}
},
"settings": null
},
{
"content": {
"contentType": "quizAnswer",
"id": "2e8eecb0-6d65-42a2-ad5d-69c1192539c7",
"properties": {
"value": "Through the large opening at the back of the container.",
"correct": null
}
},
"settings": null
}
]
},
"additionalInfo": {
"items": [
{
"content": {
"contentType": "quizMoreInfo",
"id": "a06ee61c-0177-49a3-afbb-0a27d87e257c",
"properties": {
"severity": "Warning",
"heading": "Avoid scratching the surface",
"details": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
}
},
"settings": null
}
]
}
}
},
"settings": null
},
{
"content": {
"contentType": "quizQuestion",
"id": "1cdbcc5d-9c59-4d3b-9f5d-bb2f254f29f5",
"properties": {
"question": "Why should you always fill Solvatten all the way to the top?",
"image": null,
"type": "Single",
"answers": {
"items": [
{
"content": {
"contentType": "quizAnswer",
"id": "03fac060-6924-4cfd-b32f-cdb3a49063e4",
"properties": {
"value": "Because the indicator works properly when fully covered by water.",
"correct": true
}
},
"settings": null
},
{
"content": {
"contentType": "quizAnswer",
"id": "d4b3f8db-3a43-4992-8092-3e870da5fb3d",
"properties": {
"value": "Because leaving space lets the water expand.",
"correct": null
}
},
"settings": null
},
{
"content": {
"contentType": "quizAnswer",
"id": "66fcf67c-d32f-4a87-b0c3-56fd42cd7ea0",
"properties": {
"value": "Because filling it halfway up leaves the water boiling.",
"correct": false
}
},
"settings": null
},
{
"content": {
"contentType": "quizAnswer",
"id": "cd4fb7de-ca27-4811-a721-33fba7d7f9d0",
"properties": {
"value": "Because overfilling can cause it to get dirty.",
"correct": null
}
},
"settings": null
}
]
},
"additionalInfo": {
"items": [
{
"content": {
"contentType": "quizMoreInfo",
"id": "dfdc8995-67a6-429e-b337-ae8ee5e25586",
"properties": {
"severity": "None",
"heading": null,
"details": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
}
},
"settings": null
}
]
}
}
},
"settings": null
},
{
"content": {
"contentType": "quizQuestion",
"id": "8b582f12-785b-46f2-89a7-c2ab64052ac8",
"properties": {
"question": "How should the water look before you pour it into Solvatten?",
"image": null,
"type": "Multiple",
"answers": {
"items": [
{
"content": {
"contentType": "quizAnswer",
"id": "2542d4ba-35c1-4889-9bff-38835f2c86de",
"properties": {
"value": "It should be cloudy or dirty.",
"correct": null
}
},
"settings": null
},
{
"content": {
"contentType": "quizAnswer",
"id": "bd6077cc-0dd4-4b67-9f68-69df34750912",
"properties": {
"value": "It should have bits and pieces in it.",
"correct": null
}
},
"settings": null
},
{
"content": {
"contentType": "quizAnswer",
"id": "c70404b4-765e-4ee8-a09a-7503d33eb6ae",
"properties": {
"value": "It should be clear enough to see through a glassful.",
"correct": true
}
},
"settings": null
},
{
"content": {
"contentType": "quizAnswer",
"id": "34a00939-e3e0-42b0-abc6-9e9ac0546686",
"properties": {
"value": "It should be yellowish or brown.",
"correct": false
}
},
"settings": null
}
]
},
"additionalInfo": {
"items": [
{
"content": {
"contentType": "quizMoreInfo",
"id": "fd39cee3-4410-4180-92d1-5566bd246886",
"properties": {
"severity": "None",
"heading": null,
"details": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
}
},
"settings": null
}
]
}
}
},
"settings": null
},
{
"content": {
"contentType": "quizQuestion",
"id": "f101f7d3-a3c1-4d34-8989-74031e528769",
"properties": {
"question": "When should you push the Sun Button?",
"image": null,
"type": "Multiple",
"answers": {
"items": [
{
"content": {
"contentType": "quizAnswer",
"id": "7aea10ba-16a6-4eb2-891b-4ae7004074e7",
"properties": {
"value": "Press once the water starts to boil.",
"correct": null
}
},
"settings": null
},
{
"content": {
"contentType": "quizAnswer",
"id": "5e3de4cc-606e-4eaf-b239-f4d3eab55762",
"properties": {
"value": "Press after Solvatten has been in the sun for an hour.",
"correct": null
}
},
"settings": null
},
{
"content": {
"contentType": "quizAnswer",
"id": "d6e6e9f0-7726-4dc3-bb44-d38550cd0eea",
"properties": {
"value": "Press so it shows a red face when you start.",
"correct": true
}
},
"settings": null
},
{
"content": {
"contentType": "quizAnswer",
"id": "0731f4a3-65e2-4780-a0ac-e18d24e3924d",
"properties": {
"value": "Press after Solvatten has been in the sun for five minutes.",
"correct": null
}
},
"settings": null
}
]
},
"additionalInfo": null
}
},
"settings": null
},
{
"content": {
"contentType": "quizQuestion",
"id": "c833f1d4-3966-43cf-b4fa-594f16d542ab",
"properties": {
"question": "How do you place Solvatten when you start using it?",
"image": null,
"type": "Multiple",
"answers": {
"items": [
{
"content": {
"contentType": "quizAnswer",
"id": "28575306-28b1-4578-9a3a-0328353b6596",
"properties": {
"value": "Place Solvatten in a shaded area, out of direct sunlight.",
"correct": null
}
},
"settings": null
},
{
"content": {
"contentType": "quizAnswer",
"id": "db50540d-0359-40da-803e-0b47f7e42790",
"properties": {
"value": "Place Solvatten at a 90°C angle facing the sun, preferably in a no-wind or shadow spot.",
"correct": true
}
},
"settings": null
},
{
"content": {
"contentType": "quizAnswer",
"id": "3da0f289-7532-41f6-8a2b-c24e3337a200",
"properties": {
"value": "Place Solvatten in a shaded area with little sunlight.",
"correct": null
}
},
"settings": null
},
{
"content": {
"contentType": "quizAnswer",
"id": "26fdb1e4-94ed-4db8-b4b8-6c63fd9dd806",
"properties": {
"value": "Place Solvatten in direct sunlight with wind to help it dry faster.",
"correct": null
}
},
"settings": null
}
]
},
"additionalInfo": null
}
},
"settings": null
},
{
"content": {
"contentType": "quizQuestion",
"id": "516d8796-0e7e-43e1-b6c3-1704d3c15409",
"properties": {
"question": "When is the water safe to drink?",
"image": null,
"type": "Multiple",
"answers": {
"items": [
{
"content": {
"contentType": "quizAnswer",
"id": "969dba9e-6016-4787-a4ed-3eeeffa699f0",
"properties": {
"value": "When it has boiled for around 10 minutes.",
"correct": null
}
},
"settings": null
},
{
"content": {
"contentType": "quizAnswer",
"id": "2ea5d03e-5478-4f3d-bc2d-9381959c2b72",
"properties": {
"value": "When the water is clear and cool.",
"correct": null
}
},
"settings": null
},
{
"content": {
"contentType": "quizAnswer",
"id": "10a115b6-f627-424a-b66b-744cd4b8715b",
"properties": {
"value": "When the water steams and feels cool to touch.",
"correct": null
}
},
"settings": null
},
{
"content": {
"contentType": "quizAnswer",
"id": "157c179f-0115-411f-b6a1-4de50e92b43b",
"properties": {
"value": "When the face on the indicator turns green and its within 24 hours.",
"correct": true
}
},
"settings": null
}
]
},
"additionalInfo": null
}
},
"settings": null
},
{
"content": {
"contentType": "quizQuestion",
"id": "f5aadea8-0d3b-4b2c-8097-466867ddc178",
"properties": {
"question": "Where do you pour the water out?",
"image": null,
"type": "Multiple",
"answers": {
"items": [
{
"content": {
"contentType": "quizAnswer",
"id": "1c83a5af-74d8-4ec7-ab12-8cb10fd29f7b",
"properties": {
"value": "From the bottom of the container.",
"correct": null
}
},
"settings": null
},
{
"content": {
"contentType": "quizAnswer",
"id": "5d5d6e38-2c1e-498f-b197-9780c403be9a",
"properties": {
"value": "From the openings with black caps and filters.",
"correct": null
}
},
"settings": null
},
{
"content": {
"contentType": "quizAnswer",
"id": "633ff3b7-a248-4a7d-9821-116b53d2867f",
"properties": {
"value": "From the openings with the white caps.",
"correct": true
}
},
"settings": null
},
{
"content": {
"contentType": "quizAnswer",
"id": "4acd472c-4abe-47f2-883d-4331fc05f227",
"properties": {
"value": "From the spout on the side of the container.",
"correct": null
}
},
"settings": null
}
]
},
"additionalInfo": null
}
},
"settings": null
},
{
"content": {
"contentType": "quizQuestion",
"id": "ff3db9f3-865f-4a05-908f-4659d27eef3f",
"properties": {
"question": "How should you store the treated water?",
"image": null,
"type": null,
"answers": {
"items": [
{
"content": {
"contentType": "quizAnswer",
"id": "b48fd791-b50f-4dd5-b830-8cd94a2d9bcc",
"properties": {
"value": "Keep it in an open container.",
"correct": null
}
},
"settings": null
},
{
"content": {
"contentType": "quizAnswer",
"id": "71a76be5-2c48-4ee8-b064-df1fa1a51e19",
"properties": {
"value": "Keep it in a clean, closed pot away from the ground.",
"correct": true
}
},
"settings": null
},
{
"content": {
"contentType": "quizAnswer",
"id": "ab38df62-702c-414c-b256-62c7b4711bf7",
"properties": {
"value": "Keep it in a clear bottle.",
"correct": null
}
},
"settings": null
},
{
"content": {
"contentType": "quizAnswer",
"id": "5da36f71-0c73-4a98-b660-8c2ed9590af2",
"properties": {
"value": "Keep it in the Solvatten kit.",
"correct": null
}
},
"settings": null
}
]
},
"additionalInfo": null
}
},
"settings": null
},
{
"content": {
"contentType": "quizQuestion",
"id": "5fc01b65-24b1-4b3f-9d9a-5d964788ee38",
"properties": {
"question": "How might you use the hot water?",
"image": null,
"type": "Multiple",
"answers": {
"items": [
{
"content": {
"contentType": "quizAnswer",
"id": "097d36f5-5088-44ea-a733-9b94e536821f",
"properties": {
"value": "For personal hygiene, cooking food, or use it for tea or coffee.",
"correct": true
}
},
"settings": null
},
{
"content": {
"contentType": "quizAnswer",
"id": "c7c46ca5-d52e-44b1-bbff-966b79b9f55f",
"properties": {
"value": "For cleaning the roof, washing your phone, and drying clothes.",
"correct": null
}
},
"settings": null
},
{
"content": {
"contentType": "quizAnswer",
"id": "36f9aa21-6268-46d4-b83c-9e2dd0e48642",
"properties": {
"value": "For washing the dog, polishing furniture, and making ice cubes.",
"correct": null
}
},
"settings": null
},
{
"content": {
"contentType": "quizAnswer",
"id": "0f24066d-2442-4058-a127-21d4885a7947",
"properties": {
"value": "For watering plants, cleaning shoes, and filling a swimming pool.",
"correct": null
}
},
"settings": null
}
]
},
"additionalInfo": null
}
},
"settings": null
},
{
"content": {
"contentType": "quizQuestion",
"id": "081e6aa7-2c8e-45f9-8532-4c615e17f137",
"properties": {
"question": "Why should you never use sand when washing Solvatten?",
"image": null,
"type": "Multiple",
"answers": {
"items": [
{
"content": {
"contentType": "quizAnswer",
"id": "6be29d42-83a6-4258-b247-a837cd869667",
"properties": {
"value": "Sand helps clean the container faster.",
"correct": null
}
},
"settings": null
},
{
"content": {
"contentType": "quizAnswer",
"id": "361983cd-cb2b-4c51-be00-70fcbdc5294d",
"properties": {
"value": "Sand scratches the plastic and reduces the effectiveness of Solvatten.",
"correct": true
}
},
"settings": null
},
{
"content": {
"contentType": "quizAnswer",
"id": "e19fcadc-bc03-4da5-93a3-e7e8f71276d5",
"properties": {
"value": "Sand makes the container heat up too quickly.",
"correct": null
}
},
"settings": null
},
{
"content": {
"contentType": "quizAnswer",
"id": "f6f83ed9-9174-4640-afbd-1521e4c4e14e",
"properties": {
"value": "Sand clears the filters faster.",
"correct": null
}
},
"settings": null
}
]
},
"additionalInfo": null
}
},
"settings": null
},
{
"content": {
"contentType": "quizQuestion",
"id": "a353bd89-3090-4f72-9f02-2845526bc380",
"properties": {
"question": "What do you do when the weather is cloudy?",
"image": null,
"type": "Multiple",
"answers": {
"items": [
{
"content": {
"contentType": "quizAnswer",
"id": "0fddfdf2-000e-4640-a8d4-4fe783542384",
"properties": {
"value": "Nothing. You can still drink the water after a few hours.",
"correct": null
}
},
"settings": null
},
{
"content": {
"contentType": "quizAnswer",
"id": "f266f848-6d4a-4212-927d-6c7f4a0409ce",
"properties": {
"value": "Boil the water to make it clean and hot by using the source of energy at hand.",
"correct": true
}
},
"settings": null
},
{
"content": {
"contentType": "quizAnswer",
"id": "dbf23088-d602-4f12-b235-73a639ee55db",
"properties": {
"value": "Protect it with an umbrella.",
"correct": null
}
},
"settings": null
},
{