@runfile-ai/schemas 0.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 (41) hide show
  1. package/LICENSE +190 -0
  2. package/README.md +163 -0
  3. package/dist/canonical.d.ts +32 -0
  4. package/dist/canonical.d.ts.map +1 -0
  5. package/dist/canonical.js +46 -0
  6. package/dist/canonical.js.map +1 -0
  7. package/dist/control-mapping.d.ts +85 -0
  8. package/dist/control-mapping.d.ts.map +1 -0
  9. package/dist/control-mapping.js +31 -0
  10. package/dist/control-mapping.js.map +1 -0
  11. package/dist/event.d.ts +866 -0
  12. package/dist/event.d.ts.map +1 -0
  13. package/dist/event.js +289 -0
  14. package/dist/event.js.map +1 -0
  15. package/dist/evidence.d.ts +955 -0
  16. package/dist/evidence.d.ts.map +1 -0
  17. package/dist/evidence.js +31 -0
  18. package/dist/evidence.js.map +1 -0
  19. package/dist/index.d.ts +8 -0
  20. package/dist/index.d.ts.map +1 -0
  21. package/dist/index.js +8 -0
  22. package/dist/index.js.map +1 -0
  23. package/dist/ingest.d.ts +1595 -0
  24. package/dist/ingest.d.ts.map +1 -0
  25. package/dist/ingest.js +177 -0
  26. package/dist/ingest.js.map +1 -0
  27. package/dist/manifest.d.ts +110 -0
  28. package/dist/manifest.d.ts.map +1 -0
  29. package/dist/manifest.js +46 -0
  30. package/dist/manifest.js.map +1 -0
  31. package/dist/vault.d.ts +459 -0
  32. package/dist/vault.d.ts.map +1 -0
  33. package/dist/vault.js +188 -0
  34. package/dist/vault.js.map +1 -0
  35. package/generated/json-schema/control_mapping.json +107 -0
  36. package/generated/json-schema/event.json +600 -0
  37. package/generated/json-schema/evidence.json +721 -0
  38. package/generated/json-schema/ingest.json +800 -0
  39. package/generated/json-schema/manifest.json +148 -0
  40. package/generated/json-schema/vault.json +468 -0
  41. package/package.json +59 -0
@@ -0,0 +1,800 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2019-09/schema#",
3
+ "title": "ingest",
4
+ "description": "Runfile ingest schemas. Source: src/ingest.ts (Zod). Do not edit by hand.",
5
+ "$ref": "#/definitions/_RunfileBundle",
6
+ "definitions": {
7
+ "BatchSubmission": {
8
+ "type": "object",
9
+ "properties": {
10
+ "batch_id": {
11
+ "type": "string",
12
+ "pattern": "^b_[0-9A-HJKMNP-TV-Z]{26}$"
13
+ },
14
+ "events": {
15
+ "type": "array",
16
+ "items": {
17
+ "$ref": "#/definitions/EventSubmission"
18
+ },
19
+ "minItems": 1,
20
+ "maxItems": 100
21
+ }
22
+ },
23
+ "required": [
24
+ "batch_id",
25
+ "events"
26
+ ],
27
+ "additionalProperties": false
28
+ },
29
+ "EventSubmission": {
30
+ "type": "object",
31
+ "properties": {
32
+ "schema_version": {
33
+ "type": "string",
34
+ "pattern": "^\\d+\\.\\d+\\.\\d+$"
35
+ },
36
+ "event_id": {
37
+ "type": "string",
38
+ "pattern": "^[0-9A-HJKMNP-TV-Z]{26}$"
39
+ },
40
+ "agent_run_id": {
41
+ "type": "string",
42
+ "pattern": "^run_[0-9A-HJKMNP-TV-Z]{26}$"
43
+ },
44
+ "parent_event_id": {
45
+ "anyOf": [
46
+ {
47
+ "$ref": "#/definitions/EventSubmission/properties/event_id"
48
+ },
49
+ {
50
+ "type": "null"
51
+ }
52
+ ]
53
+ },
54
+ "captured_at": {
55
+ "type": "string",
56
+ "format": "date-time"
57
+ },
58
+ "wall_clock_source": {
59
+ "type": "string",
60
+ "enum": [
61
+ "aws_time_sync",
62
+ "ntp",
63
+ "host_system",
64
+ "unknown"
65
+ ]
66
+ },
67
+ "sdk": {
68
+ "type": "object",
69
+ "properties": {
70
+ "name": {
71
+ "type": "string",
72
+ "enum": [
73
+ "runfile-py",
74
+ "@runfile/sdk"
75
+ ]
76
+ },
77
+ "version": {
78
+ "type": "string",
79
+ "pattern": "^\\d+\\.\\d+\\.\\d+(-[a-z0-9.-]+)?$"
80
+ },
81
+ "framework": {
82
+ "type": "string",
83
+ "enum": [
84
+ "langgraph",
85
+ "langgraph_js",
86
+ "openai_agents",
87
+ "openai_agents_js",
88
+ "anthropic_claude",
89
+ "anthropic_claude_js",
90
+ "mastra",
91
+ "vercel_ai_sdk",
92
+ "mcp_client",
93
+ "otel_generic",
94
+ "manual"
95
+ ]
96
+ },
97
+ "framework_version": {
98
+ "$ref": "#/definitions/EventSubmission/properties/sdk/properties/version"
99
+ },
100
+ "host": {
101
+ "type": "string",
102
+ "maxLength": 256
103
+ }
104
+ },
105
+ "required": [
106
+ "name",
107
+ "version",
108
+ "framework"
109
+ ],
110
+ "additionalProperties": false
111
+ },
112
+ "actor": {
113
+ "type": "object",
114
+ "properties": {
115
+ "type": {
116
+ "type": "string",
117
+ "enum": [
118
+ "agent",
119
+ "human",
120
+ "tool",
121
+ "system"
122
+ ]
123
+ },
124
+ "agent_identity": {
125
+ "type": "string",
126
+ "pattern": "^did:[a-z][a-z0-9]*:[A-Za-z0-9._:-]+$",
127
+ "description": "DID-format identifier of the agent. Required when type=agent."
128
+ },
129
+ "human_principal": {
130
+ "type": "string",
131
+ "pattern": "^tok_[A-Za-z0-9]{16,64}$",
132
+ "description": "Vault token identifying the human principal."
133
+ },
134
+ "delegation_chain": {
135
+ "type": "array",
136
+ "items": {
137
+ "type": "string"
138
+ },
139
+ "maxItems": 16,
140
+ "default": []
141
+ },
142
+ "tool_id": {
143
+ "type": "string",
144
+ "pattern": "^tool:[a-z0-9_.-]+:[a-z0-9_.-]+$"
145
+ },
146
+ "tool_version_hash": {
147
+ "type": "string",
148
+ "pattern": "^sha256:[a-f0-9]{64}$"
149
+ }
150
+ },
151
+ "required": [
152
+ "type"
153
+ ],
154
+ "additionalProperties": false
155
+ },
156
+ "action": {
157
+ "type": "object",
158
+ "properties": {
159
+ "kind": {
160
+ "type": "string",
161
+ "enum": [
162
+ "agent_run_start",
163
+ "agent_run_end",
164
+ "graph_node_enter",
165
+ "graph_node_exit",
166
+ "llm_call",
167
+ "tool_call",
168
+ "tool_result",
169
+ "state_read",
170
+ "state_write",
171
+ "decision",
172
+ "handoff",
173
+ "human_approval",
174
+ "human_input",
175
+ "policy_check",
176
+ "anomaly_flag",
177
+ "sdk_diagnostic"
178
+ ]
179
+ },
180
+ "name": {
181
+ "type": "string",
182
+ "maxLength": 256
183
+ },
184
+ "outcome": {
185
+ "type": "string",
186
+ "enum": [
187
+ "success",
188
+ "failure",
189
+ "partial",
190
+ "timeout",
191
+ "cancelled"
192
+ ]
193
+ },
194
+ "duration_ms": {
195
+ "type": "integer",
196
+ "minimum": 0
197
+ }
198
+ },
199
+ "required": [
200
+ "kind",
201
+ "name"
202
+ ],
203
+ "additionalProperties": false
204
+ },
205
+ "subject": {
206
+ "type": "object",
207
+ "properties": {
208
+ "resource_urn": {
209
+ "type": "string",
210
+ "pattern": "^urn:[a-z0-9][a-z0-9-]{0,31}:.+$",
211
+ "maxLength": 512
212
+ },
213
+ "data_classification": {
214
+ "type": "string",
215
+ "enum": [
216
+ "public",
217
+ "internal",
218
+ "confidential",
219
+ "pii",
220
+ "phi",
221
+ "pci",
222
+ "fci"
223
+ ]
224
+ },
225
+ "regulatory_tags": {
226
+ "type": "array",
227
+ "items": {
228
+ "type": "string",
229
+ "pattern": "^[a-z0-9_]+$"
230
+ },
231
+ "maxItems": 32
232
+ }
233
+ },
234
+ "additionalProperties": false
235
+ },
236
+ "model_ref": {
237
+ "type": "object",
238
+ "properties": {
239
+ "provider": {
240
+ "type": "string",
241
+ "enum": [
242
+ "anthropic",
243
+ "openai",
244
+ "google",
245
+ "aws_bedrock",
246
+ "azure_openai",
247
+ "ollama",
248
+ "self_hosted",
249
+ "other"
250
+ ]
251
+ },
252
+ "model_id": {
253
+ "type": "string",
254
+ "maxLength": 128
255
+ },
256
+ "model_version_hash": {
257
+ "$ref": "#/definitions/EventSubmission/properties/actor/properties/tool_version_hash"
258
+ },
259
+ "system_prompt_hash": {
260
+ "$ref": "#/definitions/EventSubmission/properties/actor/properties/tool_version_hash"
261
+ },
262
+ "tools_hash": {
263
+ "$ref": "#/definitions/EventSubmission/properties/actor/properties/tool_version_hash"
264
+ },
265
+ "input_tokens": {
266
+ "type": "integer",
267
+ "minimum": 0
268
+ },
269
+ "output_tokens": {
270
+ "type": "integer",
271
+ "minimum": 0
272
+ },
273
+ "temperature": {
274
+ "type": "number",
275
+ "minimum": 0,
276
+ "maximum": 2
277
+ }
278
+ },
279
+ "required": [
280
+ "provider",
281
+ "model_id"
282
+ ],
283
+ "additionalProperties": false
284
+ },
285
+ "decision": {
286
+ "type": "object",
287
+ "properties": {
288
+ "outcome": {
289
+ "type": "string",
290
+ "enum": [
291
+ "approved",
292
+ "denied",
293
+ "escalated",
294
+ "deferred",
295
+ "no_action",
296
+ "custom"
297
+ ]
298
+ },
299
+ "outcome_label": {
300
+ "type": "string",
301
+ "maxLength": 64
302
+ },
303
+ "confidence": {
304
+ "type": "number",
305
+ "minimum": 0,
306
+ "maximum": 1
307
+ },
308
+ "human_in_the_loop": {
309
+ "type": "boolean"
310
+ },
311
+ "policy_thresholds_crossed": {
312
+ "type": "array",
313
+ "items": {
314
+ "type": "string",
315
+ "maxLength": 64
316
+ },
317
+ "maxItems": 16
318
+ },
319
+ "reversed_by_event": {
320
+ "type": "string",
321
+ "pattern": "^[0-9A-HJKMNP-TV-Z]{26}$"
322
+ }
323
+ },
324
+ "required": [
325
+ "outcome"
326
+ ],
327
+ "additionalProperties": false
328
+ },
329
+ "payload_ref": {
330
+ "$ref": "#/definitions/PayloadSubmission"
331
+ },
332
+ "redaction_policy_version": {
333
+ "$ref": "#/definitions/EventSubmission/properties/schema_version"
334
+ },
335
+ "regulatory_scope_version": {
336
+ "$ref": "#/definitions/EventSubmission/properties/schema_version"
337
+ },
338
+ "anomaly_flags": {
339
+ "type": "array",
340
+ "items": {
341
+ "type": "object",
342
+ "properties": {
343
+ "code": {
344
+ "type": "string",
345
+ "enum": [
346
+ "missing_ambient_context",
347
+ "chain_break",
348
+ "out_of_order_arrival",
349
+ "model_version_drift",
350
+ "unknown_agent_identity",
351
+ "data_classification_mismatch",
352
+ "policy_threshold_without_hitl",
353
+ "unauthorized_tool_invocation",
354
+ "redaction_policy_mismatch",
355
+ "schema_version_warning"
356
+ ]
357
+ },
358
+ "severity": {
359
+ "type": "string",
360
+ "enum": [
361
+ "info",
362
+ "warning",
363
+ "error",
364
+ "critical"
365
+ ]
366
+ },
367
+ "detail": {
368
+ "type": "string",
369
+ "maxLength": 1024
370
+ }
371
+ },
372
+ "required": [
373
+ "code",
374
+ "severity"
375
+ ],
376
+ "additionalProperties": false
377
+ },
378
+ "maxItems": 32
379
+ },
380
+ "environment": {
381
+ "type": "string",
382
+ "enum": [
383
+ "production",
384
+ "staging",
385
+ "development"
386
+ ]
387
+ },
388
+ "labels": {
389
+ "type": "object",
390
+ "additionalProperties": {
391
+ "type": "string",
392
+ "maxLength": 128
393
+ },
394
+ "propertyNames": {
395
+ "pattern": "^[a-z][a-z0-9_]{0,31}$"
396
+ }
397
+ },
398
+ "prev_hash_intent": {
399
+ "type": "string",
400
+ "pattern": "^sha256:[a-f0-9]{64}$"
401
+ }
402
+ },
403
+ "required": [
404
+ "schema_version",
405
+ "event_id",
406
+ "agent_run_id",
407
+ "parent_event_id",
408
+ "captured_at",
409
+ "wall_clock_source",
410
+ "sdk",
411
+ "actor",
412
+ "action",
413
+ "subject",
414
+ "redaction_policy_version",
415
+ "prev_hash_intent"
416
+ ],
417
+ "additionalProperties": false
418
+ },
419
+ "PayloadSubmission": {
420
+ "type": "object",
421
+ "properties": {
422
+ "s3_uri_intent": {
423
+ "type": "string",
424
+ "maxLength": 1024
425
+ },
426
+ "sha256": {
427
+ "$ref": "#/definitions/EventSubmission/properties/prev_hash_intent"
428
+ },
429
+ "size_bytes": {
430
+ "type": "integer",
431
+ "minimum": 0,
432
+ "maximum": 67108864
433
+ },
434
+ "encryption": {
435
+ "type": "object",
436
+ "properties": {
437
+ "algorithm": {
438
+ "type": "string",
439
+ "const": "aes-256-gcm"
440
+ },
441
+ "data_key_wrapped": {
442
+ "type": "string",
443
+ "maxLength": 4096
444
+ },
445
+ "kms_key_arn": {
446
+ "type": "string",
447
+ "pattern": "^arn:aws:kms:[a-z0-9-]+:[0-9]+:key\\/[a-f0-9-]+$"
448
+ }
449
+ },
450
+ "required": [
451
+ "algorithm",
452
+ "data_key_wrapped"
453
+ ],
454
+ "additionalProperties": false
455
+ },
456
+ "content_type": {
457
+ "type": "string",
458
+ "enum": [
459
+ "application/json",
460
+ "text/plain",
461
+ "application/vnd.runfile.llm-request+json",
462
+ "application/vnd.runfile.llm-response+json",
463
+ "application/vnd.runfile.tool-call+json",
464
+ "application/vnd.runfile.tool-result+json",
465
+ "application/vnd.runfile.state-snapshot+json"
466
+ ]
467
+ },
468
+ "redaction_applied": {
469
+ "type": "object",
470
+ "properties": {
471
+ "redacted_classes": {
472
+ "type": "array",
473
+ "items": {
474
+ "type": "string"
475
+ },
476
+ "maxItems": 32
477
+ },
478
+ "tokenized_classes": {
479
+ "type": "array",
480
+ "items": {
481
+ "type": "string"
482
+ },
483
+ "maxItems": 32
484
+ },
485
+ "classifier_version": {
486
+ "type": "string",
487
+ "pattern": "^\\d+\\.\\d+\\.\\d+$"
488
+ }
489
+ },
490
+ "additionalProperties": false
491
+ },
492
+ "ciphertext_base64": {
493
+ "type": "string",
494
+ "maxLength": 7340032
495
+ }
496
+ },
497
+ "required": [
498
+ "sha256",
499
+ "size_bytes",
500
+ "encryption",
501
+ "ciphertext_base64"
502
+ ],
503
+ "additionalProperties": false
504
+ },
505
+ "BatchAccepted": {
506
+ "type": "object",
507
+ "properties": {
508
+ "batch_id": {
509
+ "type": "string",
510
+ "pattern": "^b_[0-9A-HJKMNP-TV-Z]{26}$"
511
+ },
512
+ "accepted_count": {
513
+ "type": "integer",
514
+ "minimum": 1
515
+ },
516
+ "accepted_events": {
517
+ "type": "array",
518
+ "items": {
519
+ "$ref": "#/definitions/AcceptedEvent"
520
+ }
521
+ },
522
+ "received_at": {
523
+ "type": "string",
524
+ "format": "date-time"
525
+ }
526
+ },
527
+ "required": [
528
+ "batch_id",
529
+ "accepted_count",
530
+ "accepted_events",
531
+ "received_at"
532
+ ],
533
+ "additionalProperties": false
534
+ },
535
+ "BatchPartial": {
536
+ "type": "object",
537
+ "properties": {
538
+ "batch_id": {
539
+ "type": "string",
540
+ "pattern": "^b_[0-9A-HJKMNP-TV-Z]{26}$"
541
+ },
542
+ "accepted_count": {
543
+ "type": "integer",
544
+ "minimum": 0
545
+ },
546
+ "rejected_count": {
547
+ "type": "integer",
548
+ "minimum": 1
549
+ },
550
+ "accepted_events": {
551
+ "type": "array",
552
+ "items": {
553
+ "$ref": "#/definitions/AcceptedEvent"
554
+ }
555
+ },
556
+ "rejected_events": {
557
+ "type": "array",
558
+ "items": {
559
+ "$ref": "#/definitions/EventRejection"
560
+ }
561
+ },
562
+ "received_at": {
563
+ "type": "string",
564
+ "format": "date-time"
565
+ }
566
+ },
567
+ "required": [
568
+ "batch_id",
569
+ "accepted_count",
570
+ "rejected_count",
571
+ "accepted_events",
572
+ "rejected_events",
573
+ "received_at"
574
+ ],
575
+ "additionalProperties": false
576
+ },
577
+ "BatchRejected": {
578
+ "type": "object",
579
+ "properties": {
580
+ "batch_id": {
581
+ "type": "string",
582
+ "pattern": "^b_[0-9A-HJKMNP-TV-Z]{26}$"
583
+ },
584
+ "error": {
585
+ "$ref": "#/definitions/IngestError"
586
+ },
587
+ "rejected_events": {
588
+ "type": "array",
589
+ "items": {
590
+ "$ref": "#/definitions/EventRejection"
591
+ }
592
+ }
593
+ },
594
+ "required": [
595
+ "batch_id",
596
+ "error",
597
+ "rejected_events"
598
+ ],
599
+ "additionalProperties": false
600
+ },
601
+ "AcceptedEvent": {
602
+ "type": "object",
603
+ "properties": {
604
+ "event_id": {
605
+ "$ref": "#/definitions/EventSubmission/properties/event_id"
606
+ },
607
+ "accepted_at": {
608
+ "type": "string",
609
+ "format": "date-time"
610
+ },
611
+ "payload_s3_uri": {
612
+ "type": "string"
613
+ },
614
+ "processing_status": {
615
+ "type": "string",
616
+ "const": "queued"
617
+ }
618
+ },
619
+ "required": [
620
+ "event_id",
621
+ "accepted_at",
622
+ "payload_s3_uri"
623
+ ],
624
+ "additionalProperties": false
625
+ },
626
+ "EventRejection": {
627
+ "type": "object",
628
+ "properties": {
629
+ "event_id": {
630
+ "type": "string"
631
+ },
632
+ "error_code": {
633
+ "type": "string",
634
+ "enum": [
635
+ "schema_validation_failed",
636
+ "duplicate_event_id",
637
+ "payload_too_large",
638
+ "payload_sha256_mismatch",
639
+ "kms_key_unknown",
640
+ "kms_key_unauthorized",
641
+ "actor_scope_violation",
642
+ "environment_scope_violation",
643
+ "region_scope_violation",
644
+ "timestamp_out_of_range",
645
+ "missing_required_conditional_field"
646
+ ]
647
+ },
648
+ "error_message": {
649
+ "type": "string",
650
+ "maxLength": 1024
651
+ },
652
+ "field_path": {
653
+ "type": "string"
654
+ }
655
+ },
656
+ "required": [
657
+ "event_id",
658
+ "error_code",
659
+ "error_message"
660
+ ],
661
+ "additionalProperties": false
662
+ },
663
+ "IngestError": {
664
+ "type": "object",
665
+ "properties": {
666
+ "error_code": {
667
+ "type": "string",
668
+ "enum": [
669
+ "unauthorized",
670
+ "forbidden",
671
+ "bad_request",
672
+ "schema_version_unsupported",
673
+ "batch_too_large",
674
+ "rate_limited",
675
+ "quota_exceeded",
676
+ "service_unavailable",
677
+ "internal_error",
678
+ "idempotency_conflict"
679
+ ]
680
+ },
681
+ "error_message": {
682
+ "type": "string",
683
+ "maxLength": 1024
684
+ },
685
+ "retry_after_seconds": {
686
+ "type": "integer",
687
+ "minimum": 0
688
+ },
689
+ "request_id": {
690
+ "type": "string"
691
+ }
692
+ },
693
+ "required": [
694
+ "error_code",
695
+ "error_message"
696
+ ],
697
+ "additionalProperties": false
698
+ },
699
+ "RedactionPolicy": {
700
+ "type": "object",
701
+ "properties": {
702
+ "policy_version": {
703
+ "$ref": "#/definitions/EventSubmission/properties/schema_version"
704
+ },
705
+ "classification_rules": {
706
+ "type": "array",
707
+ "items": {
708
+ "type": "object",
709
+ "properties": {
710
+ "classification": {
711
+ "type": "string"
712
+ },
713
+ "treatment": {
714
+ "type": "string",
715
+ "enum": [
716
+ "redact",
717
+ "tokenize",
718
+ "encrypt"
719
+ ]
720
+ },
721
+ "detector": {
722
+ "type": "object",
723
+ "additionalProperties": {}
724
+ }
725
+ },
726
+ "required": [
727
+ "classification",
728
+ "treatment"
729
+ ],
730
+ "additionalProperties": false
731
+ }
732
+ },
733
+ "fetched_at": {
734
+ "type": "string",
735
+ "format": "date-time"
736
+ },
737
+ "ttl_seconds": {
738
+ "type": "integer",
739
+ "exclusiveMinimum": true,
740
+ "minimum": 0,
741
+ "default": 300
742
+ }
743
+ },
744
+ "required": [
745
+ "policy_version",
746
+ "classification_rules",
747
+ "fetched_at"
748
+ ],
749
+ "additionalProperties": false
750
+ },
751
+ "_RunfileBundle": {
752
+ "type": "object",
753
+ "properties": {
754
+ "BatchSubmission": {
755
+ "$ref": "#/definitions/BatchSubmission"
756
+ },
757
+ "EventSubmission": {
758
+ "$ref": "#/definitions/EventSubmission"
759
+ },
760
+ "PayloadSubmission": {
761
+ "$ref": "#/definitions/PayloadSubmission"
762
+ },
763
+ "BatchAccepted": {
764
+ "$ref": "#/definitions/BatchAccepted"
765
+ },
766
+ "BatchPartial": {
767
+ "$ref": "#/definitions/BatchPartial"
768
+ },
769
+ "BatchRejected": {
770
+ "$ref": "#/definitions/BatchRejected"
771
+ },
772
+ "AcceptedEvent": {
773
+ "$ref": "#/definitions/AcceptedEvent"
774
+ },
775
+ "EventRejection": {
776
+ "$ref": "#/definitions/EventRejection"
777
+ },
778
+ "IngestError": {
779
+ "$ref": "#/definitions/IngestError"
780
+ },
781
+ "RedactionPolicy": {
782
+ "$ref": "#/definitions/RedactionPolicy"
783
+ }
784
+ },
785
+ "required": [
786
+ "BatchSubmission",
787
+ "EventSubmission",
788
+ "PayloadSubmission",
789
+ "BatchAccepted",
790
+ "BatchPartial",
791
+ "BatchRejected",
792
+ "AcceptedEvent",
793
+ "EventRejection",
794
+ "IngestError",
795
+ "RedactionPolicy"
796
+ ],
797
+ "additionalProperties": false
798
+ }
799
+ }
800
+ }