-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdoc
More file actions
2804 lines (2804 loc) · 163 KB
/
doc
File metadata and controls
2804 lines (2804 loc) · 163 KB
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
[2025-02-19T14:56:46.514Z] Document updating {
"type": "documents:updating",
"data": {
"current": 1,
"remaining": 0,
"total": 1,
"document": {
"document": {
"type": "life_funnel",
"lang": "en-us",
"uid": "hk-life-fe",
"tags": [],
"data": {
"meta_title": "Life Insurance and Savings | Quote Now | AXA Hong Kong",
"meta_description": "With our comprehensive life protection, we are here to help you build a promising future for yourself and your loved ones. Get a free consultation now.",
"meta_keywords": "life insurance, life insurance hong kong, life insurance hk, axa life insurance",
"spwl_promotion_text": [
{
"type": "paragraph",
"text": "",
"spans": []
}
],
"wealth_advance_promotion_text": [
{
"type": "paragraph",
"text": "",
"spans": []
}
],
"flexi_power_promotion_text": [
{
"type": "paragraph",
"text": "",
"spans": []
}
],
"smart_protector_ii_promotion_text": [
{
"type": "paragraph",
"text": "",
"spans": []
}
],
"fortune_protector_life_insurance_promotion_text": [
{
"type": "paragraph",
"text": "",
"spans": []
}
],
"higher_protection_disclaimer": [
{
"type": "o-list-item",
"text": "a. “age 100” refers to the policy anniversary on or immediately following the insured’s 100th birthday, whichever the earlier.\nb. \"age 138\" refers to the policy anniversary on or immediately following the insured's 138th birthday, whichever the earlier.",
"spans": []
},
{
"type": "o-list-item",
"text": "This projected value is calculated based on the information provided by you about the insured, including age, gender, smoking habit and the protection amount needed, and it is rounded to the nearest HK$1,000. It may include non-guaranteed benefits which are projected using the Company’s current dividend scale and/or interest rate (as the case may be). The dividend scale and interest rate are not guaranteed and may be changed by the Company from time to time. The actual values may be higher or lower than those illustrated. Under some circumstances, the non-guaranteed benefits may be zero.",
"spans": []
},
{
"type": "o-list-item",
"text": "The calculation of this projected value assumes that i) monthly premium payment mode is chosen and all premiums are paid in full when due and as planned; ii) standard premium is applied (the insured is not being classified as a special class); iii) neither death benefit nor surrender value has been paid or becomes payable before the policy anniversaries stated; iv) no withdrawals have been made; v) there is no indebtedness under the policy; vi) the sum insured of the policy remains unchanged throughout the contract term of the policy; vii) there is no supplement attached to the policy throughout the contract term of the policy.",
"spans": []
},
{
"type": "o-list-item",
"text": "All premium shown above are calculated based on an insured with nationality and residency in Hong Kong. The premiums calculated are for reference only and LifeDelight offers USD policy currency only. The amount in this webpage is converted to HKD in an preset exchange rate of 1 USD = 8 HKD for illustrative propose only. The actual amounts may be different from those illustrated. The premium is calculated with reference to a number of factors including but not limited to the age, gender, smoking habit and risk class of the insured at the time of policy issuance.",
"spans": []
},
{
"type": "paragraph",
"text": "Remarks:",
"spans": [
{
"start": 0,
"end": 8,
"type": "strong"
}
]
},
{
"type": "paragraph",
"text": "Age selected shall be based on the age of the insured on his or her last birthday.",
"spans": []
},
{
"type": "paragraph",
"text": "Figures in relation to monthly premium are rounded to 1 decimal place.",
"spans": []
},
{
"type": "paragraph",
"text": "Premium excludes insurance levy collected by the Insurance Authority.",
"spans": []
},
{
"type": "paragraph",
"text": "To understand more about the non-guaranteed benefits, please click here to view the “Participating Policy Fact Sheet”.",
"spans": [
{
"start": 67,
"end": 71,
"type": "strong"
},
{
"start": 67,
"end": 71,
"type": "hyperlink",
"data": {
"link_type": "Document"
}
}
]
},
{
"type": "paragraph",
"text": "Information on this webpage is for reference only, and not intended to be a complete description of the applicable terms and conditions. Please refer to the product brochure and policy contract for detailed terms and conditions. You should not purchase a policy based on the information on this website alone.",
"spans": []
}
],
"protection_saving_disclaimer": [
{
"type": "o-list-item",
"text": "The guaranteed percentage and schedule of guaranteed cash coupon are different for plans with different premium payment period, please refer to the relevant product brochure for details.",
"spans": []
},
{
"type": "o-list-item",
"text": "“age 100” refers to the policy anniversary on or immediately following the insured’s 100th birthday, whichever the earlier.",
"spans": []
},
{
"type": "o-list-item",
"text": "This projected value is calculated based on the information provided by you about the insured, including age, gender, smoking habit and the amount of monthly savings, and it is rounded to the nearest HK$1,000. It may include non-guaranteed benefits which are projected using the Company’s current dividend scale and/or interest rate (as the case may be). The dividend scale and interest rate are not guaranteed and may be changed by the Company from time to time. The actual values may be higher or lower than those illustrated. Under some circumstances, the non-guaranteed benefits may be zero.",
"spans": []
},
{
"type": "o-list-item",
"text": "The calculation of this projected value assumes that i) monthly premium payment mode is chosen and all premiums are paid in full when due and as planned; ii) standard premium is applied (the insured is not being classified as a special class); iii) neither death benefit nor surrender value has been paid or becomes payable before the policy anniversaries stated; iv) no withdrawals have been made; v) there is no indebtedness under the policy; vi) the sum insured of the policy remains unchanged throughout the contract term of the policy; vii) there is no supplement attached to the policy throughout the contract term of the policy.",
"spans": []
},
{
"type": "o-list-item",
"text": "All premium shown above are calculated based on an insured with nationality and residency in Hong Kong. The premiums calculated are for reference only and the actual amounts may be different from those illustrated. The premium is calculated with reference to a number of factors including but not limited to the age, gender, smoking habit and risk class of the insured at the time of policy issuance.",
"spans": []
},
{
"type": "paragraph",
"text": "Remarks:",
"spans": [
{
"start": 0,
"end": 8,
"type": "strong"
}
]
},
{
"type": "paragraph",
"text": "Age selected shall be based on the age of the insured on his or her last birthday.",
"spans": []
},
{
"type": "paragraph",
"text": "Premium excludes insurance levy collected by the Insurance Authority.",
"spans": []
},
{
"type": "paragraph",
"text": "To understand more about the non-guaranteed benefits, please click here to view the “Participating Policy Fact Sheet”.",
"spans": [
{
"start": 67,
"end": 71,
"type": "strong"
},
{
"start": 67,
"end": 71,
"type": "hyperlink",
"data": {
"link_type": "Document"
}
}
]
},
{
"type": "paragraph",
"text": "Information on this webpage is for reference only, and not intended to be a complete description of the applicable terms and conditions. Please refer to the product brochure and policy contract for detailed terms and conditions. You should not purchase a policy based on the information on this website alone.",
"spans": []
}
],
"higher_saving_disclaimer": [
{
"type": "o-list-item",
"text": "“6 Pay 12” refers to the plan with premium payment term of 6 years and an accumulation period of 12 years. Please refer to the product brochure for details on other available options.",
"spans": []
},
{
"type": "o-list-item",
"text": " “age 100” refers to the policy anniversary on or immediately following the insured’s 100th birthday, whichever the earlier, except for the following products: For Wealth Genius Income Plan, “Up to age 138” refers to the day before the maturity date (the maturity date is the policy anniversary on or immediately following the initial insured’s 138th birthday, whichever is earlier) ; for Flexi Power Saver, Wealth Ultra Savings Plan, FortuneXtra Savings Plan, Max Wealth Insurance Plan and WealthAhead Savings Plan, “age 138” refers to the policy anniversary on or immediately following the latest insured’s 138th birthday, whichever the earlier ; for Wealth Advance Savings Series II, “age 100” refers to the policy anniversary on or immediately following the latest insured’s 100th birthday, whichever the earlier.",
"spans": []
},
{
"type": "o-list-item",
"text": "It is calculated based on the information provided by you about the insured, including age, gender, smoking habit and the amount of monthly savings, and it is rounded to the nearest HKD1,000. It may include non-guaranteed benefits which are projected using the Company’s current dividend scale and/or interest rate (as the case may be). The dividend scale and interest rate are not guaranteed and may be changed by the Company from time to time. The actual values may be higher or lower than those illustrated. Under some circumstances, the non-guaranteed benefits may be zero.",
"spans": []
},
{
"type": "o-list-item",
"text": "The calculation of this projected value assumes that i) monthly premium payment mode is chosen and all premiums are paid in full when due and as planned; ii) standard premium is applied (the insured is not being classified as a special class); iii) neither death benefit nor surrender value has been paid or becomes payable before the policy anniversaries stated; iv) no withdrawals have been made; v) there is no indebtedness under the policy; vi) the notional amount of the policy remains unchanged throughout the contract term of the policy, except for the notional amount adjustment# for Flexi Power Saver; vii) there is no supplement attached to the policy throughout the contract term of the policy.\n#For Flexi Power Saver, notional amount adjustment is the adjustment made to the notional amount of the basic plan by multiplying the notional amount as at the end of the accumulation period by the percentage of the policy value allocated to the Growth Account on the first day of the flexi saving period.",
"spans": [
{
"start": 586,
"end": 587,
"type": "label",
"data": {
"label": "Sup"
}
},
{
"start": 706,
"end": 707,
"type": "label",
"data": {
"label": "Sup"
}
}
]
},
{
"type": "o-list-item",
"text": "For Flexi Power Saver, it is also assumed that i) the policy value at the end of the accumulation period will be allocated to the Growth Account and the Flexi Account on the first day of the flexi saving period according to the default Dual Account allocation percentage; ii) Growth Account Lock-in Option has never been exercised.",
"spans": []
},
{
"type": "o-list-item",
"text": "Max Wealth Insurance Plan, Wealth Ultra Savings Plan, Wealth Genius Income Plan, Wealth Advance Savings Series II and Flexi Power Saver are denominated in USD only. FortuneXtra Savings Plan and WealthAhead Savings Plan offers a choice of up to 9 and 3 policy currencies (both including HKD), respectively, please refer to the respective product brochure for details.",
"spans": []
},
{
"type": "o-list-item",
"text": "The premium and projected policy values of all basic plans shown above are projected based on USD being the policy currency and these figures are converted to HKD based on a conversion ratio of 1 USD = 8 HKD, and are for illustrative purposes only.",
"spans": []
},
{
"type": "o-list-item",
"text": "All premium shown above are calculated based on an insured with nationality and residency in Hong Kong. The premiums calculated are for reference only and the actual amounts may be different from those illustrated. The premium is calculated with reference to a number of factors including but not limited to the age, gender, smoking habit and risk class of the insured at the time of policy issuance.",
"spans": []
},
{
"type": "o-list-item",
"text": "Subject to terms and conditions, please refer to the promotional leaflet of AXA “WealthAhead Savings Plan Guaranteed Preferential Interest Rate” Programme for details. ",
"spans": []
},
{
"type": "paragraph",
"text": "Remarks:",
"spans": [
{
"start": 0,
"end": 8,
"type": "strong"
}
]
},
{
"type": "paragraph",
"text": "Age selected shall be based on the age of the insured on his or her last birthday.",
"spans": []
},
{
"type": "paragraph",
"text": "Premium excludes insurance levy collected by the Insurance Authority.",
"spans": []
},
{
"type": "paragraph",
"text": "To understand more about the non-guaranteed benefits, please click here to view the “Participating Policy Fact Sheet”.",
"spans": [
{
"start": 67,
"end": 71,
"type": "hyperlink",
"data": {
"link_type": "Document"
}
}
]
},
{
"type": "paragraph",
"text": "Information on this webpage is for reference only, and not intended to be a complete description of the applicable terms and conditions. Please refer to the product brochure and policy contract for detailed terms and conditions. You should not purchase a policy based on the information on this website alone.",
"spans": []
}
],
"retirement_disclaimer": [
{
"type": "o-list-item",
"text": "The plan is denominated in USD only. Figures are converted to HKD based on a conversion ratio of 1 USD = 8 HKD, and are for illustrative purposes only.",
"spans": []
},
{
"type": "o-list-item",
"text": "It is calculated based on the information provided by you about the insured and the plan, including age, gender, premium payment term, annuity period, annuity start age and the amount of monthly savings, and it is rounded to the nearest whole number.",
"spans": [
{
"start": 76,
"end": 88,
"type": "strong"
},
{
"start": 113,
"end": 149,
"type": "strong"
}
]
},
{
"type": "o-list-item",
"text": "This may include non-guaranteed benefits (i.e. monthly non-guaranteed annuity payment and non-guaranteed terminal dividend) which are projected using the Company’s current dividend scale and/or interest rate (as the case may be). The dividend scale and interest rate are not guaranteed and may be changed by the Company from time to time. The actual values may be higher or lower than those illustrated. Under some circumstances, the non-guaranteed benefits may be zero. In particular, the actual amount of monthly non-guaranteed annuity payment may increase or decrease during the annuity term.",
"spans": []
},
{
"type": "o-list-item",
"text": "The calculation of this projected value assumes that i) monthly premium payment mode is chosen and all premiums are paid in full when due and as planned; ii) the monthly annuity payment (which comprises of monthly guaranteed annuity payment and monthly non-guaranteed annuity payment) are left with us for interest accumulation; iii) no death benefit, surrender value or Dementia Advance Benefit has been paid before or becomes payable before the policy anniversaries stated; iv) no withdrawal has been made before; v) there is no indebtedness under the policy; vi) the notional amount of the policy remains unchanged throughout the contract term of the policy; and vii) no levy on insurance premium is included throughout the term of the policy.",
"spans": []
},
{
"type": "o-list-item",
"text": "The premiums calculated are for reference only and the actual amounts may be different from those illustrated. The premium is calculated with reference to a number of factors including but not limited to the age, gender of the insured and annuity start age at the time of policy issuance.",
"spans": []
}
],
"retirement_planning_disclaimer": [
{
"type": "o-list-item",
"text": "The premium and projected policy values of all basic plans shown above are projected based on USD being the policy currency and these figures are converted to HKD based on a conversion ratio of 1 USD = 8 HKD, and are for illustrative purposes only.",
"spans": []
},
{
"type": "o-list-item",
"text": "It is calculated based on the information provided by you about the insured and the plan, including age, gender, premium payment term, annuity period, annuity start age and the amount of monthly savings, and it is rounded to the nearest whole number.",
"spans": [
{
"start": 76,
"end": 88,
"type": "strong"
},
{
"start": 113,
"end": 149,
"type": "strong"
}
]
},
{
"type": "o-list-item",
"text": "This may include non-guaranteed benefits (i.e. monthly non-guaranteed annuity payment and non-guaranteed terminal dividend) which are projected using the Company’s current dividend scale and/or interest rate (as the case may be). The dividend scale and interest rate are not guaranteed and may be changed by the Company from time to time. The actual values may be higher or lower than those illustrated. Under some circumstances, the non-guaranteed benefits may be zero. In particular, the actual amount of monthly non-guaranteed annuity payment may increase or decrease during the annuity term.",
"spans": []
},
{
"type": "o-list-item",
"text": "The calculation of this projected value assumes that i) monthly premium payment mode is chosen and all premiums are paid in full when due and as planned; ii) the monthly annuity payment (which comprises of monthly guaranteed annuity payment and monthly non-guaranteed annuity payment) are left with us for interest accumulation; iii) no death benefit, surrender value or Dementia Advance Benefit has been paid before or becomes payable before the policy anniversaries stated; iv) no withdrawal has been made before; v) there is no indebtedness under the policy; vi) the notional amount of the policy remains unchanged throughout the contract term of the policy; and vii) no levy on insurance premium is included throughout the term of the policy.",
"spans": []
},
{
"type": "o-list-item",
"text": "The premiums calculated are for reference only and the actual amounts may be different from those illustrated. The premium is calculated with reference to a number of factors including but not limited to the age, gender of the insured and annuity start age at the time of policy issuance.",
"spans": []
},
{
"type": "o-list-item",
"text": "For eligibility of tax deductions, please refer to Tax deduction under the section Important information and the website of the Inland Revenue Department (“IRD”) or to contact the IRD directly for any tax related enquiries.",
"spans": []
}
],
"retirement_income_disclaimer": [
{
"type": "o-list-item",
"text": "It is calculated based on the information provided by you about the insured and the plan, including age, gender and the amount of monthly spending, and it is rounded to the nearest whole number.",
"spans": []
},
{
"type": "o-list-item",
"text": "This may include non-guaranteed benefit (i.e. non-guaranteed terminal dividend) which is projected using the Company’s dividend scale determined under the current assumed investment return and are not guaranteed. The dividend scale may be changed by the Company from time to time. The actual amounts payable may change anytime with the values being higher or lower than those illustrated. Under some circumstances, the non-guaranteed benefits may be zero. ",
"spans": []
},
{
"type": "o-list-item",
"text": "The calculation of this projected value assumes that i) all premiums are paid in full when due and as planned; ii) neither dementia companion benefit, death benefit nor surrender value has been paid before or becomes payable; iii) no withdrawal has been made before; iv) the notional amount of the policy remain unchanged throughout the contract term of the policy; v) no terminal dividend lock-in option has been exercised; and vi) no levy on insurance premiums is included throughout the term of the policy. ",
"spans": []
},
{
"type": "o-list-item",
"text": "The premiums calculated are for reference only and the actual amounts may be different from those illustrated. The premium is calculated with reference to a number of factors including but not limited to the age, gender of the insured and the monthly guaranteed annuity payment at the time of policy issuance.",
"spans": []
}
]
},
"id": "Z7XxLRIAAC0ADXRE"
},
"title": "Untitled Document",
"originalPrismicDocument": {
"id": "YLCjlRcAADMAeHQN",
"uid": "hk-life-fe",
"type": "life_funnel",
"href": "https://hk-axa-web-2020.cdn.axa-contento-118412.eu/api/v2/documents/search?ref=Z7WfXxIAACYA0zf4&q=%5B%5B%3Ad+%3D+at%28document.id%2C+%22YLCjlRcAADMAeHQN%22%29+%5D%5D",
"tags": [],
"first_publication_date": "2021-12-02T03:19:42+0000",
"last_publication_date": "2025-01-15T01:06:50+0000",
"slugs": [
"hk-life-fe"
],
"linked_documents": [
{
"id": "YLCjlRcAADMAeHQN",
"tags": [],
"type": "life_funnel",
"slug": "hk-life-fe",
"lang": "en-us"
},
{
"id": "YLCjlRcAADMAeHQN",
"tags": [],
"type": "life_funnel",
"slug": "hk-life-fe",
"lang": "en-us"
},
{
"id": "YLCjlRcAADMAeHQN",
"tags": [],
"type": "life_funnel",
"slug": "hk-life-fe",
"lang": "en-us"
}
],
"lang": "en-us",
"alternate_languages": [
{
"id": "YLCkqBcAACwAeHjW",
"uid": "hk-life-fe",
"type": "life_funnel",
"lang": "zh-hk"
}
],
"data": {
"meta_title": "Life Insurance and Savings | Quote Now | AXA Hong Kong",
"meta_description": "With our comprehensive life protection, we are here to help you build a promising future for yourself and your loved ones. Get a free consultation now.",
"meta_keywords": "life insurance, life insurance hong kong, life insurance hk, axa life insurance",
"spwl_promotion_text": [
{
"type": "paragraph",
"text": "",
"spans": []
}
],
"wealth_advance_promotion_text": [
{
"type": "paragraph",
"text": "",
"spans": []
}
],
"flexi_power_promotion_text": [
{
"type": "paragraph",
"text": "",
"spans": []
}
],
"smart_protector_ii_promotion_text": [
{
"type": "paragraph",
"text": "",
"spans": []
}
],
"fortune_protector_life_insurance_promotion_text": [
{
"type": "paragraph",
"text": "",
"spans": []
}
],
"higher_protection_disclaimer": [
{
"type": "o-list-item",
"text": "a. “age 100” refers to the policy anniversary on or immediately following the insured’s 100th birthday, whichever the earlier.\nb. \"age 138\" refers to the policy anniversary on or immediately following the insured's 138th birthday, whichever the earlier.",
"spans": []
},
{
"type": "o-list-item",
"text": "This projected value is calculated based on the information provided by you about the insured, including age, gender, smoking habit and the protection amount needed, and it is rounded to the nearest HK$1,000. It may include non-guaranteed benefits which are projected using the Company’s current dividend scale and/or interest rate (as the case may be). The dividend scale and interest rate are not guaranteed and may be changed by the Company from time to time. The actual values may be higher or lower than those illustrated. Under some circumstances, the non-guaranteed benefits may be zero.",
"spans": []
},
{
"type": "o-list-item",
"text": "The calculation of this projected value assumes that i) monthly premium payment mode is chosen and all premiums are paid in full when due and as planned; ii) standard premium is applied (the insured is not being classified as a special class); iii) neither death benefit nor surrender value has been paid or becomes payable before the policy anniversaries stated; iv) no withdrawals have been made; v) there is no indebtedness under the policy; vi) the sum insured of the policy remains unchanged throughout the contract term of the policy; vii) there is no supplement attached to the policy throughout the contract term of the policy.",
"spans": []
},
{
"type": "o-list-item",
"text": "All premium shown above are calculated based on an insured with nationality and residency in Hong Kong. The premiums calculated are for reference only and LifeDelight offers USD policy currency only. The amount in this webpage is converted to HKD in an preset exchange rate of 1 USD = 8 HKD for illustrative propose only. The actual amounts may be different from those illustrated. The premium is calculated with reference to a number of factors including but not limited to the age, gender, smoking habit and risk class of the insured at the time of policy issuance.",
"spans": []
},
{
"type": "paragraph",
"text": "Remarks:",
"spans": [
{
"start": 0,
"end": 8,
"type": "strong"
}
]
},
{
"type": "paragraph",
"text": "Age selected shall be based on the age of the insured on his or her last birthday.",
"spans": []
},
{
"type": "paragraph",
"text": "Figures in relation to monthly premium are rounded to 1 decimal place.",
"spans": []
},
{
"type": "paragraph",
"text": "Premium excludes insurance levy collected by the Insurance Authority.",
"spans": []
},
{
"type": "paragraph",
"text": "To understand more about the non-guaranteed benefits, please click here to view the “Participating Policy Fact Sheet”.",
"spans": [
{
"start": 67,
"end": 71,
"type": "strong"
},
{
"start": 67,
"end": 71,
"type": "hyperlink",
"data": {
"id": "XoP7AQ8AAKm6Zchj",
"type": "article_page",
"tags": [
"article:notice"
],
"slug": "participating-policy-fact-sheets",
"lang": "en-us",
"uid": "participating-policy-fact-sheets",
"link_type": "Document",
"isBroken": false
}
}
]
},
{
"type": "paragraph",
"text": "Information on this webpage is for reference only, and not intended to be a complete description of the applicable terms and conditions. Please refer to the product brochure and policy contract for detailed terms and conditions. You should not purchase a policy based on the information on this website alone.",
"spans": []
}
],
"protection_saving_disclaimer": [
{
"type": "o-list-item",
"text": "The guaranteed percentage and schedule of guaranteed cash coupon are different for plans with different premium payment period, please refer to the relevant product brochure for details.",
"spans": []
},
{
"type": "o-list-item",
"text": "“age 100” refers to the policy anniversary on or immediately following the insured’s 100th birthday, whichever the earlier.",
"spans": []
},
{
"type": "o-list-item",
"text": "This projected value is calculated based on the information provided by you about the insured, including age, gender, smoking habit and the amount of monthly savings, and it is rounded to the nearest HK$1,000. It may include non-guaranteed benefits which are projected using the Company’s current dividend scale and/or interest rate (as the case may be). The dividend scale and interest rate are not guaranteed and may be changed by the Company from time to time. The actual values may be higher or lower than those illustrated. Under some circumstances, the non-guaranteed benefits may be zero.",
"spans": []
},
{
"type": "o-list-item",
"text": "The calculation of this projected value assumes that i) monthly premium payment mode is chosen and all premiums are paid in full when due and as planned; ii) standard premium is applied (the insured is not being classified as a special class); iii) neither death benefit nor surrender value has been paid or becomes payable before the policy anniversaries stated; iv) no withdrawals have been made; v) there is no indebtedness under the policy; vi) the sum insured of the policy remains unchanged throughout the contract term of the policy; vii) there is no supplement attached to the policy throughout the contract term of the policy.",
"spans": []
},
{
"type": "o-list-item",
"text": "All premium shown above are calculated based on an insured with nationality and residency in Hong Kong. The premiums calculated are for reference only and the actual amounts may be different from those illustrated. The premium is calculated with reference to a number of factors including but not limited to the age, gender, smoking habit and risk class of the insured at the time of policy issuance.",
"spans": []
},
{
"type": "paragraph",
"text": "Remarks:",
"spans": [
{
"start": 0,
"end": 8,
"type": "strong"
}
]
},
{
"type": "paragraph",
"text": "Age selected shall be based on the age of the insured on his or her last birthday.",
"spans": []
},
{
"type": "paragraph",
"text": "Premium excludes insurance levy collected by the Insurance Authority.",
"spans": []
},
{
"type": "paragraph",
"text": "To understand more about the non-guaranteed benefits, please click here to view the “Participating Policy Fact Sheet”.",
"spans": [
{
"start": 67,
"end": 71,
"type": "strong"
},
{
"start": 67,
"end": 71,
"type": "hyperlink",
"data": {
"id": "XoP7AQ8AAKm6Zchj",
"type": "article_page",
"tags": [
"article:notice"
],
"slug": "participating-policy-fact-sheets",
"lang": "en-us",
"uid": "participating-policy-fact-sheets",
"link_type": "Document",
"isBroken": false
}
}
]
},
{
"type": "paragraph",
"text": "Information on this webpage is for reference only, and not intended to be a complete description of the applicable terms and conditions. Please refer to the product brochure and policy contract for detailed terms and conditions. You should not purchase a policy based on the information on this website alone.",
"spans": []
}
],
"higher_saving_disclaimer": [
{
"type": "o-list-item",
"text": "“6 Pay 12” refers to the plan with premium payment term of 6 years and an accumulation period of 12 years. Please refer to the product brochure for details on other available options.",
"spans": []
},
{
"type": "o-list-item",
"text": " “age 100” refers to the policy anniversary on or immediately following the insured’s 100th birthday, whichever the earlier, except for the following products: For Wealth Genius Income Plan, “Up to age 138” refers to the day before the maturity date (the maturity date is the policy anniversary on or immediately following the initial insured’s 138th birthday, whichever is earlier) ; for Flexi Power Saver, Wealth Ultra Savings Plan, FortuneXtra Savings Plan, Max Wealth Insurance Plan and WealthAhead Savings Plan, “age 138” refers to the policy anniversary on or immediately following the latest insured’s 138th birthday, whichever the earlier ; for Wealth Advance Savings Series II, “age 100” refers to the policy anniversary on or immediately following the latest insured’s 100th birthday, whichever the earlier.",
"spans": []
},
{
"type": "o-list-item",
"text": "It is calculated based on the information provided by you about the insured, including age, gender, smoking habit and the amount of monthly savings, and it is rounded to the nearest HKD1,000. It may include non-guaranteed benefits which are projected using the Company’s current dividend scale and/or interest rate (as the case may be). The dividend scale and interest rate are not guaranteed and may be changed by the Company from time to time. The actual values may be higher or lower than those illustrated. Under some circumstances, the non-guaranteed benefits may be zero.",
"spans": []
},
{
"type": "o-list-item",
"text": "The calculation of this projected value assumes that i) monthly premium payment mode is chosen and all premiums are paid in full when due and as planned; ii) standard premium is applied (the insured is not being classified as a special class); iii) neither death benefit nor surrender value has been paid or becomes payable before the policy anniversaries stated; iv) no withdrawals have been made; v) there is no indebtedness under the policy; vi) the notional amount of the policy remains unchanged throughout the contract term of the policy, except for the notional amount adjustment# for Flexi Power Saver; vii) there is no supplement attached to the policy throughout the contract term of the policy.\n#For Flexi Power Saver, notional amount adjustment is the adjustment made to the notional amount of the basic plan by multiplying the notional amount as at the end of the accumulation period by the percentage of the policy value allocated to the Growth Account on the first day of the flexi saving period.",
"spans": [
{
"start": 586,
"end": 587,
"type": "label",
"data": {
"label": "Sup"
}
},
{
"start": 706,
"end": 707,
"type": "label",
"data": {
"label": "Sup"
}
}
]
},
{
"type": "o-list-item",
"text": "For Flexi Power Saver, it is also assumed that i) the policy value at the end of the accumulation period will be allocated to the Growth Account and the Flexi Account on the first day of the flexi saving period according to the default Dual Account allocation percentage; ii) Growth Account Lock-in Option has never been exercised.",
"spans": []
},
{
"type": "o-list-item",
"text": "Max Wealth Insurance Plan, Wealth Ultra Savings Plan, Wealth Genius Income Plan, Wealth Advance Savings Series II and Flexi Power Saver are denominated in USD only. FortuneXtra Savings Plan and WealthAhead Savings Plan offers a choice of up to 9 and 3 policy currencies (both including HKD), respectively, please refer to the respective product brochure for details.",
"spans": []
},
{
"type": "o-list-item",
"text": "The premium and projected policy values of all basic plans shown above are projected based on USD being the policy currency and these figures are converted to HKD based on a conversion ratio of 1 USD = 8 HKD, and are for illustrative purposes only.",
"spans": []
},
{
"type": "o-list-item",
"text": "All premium shown above are calculated based on an insured with nationality and residency in Hong Kong. The premiums calculated are for reference only and the actual amounts may be different from those illustrated. The premium is calculated with reference to a number of factors including but not limited to the age, gender, smoking habit and risk class of the insured at the time of policy issuance.",
"spans": []
},
{
"type": "o-list-item",
"text": "Subject to terms and conditions, please refer to the promotional leaflet of AXA “WealthAhead Savings Plan Guaranteed Preferential Interest Rate” Programme for details. ",
"spans": []
},
{
"type": "paragraph",
"text": "Remarks:",
"spans": [
{
"start": 0,
"end": 8,
"type": "strong"
}
]
},
{
"type": "paragraph",
"text": "Age selected shall be based on the age of the insured on his or her last birthday.",
"spans": []
},
{
"type": "paragraph",
"text": "Premium excludes insurance levy collected by the Insurance Authority.",
"spans": []
},
{
"type": "paragraph",
"text": "To understand more about the non-guaranteed benefits, please click here to view the “Participating Policy Fact Sheet”.",
"spans": [
{
"start": 67,
"end": 71,
"type": "hyperlink",
"data": {
"id": "XoP7AQ8AAKm6Zchj",
"type": "article_page",
"tags": [
"article:notice"
],
"slug": "participating-policy-fact-sheets",
"lang": "en-us",
"uid": "participating-policy-fact-sheets",
"link_type": "Document",
"isBroken": false
}
}
]
},
{
"type": "paragraph",
"text": "Information on this webpage is for reference only, and not intended to be a complete description of the applicable terms and conditions. Please refer to the product brochure and policy contract for detailed terms and conditions. You should not purchase a policy based on the information on this website alone.",
"spans": []
}
],
"retirement_disclaimer": [
{
"type": "o-list-item",
"text": "The plan is denominated in USD only. Figures are converted to HKD based on a conversion ratio of 1 USD = 8 HKD, and are for illustrative purposes only.",
"spans": []
},
{
"type": "o-list-item",
"text": "It is calculated based on the information provided by you about the insured and the plan, including age, gender, premium payment term, annuity period, annuity start age and the amount of monthly savings, and it is rounded to the nearest whole number.",
"spans": [
{
"start": 76,
"end": 88,
"type": "strong"
},
{
"start": 113,
"end": 149,
"type": "strong"
}
]
},
{
"type": "o-list-item",
"text": "This may include non-guaranteed benefits (i.e. monthly non-guaranteed annuity payment and non-guaranteed terminal dividend) which are projected using the Company’s current dividend scale and/or interest rate (as the case may be). The dividend scale and interest rate are not guaranteed and may be changed by the Company from time to time. The actual values may be higher or lower than those illustrated. Under some circumstances, the non-guaranteed benefits may be zero. In particular, the actual amount of monthly non-guaranteed annuity payment may increase or decrease during the annuity term.",
"spans": []
},
{
"type": "o-list-item",
"text": "The calculation of this projected value assumes that i) monthly premium payment mode is chosen and all premiums are paid in full when due and as planned; ii) the monthly annuity payment (which comprises of monthly guaranteed annuity payment and monthly non-guaranteed annuity payment) are left with us for interest accumulation; iii) no death benefit, surrender value or Dementia Advance Benefit has been paid before or becomes payable before the policy anniversaries stated; iv) no withdrawal has been made before; v) there is no indebtedness under the policy; vi) the notional amount of the policy remains unchanged throughout the contract term of the policy; and vii) no levy on insurance premium is included throughout the term of the policy.",
"spans": []
},
{
"type": "o-list-item",
"text": "The premiums calculated are for reference only and the actual amounts may be different from those illustrated. The premium is calculated with reference to a number of factors including but not limited to the age, gender of the insured and annuity start age at the time of policy issuance.",
"spans": []
}
],
"retirement_planning_disclaimer": [
{
"type": "o-list-item",
"text": "The premium and projected policy values of all basic plans shown above are projected based on USD being the policy currency and these figures are converted to HKD based on a conversion ratio of 1 USD = 8 HKD, and are for illustrative purposes only.",
"spans": []
},
{
"type": "o-list-item",
"text": "It is calculated based on the information provided by you about the insured and the plan, including age, gender, premium payment term, annuity period, annuity start age and the amount of monthly savings, and it is rounded to the nearest whole number.",
"spans": [
{
"start": 76,
"end": 88,
"type": "strong"
},
{
"start": 113,
"end": 149,
"type": "strong"
}
]
},
{
"type": "o-list-item",
"text": "This may include non-guaranteed benefits (i.e. monthly non-guaranteed annuity payment and non-guaranteed terminal dividend) which are projected using the Company’s current dividend scale and/or interest rate (as the case may be). The dividend scale and interest rate are not guaranteed and may be changed by the Company from time to time. The actual values may be higher or lower than those illustrated. Under some circumstances, the non-guaranteed benefits may be zero. In particular, the actual amount of monthly non-guaranteed annuity payment may increase or decrease during the annuity term.",
"spans": []
},
{
"type": "o-list-item",
"text": "The calculation of this projected value assumes that i) monthly premium payment mode is chosen and all premiums are paid in full when due and as planned; ii) the monthly annuity payment (which comprises of monthly guaranteed annuity payment and monthly non-guaranteed annuity payment) are left with us for interest accumulation; iii) no death benefit, surrender value or Dementia Advance Benefit has been paid before or becomes payable before the policy anniversaries stated; iv) no withdrawal has been made before; v) there is no indebtedness under the policy; vi) the notional amount of the policy remains unchanged throughout the contract term of the policy; and vii) no levy on insurance premium is included throughout the term of the policy.",
"spans": []
},
{
"type": "o-list-item",
"text": "The premiums calculated are for reference only and the actual amounts may be different from those illustrated. The premium is calculated with reference to a number of factors including but not limited to the age, gender of the insured and annuity start age at the time of policy issuance.",
"spans": []
},
{
"type": "o-list-item",
"text": "For eligibility of tax deductions, please refer to Tax deduction under the section Important information and the website of the Inland Revenue Department (“IRD”) or to contact the IRD directly for any tax related enquiries.",
"spans": []
}
],
"retirement_income_disclaimer": [
{
"type": "o-list-item",
"text": "It is calculated based on the information provided by you about the insured and the plan, including age, gender and the amount of monthly spending, and it is rounded to the nearest whole number.",
"spans": []
},
{
"type": "o-list-item",
"text": "This may include non-guaranteed benefit (i.e. non-guaranteed terminal dividend) which is projected using the Company’s dividend scale determined under the current assumed investment return and are not guaranteed. The dividend scale may be changed by the Company from time to time. The actual amounts payable may change anytime with the values being higher or lower than those illustrated. Under some circumstances, the non-guaranteed benefits may be zero. ",
"spans": []
},
{
"type": "o-list-item",
"text": "The calculation of this projected value assumes that i) all premiums are paid in full when due and as planned; ii) neither dementia companion benefit, death benefit nor surrender value has been paid before or becomes payable; iii) no withdrawal has been made before; iv) the notional amount of the policy remain unchanged throughout the contract term of the policy; v) no terminal dividend lock-in option has been exercised; and vi) no levy on insurance premiums is included throughout the term of the policy. ",
"spans": []
},
{
"type": "o-list-item",
"text": "The premiums calculated are for reference only and the actual amounts may be different from those illustrated. The premium is calculated with reference to a number of factors including but not limited to the age, gender of the insured and the monthly guaranteed annuity payment at the time of policy issuance.",
"spans": []
}
]
}
}
}
}
}
[2025-02-19T14:56:48.780Z] Migration Error in batch 1: {
"batchNumber": 1,
"totalDocuments": 1,
"documents": [
{
"id": "YLCjlRcAADMAeHQN",
"uid": "hk-life-fe",
"name": "Untitled Document"
}
],
"error": {
"message": "An invalid API response was returned",
"response": [
{
"property": "data.higher_protection_disclaimer.8.spans.1",
"value": {
"start": 67,
"end": 71,
"type": "hyperlink",
"data": {
"link_type": "Any"
}
},
"error": "Hyperlink span must contain a 'data' field with link data"
},
{
"property": "data.protection_saving_disclaimer.8.spans.1",
"value": {
"start": 67,
"end": 71,
"type": "hyperlink",
"data": {
"link_type": "Any"
}
},
"error": "Hyperlink span must contain a 'data' field with link data"
},
{
"property": "data.higher_saving_disclaimer.12.spans.0",
"value": {
"start": 67,
"end": 71,
"type": "hyperlink",
"data": {
"link_type": "Any"
}
},
"error": "Hyperlink span must contain a 'data' field with link data"
}
],
"url": "https://migration.prismic.io/documents/Z7XxLRIAAC0ADXRE"
}
}
[2025-02-20T13:01:39.399Z] Document updating {
"type": "documents:updating",
"data": {
"current": 1,
"remaining": 0,
"total": 1,
"document": {
"document": {
"type": "life_funnel",
"lang": "en-us",
"uid": "hk-life-fe",
"tags": [],
"data": {
"meta_title": "Life Insurance and Savings | Quote Now | AXA Hong Kong",
"meta_description": "With our comprehensive life protection, we are here to help you build a promising future for yourself and your loved ones. Get a free consultation now.",
"meta_keywords": "life insurance, life insurance hong kong, life insurance hk, axa life insurance",
"spwl_promotion_text": [
{
"type": "paragraph",
"text": "",
"spans": []
}
],
"wealth_advance_promotion_text": [
{
"type": "paragraph",
"text": "",
"spans": []
}
],
"flexi_power_promotion_text": [
{
"type": "paragraph",
"text": "",
"spans": []
}
],
"smart_protector_ii_promotion_text": [
{
"type": "paragraph",
"text": "",
"spans": []
}
],
"fortune_protector_life_insurance_promotion_text": [
{
"type": "paragraph",
"text": "",
"spans": []
}
],
"higher_protection_disclaimer": [
{
"type": "o-list-item",
"text": "a. “age 100” refers to the policy anniversary on or immediately following the insured’s 100th birthday, whichever the earlier.\nb. \"age 138\" refers to the policy anniversary on or immediately following the insured's 138th birthday, whichever the earlier.",
"spans": []
},
{
"type": "o-list-item",
"text": "This projected value is calculated based on the information provided by you about the insured, including age, gender, smoking habit and the protection amount needed, and it is rounded to the nearest HK$1,000. It may include non-guaranteed benefits which are projected using the Company’s current dividend scale and/or interest rate (as the case may be). The dividend scale and interest rate are not guaranteed and may be changed by the Company from time to time. The actual values may be higher or lower than those illustrated. Under some circumstances, the non-guaranteed benefits may be zero.",
"spans": []
},
{
"type": "o-list-item",
"text": "The calculation of this projected value assumes that i) monthly premium payment mode is chosen and all premiums are paid in full when due and as planned; ii) standard premium is applied (the insured is not being classified as a special class); iii) neither death benefit nor surrender value has been paid or becomes payable before the policy anniversaries stated; iv) no withdrawals have been made; v) there is no indebtedness under the policy; vi) the sum insured of the policy remains unchanged throughout the contract term of the policy; vii) there is no supplement attached to the policy throughout the contract term of the policy.",
"spans": []
},
{
"type": "o-list-item",
"text": "All premium shown above are calculated based on an insured with nationality and residency in Hong Kong. The premiums calculated are for reference only and LifeDelight offers USD policy currency only. The amount in this webpage is converted to HKD in an preset exchange rate of 1 USD = 8 HKD for illustrative propose only. The actual amounts may be different from those illustrated. The premium is calculated with reference to a number of factors including but not limited to the age, gender, smoking habit and risk class of the insured at the time of policy issuance.",
"spans": []
},
{
"type": "paragraph",
"text": "Remarks:",
"spans": [