@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,697 @@
1
+ {
2
+ "events": [
3
+ {
4
+ "event": "account registered",
5
+ "isFirstEvent": true,
6
+ "properties": {
7
+ "account_type": {
8
+ "$type": "array"
9
+ },
10
+ "signup_source": [
11
+ "organic",
12
+ "referral",
13
+ "school_partnership",
14
+ "social_ad"
15
+ ]
16
+ }
17
+ },
18
+ {
19
+ "event": "course enrolled",
20
+ "weight": 8,
21
+ "properties": {
22
+ "course_id": [
23
+ "course_M6Kjdb",
24
+ "course_oWYJCL",
25
+ "course_CpP0ln",
26
+ "course_lGcaid",
27
+ "course_tAcohr",
28
+ "course_lNjW6j",
29
+ "course_FbXrg1",
30
+ "course_QBnlKk",
31
+ "course_Y9DJGO",
32
+ "course_Og8kRt"
33
+ ],
34
+ "course_category": [
35
+ "CS",
36
+ "Math",
37
+ "Science",
38
+ "Business",
39
+ "Arts",
40
+ "Languages"
41
+ ],
42
+ "difficulty": [
43
+ "beginner",
44
+ "intermediate",
45
+ "advanced"
46
+ ],
47
+ "is_free": {
48
+ "$type": "array"
49
+ }
50
+ }
51
+ },
52
+ {
53
+ "event": "lecture started",
54
+ "weight": 18,
55
+ "properties": {
56
+ "course_id": [
57
+ "course_Q5Zhev",
58
+ "course_tAcohr",
59
+ "course_wMbhzj",
60
+ "course_cu97Hc",
61
+ "course_xCAffE",
62
+ "course_H2eZOq",
63
+ "course_e0psAz",
64
+ "course_J3OZTc",
65
+ "course_5Hw9ZP"
66
+ ],
67
+ "lecture_id": [
68
+ "lecture_8anW8B",
69
+ "lecture_IGD2Wn",
70
+ "lecture_fImInp",
71
+ "lecture_ovYDGW",
72
+ "lecture_h9Vnj7",
73
+ "lecture_1V3jRX",
74
+ "lecture_zrvAb5",
75
+ "lecture_qFPC29"
76
+ ],
77
+ "lecture_duration_mins": {
78
+ "$range": [
79
+ 11,
80
+ 43
81
+ ]
82
+ },
83
+ "module_number": {
84
+ "$range": [
85
+ 1,
86
+ 12
87
+ ]
88
+ }
89
+ }
90
+ },
91
+ {
92
+ "event": "lecture completed",
93
+ "weight": 14,
94
+ "properties": {
95
+ "course_id": [
96
+ "course_H1z0Vg",
97
+ "course_fTKmDU",
98
+ "course_pRXsRY",
99
+ "course_v0h8TG",
100
+ "course_1F8EZu",
101
+ "course_WtpCUk",
102
+ "course_NOCK3P",
103
+ "course_vd9AbL",
104
+ "course_anLXcC",
105
+ "course_lPdRG2"
106
+ ],
107
+ "lecture_id": [
108
+ "lecture_ltNCpU",
109
+ "lecture_d2s8Gr",
110
+ "lecture_bqw0ya",
111
+ "lecture_4jt5OR",
112
+ "lecture_aQaMyi",
113
+ "lecture_Lz3Xri",
114
+ "lecture_WomNOq",
115
+ "lecture_mEOQcq",
116
+ "lecture_HBij18"
117
+ ],
118
+ "watch_time_mins": {
119
+ "$range": [
120
+ 10,
121
+ 52
122
+ ]
123
+ },
124
+ "playback_speed": [
125
+ 1,
126
+ 1.25,
127
+ 1.5,
128
+ 2
129
+ ],
130
+ "notes_taken": {
131
+ "$type": "array"
132
+ },
133
+ "speed_learner": [
134
+ false
135
+ ],
136
+ "thorough_learner": [
137
+ false
138
+ ]
139
+ }
140
+ },
141
+ {
142
+ "event": "quiz started",
143
+ "weight": 10,
144
+ "properties": {
145
+ "course_id": [
146
+ "course_xCAffE",
147
+ "course_PWvJNQ",
148
+ "course_5af8VR",
149
+ "course_H5xNkq",
150
+ "course_AD6eI9",
151
+ "course_gdmHqX",
152
+ "course_mqfJzr"
153
+ ],
154
+ "quiz_id": [
155
+ "quiz_Ojk3ap",
156
+ "quiz_Zdr0cG",
157
+ "quiz_wS4EOI",
158
+ "quiz_bBX43h",
159
+ "quiz_Wqok75"
160
+ ],
161
+ "quiz_type": [
162
+ "practice",
163
+ "graded",
164
+ "final_exam"
165
+ ],
166
+ "question_count": {
167
+ "$range": [
168
+ 8,
169
+ 45
170
+ ]
171
+ },
172
+ "semester_end_rush": [
173
+ false
174
+ ]
175
+ }
176
+ },
177
+ {
178
+ "event": "quiz completed",
179
+ "weight": 8,
180
+ "properties": {
181
+ "course_id": [
182
+ "course_lAVbbp",
183
+ "course_335We8",
184
+ "course_tAf78h",
185
+ "course_hA0TFC",
186
+ "course_VuBUmm",
187
+ "course_9SCmQ9",
188
+ "course_fFYxUH",
189
+ "course_en0t6m"
190
+ ],
191
+ "quiz_id": [
192
+ "quiz_uz5It4",
193
+ "quiz_kmuUZn",
194
+ "quiz_m2yuyB",
195
+ "quiz_E921GU",
196
+ "quiz_IghwvL",
197
+ "quiz_PVDp2z",
198
+ "quiz_iWNBPl",
199
+ "quiz_4XzFxt",
200
+ "quiz_j3qkg9"
201
+ ],
202
+ "score_percent": {
203
+ "$range": [
204
+ 1,
205
+ 81
206
+ ]
207
+ },
208
+ "time_spent_mins": {
209
+ "$range": [
210
+ 11,
211
+ 106
212
+ ]
213
+ },
214
+ "attempts": [
215
+ 4,
216
+ 2
217
+ ],
218
+ "diligent_student": [
219
+ false
220
+ ],
221
+ "speed_learner_effect": [
222
+ false
223
+ ],
224
+ "semester_end_rush": [
225
+ false
226
+ ]
227
+ }
228
+ },
229
+ {
230
+ "event": "assignment submitted",
231
+ "weight": 6,
232
+ "properties": {
233
+ "course_id": [
234
+ "course_r4wbt4",
235
+ "course_9suPLh",
236
+ "course_bShUcC",
237
+ "course_iIrPle",
238
+ "course_lB6GbC",
239
+ "course_vOhPZI",
240
+ "course_287boq",
241
+ "course_yUQUFU"
242
+ ],
243
+ "assignment_id": [
244
+ "assignment_QAF7mN",
245
+ "assignment_fzhONe",
246
+ "assignment_jZgY4h",
247
+ "assignment_hTL7G6",
248
+ "assignment_wv7zNq",
249
+ "assignment_FcWvAz",
250
+ "assignment_rsjASK"
251
+ ],
252
+ "submission_type": [
253
+ "text",
254
+ "code",
255
+ "file",
256
+ "project"
257
+ ],
258
+ "word_count": {
259
+ "$range": [
260
+ 556,
261
+ 4444
262
+ ]
263
+ },
264
+ "is_late": {
265
+ "$type": "array"
266
+ },
267
+ "is_deadline_rush": [
268
+ false
269
+ ],
270
+ "semester_end_rush": [
271
+ false
272
+ ]
273
+ }
274
+ },
275
+ {
276
+ "event": "assignment graded",
277
+ "weight": 5,
278
+ "properties": {
279
+ "course_id": [
280
+ "course_H1z0Vg",
281
+ "course_oWYJCL",
282
+ "course_9SCmQ9",
283
+ "course_lzvjq6",
284
+ "course_5Hw9ZP",
285
+ "course_4ER1WM",
286
+ "course_otodxA",
287
+ "course_bU5L1v",
288
+ "course_yin4qv"
289
+ ],
290
+ "assignment_id": [
291
+ "assignment_j1Lpt5",
292
+ "assignment_E3BmPs",
293
+ "assignment_Tv5myP",
294
+ "assignment_DkbmDR",
295
+ "assignment_DHQoa4",
296
+ "assignment_rmfiXo",
297
+ "assignment_t7sjbj",
298
+ "assignment_r8Ndj3",
299
+ "assignment_zgaAnY",
300
+ "assignment_5uiKO2"
301
+ ],
302
+ "grade": [
303
+ "A",
304
+ "B",
305
+ "C",
306
+ "D",
307
+ "F"
308
+ ],
309
+ "feedback_length": {
310
+ "$range": [
311
+ 42,
312
+ 422
313
+ ]
314
+ },
315
+ "grader": [
316
+ "instructor",
317
+ "peer",
318
+ "auto"
319
+ ]
320
+ }
321
+ },
322
+ {
323
+ "event": "discussion posted",
324
+ "weight": 7,
325
+ "properties": {
326
+ "course_id": [
327
+ "course_5Guc0l",
328
+ "course_7IXzCm",
329
+ "course_9suPLh",
330
+ "course_iIrPle",
331
+ "course_fsTZgh",
332
+ "course_yin4qv",
333
+ "course_Dn50zP",
334
+ "course_Rn7gYM"
335
+ ],
336
+ "post_type": [
337
+ "question",
338
+ "answer",
339
+ "comment"
340
+ ],
341
+ "word_count": {
342
+ "$range": [
343
+ 69,
344
+ 443
345
+ ]
346
+ },
347
+ "study_group_member": [
348
+ false
349
+ ]
350
+ }
351
+ },
352
+ {
353
+ "event": "certificate earned",
354
+ "weight": 2,
355
+ "properties": {
356
+ "course_id": [
357
+ "course_fFYxUH",
358
+ "course_BoXinm",
359
+ "course_hA0TFC",
360
+ "course_Id5BIK",
361
+ "course_J3OZTc",
362
+ "course_anLXcC",
363
+ "course_FbXrg1",
364
+ "course_v6UMYl"
365
+ ],
366
+ "completion_time_days": {
367
+ "$range": [
368
+ 35,
369
+ 152
370
+ ]
371
+ },
372
+ "final_grade": {
373
+ "$range": [
374
+ 61,
375
+ 95
376
+ ]
377
+ },
378
+ "diligent_student": [
379
+ false
380
+ ]
381
+ }
382
+ },
383
+ {
384
+ "event": "study group joined",
385
+ "weight": 4,
386
+ "properties": {
387
+ "group_id": [
388
+ "group_t5jwo6",
389
+ "group_Y5NVf5",
390
+ "group_3zIO0c",
391
+ "group_qcC3C2",
392
+ "group_NGcMWU",
393
+ "group_TI9UNh",
394
+ "group_Vi52iQ",
395
+ "group_hrsBk6"
396
+ ],
397
+ "group_size": [
398
+ 8,
399
+ 7,
400
+ 13,
401
+ 14,
402
+ 11,
403
+ 9
404
+ ],
405
+ "group_type": [
406
+ "study_circle",
407
+ "project_team",
408
+ "tutoring"
409
+ ]
410
+ }
411
+ },
412
+ {
413
+ "event": "resource downloaded",
414
+ "weight": 9,
415
+ "properties": {
416
+ "resource_type": [
417
+ "pdf",
418
+ "slides",
419
+ "code_sample",
420
+ "dataset",
421
+ "cheat_sheet"
422
+ ],
423
+ "course_id": [
424
+ "course_6cGvFs",
425
+ "course_rcoK15",
426
+ "course_yin4qv",
427
+ "course_anLXcC",
428
+ "course_7IXzCm",
429
+ "course_5af8VR",
430
+ "course_YqDklr",
431
+ "course_pRXsRY"
432
+ ]
433
+ }
434
+ },
435
+ {
436
+ "event": "instructor feedback given",
437
+ "weight": 3,
438
+ "properties": {
439
+ "course_id": [
440
+ "course_r4wbt4",
441
+ "course_v6UMYl",
442
+ "course_yG4fIG",
443
+ "course_eKweph",
444
+ "course_zqGhgW",
445
+ "course_kJSw7R",
446
+ "course_fPW7H9",
447
+ "course_Ir7WJn",
448
+ "course_aqR1gr",
449
+ "course_IZ4YeQ"
450
+ ],
451
+ "feedback_type": [
452
+ "written",
453
+ "video",
454
+ "rubric"
455
+ ],
456
+ "response_time_hours": {
457
+ "$range": [
458
+ 15,
459
+ 66
460
+ ]
461
+ }
462
+ }
463
+ },
464
+ {
465
+ "event": "course reviewed",
466
+ "weight": 3,
467
+ "properties": {
468
+ "course_id": [
469
+ "course_v6UMYl",
470
+ "course_Q5Zhev",
471
+ "course_cu97Hc",
472
+ "course_Dn50zP",
473
+ "course_7FNmjh",
474
+ "course_2HhVoS",
475
+ "course_VuBUmm",
476
+ "course_P3VX10"
477
+ ],
478
+ "rating": [
479
+ 3,
480
+ 5
481
+ ],
482
+ "review_length": {
483
+ "$range": [
484
+ 170,
485
+ 820
486
+ ]
487
+ },
488
+ "would_recommend": {
489
+ "$type": "array"
490
+ }
491
+ }
492
+ },
493
+ {
494
+ "event": "subscription purchased",
495
+ "weight": 2,
496
+ "properties": {
497
+ "plan": [
498
+ "monthly",
499
+ "annual",
500
+ "lifetime"
501
+ ],
502
+ "price": [
503
+ 149.99,
504
+ 19.99,
505
+ 499.99
506
+ ]
507
+ }
508
+ },
509
+ {
510
+ "event": "help requested",
511
+ "weight": 4,
512
+ "properties": {
513
+ "topic": [
514
+ "technical",
515
+ "content",
516
+ "billing",
517
+ "accessibility"
518
+ ],
519
+ "channel": [
520
+ "chat",
521
+ "email",
522
+ "forum"
523
+ ]
524
+ }
525
+ },
526
+ {
527
+ "event": "practice problem solved",
528
+ "weight": 12,
529
+ "properties": {
530
+ "course_id": [
531
+ "course_9sF553",
532
+ "course_IZ4YeQ",
533
+ "course_VuBUmm",
534
+ "course_bShUcC",
535
+ "course_LdBe8h",
536
+ "course_fn2UmN",
537
+ "course_kJSw7R",
538
+ "course_xTb0DO"
539
+ ],
540
+ "problem_id": [
541
+ "problem_zbSwoJ",
542
+ "problem_54dFYb",
543
+ "problem_Kuv8ss",
544
+ "problem_gHgox8",
545
+ "problem_we6baT",
546
+ "problem_JmiJsW",
547
+ "problem_WtjJ9f",
548
+ "problem_XUdiKf",
549
+ "problem_V4Whgz",
550
+ "problem_j5N6zX"
551
+ ],
552
+ "difficulty": [
553
+ "easy",
554
+ "medium",
555
+ "hard"
556
+ ],
557
+ "time_to_solve_sec": {
558
+ "$range": [
559
+ 319,
560
+ 3125
561
+ ]
562
+ },
563
+ "hint_used": {
564
+ "$type": "array"
565
+ },
566
+ "independent_solver": [
567
+ false
568
+ ]
569
+ }
570
+ }
571
+ ],
572
+ "superProps": {
573
+ "platform": [
574
+ "Web",
575
+ "iOS",
576
+ "Android",
577
+ "iPad"
578
+ ]
579
+ },
580
+ "userProps": {
581
+ "account_type": [
582
+ "student"
583
+ ],
584
+ "subscription_status": [
585
+ "free",
586
+ "monthly",
587
+ "annual"
588
+ ],
589
+ "learning_style": [
590
+ "visual",
591
+ "reading",
592
+ "hands_on",
593
+ "auditory"
594
+ ],
595
+ "education_level": [
596
+ "high_school",
597
+ "bachelors",
598
+ "masters",
599
+ "phd",
600
+ "self_taught"
601
+ ],
602
+ "timezone": [
603
+ "US_Eastern",
604
+ "US_Pacific",
605
+ "US_Central",
606
+ "Europe",
607
+ "Asia"
608
+ ],
609
+ "courses_created": [
610
+ 0
611
+ ],
612
+ "teaching_experience_years": [
613
+ 0
614
+ ],
615
+ "instructor_rating": [
616
+ 0
617
+ ],
618
+ "learning_goal": [
619
+ "none"
620
+ ],
621
+ "study_hours_per_week": [
622
+ 0
623
+ ]
624
+ },
625
+ "funnels": [
626
+ {
627
+ "sequence": [
628
+ "account registered",
629
+ "course enrolled",
630
+ "lecture started"
631
+ ],
632
+ "isFirstFunnel": true,
633
+ "conversionRate": 75,
634
+ "timeToConvert": 1
635
+ },
636
+ {
637
+ "sequence": [
638
+ "lecture started",
639
+ "lecture completed",
640
+ "practice problem solved"
641
+ ],
642
+ "conversionRate": 70,
643
+ "timeToConvert": 4,
644
+ "weight": 5
645
+ },
646
+ {
647
+ "sequence": [
648
+ "quiz started",
649
+ "quiz completed",
650
+ "assignment submitted"
651
+ ],
652
+ "conversionRate": 55,
653
+ "timeToConvert": 8,
654
+ "weight": 3
655
+ },
656
+ {
657
+ "sequence": [
658
+ "course enrolled",
659
+ "lecture completed",
660
+ "quiz completed",
661
+ "certificate earned"
662
+ ],
663
+ "conversionRate": 30,
664
+ "timeToConvert": 48,
665
+ "weight": 2
666
+ },
667
+ {
668
+ "sequence": [
669
+ "discussion posted",
670
+ "study group joined",
671
+ "resource downloaded"
672
+ ],
673
+ "conversionRate": 50,
674
+ "timeToConvert": 12,
675
+ "weight": 2
676
+ },
677
+ {
678
+ "sequence": [
679
+ "assignment submitted",
680
+ "assignment graded",
681
+ "instructor feedback given"
682
+ ],
683
+ "conversionRate": 45,
684
+ "timeToConvert": 24,
685
+ "weight": 2
686
+ },
687
+ {
688
+ "sequence": [
689
+ "help requested",
690
+ "subscription purchased",
691
+ "course reviewed"
692
+ ],
693
+ "conversionRate": 35,
694
+ "timeToConvert": 24
695
+ }
696
+ ]
697
+ }