@walkeros/server-destination-segment 3.3.0-next-1776098542393

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.
@@ -0,0 +1,986 @@
1
+ {
2
+ "$meta": {
3
+ "package": "@walkeros/server-destination-segment",
4
+ "version": "0.0.1",
5
+ "type": "destination",
6
+ "platform": [
7
+ "server"
8
+ ],
9
+ "docs": "https://www.walkeros.io/docs/destinations/server/segment",
10
+ "source": "https://github.com/elbwalker/walkerOS/tree/main/packages/server/destinations/segment/src"
11
+ },
12
+ "schemas": {
13
+ "mapping": {
14
+ "$schema": "http://json-schema.org/draft-07/schema#",
15
+ "type": "object",
16
+ "properties": {
17
+ "identify": {
18
+ "description": "Per-event identity mapping. Resolves to { userId?, traits? }. Use with rule-level skip: true on login/identify events."
19
+ },
20
+ "group": {
21
+ "description": "Per-event group assignment. Resolves to { groupId, traits? }. Use with rule-level skip: true on company/team events."
22
+ },
23
+ "page": {
24
+ "description": "Per-event page call. Resolves to { category?, name?, properties? } or true for minimal page(). Use with skip: true."
25
+ },
26
+ "screen": {
27
+ "description": "Per-event screen call (mobile backends). Resolves to { category?, name?, properties? } or true for minimal screen(). Use with skip: true."
28
+ }
29
+ },
30
+ "additionalProperties": false
31
+ },
32
+ "settings": {
33
+ "$schema": "http://json-schema.org/draft-07/schema#",
34
+ "type": "object",
35
+ "properties": {
36
+ "writeKey": {
37
+ "type": "string",
38
+ "minLength": 1,
39
+ "description": "Segment source write key. Find it in your Segment workspace under Connections > Sources > Settings > API Keys."
40
+ },
41
+ "userId": {
42
+ "type": "string",
43
+ "description": "walkerOS mapping value path to resolve userId from each event (like user.id)."
44
+ },
45
+ "anonymousId": {
46
+ "type": "string",
47
+ "description": "walkerOS mapping value path to resolve anonymousId from each event (like user.session)."
48
+ },
49
+ "host": {
50
+ "type": "string",
51
+ "format": "uri",
52
+ "description": "Base URL of Segment API. Set to https://events.eu1.segmentapis.com for EU endpoint."
53
+ },
54
+ "path": {
55
+ "type": "string",
56
+ "description": "API path route (like /v1/batch)."
57
+ },
58
+ "flushAt": {
59
+ "type": "integer",
60
+ "exclusiveMinimum": 0,
61
+ "maximum": 9007199254740991,
62
+ "description": "Events to enqueue before flushing a batch. Default: 15."
63
+ },
64
+ "flushInterval": {
65
+ "type": "integer",
66
+ "exclusiveMinimum": 0,
67
+ "maximum": 9007199254740991,
68
+ "description": "Max milliseconds before auto-flush. Default: 10000."
69
+ },
70
+ "maxRetries": {
71
+ "type": "integer",
72
+ "minimum": 0,
73
+ "maximum": 9007199254740991,
74
+ "description": "Retry attempts for failed batches. Default: 3."
75
+ },
76
+ "httpRequestTimeout": {
77
+ "type": "integer",
78
+ "exclusiveMinimum": 0,
79
+ "maximum": 9007199254740991,
80
+ "description": "HTTP request timeout in milliseconds. Default: 10000."
81
+ },
82
+ "disable": {
83
+ "type": "boolean",
84
+ "description": "Completely disable the SDK (no-ops all calls). Default: false."
85
+ },
86
+ "identify": {
87
+ "description": "Destination-level identity mapping. Resolves to { traits } object. Fires identify() on the first push and re-fires when values change."
88
+ },
89
+ "group": {
90
+ "description": "Destination-level group mapping. Resolves to { groupId, traits }. Fires group() on the first push and re-fires on change."
91
+ },
92
+ "consent": {
93
+ "type": "object",
94
+ "propertyNames": {
95
+ "type": "string"
96
+ },
97
+ "additionalProperties": {
98
+ "type": "string"
99
+ },
100
+ "description": "Mapping from walkerOS consent keys to Segment categoryPreferences keys. Example: { \"marketing\": \"Advertising\", \"analytics\": \"Analytics\" }."
101
+ },
102
+ "integrations": {
103
+ "type": "object",
104
+ "propertyNames": {
105
+ "type": "string"
106
+ },
107
+ "additionalProperties": {},
108
+ "description": "Enable/disable downstream Segment destinations. Example: { \"All\": true, \"Mixpanel\": false }."
109
+ }
110
+ },
111
+ "required": [
112
+ "writeKey"
113
+ ],
114
+ "additionalProperties": false
115
+ }
116
+ },
117
+ "examples": {
118
+ "env": {
119
+ "push": {
120
+ "analytics": {
121
+ "track": {
122
+ "$code": "()=>{}"
123
+ },
124
+ "identify": {
125
+ "$code": "()=>{}"
126
+ },
127
+ "group": {
128
+ "$code": "()=>{}"
129
+ },
130
+ "page": {
131
+ "$code": "()=>{}"
132
+ },
133
+ "screen": {
134
+ "$code": "()=>{}"
135
+ },
136
+ "closeAndFlush": {
137
+ "$code": "()=>Promise.resolve()"
138
+ }
139
+ }
140
+ },
141
+ "simulation": [
142
+ "call:analytics.track",
143
+ "call:analytics.identify",
144
+ "call:analytics.group",
145
+ "call:analytics.page",
146
+ "call:analytics.screen"
147
+ ]
148
+ },
149
+ "step": {
150
+ "anonymousOnly": {
151
+ "in": {
152
+ "name": "product view",
153
+ "data": {
154
+ "id": "ers",
155
+ "name": "Everyday Ruck Snack",
156
+ "color": "black",
157
+ "size": "l",
158
+ "price": 420
159
+ },
160
+ "context": {
161
+ "shopping": [
162
+ "detail",
163
+ 0
164
+ ]
165
+ },
166
+ "globals": {
167
+ "pagegroup": "shop"
168
+ },
169
+ "custom": {
170
+ "completely": "random"
171
+ },
172
+ "user": {
173
+ "session": "s3ss10n"
174
+ },
175
+ "nested": [],
176
+ "consent": {
177
+ "functional": true
178
+ },
179
+ "id": "1700000107-gr0up-1",
180
+ "trigger": "load",
181
+ "entity": "product",
182
+ "action": "view",
183
+ "timestamp": 1700000107,
184
+ "timing": 3.14,
185
+ "group": "gr0up",
186
+ "count": 1,
187
+ "version": {
188
+ "source": "3.2.0",
189
+ "tagging": 1
190
+ },
191
+ "source": {
192
+ "type": "web",
193
+ "id": "https://localhost:80",
194
+ "previous_id": "http://remotehost:9001"
195
+ }
196
+ },
197
+ "settings": {},
198
+ "out": [
199
+ "analytics.track",
200
+ {
201
+ "anonymousId": "s3ss10n",
202
+ "event": "product view",
203
+ "properties": {},
204
+ "timestamp": {}
205
+ }
206
+ ]
207
+ },
208
+ "companyGroup": {
209
+ "in": {
210
+ "name": "company update",
211
+ "data": {
212
+ "company_id": "comp-456",
213
+ "company_name": "Acme",
214
+ "industry": "tech",
215
+ "employees": 50
216
+ },
217
+ "context": {
218
+ "dev": [
219
+ "test",
220
+ 1
221
+ ]
222
+ },
223
+ "globals": {
224
+ "lang": "elb"
225
+ },
226
+ "custom": {
227
+ "completely": "random"
228
+ },
229
+ "user": {
230
+ "id": "us3r",
231
+ "session": "s3ss10n"
232
+ },
233
+ "nested": [
234
+ {
235
+ "entity": "child",
236
+ "data": {
237
+ "is": "subordinated"
238
+ },
239
+ "nested": [],
240
+ "context": {
241
+ "element": [
242
+ "child",
243
+ 0
244
+ ]
245
+ }
246
+ }
247
+ ],
248
+ "consent": {
249
+ "functional": true
250
+ },
251
+ "id": "1700000104-gr0up-1",
252
+ "trigger": "test",
253
+ "entity": "company",
254
+ "action": "update",
255
+ "timestamp": 1700000104,
256
+ "timing": 3.14,
257
+ "group": "gr0up",
258
+ "count": 1,
259
+ "version": {
260
+ "source": "3.2.0",
261
+ "tagging": 1
262
+ },
263
+ "source": {
264
+ "type": "web",
265
+ "id": "https://localhost:80",
266
+ "previous_id": "http://remotehost:9001"
267
+ }
268
+ },
269
+ "mapping": {
270
+ "skip": true,
271
+ "settings": {
272
+ "group": {
273
+ "map": {
274
+ "groupId": "data.company_id",
275
+ "traits": {
276
+ "map": {
277
+ "name": "data.company_name",
278
+ "industry": "data.industry",
279
+ "employees": "data.employees"
280
+ }
281
+ }
282
+ }
283
+ }
284
+ }
285
+ },
286
+ "out": [
287
+ "analytics.group",
288
+ {
289
+ "userId": "us3r",
290
+ "anonymousId": "s3ss10n",
291
+ "groupId": "comp-456",
292
+ "traits": {
293
+ "name": "Acme",
294
+ "industry": "tech",
295
+ "employees": 50
296
+ },
297
+ "timestamp": {}
298
+ }
299
+ ]
300
+ },
301
+ "consentForwarding": {
302
+ "in": {
303
+ "name": "product view",
304
+ "data": {
305
+ "id": "ers",
306
+ "name": "Everyday Ruck Snack",
307
+ "color": "black",
308
+ "size": "l",
309
+ "price": 420
310
+ },
311
+ "context": {
312
+ "shopping": [
313
+ "detail",
314
+ 0
315
+ ]
316
+ },
317
+ "globals": {
318
+ "pagegroup": "shop"
319
+ },
320
+ "custom": {
321
+ "completely": "random"
322
+ },
323
+ "user": {
324
+ "id": "us3r",
325
+ "session": "s3ss10n"
326
+ },
327
+ "nested": [],
328
+ "consent": {
329
+ "analytics": true,
330
+ "marketing": true
331
+ },
332
+ "id": "1700000108-gr0up-1",
333
+ "trigger": "load",
334
+ "entity": "product",
335
+ "action": "view",
336
+ "timestamp": 1700000108,
337
+ "timing": 3.14,
338
+ "group": "gr0up",
339
+ "count": 1,
340
+ "version": {
341
+ "source": "3.2.0",
342
+ "tagging": 1
343
+ },
344
+ "source": {
345
+ "type": "web",
346
+ "id": "https://localhost:80",
347
+ "previous_id": "http://remotehost:9001"
348
+ }
349
+ },
350
+ "settings": {
351
+ "consent": {
352
+ "analytics": "Analytics",
353
+ "marketing": "Advertising"
354
+ }
355
+ },
356
+ "out": [
357
+ "analytics.track",
358
+ {
359
+ "userId": "us3r",
360
+ "anonymousId": "s3ss10n",
361
+ "event": "product view",
362
+ "properties": {},
363
+ "timestamp": {},
364
+ "context": {
365
+ "consent": {
366
+ "categoryPreferences": {
367
+ "Analytics": true,
368
+ "Advertising": true
369
+ }
370
+ }
371
+ }
372
+ }
373
+ ]
374
+ },
375
+ "defaultTrack": {
376
+ "in": {
377
+ "name": "product view",
378
+ "data": {
379
+ "id": "ers",
380
+ "name": "Everyday Ruck Snack",
381
+ "color": "black",
382
+ "size": "l",
383
+ "price": 420
384
+ },
385
+ "context": {
386
+ "shopping": [
387
+ "detail",
388
+ 0
389
+ ]
390
+ },
391
+ "globals": {
392
+ "pagegroup": "shop"
393
+ },
394
+ "custom": {
395
+ "completely": "random"
396
+ },
397
+ "user": {
398
+ "id": "us3r",
399
+ "session": "s3ss10n"
400
+ },
401
+ "nested": [],
402
+ "consent": {
403
+ "functional": true
404
+ },
405
+ "id": "1700000100-gr0up-1",
406
+ "trigger": "load",
407
+ "entity": "product",
408
+ "action": "view",
409
+ "timestamp": 1700000100,
410
+ "timing": 3.14,
411
+ "group": "gr0up",
412
+ "count": 1,
413
+ "version": {
414
+ "source": "3.2.0",
415
+ "tagging": 1
416
+ },
417
+ "source": {
418
+ "type": "web",
419
+ "id": "https://localhost:80",
420
+ "previous_id": "http://remotehost:9001"
421
+ }
422
+ },
423
+ "out": [
424
+ "analytics.track",
425
+ {
426
+ "userId": "us3r",
427
+ "anonymousId": "s3ss10n",
428
+ "event": "product view",
429
+ "properties": {},
430
+ "timestamp": {}
431
+ }
432
+ ]
433
+ },
434
+ "destinationIdentify": {
435
+ "in": {
436
+ "name": "page view",
437
+ "data": {
438
+ "domain": "www.example.com",
439
+ "title": "walkerOS documentation",
440
+ "referrer": "https://www.walkeros.io/",
441
+ "search": "?foo=bar",
442
+ "hash": "#hash",
443
+ "id": "/docs/"
444
+ },
445
+ "context": {
446
+ "dev": [
447
+ "test",
448
+ 1
449
+ ]
450
+ },
451
+ "globals": {
452
+ "pagegroup": "docs"
453
+ },
454
+ "custom": {
455
+ "completely": "random"
456
+ },
457
+ "user": {
458
+ "id": "us3r",
459
+ "session": "s3ss10n",
460
+ "email": "user@example.com"
461
+ },
462
+ "nested": [
463
+ {
464
+ "entity": "child",
465
+ "data": {
466
+ "is": "subordinated"
467
+ },
468
+ "nested": [],
469
+ "context": {
470
+ "element": [
471
+ "child",
472
+ 0
473
+ ]
474
+ }
475
+ }
476
+ ],
477
+ "consent": {
478
+ "functional": true
479
+ },
480
+ "id": "1700000102-gr0up-1",
481
+ "trigger": "load",
482
+ "entity": "page",
483
+ "action": "view",
484
+ "timestamp": 1700000102,
485
+ "timing": 3.14,
486
+ "group": "gr0up",
487
+ "count": 1,
488
+ "version": {
489
+ "source": "3.2.0",
490
+ "tagging": 1
491
+ },
492
+ "source": {
493
+ "type": "web",
494
+ "id": "https://localhost:80",
495
+ "previous_id": "http://remotehost:9001"
496
+ }
497
+ },
498
+ "settings": {
499
+ "identify": {
500
+ "map": {
501
+ "traits": {
502
+ "map": {
503
+ "email": "user.email"
504
+ }
505
+ }
506
+ }
507
+ }
508
+ },
509
+ "out": [
510
+ [
511
+ "analytics.identify",
512
+ {
513
+ "userId": "us3r",
514
+ "anonymousId": "s3ss10n",
515
+ "traits": {
516
+ "email": "user@example.com"
517
+ },
518
+ "timestamp": {}
519
+ }
520
+ ],
521
+ [
522
+ "analytics.track",
523
+ {
524
+ "userId": "us3r",
525
+ "anonymousId": "s3ss10n",
526
+ "event": "page view",
527
+ "properties": {},
528
+ "timestamp": {}
529
+ }
530
+ ]
531
+ ]
532
+ },
533
+ "mappedEventName": {
534
+ "in": {
535
+ "name": "order complete",
536
+ "data": {
537
+ "id": "0rd3r1d",
538
+ "currency": "EUR",
539
+ "shipping": 5.22,
540
+ "taxes": 73.76,
541
+ "total": 555
542
+ },
543
+ "context": {
544
+ "shopping": [
545
+ "complete",
546
+ 0
547
+ ]
548
+ },
549
+ "globals": {
550
+ "pagegroup": "shop"
551
+ },
552
+ "custom": {
553
+ "completely": "random"
554
+ },
555
+ "user": {
556
+ "id": "us3r",
557
+ "session": "s3ss10n"
558
+ },
559
+ "nested": [
560
+ {
561
+ "entity": "product",
562
+ "data": {
563
+ "id": "ers",
564
+ "name": "Everyday Ruck Snack",
565
+ "color": "black",
566
+ "size": "l",
567
+ "price": 420
568
+ },
569
+ "context": {
570
+ "shopping": [
571
+ "complete",
572
+ 0
573
+ ]
574
+ },
575
+ "nested": []
576
+ },
577
+ {
578
+ "entity": "product",
579
+ "data": {
580
+ "id": "cc",
581
+ "name": "Cool Cap",
582
+ "size": "one size",
583
+ "price": 42
584
+ },
585
+ "context": {
586
+ "shopping": [
587
+ "complete",
588
+ 0
589
+ ]
590
+ },
591
+ "nested": []
592
+ },
593
+ {
594
+ "entity": "gift",
595
+ "data": {
596
+ "name": "Surprise"
597
+ },
598
+ "context": {
599
+ "shopping": [
600
+ "complete",
601
+ 0
602
+ ]
603
+ },
604
+ "nested": []
605
+ }
606
+ ],
607
+ "consent": {
608
+ "functional": true
609
+ },
610
+ "id": "1700000101-gr0up-1",
611
+ "trigger": "load",
612
+ "entity": "order",
613
+ "action": "complete",
614
+ "timestamp": 1700000101,
615
+ "timing": 3.14,
616
+ "group": "gr0up",
617
+ "count": 1,
618
+ "version": {
619
+ "source": "3.2.0",
620
+ "tagging": 1
621
+ },
622
+ "source": {
623
+ "type": "web",
624
+ "id": "https://localhost:80",
625
+ "previous_id": "http://remotehost:9001"
626
+ }
627
+ },
628
+ "mapping": {
629
+ "name": "Order Completed"
630
+ },
631
+ "out": [
632
+ "analytics.track",
633
+ {
634
+ "userId": "us3r",
635
+ "anonymousId": "s3ss10n",
636
+ "event": "Order Completed",
637
+ "properties": {},
638
+ "timestamp": {}
639
+ }
640
+ ]
641
+ },
642
+ "pageView": {
643
+ "in": {
644
+ "name": "page view",
645
+ "data": {
646
+ "category": "docs",
647
+ "title": "Getting Started",
648
+ "section": "tutorials"
649
+ },
650
+ "context": {
651
+ "dev": [
652
+ "test",
653
+ 1
654
+ ]
655
+ },
656
+ "globals": {
657
+ "pagegroup": "docs"
658
+ },
659
+ "custom": {
660
+ "completely": "random"
661
+ },
662
+ "user": {
663
+ "id": "us3r",
664
+ "session": "s3ss10n"
665
+ },
666
+ "nested": [
667
+ {
668
+ "entity": "child",
669
+ "data": {
670
+ "is": "subordinated"
671
+ },
672
+ "nested": [],
673
+ "context": {
674
+ "element": [
675
+ "child",
676
+ 0
677
+ ]
678
+ }
679
+ }
680
+ ],
681
+ "consent": {
682
+ "functional": true
683
+ },
684
+ "id": "1700000105-gr0up-1",
685
+ "trigger": "load",
686
+ "entity": "page",
687
+ "action": "view",
688
+ "timestamp": 1700000105,
689
+ "timing": 3.14,
690
+ "group": "gr0up",
691
+ "count": 1,
692
+ "version": {
693
+ "source": "3.2.0",
694
+ "tagging": 1
695
+ },
696
+ "source": {
697
+ "type": "web",
698
+ "id": "https://localhost:80",
699
+ "previous_id": "http://remotehost:9001"
700
+ }
701
+ },
702
+ "mapping": {
703
+ "skip": true,
704
+ "settings": {
705
+ "page": {
706
+ "map": {
707
+ "category": "data.category",
708
+ "name": "data.title",
709
+ "properties": {
710
+ "map": {
711
+ "section": "data.section"
712
+ }
713
+ }
714
+ }
715
+ }
716
+ }
717
+ },
718
+ "out": [
719
+ "analytics.page",
720
+ {
721
+ "userId": "us3r",
722
+ "anonymousId": "s3ss10n",
723
+ "category": "docs",
724
+ "name": "Getting Started",
725
+ "properties": {
726
+ "section": "tutorials"
727
+ },
728
+ "timestamp": {}
729
+ }
730
+ ]
731
+ },
732
+ "screenView": {
733
+ "in": {
734
+ "name": "screen view",
735
+ "data": {
736
+ "screen_name": "Welcome",
737
+ "section": "onboarding",
738
+ "build": "1.2.3"
739
+ },
740
+ "context": {
741
+ "dev": [
742
+ "test",
743
+ 1
744
+ ]
745
+ },
746
+ "globals": {
747
+ "lang": "elb"
748
+ },
749
+ "custom": {
750
+ "completely": "random"
751
+ },
752
+ "user": {
753
+ "id": "us3r",
754
+ "session": "s3ss10n"
755
+ },
756
+ "nested": [
757
+ {
758
+ "entity": "child",
759
+ "data": {
760
+ "is": "subordinated"
761
+ },
762
+ "nested": [],
763
+ "context": {
764
+ "element": [
765
+ "child",
766
+ 0
767
+ ]
768
+ }
769
+ }
770
+ ],
771
+ "consent": {
772
+ "functional": true
773
+ },
774
+ "id": "1700000106-gr0up-1",
775
+ "trigger": "test",
776
+ "entity": "screen",
777
+ "action": "view",
778
+ "timestamp": 1700000106,
779
+ "timing": 3.14,
780
+ "group": "gr0up",
781
+ "count": 1,
782
+ "version": {
783
+ "source": "3.2.0",
784
+ "tagging": 1
785
+ },
786
+ "source": {
787
+ "type": "web",
788
+ "id": "https://localhost:80",
789
+ "previous_id": "http://remotehost:9001"
790
+ }
791
+ },
792
+ "mapping": {
793
+ "skip": true,
794
+ "settings": {
795
+ "screen": {
796
+ "map": {
797
+ "name": "data.screen_name",
798
+ "category": "data.section",
799
+ "properties": {
800
+ "map": {
801
+ "build": "data.build"
802
+ }
803
+ }
804
+ }
805
+ }
806
+ }
807
+ },
808
+ "out": [
809
+ "analytics.screen",
810
+ {
811
+ "userId": "us3r",
812
+ "anonymousId": "s3ss10n",
813
+ "name": "Welcome",
814
+ "category": "onboarding",
815
+ "properties": {
816
+ "build": "1.2.3"
817
+ },
818
+ "timestamp": {}
819
+ }
820
+ ]
821
+ },
822
+ "userLoginIdentify": {
823
+ "in": {
824
+ "name": "user login",
825
+ "data": {
826
+ "user_id": "new-user-123",
827
+ "email": "user@acme.com",
828
+ "name": "Jane Doe",
829
+ "plan": "premium"
830
+ },
831
+ "context": {
832
+ "dev": [
833
+ "test",
834
+ 1
835
+ ]
836
+ },
837
+ "globals": {
838
+ "lang": "elb"
839
+ },
840
+ "custom": {
841
+ "completely": "random"
842
+ },
843
+ "user": {
844
+ "id": "us3r",
845
+ "session": "s3ss10n"
846
+ },
847
+ "nested": [
848
+ {
849
+ "entity": "child",
850
+ "data": {
851
+ "is": "subordinated"
852
+ },
853
+ "nested": [],
854
+ "context": {
855
+ "element": [
856
+ "child",
857
+ 0
858
+ ]
859
+ }
860
+ }
861
+ ],
862
+ "consent": {
863
+ "functional": true
864
+ },
865
+ "id": "1700000103-gr0up-1",
866
+ "trigger": "test",
867
+ "entity": "user",
868
+ "action": "login",
869
+ "timestamp": 1700000103,
870
+ "timing": 3.14,
871
+ "group": "gr0up",
872
+ "count": 1,
873
+ "version": {
874
+ "source": "3.2.0",
875
+ "tagging": 1
876
+ },
877
+ "source": {
878
+ "type": "web",
879
+ "id": "https://localhost:80",
880
+ "previous_id": "http://remotehost:9001"
881
+ }
882
+ },
883
+ "mapping": {
884
+ "skip": true,
885
+ "settings": {
886
+ "identify": {
887
+ "map": {
888
+ "userId": "data.user_id",
889
+ "traits": {
890
+ "map": {
891
+ "email": "data.email",
892
+ "name": "data.name",
893
+ "plan": "data.plan"
894
+ }
895
+ }
896
+ }
897
+ }
898
+ }
899
+ },
900
+ "out": [
901
+ "analytics.identify",
902
+ {
903
+ "userId": "new-user-123",
904
+ "anonymousId": "s3ss10n",
905
+ "traits": {
906
+ "email": "user@acme.com",
907
+ "name": "Jane Doe",
908
+ "plan": "premium"
909
+ },
910
+ "timestamp": {}
911
+ }
912
+ ]
913
+ },
914
+ "wildcardIgnored": {
915
+ "in": {
916
+ "name": "debug noise",
917
+ "data": {
918
+ "string": "foo",
919
+ "number": 1,
920
+ "boolean": true,
921
+ "array": [
922
+ 0,
923
+ "text",
924
+ false
925
+ ]
926
+ },
927
+ "context": {
928
+ "dev": [
929
+ "test",
930
+ 1
931
+ ]
932
+ },
933
+ "globals": {
934
+ "lang": "elb"
935
+ },
936
+ "custom": {
937
+ "completely": "random"
938
+ },
939
+ "user": {
940
+ "id": "us3r",
941
+ "session": "s3ss10n"
942
+ },
943
+ "nested": [
944
+ {
945
+ "entity": "child",
946
+ "data": {
947
+ "is": "subordinated"
948
+ },
949
+ "nested": [],
950
+ "context": {
951
+ "element": [
952
+ "child",
953
+ 0
954
+ ]
955
+ }
956
+ }
957
+ ],
958
+ "consent": {
959
+ "functional": true
960
+ },
961
+ "id": "1700000109-gr0up-1",
962
+ "trigger": "test",
963
+ "entity": "debug",
964
+ "action": "noise",
965
+ "timestamp": 1700000109,
966
+ "timing": 3.14,
967
+ "group": "gr0up",
968
+ "count": 1,
969
+ "version": {
970
+ "source": "3.2.0",
971
+ "tagging": 1
972
+ },
973
+ "source": {
974
+ "type": "web",
975
+ "id": "https://localhost:80",
976
+ "previous_id": "http://remotehost:9001"
977
+ }
978
+ },
979
+ "mapping": {
980
+ "ignore": true
981
+ },
982
+ "out": []
983
+ }
984
+ }
985
+ }
986
+ }