@basou/core 0.42.1 → 0.43.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.
- package/dist/index.d.ts +14 -2
- package/dist/index.js +12 -7
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/schemas/approval.schema.json +12 -24
- package/schemas/event.schema.json +53 -89
- package/schemas/manifest.schema.json +2 -2
- package/schemas/session-import.schema.json +60 -100
- package/schemas/session.schema.json +7 -11
- package/schemas/status.schema.json +1 -1
- package/schemas/task-index.schema.json +2 -2
- package/schemas/task.schema.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@basou/core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.43.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"description": "Core primitives for Basou: sessions, events, approvals, git capability",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"simple-git": "^3.36.0",
|
|
51
51
|
"ulid": "^3.0.2",
|
|
52
52
|
"yaml": "^2.9.0",
|
|
53
|
-
"zod": "^4.4
|
|
53
|
+
"zod": "^4.6.4"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"ajv": "^8.17.1",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"created_at": {
|
|
23
23
|
"type": "string",
|
|
24
|
-
"
|
|
24
|
+
"description": "Timestamp with an offset or Z. The pattern is normative: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds.",
|
|
25
25
|
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$"
|
|
26
26
|
},
|
|
27
27
|
"status": {
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"anyOf": [
|
|
63
63
|
{
|
|
64
64
|
"type": "string",
|
|
65
|
-
"
|
|
65
|
+
"description": "Timestamp with an offset or Z. The pattern is normative: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds.",
|
|
66
66
|
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$"
|
|
67
67
|
},
|
|
68
68
|
{
|
|
@@ -72,13 +72,9 @@
|
|
|
72
72
|
},
|
|
73
73
|
"resolver": {
|
|
74
74
|
"default": null,
|
|
75
|
-
"
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
},
|
|
79
|
-
{
|
|
80
|
-
"type": "null"
|
|
81
|
-
}
|
|
75
|
+
"type": [
|
|
76
|
+
"string",
|
|
77
|
+
"null"
|
|
82
78
|
]
|
|
83
79
|
},
|
|
84
80
|
"resolved_at": {
|
|
@@ -86,7 +82,7 @@
|
|
|
86
82
|
"anyOf": [
|
|
87
83
|
{
|
|
88
84
|
"type": "string",
|
|
89
|
-
"
|
|
85
|
+
"description": "Timestamp with an offset or Z. The pattern is normative: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds.",
|
|
90
86
|
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$"
|
|
91
87
|
},
|
|
92
88
|
{
|
|
@@ -96,24 +92,16 @@
|
|
|
96
92
|
},
|
|
97
93
|
"note": {
|
|
98
94
|
"default": null,
|
|
99
|
-
"
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
},
|
|
103
|
-
{
|
|
104
|
-
"type": "null"
|
|
105
|
-
}
|
|
95
|
+
"type": [
|
|
96
|
+
"string",
|
|
97
|
+
"null"
|
|
106
98
|
]
|
|
107
99
|
},
|
|
108
100
|
"rejection_reason": {
|
|
109
101
|
"default": null,
|
|
110
|
-
"
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
},
|
|
114
|
-
{
|
|
115
|
-
"type": "null"
|
|
116
|
-
}
|
|
102
|
+
"type": [
|
|
103
|
+
"string",
|
|
104
|
+
"null"
|
|
117
105
|
]
|
|
118
106
|
}
|
|
119
107
|
},
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
},
|
|
24
24
|
"occurred_at": {
|
|
25
25
|
"type": "string",
|
|
26
|
-
"
|
|
26
|
+
"description": "Timestamp with an offset or Z. The pattern is normative: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds.",
|
|
27
27
|
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$"
|
|
28
28
|
},
|
|
29
29
|
"source": {
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
},
|
|
67
67
|
"occurred_at": {
|
|
68
68
|
"type": "string",
|
|
69
|
-
"
|
|
69
|
+
"description": "Timestamp with an offset or Z. The pattern is normative: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds.",
|
|
70
70
|
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$"
|
|
71
71
|
},
|
|
72
72
|
"source": {
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
},
|
|
115
115
|
"occurred_at": {
|
|
116
116
|
"type": "string",
|
|
117
|
-
"
|
|
117
|
+
"description": "Timestamp with an offset or Z. The pattern is normative: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds.",
|
|
118
118
|
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$"
|
|
119
119
|
},
|
|
120
120
|
"source": {
|
|
@@ -165,7 +165,7 @@
|
|
|
165
165
|
},
|
|
166
166
|
"occurred_at": {
|
|
167
167
|
"type": "string",
|
|
168
|
-
"
|
|
168
|
+
"description": "Timestamp with an offset or Z. The pattern is normative: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds.",
|
|
169
169
|
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$"
|
|
170
170
|
},
|
|
171
171
|
"source": {
|
|
@@ -189,7 +189,7 @@
|
|
|
189
189
|
"anyOf": [
|
|
190
190
|
{
|
|
191
191
|
"type": "string",
|
|
192
|
-
"
|
|
192
|
+
"description": "Timestamp with an offset or Z. The pattern is normative: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds.",
|
|
193
193
|
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$"
|
|
194
194
|
},
|
|
195
195
|
{
|
|
@@ -259,7 +259,7 @@
|
|
|
259
259
|
},
|
|
260
260
|
"occurred_at": {
|
|
261
261
|
"type": "string",
|
|
262
|
-
"
|
|
262
|
+
"description": "Timestamp with an offset or Z. The pattern is normative: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds.",
|
|
263
263
|
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$"
|
|
264
264
|
},
|
|
265
265
|
"source": {
|
|
@@ -282,13 +282,9 @@
|
|
|
282
282
|
"type": "string"
|
|
283
283
|
},
|
|
284
284
|
"note": {
|
|
285
|
-
"
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
},
|
|
289
|
-
{
|
|
290
|
-
"type": "null"
|
|
291
|
-
}
|
|
285
|
+
"type": [
|
|
286
|
+
"string",
|
|
287
|
+
"null"
|
|
292
288
|
]
|
|
293
289
|
}
|
|
294
290
|
},
|
|
@@ -321,7 +317,7 @@
|
|
|
321
317
|
},
|
|
322
318
|
"occurred_at": {
|
|
323
319
|
"type": "string",
|
|
324
|
-
"
|
|
320
|
+
"description": "Timestamp with an offset or Z. The pattern is normative: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds.",
|
|
325
321
|
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$"
|
|
326
322
|
},
|
|
327
323
|
"source": {
|
|
@@ -377,7 +373,7 @@
|
|
|
377
373
|
},
|
|
378
374
|
"occurred_at": {
|
|
379
375
|
"type": "string",
|
|
380
|
-
"
|
|
376
|
+
"description": "Timestamp with an offset or Z. The pattern is normative: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds.",
|
|
381
377
|
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$"
|
|
382
378
|
},
|
|
383
379
|
"source": {
|
|
@@ -426,7 +422,7 @@
|
|
|
426
422
|
},
|
|
427
423
|
"occurred_at": {
|
|
428
424
|
"type": "string",
|
|
429
|
-
"
|
|
425
|
+
"description": "Timestamp with an offset or Z. The pattern is normative: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds.",
|
|
430
426
|
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$"
|
|
431
427
|
},
|
|
432
428
|
"source": {
|
|
@@ -441,15 +437,11 @@
|
|
|
441
437
|
"const": "command_executed"
|
|
442
438
|
},
|
|
443
439
|
"command": {
|
|
444
|
-
"
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
"type": "null"
|
|
450
|
-
}
|
|
451
|
-
],
|
|
452
|
-
"description": "Spawned executable name. null means basou did not observe the executor - not a default, and not a benign value."
|
|
440
|
+
"description": "Spawned executable name. null means basou did not observe the executor - not a default, and not a benign value.",
|
|
441
|
+
"type": [
|
|
442
|
+
"string",
|
|
443
|
+
"null"
|
|
444
|
+
]
|
|
453
445
|
},
|
|
454
446
|
"args": {
|
|
455
447
|
"type": "array",
|
|
@@ -458,15 +450,11 @@
|
|
|
458
450
|
}
|
|
459
451
|
},
|
|
460
452
|
"cwd": {
|
|
461
|
-
"
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
"type": "null"
|
|
467
|
-
}
|
|
468
|
-
],
|
|
469
|
-
"description": "Working directory the command ran in. null means the directory could not be resolved; it is never the session's directory as a fallback."
|
|
453
|
+
"description": "Working directory the command ran in. null means the directory could not be resolved; it is never the session's directory as a fallback.",
|
|
454
|
+
"type": [
|
|
455
|
+
"string",
|
|
456
|
+
"null"
|
|
457
|
+
]
|
|
470
458
|
},
|
|
471
459
|
"exit_code": {
|
|
472
460
|
"anyOf": [
|
|
@@ -482,23 +470,15 @@
|
|
|
482
470
|
"description": "Child exit code. null means the outcome is unknown (signal-terminated, or never recorded by the source). null is not success."
|
|
483
471
|
},
|
|
484
472
|
"signal": {
|
|
485
|
-
"
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
},
|
|
489
|
-
{
|
|
490
|
-
"type": "null"
|
|
491
|
-
}
|
|
473
|
+
"type": [
|
|
474
|
+
"string",
|
|
475
|
+
"null"
|
|
492
476
|
]
|
|
493
477
|
},
|
|
494
478
|
"received_signal": {
|
|
495
|
-
"
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
},
|
|
499
|
-
{
|
|
500
|
-
"type": "null"
|
|
501
|
-
}
|
|
479
|
+
"type": [
|
|
480
|
+
"string",
|
|
481
|
+
"null"
|
|
502
482
|
]
|
|
503
483
|
},
|
|
504
484
|
"duration_ms": {
|
|
@@ -548,7 +528,7 @@
|
|
|
548
528
|
},
|
|
549
529
|
"occurred_at": {
|
|
550
530
|
"type": "string",
|
|
551
|
-
"
|
|
531
|
+
"description": "Timestamp with an offset or Z. The pattern is normative: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds.",
|
|
552
532
|
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$"
|
|
553
533
|
},
|
|
554
534
|
"source": {
|
|
@@ -634,7 +614,7 @@
|
|
|
634
614
|
},
|
|
635
615
|
"occurred_at": {
|
|
636
616
|
"type": "string",
|
|
637
|
-
"
|
|
617
|
+
"description": "Timestamp with an offset or Z. The pattern is normative: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds.",
|
|
638
618
|
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$"
|
|
639
619
|
},
|
|
640
620
|
"source": {
|
|
@@ -661,13 +641,9 @@
|
|
|
661
641
|
]
|
|
662
642
|
},
|
|
663
643
|
"old_path": {
|
|
664
|
-
"
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
},
|
|
668
|
-
{
|
|
669
|
-
"type": "null"
|
|
670
|
-
}
|
|
644
|
+
"type": [
|
|
645
|
+
"string",
|
|
646
|
+
"null"
|
|
671
647
|
]
|
|
672
648
|
}
|
|
673
649
|
},
|
|
@@ -701,7 +677,7 @@
|
|
|
701
677
|
},
|
|
702
678
|
"occurred_at": {
|
|
703
679
|
"type": "string",
|
|
704
|
-
"
|
|
680
|
+
"description": "Timestamp with an offset or Z. The pattern is normative: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds.",
|
|
705
681
|
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$"
|
|
706
682
|
},
|
|
707
683
|
"source": {
|
|
@@ -724,13 +700,9 @@
|
|
|
724
700
|
"type": "string"
|
|
725
701
|
},
|
|
726
702
|
"rationale": {
|
|
727
|
-
"
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
},
|
|
731
|
-
{
|
|
732
|
-
"type": "null"
|
|
733
|
-
}
|
|
703
|
+
"type": [
|
|
704
|
+
"string",
|
|
705
|
+
"null"
|
|
734
706
|
]
|
|
735
707
|
},
|
|
736
708
|
"alternatives": {
|
|
@@ -741,13 +713,9 @@
|
|
|
741
713
|
}
|
|
742
714
|
},
|
|
743
715
|
"rejected_reason": {
|
|
744
|
-
"
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
},
|
|
748
|
-
{
|
|
749
|
-
"type": "null"
|
|
750
|
-
}
|
|
716
|
+
"type": [
|
|
717
|
+
"string",
|
|
718
|
+
"null"
|
|
751
719
|
]
|
|
752
720
|
},
|
|
753
721
|
"linked_events": {
|
|
@@ -804,7 +772,7 @@
|
|
|
804
772
|
},
|
|
805
773
|
"occurred_at": {
|
|
806
774
|
"type": "string",
|
|
807
|
-
"
|
|
775
|
+
"description": "Timestamp with an offset or Z. The pattern is normative: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds.",
|
|
808
776
|
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$"
|
|
809
777
|
},
|
|
810
778
|
"source": {
|
|
@@ -824,13 +792,9 @@
|
|
|
824
792
|
"description": "Basou decision id: `decision_` followed by a 26-character Crockford Base32 ULID."
|
|
825
793
|
},
|
|
826
794
|
"reason": {
|
|
827
|
-
"
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
},
|
|
831
|
-
{
|
|
832
|
-
"type": "null"
|
|
833
|
-
}
|
|
795
|
+
"type": [
|
|
796
|
+
"string",
|
|
797
|
+
"null"
|
|
834
798
|
]
|
|
835
799
|
},
|
|
836
800
|
"superseded_by": {
|
|
@@ -868,7 +832,7 @@
|
|
|
868
832
|
},
|
|
869
833
|
"occurred_at": {
|
|
870
834
|
"type": "string",
|
|
871
|
-
"
|
|
835
|
+
"description": "Timestamp with an offset or Z. The pattern is normative: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds.",
|
|
872
836
|
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$"
|
|
873
837
|
},
|
|
874
838
|
"source": {
|
|
@@ -921,7 +885,7 @@
|
|
|
921
885
|
},
|
|
922
886
|
"occurred_at": {
|
|
923
887
|
"type": "string",
|
|
924
|
-
"
|
|
888
|
+
"description": "Timestamp with an offset or Z. The pattern is normative: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds.",
|
|
925
889
|
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$"
|
|
926
890
|
},
|
|
927
891
|
"source": {
|
|
@@ -978,7 +942,7 @@
|
|
|
978
942
|
},
|
|
979
943
|
"occurred_at": {
|
|
980
944
|
"type": "string",
|
|
981
|
-
"
|
|
945
|
+
"description": "Timestamp with an offset or Z. The pattern is normative: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds.",
|
|
982
946
|
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$"
|
|
983
947
|
},
|
|
984
948
|
"source": {
|
|
@@ -1063,7 +1027,7 @@
|
|
|
1063
1027
|
},
|
|
1064
1028
|
"occurred_at": {
|
|
1065
1029
|
"type": "string",
|
|
1066
|
-
"
|
|
1030
|
+
"description": "Timestamp with an offset or Z. The pattern is normative: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds.",
|
|
1067
1031
|
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$"
|
|
1068
1032
|
},
|
|
1069
1033
|
"source": {
|
|
@@ -1136,7 +1100,7 @@
|
|
|
1136
1100
|
},
|
|
1137
1101
|
"occurred_at": {
|
|
1138
1102
|
"type": "string",
|
|
1139
|
-
"
|
|
1103
|
+
"description": "Timestamp with an offset or Z. The pattern is normative: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds.",
|
|
1140
1104
|
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$"
|
|
1141
1105
|
},
|
|
1142
1106
|
"source": {
|
|
@@ -1191,7 +1155,7 @@
|
|
|
1191
1155
|
},
|
|
1192
1156
|
"occurred_at": {
|
|
1193
1157
|
"type": "string",
|
|
1194
|
-
"
|
|
1158
|
+
"description": "Timestamp with an offset or Z. The pattern is normative: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds.",
|
|
1195
1159
|
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$"
|
|
1196
1160
|
},
|
|
1197
1161
|
"source": {
|
|
@@ -1246,7 +1210,7 @@
|
|
|
1246
1210
|
},
|
|
1247
1211
|
"occurred_at": {
|
|
1248
1212
|
"type": "string",
|
|
1249
|
-
"
|
|
1213
|
+
"description": "Timestamp with an offset or Z. The pattern is normative: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds.",
|
|
1250
1214
|
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$"
|
|
1251
1215
|
},
|
|
1252
1216
|
"source": {
|
|
@@ -1300,7 +1264,7 @@
|
|
|
1300
1264
|
},
|
|
1301
1265
|
"occurred_at": {
|
|
1302
1266
|
"type": "string",
|
|
1303
|
-
"
|
|
1267
|
+
"description": "Timestamp with an offset or Z. The pattern is normative: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds.",
|
|
1304
1268
|
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$"
|
|
1305
1269
|
},
|
|
1306
1270
|
"source": {
|
|
@@ -1440,7 +1404,7 @@
|
|
|
1440
1404
|
},
|
|
1441
1405
|
"occurred_at": {
|
|
1442
1406
|
"type": "string",
|
|
1443
|
-
"
|
|
1407
|
+
"description": "Timestamp with an offset or Z. The pattern is normative: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds.",
|
|
1444
1408
|
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$"
|
|
1445
1409
|
},
|
|
1446
1410
|
"source": {
|
|
@@ -27,12 +27,12 @@
|
|
|
27
27
|
},
|
|
28
28
|
"created_at": {
|
|
29
29
|
"type": "string",
|
|
30
|
-
"
|
|
30
|
+
"description": "Timestamp with an offset or Z. The pattern is normative: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds.",
|
|
31
31
|
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$"
|
|
32
32
|
},
|
|
33
33
|
"updated_at": {
|
|
34
34
|
"type": "string",
|
|
35
|
-
"
|
|
35
|
+
"description": "Timestamp with an offset or Z. The pattern is normative: RFC 3339 date-time with uppercase designators, no leap second, and optional seconds.",
|
|
36
36
|
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$"
|
|
37
37
|
},
|
|
38
38
|
"view": {
|