@ak--47/dungeon-master 1.0.0 → 1.1.0

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.
Files changed (103) hide show
  1. package/README.md +7 -7
  2. package/dungeons/technical/ad-spend-schema.json +128 -0
  3. package/dungeons/technical/ad-spend.js +116 -0
  4. package/dungeons/technical/anonymous-users-schema.json +91 -0
  5. package/dungeons/technical/anonymous-users.js +102 -0
  6. package/dungeons/technical/array-of-object-lookup-schema.json +191 -0
  7. package/dungeons/{array-of-object-lookup.js → technical/array-of-object-lookup.js} +11 -4
  8. package/dungeons/technical/experiments-schema.json +197 -0
  9. package/dungeons/technical/experiments.js +168 -0
  10. package/dungeons/technical/foobar-schema.json +362 -0
  11. package/dungeons/{foobar.js → technical/foobar.js} +2 -2
  12. package/dungeons/technical/group-analytics-schema.json +149 -0
  13. package/dungeons/technical/group-analytics.js +151 -0
  14. package/dungeons/technical/mirror-strategies-schema.json +84 -0
  15. package/dungeons/technical/mirror-strategies.js +126 -0
  16. package/dungeons/technical/nested-objects-schema.json +145 -0
  17. package/dungeons/technical/nested-objects.js +207 -0
  18. package/dungeons/technical/retention-cadence-schema.json +37 -0
  19. package/dungeons/{retention-cadence.js → technical/retention-cadence.js} +1 -1
  20. package/dungeons/technical/sanity-schema.json +185 -0
  21. package/dungeons/{sanity.js → technical/sanity.js} +3 -2
  22. package/dungeons/technical/scale-test-schema.json +70 -0
  23. package/dungeons/technical/scale-test.js +90 -0
  24. package/dungeons/technical/scd-schema.json +270 -0
  25. package/dungeons/{scd.js → technical/scd.js} +19 -10
  26. package/dungeons/technical/simple-schema.json +278 -0
  27. package/dungeons/{simple.js → technical/simple.js} +6 -6
  28. package/dungeons/technical/simplest-schema.json +635 -0
  29. package/dungeons/{simplest.js → technical/simplest.js} +6 -6
  30. package/dungeons/technical/text-generation-schema.json +1059 -0
  31. package/dungeons/{text-generation.js → technical/text-generation.js} +23 -9
  32. package/dungeons/vertical/community-schema.json +557 -0
  33. package/dungeons/vertical/community.js +788 -0
  34. package/dungeons/vertical/devtools-schema.json +580 -0
  35. package/dungeons/vertical/devtools.js +837 -0
  36. package/dungeons/vertical/ecommerce-schema.json +586 -0
  37. package/dungeons/{ecommerce.js → vertical/ecommerce.js} +34 -3
  38. package/dungeons/vertical/education-schema.json +697 -0
  39. package/dungeons/{education.js → vertical/education.js} +54 -36
  40. package/dungeons/vertical/fintech-schema.json +563 -0
  41. package/dungeons/{fintech.js → vertical/fintech.js} +91 -53
  42. package/dungeons/vertical/fitness-schema.json +508 -0
  43. package/dungeons/vertical/fitness.js +802 -0
  44. package/dungeons/vertical/food-delivery-schema.json +678 -0
  45. package/dungeons/{food.js → vertical/food-delivery.js} +51 -23
  46. package/dungeons/vertical/gaming-schema.json +394 -0
  47. package/dungeons/{gaming.js → vertical/gaming.js} +9 -7
  48. package/dungeons/vertical/healthcare-schema.json +527 -0
  49. package/dungeons/vertical/healthcare.js +769 -0
  50. package/dungeons/vertical/insurance-application-schema.json +466 -0
  51. package/dungeons/{insurance-application.js → vertical/insurance-application.js} +33 -29
  52. package/dungeons/vertical/logistics-schema.json +552 -0
  53. package/dungeons/vertical/logistics.js +793 -0
  54. package/dungeons/vertical/marketplace-schema.json +511 -0
  55. package/dungeons/vertical/marketplace.js +844 -0
  56. package/dungeons/vertical/media-schema.json +787 -0
  57. package/dungeons/{media.js → vertical/media.js} +94 -16
  58. package/dungeons/vertical/rpg-schema.json +654 -0
  59. package/dungeons/{rpg.js → vertical/rpg.js} +78 -57
  60. package/dungeons/vertical/sass-schema.json +653 -0
  61. package/dungeons/{sass.js → vertical/sass.js} +49 -23
  62. package/dungeons/vertical/social-schema.json +552 -0
  63. package/dungeons/{social.js → vertical/social.js} +60 -14
  64. package/dungeons/vertical/travel-schema.json +558 -0
  65. package/dungeons/vertical/travel.js +736 -0
  66. package/index.js +19 -15
  67. package/lib/core/config-validator.js +286 -1
  68. package/lib/core/context.js +7 -5
  69. package/lib/generators/adspend.js +3 -3
  70. package/lib/generators/events.js +141 -14
  71. package/lib/generators/funnels.js +67 -7
  72. package/lib/generators/text.js +2 -2
  73. package/lib/orchestrators/user-loop.js +441 -22
  74. package/lib/templates/soup-presets.js +2 -2
  75. package/lib/utils/utils.js +4 -5
  76. package/package.json +4 -3
  77. package/scripts/dungeon-to-json.mjs +163 -0
  78. package/scripts/extract-dungeon-schema.mjs +297 -0
  79. package/scripts/json-to-dungeon.mjs +200 -0
  80. package/scripts/run-dungeon.mjs +76 -0
  81. package/scripts/run-many.mjs +118 -0
  82. package/scripts/verify-runner.mjs +42 -0
  83. package/types.d.ts +313 -1
  84. package/dungeons/array-of-object-lookup-schema.json +0 -327
  85. package/dungeons/ecommerce-schema.json +0 -462
  86. package/dungeons/education-schema.json +0 -2409
  87. package/dungeons/fintech-schema.json +0 -14034
  88. package/dungeons/foobar-schema.json +0 -403
  89. package/dungeons/food-delivery-schema.json +0 -192
  90. package/dungeons/food-delivery.js +0 -602
  91. package/dungeons/food-schema.json +0 -1152
  92. package/dungeons/gaming-schema.json +0 -1270
  93. package/dungeons/insurance-application-schema.json +0 -204
  94. package/dungeons/media-schema.json +0 -906
  95. package/dungeons/retention-cadence-schema.json +0 -78
  96. package/dungeons/rpg-schema.json +0 -4526
  97. package/dungeons/sanity-schema.json +0 -255
  98. package/dungeons/sass-schema.json +0 -1291
  99. package/dungeons/scd-schema.json +0 -919
  100. package/dungeons/simple-schema.json +0 -608
  101. package/dungeons/simplest-schema.json +0 -1418
  102. package/dungeons/social-schema.json +0 -1118
  103. package/dungeons/text-generation-schema.json +0 -3096
@@ -0,0 +1,787 @@
1
+ {
2
+ "events": [
3
+ {
4
+ "event": "account created",
5
+ "isFirstEvent": true,
6
+ "properties": {
7
+ "signup_source": [
8
+ "organic",
9
+ "referral",
10
+ "trial_offer",
11
+ "ad"
12
+ ],
13
+ "plan_selected": [
14
+ "free",
15
+ "standard",
16
+ "premium"
17
+ ],
18
+ "weekend_viewing": [
19
+ false
20
+ ],
21
+ "prime_time": [
22
+ false
23
+ ],
24
+ "kids_profile": [
25
+ false
26
+ ],
27
+ "ad_fatigue": [
28
+ false
29
+ ]
30
+ }
31
+ },
32
+ {
33
+ "event": "content browsed",
34
+ "weight": 20,
35
+ "properties": {
36
+ "browse_section": [
37
+ "home",
38
+ "trending",
39
+ "new_releases",
40
+ "genre",
41
+ "continue_watching"
42
+ ],
43
+ "genre": [
44
+ "action",
45
+ "comedy",
46
+ "drama",
47
+ "documentary",
48
+ "horror",
49
+ "sci_fi",
50
+ "animation",
51
+ "thriller",
52
+ "romance"
53
+ ],
54
+ "weekend_viewing": [
55
+ false
56
+ ],
57
+ "prime_time": [
58
+ false
59
+ ],
60
+ "kids_profile": [
61
+ false
62
+ ],
63
+ "ad_fatigue": [
64
+ false
65
+ ]
66
+ }
67
+ },
68
+ {
69
+ "event": "content selected",
70
+ "weight": 15,
71
+ "properties": {
72
+ "content_type": [
73
+ "movie",
74
+ "series",
75
+ "documentary",
76
+ "special"
77
+ ],
78
+ "genre": [
79
+ "action",
80
+ "comedy",
81
+ "drama",
82
+ "documentary",
83
+ "horror",
84
+ "sci_fi",
85
+ "animation",
86
+ "thriller",
87
+ "romance"
88
+ ],
89
+ "content_id": [
90
+ "content_u4LWBjRw",
91
+ "content_nqqTr0IL",
92
+ "content_qBAlX3UO",
93
+ "content_1gXL5CRR",
94
+ "content_bVyNdjXv",
95
+ "content_HG1Kj3OD",
96
+ "content_QvPfjVQU",
97
+ "content_Hb4iNXJa",
98
+ "content_zcGddjdu"
99
+ ],
100
+ "blockbuster_release": [
101
+ false
102
+ ],
103
+ "kids_profile": [
104
+ false
105
+ ],
106
+ "weekend_viewing": [
107
+ false
108
+ ],
109
+ "prime_time": [
110
+ false
111
+ ],
112
+ "ad_fatigue": [
113
+ false
114
+ ]
115
+ }
116
+ },
117
+ {
118
+ "event": "playback started",
119
+ "weight": 18,
120
+ "properties": {
121
+ "content_id": [
122
+ "content_f9RESmXz",
123
+ "content_ZqmBDouy",
124
+ "content_oICKnP3z",
125
+ "content_A7CdKSxi",
126
+ "content_BOsZRKxM",
127
+ "content_XLCdIuKq",
128
+ "content_wrywOfRE",
129
+ "content_cfURRkzu",
130
+ "content_Av2dV4Mx"
131
+ ],
132
+ "content_type": [
133
+ "movie",
134
+ "series",
135
+ "documentary",
136
+ "special"
137
+ ],
138
+ "playback_quality": [
139
+ "480p",
140
+ "720p",
141
+ "1080p",
142
+ "4k"
143
+ ],
144
+ "subtitle_language": [
145
+ "none",
146
+ "english",
147
+ "spanish",
148
+ "french",
149
+ "japanese",
150
+ "korean"
151
+ ],
152
+ "playback_speed": [
153
+ "1x",
154
+ "1.25x",
155
+ "0.5x"
156
+ ],
157
+ "blockbuster_release": [
158
+ false
159
+ ],
160
+ "kids_profile": [
161
+ false
162
+ ],
163
+ "binge_session": [
164
+ false
165
+ ],
166
+ "weekend_viewing": [
167
+ false
168
+ ],
169
+ "prime_time": [
170
+ false
171
+ ],
172
+ "ad_fatigue": [
173
+ false
174
+ ]
175
+ }
176
+ },
177
+ {
178
+ "event": "playback completed",
179
+ "weight": 12,
180
+ "properties": {
181
+ "content_id": [
182
+ "content_jTwpKLjS",
183
+ "content_8YdHCYSS",
184
+ "content_Yp26E7go",
185
+ "content_deH2ocx7",
186
+ "content_ct09GghK",
187
+ "content_5nqTGKFc",
188
+ "content_1SQacm0W",
189
+ "content_1gXL5CRR"
190
+ ],
191
+ "content_type": [
192
+ "movie",
193
+ "series",
194
+ "documentary",
195
+ "special"
196
+ ],
197
+ "watch_duration_min": {
198
+ "$range": [
199
+ 32,
200
+ 157
201
+ ]
202
+ },
203
+ "completion_percent": {
204
+ "$range": [
205
+ 16,
206
+ 99
207
+ ]
208
+ },
209
+ "binge_session": [
210
+ false
211
+ ],
212
+ "subtitle_user": [
213
+ false
214
+ ],
215
+ "weekend_viewing": [
216
+ false
217
+ ],
218
+ "prime_time": [
219
+ false
220
+ ],
221
+ "kids_profile": [
222
+ false
223
+ ],
224
+ "ad_fatigue": [
225
+ false
226
+ ]
227
+ }
228
+ },
229
+ {
230
+ "event": "playback paused",
231
+ "weight": 10,
232
+ "properties": {
233
+ "content_id": [
234
+ "content_2r4XQKH1",
235
+ "content_tljRIIM5",
236
+ "content_7tT1vAkC",
237
+ "content_p3ahPLmK",
238
+ "content_Bsfkx3NU"
239
+ ],
240
+ "pause_reason": [
241
+ "manual",
242
+ "ad_break",
243
+ "buffering",
244
+ "notification"
245
+ ],
246
+ "weekend_viewing": [
247
+ false
248
+ ],
249
+ "prime_time": [
250
+ false
251
+ ],
252
+ "kids_profile": [
253
+ false
254
+ ],
255
+ "ad_fatigue": [
256
+ false
257
+ ]
258
+ }
259
+ },
260
+ {
261
+ "event": "content rated",
262
+ "weight": 6,
263
+ "properties": {
264
+ "content_id": [
265
+ "content_JyVfDvSy",
266
+ "content_LcCBZeuJ",
267
+ "content_iyltdOOP",
268
+ "content_yuOYnU03",
269
+ "content_izrVbERo",
270
+ "content_Kq78lQs6",
271
+ "content_F68hfbMC",
272
+ "content_T6mhelkF"
273
+ ],
274
+ "rating": [
275
+ 3,
276
+ 4
277
+ ],
278
+ "review_text_length": {
279
+ "$type": "array"
280
+ },
281
+ "blockbuster_release": [
282
+ false
283
+ ],
284
+ "weekend_viewing": [
285
+ false
286
+ ],
287
+ "prime_time": [
288
+ false
289
+ ],
290
+ "kids_profile": [
291
+ false
292
+ ],
293
+ "ad_fatigue": [
294
+ false
295
+ ]
296
+ }
297
+ },
298
+ {
299
+ "event": "watchlist added",
300
+ "weight": 8,
301
+ "properties": {
302
+ "content_id": [
303
+ "content_aBfYjiy3",
304
+ "content_bg1xNZ0W",
305
+ "content_sa6iOTTx",
306
+ "content_WIEpfqZf",
307
+ "content_gxzI7W37",
308
+ "content_Mekj7Iyx",
309
+ "content_Lbv3tQ4j",
310
+ "content_FRU2Bejm"
311
+ ],
312
+ "content_type": [
313
+ "movie",
314
+ "series",
315
+ "documentary",
316
+ "special"
317
+ ],
318
+ "genre": [
319
+ "action",
320
+ "comedy",
321
+ "drama",
322
+ "documentary",
323
+ "horror",
324
+ "sci_fi",
325
+ "animation",
326
+ "thriller",
327
+ "romance"
328
+ ],
329
+ "weekend_viewing": [
330
+ false
331
+ ],
332
+ "prime_time": [
333
+ false
334
+ ],
335
+ "kids_profile": [
336
+ false
337
+ ],
338
+ "ad_fatigue": [
339
+ false
340
+ ]
341
+ }
342
+ },
343
+ {
344
+ "event": "watchlist removed",
345
+ "weight": 3,
346
+ "properties": {
347
+ "content_id": [
348
+ "content_ZLH6yQXY",
349
+ "content_aahfqsLr",
350
+ "content_uSI6sSMs",
351
+ "content_6Cp57XOd",
352
+ "content_5Ir5LNEI",
353
+ "content_1rn5I64A",
354
+ "content_mQyuIhMi"
355
+ ],
356
+ "reason": [
357
+ "watched",
358
+ "not_interested",
359
+ "expired"
360
+ ],
361
+ "weekend_viewing": [
362
+ false
363
+ ],
364
+ "prime_time": [
365
+ false
366
+ ],
367
+ "kids_profile": [
368
+ false
369
+ ],
370
+ "ad_fatigue": [
371
+ false
372
+ ]
373
+ }
374
+ },
375
+ {
376
+ "event": "search performed",
377
+ "weight": 7,
378
+ "properties": {
379
+ "search_term": {
380
+ "$type": "string"
381
+ },
382
+ "results_count": {
383
+ "$range": [
384
+ 9,
385
+ 38
386
+ ]
387
+ },
388
+ "search_type": [
389
+ "title",
390
+ "actor",
391
+ "director",
392
+ "genre"
393
+ ],
394
+ "weekend_viewing": [
395
+ false
396
+ ],
397
+ "prime_time": [
398
+ false
399
+ ],
400
+ "kids_profile": [
401
+ false
402
+ ],
403
+ "ad_fatigue": [
404
+ false
405
+ ]
406
+ }
407
+ },
408
+ {
409
+ "event": "recommendation clicked",
410
+ "weight": 9,
411
+ "properties": {
412
+ "algorithm": [
413
+ "collaborative_filtering",
414
+ "content_based",
415
+ "trending",
416
+ "editorial"
417
+ ],
418
+ "position": {
419
+ "$range": [
420
+ 3,
421
+ 18
422
+ ]
423
+ },
424
+ "weekend_viewing": [
425
+ false
426
+ ],
427
+ "prime_time": [
428
+ false
429
+ ],
430
+ "kids_profile": [
431
+ false
432
+ ],
433
+ "ad_fatigue": [
434
+ false
435
+ ]
436
+ }
437
+ },
438
+ {
439
+ "event": "profile switched",
440
+ "weight": 4,
441
+ "properties": {
442
+ "profile_type": [
443
+ "main",
444
+ "kids",
445
+ "partner",
446
+ "guest"
447
+ ],
448
+ "weekend_viewing": [
449
+ false
450
+ ],
451
+ "prime_time": [
452
+ false
453
+ ],
454
+ "kids_profile": [
455
+ false
456
+ ],
457
+ "ad_fatigue": [
458
+ false
459
+ ]
460
+ }
461
+ },
462
+ {
463
+ "event": "ad impression",
464
+ "weight": 8,
465
+ "properties": {
466
+ "ad_type": [
467
+ "pre_roll",
468
+ "mid_roll",
469
+ "banner",
470
+ "interstitial"
471
+ ],
472
+ "ad_duration_sec": {
473
+ "$range": [
474
+ 5,
475
+ 26
476
+ ]
477
+ },
478
+ "skipped": {
479
+ "$type": "array"
480
+ },
481
+ "ad_blocked": [
482
+ false
483
+ ],
484
+ "kids_profile": [
485
+ false
486
+ ],
487
+ "weekend_viewing": [
488
+ false
489
+ ],
490
+ "prime_time": [
491
+ false
492
+ ],
493
+ "ad_fatigue": [
494
+ false
495
+ ]
496
+ }
497
+ },
498
+ {
499
+ "event": "subscription changed",
500
+ "weight": 2,
501
+ "properties": {
502
+ "old_plan": [
503
+ "free",
504
+ "standard",
505
+ "premium"
506
+ ],
507
+ "new_plan": [
508
+ "free",
509
+ "standard",
510
+ "premium"
511
+ ],
512
+ "change_reason": [
513
+ "upgrade",
514
+ "downgrade",
515
+ "cancel",
516
+ "resubscribe"
517
+ ],
518
+ "weekend_viewing": [
519
+ false
520
+ ],
521
+ "prime_time": [
522
+ false
523
+ ],
524
+ "kids_profile": [
525
+ false
526
+ ],
527
+ "ad_fatigue": [
528
+ false
529
+ ]
530
+ }
531
+ },
532
+ {
533
+ "event": "download started",
534
+ "weight": 5,
535
+ "properties": {
536
+ "content_id": [
537
+ "content_7tT1vAkC",
538
+ "content_KxFfztRx",
539
+ "content_snbvwVEc",
540
+ "content_1hIvMziS",
541
+ "content_yuOYnU03",
542
+ "content_NucBvoMs",
543
+ "content_P8K8YUUq",
544
+ "content_aBfYjiy3",
545
+ "content_NIKXTqIO",
546
+ "content_Mekj7Iyx"
547
+ ],
548
+ "content_type": [
549
+ "movie",
550
+ "series",
551
+ "documentary",
552
+ "special"
553
+ ],
554
+ "download_quality": [
555
+ "720p",
556
+ "1080p",
557
+ "4k"
558
+ ],
559
+ "weekend_viewing": [
560
+ false
561
+ ],
562
+ "prime_time": [
563
+ false
564
+ ],
565
+ "kids_profile": [
566
+ false
567
+ ],
568
+ "ad_fatigue": [
569
+ false
570
+ ]
571
+ }
572
+ },
573
+ {
574
+ "event": "share content",
575
+ "weight": 3,
576
+ "properties": {
577
+ "share_method": [
578
+ "link",
579
+ "social",
580
+ "dm",
581
+ "email"
582
+ ],
583
+ "content_type": [
584
+ "movie",
585
+ "series",
586
+ "documentary",
587
+ "special"
588
+ ],
589
+ "weekend_viewing": [
590
+ false
591
+ ],
592
+ "prime_time": [
593
+ false
594
+ ],
595
+ "kids_profile": [
596
+ false
597
+ ],
598
+ "ad_fatigue": [
599
+ false
600
+ ]
601
+ }
602
+ },
603
+ {
604
+ "event": "subtitle toggled",
605
+ "weight": 4,
606
+ "properties": {
607
+ "subtitle_language": [
608
+ "none",
609
+ "english",
610
+ "spanish",
611
+ "french",
612
+ "japanese",
613
+ "korean"
614
+ ],
615
+ "action": [
616
+ "enabled",
617
+ "disabled",
618
+ "changed"
619
+ ],
620
+ "weekend_viewing": [
621
+ false
622
+ ],
623
+ "prime_time": [
624
+ false
625
+ ],
626
+ "kids_profile": [
627
+ false
628
+ ],
629
+ "ad_fatigue": [
630
+ false
631
+ ]
632
+ }
633
+ }
634
+ ],
635
+ "superProps": {
636
+ "subscription_plan": [
637
+ "premium",
638
+ "standard",
639
+ "free"
640
+ ],
641
+ "device_type": [
642
+ "smart_tv",
643
+ "mobile",
644
+ "tablet",
645
+ "laptop",
646
+ "desktop"
647
+ ]
648
+ },
649
+ "userProps": {
650
+ "preferred_genre": [
651
+ "action",
652
+ "comedy",
653
+ "drama",
654
+ "documentary",
655
+ "horror",
656
+ "sci_fi",
657
+ "animation"
658
+ ],
659
+ "avg_session_duration_min": {
660
+ "$range": [
661
+ 39,
662
+ 150
663
+ ]
664
+ },
665
+ "total_watch_hours": {
666
+ "$range": [
667
+ 67,
668
+ 434
669
+ ]
670
+ },
671
+ "profiles_count": {
672
+ "$range": [
673
+ 1,
674
+ 4
675
+ ]
676
+ },
677
+ "downloads_enabled": {
678
+ "$type": "array"
679
+ }
680
+ },
681
+ "funnels": [
682
+ {
683
+ "sequence": [
684
+ "account created",
685
+ "content browsed",
686
+ "playback started"
687
+ ],
688
+ "isFirstFunnel": true,
689
+ "conversionRate": 80,
690
+ "timeToConvert": 0.25
691
+ },
692
+ {
693
+ "sequence": [
694
+ "content browsed",
695
+ "content selected",
696
+ "playback started",
697
+ "playback completed"
698
+ ],
699
+ "conversionRate": 55,
700
+ "timeToConvert": 2,
701
+ "weight": 5,
702
+ "props": {
703
+ "genre": [
704
+ "action",
705
+ "comedy",
706
+ "drama",
707
+ "documentary",
708
+ "horror",
709
+ "sci_fi",
710
+ "animation",
711
+ "thriller",
712
+ "romance"
713
+ ]
714
+ }
715
+ },
716
+ {
717
+ "sequence": [
718
+ "recommendation clicked",
719
+ "playback started",
720
+ "playback completed",
721
+ "content rated"
722
+ ],
723
+ "conversionRate": 35,
724
+ "timeToConvert": 1,
725
+ "weight": 3
726
+ },
727
+ {
728
+ "sequence": [
729
+ "search performed",
730
+ "content selected",
731
+ "playback started"
732
+ ],
733
+ "conversionRate": 50,
734
+ "timeToConvert": 0.5,
735
+ "weight": 3
736
+ },
737
+ {
738
+ "sequence": [
739
+ "content browsed",
740
+ "watchlist added",
741
+ "content selected",
742
+ "playback started"
743
+ ],
744
+ "conversionRate": 40,
745
+ "timeToConvert": 12,
746
+ "weight": 2
747
+ },
748
+ {
749
+ "sequence": [
750
+ "profile switched",
751
+ "subtitle toggled",
752
+ "playback started",
753
+ "playback completed"
754
+ ],
755
+ "conversionRate": 45,
756
+ "timeToConvert": 1,
757
+ "weight": 2
758
+ },
759
+ {
760
+ "sequence": [
761
+ "ad impression",
762
+ "playback started",
763
+ "playback paused"
764
+ ],
765
+ "conversionRate": 60,
766
+ "timeToConvert": 0.5,
767
+ "weight": 2
768
+ },
769
+ {
770
+ "sequence": [
771
+ "playback completed",
772
+ "share content",
773
+ "download started"
774
+ ],
775
+ "conversionRate": 25,
776
+ "timeToConvert": 1
777
+ },
778
+ {
779
+ "sequence": [
780
+ "content browsed",
781
+ "subscription changed"
782
+ ],
783
+ "conversionRate": 15,
784
+ "timeToConvert": 24
785
+ }
786
+ ]
787
+ }